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

@charset "utf-8";
/* root */
:root {
  /* fallback */
  --main-color: #dc8e99;
  --sub-color: #f1d1d6;
  --accent-color: #383d58;
  --bg-color: #fbf3f4;
  --bg-color2: #f8fcf7;
  --text-color: #422a2d;
  /* color */
  @supports (color: oklch(0 0 0)) {
    --main-color: oklch(0.7289 0.11 10.51);
    --sub-color: oklch(0.8889 0.0364 7.19);
    --accent-color: oklch(0.3674 0.0471 275.76);
    --bg-color: oklch(0.9706 0.0087 8.54);
    --bg-color2: oklch(0.9867 0.0078 139.44);
    --text-color: oklch(0.3153 0.0361 11.12);
  }
  /* font-size */
  --main-fz: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  --small-fz: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  --btn-fz: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  --catch-fz: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  --large-fz: clamp(1.438rem, 1.369rem + 0.34vw, 1.625rem);
  --exl-fz: clamp(2.25rem, 2.136rem + 0.57vw, 2.563rem);
  /* font-family */
  --font-ja: 'Zen Kaku Gothic Antique', sans-serif;
  --font-en: 'Montserrat', sans-serif;
  --font-en-ls: 0.055em;
  /* 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;
}
/* lenis */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}
.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch] {
  overscroll-behavior: contain;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}
/* common */
html {
  scroll-behavior: smooth;
}
body {
  position: relative;
  min-block-size: 100svb;
  font-size: var(--main-fz);
  font-family: var(--font-ja);
  color: var(--text-color);
  line-height: 2;
  letter-spacing: 0.08em;
  background: linear-gradient(var(--bg-color, var(--bg-color2)));
  padding: env(safe-area-inset-top, 20px) env(safe-area-inset-right, 20px) env(safe-area-inset-bottom, 20px) env(safe-area-inset-left, 20px); /* for iphone */
}
p {
  margin-bottom: 1em;
}
.section {
  position: relative;
  padding-block: 108px;
}
.inner {
  max-width: 1200px;
  padding-inline: 24px;
  margin-inline: auto;
}
.lang-en {
  font-family: var(--font-en);
  letter-spacing: var(--font-en-ls);
}
.section-title {
  text-align: center;
  font-size: var(--large-fz);
  line-height: 1.7;
  margin-bottom: 4em;
  & h2 {
    font-weight: 400;
  }
  & p {
    font-size: var(--main-fz);
    color: var(--main-color);
  }
}
.catchcopy {
  font-size: var(--large-fz);
  margin-bottom: 2em;
}
.btn-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 420px));
  gap: 2em;
  margin-top: 4em;
  font-size: var(--btn-fz);
  & a.btn {
    position: relative;
    display: grid;
    place-items: center;
    color: currentColor;
    width: 100%;
    height: 84px;
    padding: 12px 24px;
    border: solid 1px currentColor;
    line-height: 1.4;
    &::after {
      position: absolute;
      right: 2px;
      content: '\e315';
      font-family: 'Material Symbols Outlined';
      font-weight: 500;
      font-size: var(--small-fz);
    }
    & p {
      position: relative;
      margin-bottom: initial;
    }
  }
}
.sns-list {
  display: block flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.sns-content a {
  position: relative;
  display: block grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 100vmax;
  background-color: var(--accent-color);
  &::after {
    position: absolute;
    inset: 0;
    width: 36px;
    height: auto;
    content: '';
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 12px;
  }
}
.sns-content.sns-note a::after {
  background-image: url(./img/logo-note-white.png);
}
.sns-content.sns-x a::after {
  background-image: url(./img/logo-x-white.png);
  height: 24px;
  width: 24px;
}
.sns-content.sns-insta a::after {
  background-image: url(./img/logo-insta-white.png);
  height: 24px;
  width: 24px;
}
.sns-content.sns-bluesky a::after {
  background-image: url(./img/logo-bluesky-white.png);
}
.div-flex {
  position: relative;
  display: block grid;
}
.mb-4em {
  margin-bottom: 4em;
}
.bold {
  font-weight: 700;
}
.text-small {
  font-size: var(--small-fz);
}
.text-right {
  text-align: right;
}
a.text-link {
  color: var(--main-color);
  font-weight: 600;
  text-decoration: underline;
}
.bg-palegreen {
  background-color: var(--bg-color2);
}
/* header */
.header {
  position: sticky;
  top: 0;
  height: 60px;
  width: 100vw;
  background-color: oklch(from var(--bg-color2) l c h / 85%);
  border-bottom: solid 2px oklch(from var(--main-color) l c h / 15%);
  z-index: 800;
}
.header-inner {
  display: block flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding-inline: 24px;
  container: header-container / inline-size;
}
a.header-logo > img {
  max-height: 48px;
  width: max(20vw, 100px);
  max-width: 108px;
  object-fit: contain;
}
.navigation {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.nav-list {
  display: block flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 2em;
  height: 100%;
}
.nav-content {
  font-family: var(--font-en);
  letter-spacing: var(--font-en-ls);
  font-size: var(--main-fz);
}
.navToggle {
  display: none;
}
@container header-container (max-width:780px) {
  .navToggle {
    position: absolute;
    top: 12px;
    right: 0;
    display: block grid;
    place-items: center;
    width: 36px;
    aspect-ratio: 1;
    z-index: 1000;
    border: none;
    background-color: var(--main-color);
    color: #fff;
  }
  .nav-list {
    display: none;
    &.on {
      position: absolute;
      top: 0;
      left: min(-15vw, -124px);
      display: block flex;
      height: calc(var(--vh, 1vh) * 115);
      width: 100vw;
      background-color: oklch(from var(--main-color) l c h / 85%);
      flex-direction: column;
      justify-content: center;
      font-size: var(--large-fz);
      color: var(--bg-color);
      overflow: hidden;
      backdrop-filter: blur(4px);
    }
  }
  .nav-content {
    font-size: var(--large-fz);
  }
}
/* footer */
.footer {
  position: sticky;
  inset-block-start: 100%;
  background-color: var(--accent-color);
  color: var(--bg-color2);
  padding: 48px 24px;
  container: footer / inline-size;
}
.footer-inner {
  display: block flex;
  justify-content: space-between;
  align-items: center;
}
img.footer-logo {
  filter: invert(100%);
  max-height: 108px;
}
.copyright {
  display: inline-block;
  font-size: var(--small-fz);
  margin-bottom: 1em;
}
a.backtoTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  aspect-ratio: 1;
  display: block grid;
  place-items: center;
  border-radius: 100vmax;
  border: solid 1px;
  background-color: oklch(from var(--main-color) l c h / 25%);
}
@container footer (max-width:660px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    & p.text-right {
      text-align: center;
    }
  }
  img.footer-logo {
    margin-bottom: 1em;
  }
  .sns-list {
    justify-content: center;
    margin-bottom: 1em;
  }
}
/* front */
.section#front-mv {
  display: block grid;
  place-items: center;
  height: 100svb;
  padding-block: 0;
  background: linear-gradient(210deg, var(--bg-color), var(--main-color));
  overflow: hidden;
  & .inner {
    display: block grid;
    place-items: center;
    height: 100%;
    width: auto;
    mix-blend-mode: luminosity;
    &::after {
      position: absolute;
      inset: 0;
      margin: auto;
      content: '';
      width: max(35vw, 600px);
      background-color: oklch(1 0 0 / 55%);
      border-radius: 100vmax;
      aspect-ratio: 1;
      z-index: -1;
    }
  }
}
.mv-title {
  text-align: center;
  & .lang-en {
    font-size: var(--exl-fz);
    font-weight: 400;
  }
}
.section#front-mission {
  & .inner::after {
    position: absolute;
    top: 25%;
    right: 10%;
    width: max(35vw, 600px);
    aspect-ratio: 1;
    content: '';
    border-radius: 100vmax;
    background: linear-gradient(210deg, var(--bg-color), var(--main-color));
    z-index: -1;
    overflow: hidden;
    opacity: 0.45;
  }
  & img {
    max-width: 160px;
    height: auto;
    object-fit: contain;
  }
}
.section#front-fortune {
  background-color: var(--bg-color2);
  & > .inner {
    container: front-fortune-flex / inline-size;
  }
  & .div-flex {
    grid-template-columns: 270px 1fr;
    gap: 4em;
    & img.fortune-img {
      display: block grid;
      overflow: hidden;
      width: auto;
      height: 100%;
      object-fit: cover;
      object-position: bottom left;
      border-radius: 4px;
    }
  }
}
.front-pickup-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.front-pickup-content {
  position: relative;
  & h3 {
    font-size: var(--catch-fz);
    margin-left: calc(84px + 1em);
    margin-bottom: 1em;
  }
  & img {
    position: absolute;
    top: -2px;
    left: 0;
    width: 84px;
    aspect-ratio: 1;
    filter: brightness(0) saturate(100%) invert(69%) sepia(20%) saturate(895%) hue-rotate(304deg) brightness(92%) contrast(85%);
  }
}
@container front-fortune-flex (max-width: 780px) {
  .section#front-fortune .div-flex {
    grid-template-columns: 1fr;
  }
}
.section#front-web {
  overflow: hidden;
}
.front-web-list {
  position: absolute;
  top: 35vh;
  left: 65vw;
  z-index: -1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  & img {
    max-width: 360px;
    aspect-ratio: 16/9;
    object-fit: cover;
    pointer-events: none;
    opacity: 0.28;
    border-radius: 4px;
    border: solid 1px oklch(from var(--text-color) l c h / 15%);
  }
}
.section#front-contact {
  background: var(--accent-color);
  & .inner > p {
    color: var(--bg-color2);
  }
  & .section-title h2 {
    color: var(--bg-color2);
  }
  & .btn-wrapper {
    grid-template-columns: 1fr;
    & a.btn {
      width: min(100%, 480px);
      height: 108px;
      background-color: transparent;
      color: #fff;
      font-size: var(--main-fz);
      border-radius: 4px;
    }
  }
}
.section#front-info {
  padding-bottom: initial;
}
.info-list {
  border-top: solid 0.5px var(--text-color);
  container: front-info / inline-size;
}
.info-content a {
  display: block flex;
  gap: 4em;
  padding-block: 1em;
  border-bottom: solid 0.5px var(--text-color);
  & time {
    font-size: var(--small-fz);
    font-weight: 600;
  }
  & h3 {
    font-size: var(--main-fz);
  }
}
@container front-info (max-width:480px) {
  .info-content a {
    flex-direction: column;
    gap: 1em;
    line-height: 1.4;
  }
}
.note-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
  gap: 2em;
  margin-bottom: 4em;
}
.note-content a {
  display: block;
  margin-inline: auto;
  & img {
    height: auto;
    width: 100%;
    object-fit: cover;
  }
  & time {
    font-size: var(--small-fz);
    font-weight: 600;
    margin-bottom: 1em;
  }
  & h3 {
    font-size: var(--main-fz);
    font-weight: 600;
  }
}
/* menu-header */
.section.menu-header {
  padding-block: 48px;
  height: min(37.5vh, 380px);
  display: grid;
  place-items: center;
  background: linear-gradient(var(--bg-color, var(--bg-color2)));
  overflow: hidden;
  &::before {
    position: absolute;
    top: 40%;
    content: '';
    width: 640px;
    aspect-ratio: 1;
    content: '';
    border-radius: 100vmax;
    background: linear-gradient(210deg, var(--bg-color), var(--main-color));
    filter: brightness(110%);
    opacity: 0.66;
    mix-blend-mode: multiply;
  }
}
.menu-title {
  text-align: center;
  line-height: 1.4;
  z-index: 1;
  & .lang-en {
    font-size: var(--exl-fz);
    font-weight: 300;
    margin-bottom: initial;
  }
  & .lang-ja {
    margin-bottom: initial;
    color: var(--main-color);
  }
}
/* menu profile */
.section#profile-concept {
  & .section-title h2 {
    font-size: var(--catch-fz);
  }
  & .inner::after {
    position: absolute;
    top: 35%;
    right: 3%;
    width: max(35vw, 600px);
    aspect-ratio: 1;
    content: '';
    border-radius: 100vmax;
    background: linear-gradient(210deg, var(--bg-color), var(--main-color));
    z-index: -1;
    overflow: hidden;
    opacity: 0.45;
  }
}
.section#profile-jugem {
  background-color: var(--bg-color2);
  container: profile-jugem / inline-size;
  & .div-flex {
    grid-template-columns: 270px 1fr;
    gap: 4em;
  }
  & .sns-list {
    justify-content: flex-start;
  }
}
img.profile-img {
  border-radius: 100vmax;
  max-width: 240px;
}
.profile-name {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1em;
  & .lang-en {
    font-size: var(--large-fz);
    font-weight: 400;
  }
  & .lang-ja {
    margin-bottom: initial;
    color: var(--main-color);
  }
}
.fav-list {
  margin-bottom: 2em;
  font-size: var(--btn-fz);
  & div {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 1em;
  }
  & dt {
    font-family: var(--font-en);
    letter-spacing: var(--font-en-ls);
    color: var(--main-color);
    font-weight: 400;
  }
}
@container profile-jugem (max-width:880px) {
  .section#profile-jugem .div-flex {
    grid-template-columns: 1fr;
  }
}
.section#profile-skills {
  background-color: var(--bg-color);
  container: skills-list / inline-size;
}
.skill-list {
  display: block grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2em;
}
.skill-content {
  border: solid 1px oklch(from var(--main-color1) l c h / 65%);
  border-radius: 4px;
  background-color: #fff;
  padding: 2em 1em;
  text-align: center;
  & img {
    display: block;
    width: 48px;
    margin-inline: auto;
    margin-bottom: 1em;
    aspect-ratio: 1;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(69%) sepia(20%) saturate(895%) hue-rotate(304deg) brightness(92%) contrast(85%);
  }
  & h3 {
    font-size: var(--main-fz);
    font-weight: 400;
  }
  & p {
    font-size: var(--btn-fz);
    color: var(--main-color);
    margin-bottom: 2em;
  }
  &:first-of-type {
    grid-column: 1/3;
  }
}
.skill-tags {
  display: block flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
  & li {
    font-size: var(--small-fz);
    padding: 6px 12px;
    border: solid 1px oklch(from var(--text-color) l c h / 65%);
    border-radius: 100vmax;
  }
}
@container skills-list (max-width:660px) {
  .skill-list {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .skill-content:first-of-type {
    grid-column: initial;
  }
}
/* fortune / web */
.menu-anchor {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  & li a {
    position: relative;
    display: block;
    padding: 6px 24px;
    border-radius: 4px;
    font-size: var(--btn-fz);
    font-weight: 600;
    color: #fff;
    background-color: var(--main-color);
    &::after {
      position: relative;
      top: -2px;
      content: '\e313';
      font-family: 'Material Symbols Outlined';
      font-weight: 500;
      vertical-align: middle;
      margin-left: 4px;
    }
  }
}
.menu-list {
  display: block grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}
.menu-content {
  border: solid 1px oklch(from var(--main-color) l c h / 85%);
  border-radius: 4px;
  background-color: #fff;
  padding: 2em;
  & h3 {
    font-size: var(--catch-fz);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1em;
  }
  & p:first-of-type {
    color: var(--main-color);
    font-weight: 500;
    font-size: var(--large-fz);
    padding-bottom: 0.5em;
    border-bottom: solid 0.5px var(--text-color);
    & .lang-ja {
      font-size: var(--small-fz);
    }
  }
}
.caution-list {
  border: solid 1px oklch(from var(--main-color) l c h / 85%);
  border-radius: 4px;
  background-color: #fff;
  padding: 2em;
  & div:not(:last-of-type) {
    margin-bottom: 2em;
  }
  & dt {
    color: var(--main-color);
    font-size: var(--catch-fz);
    font-weight: 600;
    margin-bottom: 1em;
  }
}
@media (max-width: 780px) {
  .menu-list {
    grid-template-columns: 1fr;
  }
}
.faq-wrapper {
  display: block grid;
}
.faq-content {
  position: relative;
  padding-block: 1em;
  border-bottom: solid 0.5px;
  & summary {
    display: block grid;
    align-items: center;
    grid-template-columns: 1fr 60px;
    gap: 0.5em;
    font-size: var(--main-fz);
    font-weight: 600;
    & .material-symbols-outlined {
      text-align: center;
      color: var(--main-color);
      transition: rotate var(--trans-slow);
      transform-origin: center;
    }
  }
  &[open] summary .material-symbols-outlined {
    rotate: 360deg;
    transition: rotate var(--trans-slow);
  }
  &[open] p {
    display: inline-block;
    padding: 2em 1em;
    margin-right: 36px;
    font-size: var(--btn-fz);
  }
}
.section#fortune-contact,
.section#design-contact {
  & .inner {
    text-align: center;
    background-color: var(--accent-color);
    color: #fff;
    padding: 4em 2em;
    border-radius: 4px;
  }
  & .lang-en {
    font-size: var(--exl-fz);
    font-weight: 400;
    margin-bottom: 1em;
  }
  &,
  .btn-wrapper {
    justify-content: center;
  }
}
.works-list {
  display: block grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}
@media (max-width: 980px) {
  .works-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .works-list {
    grid-template-columns: 1fr;
  }
}
.works-content {
  display: block grid;
  place-items: center;
}
.popup-open {
  position: relative;
  text-align: center;
  border: none;
  font-size: var(--small-fz);
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-repeat: no-repeat;
  & span {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    color: #fff;
    padding: 0.5em 1em;
  }
}
.popup-title {
  font-size: var(--large-fz);
  font-weight: 600;
}
.popup-modal {
  position: fixed;
  inset: 0;
  transition:
    display ease 0.15s,
    overlay ease 0.15s,
    opacity ease 0.15s;
  max-width: 85vw;
  width: min(100%, 780px);
  height: 87.5vh;
  overflow-y: scroll;
  padding: 24px;
  @starting-style {
    opacity: 0;
  }
  &::backdrop {
    transition:
      display ease 0.15s,
      overlay ease 0.15s,
      opacity ease 0.15s;
    background-color: oklch(from var(--bg-color1) l c h / 65%);
    backdrop-filter: blur(6px);
  }
  & img {
    display: block;
    margin-bottom: 1em;
    object-fit: cover;
  }
}
.popup-close {
  position: fixed;
  top: 10vh;
  right: calc(50vw - min(45vw, 390px) + 24px);
  display: block grid;
  place-items: center;
  border: none;
  border-radius: 100vmax;
  background-color: var(--accent-color);
  color: var(--bg-color2);
  aspect-ratio: 1/1;
}
/* contact */
/* menu-contact */
.contact-wrapper {
  width: min(980px, 100%);
  margin-inline: auto;
  padding: 1em;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.contact-name {
  & p {
    margin-bottom: 0px;
  }
  & label {
    font-size: var(--btn-fz);
    font-weight: 600;
  }
}
input:is(:-webkit-autofill, :autofill) {
  background-color: #fff;
}
.contact-form {
  max-width: 100%;
}
.contact-input input,
.contact-input textarea {
  width: 100%;
  padding: 12px;
  font-size: var(--main-fz);
  border: 0.5px solid var(--main-color);
  background: #fff;
  border-radius: 4px;
  transition:
    border-color var(--trans-fast),
    filter var(--trans-fast);
}
.contact-input:focus-within input,
.contact-input:focus-within textarea {
  border-color: var(--accent-color);
}
.contact-input textarea {
  height: 184px;
  resize: vertical;
}
.privacy-policy {
  padding: 12px;
  margin-bottom: 12px;
  font-size: var(--small-fz);
}
input[type='submit'] {
  padding: 16px 12px;
  width: 100%;
  min-height: 84px;
  font-weight: 600;
  cursor: pointer;
  color: var(--main-color);
  background-color: #fff;
  border: solid 2px;
  transition: background-color 0.15s ease;
  text-align: center;
}
.wpcf7-turnstile.cf-turnstile {
  text-align: center;
}
/* single */
#single .menu-title {
  & .lang-en {
    font-size: var(--main-fz);
  }
  & .lang-ja {
    font-size: var(--catch-fz);
    font-weight: 600;
  }
}
/* sct & privacy */
.sct-list {
  container: sct / inline-size;
  border-top: 0.5px solid;
  margin-inline: auto;
}
.sct-content {
  display: block grid;
  grid-template-columns: 184px 1fr;
  align-items: center;
  gap: 1em;
  padding-block: 1em;
  border-bottom: 0.5px solid;
  & dt {
    font-size: var(--small-fz);
  }
  & dd {
    font-size: var(--btn-fz);
    border-left: 4px double var(--main-color);
    padding-left: 1em;
  }
}
/* loading */
#loading {
  width: 100vw;
  height: calc(var(--vh, 1vh) * 115);
  transition: all var(--ease) 1s;
  background-color: var(--bg-color);
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  &.loaded {
    opacity: 0;
    visibility: hidden;
  }
}
.loader {
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: var(--main-color);
  background: linear-gradient(to right, var(--main-color) 10%, oklch(0.7289 0.0956 10.51 / 0%) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loader:before {
  width: 50%;
  height: 50%;
  background: var(--main-color);
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
.loader:after {
  background: var(--bg-color);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  inset: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* any-hover */
@media (any-hover: hover) {
  a,
  button {
    transition: opacity var(--trans-fast);
    &:hover {
      opacity: var(--hover-op);
      transition: revert;
    }
  }
  .btn-wrapper a.btn,
  a.backtoTop {
    transition: background-color var(--trans-fast);
    &:hover {
      opacity: 1;
      background-color: oklch(from var(--main-color) l c h / 100%);
      color: var(--bg-color);
    }
  }
  .section#front-contact .btn-wrapper a.btn {
    transition: background-color var(--trans-fast);
    &:hover {
      background-color: oklch(from var(--main-color) l c h / 100%);
      color: var(--bg-color);
    }
  }
  .info-content a {
    transition: padding var(--trans-fast);
    &:hover {
      opacity: 1;
      padding-left: 16px;
      color: var(--main-color);
    }
  }
  .note-content a {
    transition: translate var(--trans-fast);
    &:hover {
      opacity: 1;
      translate: 0 -12px;
    }
  }
}
