@charset "UTF-8";
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
:root {
  /* サイトカラー */
  --color-primary: #4E92C9;
  --color-text: #1F2C32;
  --color-bg: #F2F8FE;
  --color-bg-secondary: #5497CC;
  --color-bg-tertiary: #FEFCEF;
  --color-white: #fff;
  /* font */
  --font-base: YakuHanJP, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --font-size13: clamp(0.8125rem, 0.8125rem + 0vw, 0.8125rem);
  --font-size15: clamp(0.9375rem, 0.9375rem + 0vw, 0.9375rem);
  --font-size16: clamp(0.875rem, 0.8285714286rem + 0.1904761905vw, 1rem);
  --font-size18: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
  --font-size20: clamp(1.125rem, 1.0785714286rem + 0.1904761905vw, 1.25rem);
  --font-size22: clamp(1.25rem, 1.2035714286rem + 0.1904761905vw, 1.375rem);
  --font-size24: clamp(1.375rem, 1.3285714286rem + 0.1904761905vw, 1.5rem);
  --font-size28: clamp(1.5rem, 1.4071428571rem + 0.380952381vw, 1.75rem);
  --font-size32: clamp(1.625rem, 1.4857142857rem + 0.5714285714vw, 2rem);
  --font-size40: clamp(1.75rem, 1.4714285714rem + 1.1428571429vw, 2.5rem);
  --font-size48: clamp(2.5rem, 2.3142857143rem + 0.7619047619vw, 3rem);
  --font-size56: clamp(2.875rem, 2.6428571429rem + 0.9523809524vw, 3.5rem);
  --font-size120: clamp(5rem, 4.0714285714rem + 3.8095238095vw, 7.5rem);
  /* header */
  --header-height-sm: 64px;
  --header-height-md: 80px;
  --header-height-lg: 96px;
  /* inner */
  --inner-max-width-sm: 880px;
  --inner-max-width-md: 1080px;
  --inner-max-width-lg: 1240px;
  --inner-max-width-xl: 1440px;
  /* radius */
  --radius-xxs: 5px;
  --radius-xs: 10px;
  --radius-sm: 20px;
  --radius-md: 30px;
  /* transition */
  --transition-default: 0.3s ease;
  /* opening animation */
  --opening-fade-duration: 1.2s;
  --opening-tag-duration: 0.6s;
  --opening-tag-delay: calc(var(--opening-fade-duration) + 0.6s);
  --opening-tag-stagger: 0.2s;
}

/*======================
  reset
======================*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

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

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

svg,
img,
picture {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px; /* 1 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: normal;
}

/*=======================
  breakpoints
=======================*/
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
@-webkit-keyframes mv-bg-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes mv-bg-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes opening-wipe {
  from {
    clip-path: inset(0% 100% 0% 0%);
  }
  to {
    clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes opening-wipe {
  from {
    clip-path: inset(0% 100% 0% 0%);
  }
  to {
    clip-path: inset(0% 0% 0% 0%);
  }
}
@-webkit-keyframes opening-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opening-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes opening-scale-up {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes opening-scale-up {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes pop-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pop-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
/*======================
  base
======================*/
* {
  min-height: 0vw;
}

html {
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

body {
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  body a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.is-opening body {
  opacity: 0;
  -webkit-animation: opening-fade-in var(--opening-fade-duration) ease forwards;
          animation: opening-fade-in var(--opening-fade-duration) ease forwards;
}

/*======================
  svg
======================*/
.svg,
.svg-defs {
  display: none;
  position: relative;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.svg-icon {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.icon-arrow {
  width: 1.25rem;
  aspect-ratio: 1/1;
}

.icon-shine {
  width: 2rem;
  aspect-ratio: 1/1;
}

/* -----------------------------------------------------------------
 Layout
----------------------------------------------------------------- */
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
/*=======================
  header
=======================*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 990;
}
.l-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.625rem max(2.2%, 0.625rem) 0 max(2.2%, 0.625rem);
}
@media screen and (min-width: 768px) {
  .l-header__container {
    padding: 1rem max(2.2%, 0.625rem) 0 max(2.2%, 0.625rem);
  }
}
.l-header__logo {
  width: clamp(5rem, 3.929rem + 5.36vw, 8.75rem);
  /* 80 - 140 */
  height: auto;
}

.l-navbtn {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: none;
  text-align: center;
  cursor: pointer;
  z-index: 999;
  --navbtn-color: var(--color-white);
}
.l-navbtn[data-color=primary] {
  --navbtn-color: var(--color-primary);
}
.l-navbtn__bar {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background-color: var(--navbtn-color);
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.l-navbtn__bar.m-top {
  -webkit-transform: translate(-50%, calc(-50% - 8px));
          transform: translate(-50%, calc(-50% - 8px));
}
.l-navbtn__bar.m-middle {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.l-navbtn__bar.m-bottom {
  -webkit-transform: translate(-50%, calc(-50% + 8px));
          transform: translate(-50%, calc(-50% + 8px));
}
.l-navbtn.is-active {
  --navbtn-color: var(--color-primary);
}
.l-navbtn.is-active .m-top {
  -webkit-transform: translate(-50%, 0) rotate(45deg);
          transform: translate(-50%, 0) rotate(45deg);
}
.l-navbtn.is-active .m-middle {
  display: none;
}
.l-navbtn.is-active .m-bottom {
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
          transform: translate(-50%, 0) rotate(-45deg);
}

.l-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100svh;
  max-width: 24.375rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 996;
}
.l-nav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-nav__inner {
  height: 100%;
  margin-left: auto;
  background-color: var(--color-white);
  overflow-y: auto;
  overflow-x: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.l-nav__wrap {
  position: relative;
  min-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4rem 1.25rem 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-nav__wrap {
    padding: 5rem 6.7% 2.5rem 6.7%;
  }
}
.l-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5rem 0;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  font-size: 0.9375rem;
}
@media screen and (min-width: 390px) {
  .l-nav__item {
    padding: 1.5rem 0.625rem;
  }
}
.l-nav__item .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.l-nav__item .icon-shine {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-primary);
}
.l-nav__item .icon-arrow {
  color: var(--color-primary);
}
@media screen and (min-width: 768px) {
  .l-nav__item .text {
    overflow: hidden;
    color: transparent;
    text-shadow: 0 -1.5em 0 var(--color-text), 0 0 0 var(--color-text);
    -webkit-transition: text-shadow 0.3s;
    transition: text-shadow 0.3s;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .l-nav__item:hover .text {
    text-shadow: 0 0 0 var(--color-primary), 0 1.5em 0 var(--color-primary);
  }
}
.l-nav__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.l-nav__sns-link img {
  width: 1.5rem;
  aspect-ratio: 1/1;
  -webkit-transition: -webkit-transform var(--transition-default);
  transition: -webkit-transform var(--transition-default);
  transition: transform var(--transition-default);
  transition: transform var(--transition-default), -webkit-transform var(--transition-default);
}
@media (hover: hover) and (pointer: fine) {
  .l-nav__sns-link:hover img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.floating-menu {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}
.floating-menu.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (min-width: 600px) {
  .floating-menu {
    bottom: 2.5rem;
    right: 2.78%;
    width: auto;
  }
}
.floating-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 600px) {
  .floating-menu__list {
    gap: 0.5rem;
  }
}
.floating-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 3.375rem;
  width: 50%;
  padding-inline: 1rem;
  font-size: clamp(0.625rem, 0.41rem + 1.08vw, 0.813rem);
  /* 10 - 13 */
}
@media screen and (min-width: 600px) {
  .floating-menu__item {
    width: 11.25rem;
    padding-inline: 1.25rem;
  }
}
.floating-menu__item .icon {
  padding-left: 1rem;
  margin-left: 1rem;
}
.floating-menu__item .text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .floating-menu__item .text {
    overflow: hidden;
    color: transparent;
    -webkit-transition: text-shadow 0.3s;
    transition: text-shadow 0.3s;
  }
}
.floating-menu__item.contact-btn {
  background-color: var(--color-primary);
  color: #fff;
}
.floating-menu__item.contact-btn .icon {
  border-left: 1px solid #fff;
}
.floating-menu__item.contact-btn .text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .floating-menu__item.contact-btn .text {
    text-shadow: 0 -1.5em 0 var(--color-white), 0 0 0 var(--color-white);
  }
}
.floating-menu__item.instagram-btn {
  background-color: var(--color-white);
  font-family: var(--font-en);
  color: var(--color-primary);
}
.floating-menu__item.instagram-btn .icon {
  border-left: 1px solid var(--color-primary);
}
@media screen and (min-width: 768px) {
  .floating-menu__item.instagram-btn .text {
    text-shadow: 0 -1.5em 0 var(--color-primary), 0 0 0 var(--color-primary);
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .floating-menu__item:hover.contact-btn .text {
    text-shadow: 0 0 0 var(--color-white), 0 1.5em 0 var(--color-white);
  }
}
@media (hover: hover) and (pointer: fine) {
  .floating-menu__item:hover.instagram-btn .text {
    text-shadow: 0 0 0 var(--color-primary), 0 1.5em 0 var(--color-primary);
  }
}

/*=======================
  footer
=======================*/
.l-footer {
  background-color: var(--color-bg-secondary);
  color: var(--color-white);
}
.l-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "left" "gallery" "copy";
  gap: 0 3.2%;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    grid-template-columns: 1fr 1.5fr;
    grid-template-rows: auto 3.75rem;
    grid-template-areas: "left gallery" "copy gallery";
    gap: 0 1.5%;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.l-footer__left {
  grid-area: left;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.l-footer__body {
  padding-block: 5rem 4rem;
}
@media screen and (min-width: 768px) {
  .l-footer__body {
    padding-block: 2.5rem;
  }
}
.l-footer__lead {
  width: 100%;
  max-width: 19.25rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .l-footer__lead {
    max-width: clamp(14.375rem, 8.804rem + 11.61vw, 19.25rem);
    /* 230 - 308 */
  }
}
.l-footer__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__title .instagram-icon {
  width: 3rem;
  aspect-ratio: 1/1;
}
.l-footer__title .title {
  margin-top: 1rem;
  font-size: clamp(1.25rem, 0.964rem + 0.6vw, 1.5rem);
  /* 20 - 24 */
  font-weight: 600;
}
.l-footer__title .account {
  margin-top: 0.625rem;
  font-family: var(--font-en);
  font-size: clamp(0.813rem, 0.598rem + 0.45vw, 1rem);
  /* 13 - 16 */
}
.l-footer__gallery {
  grid-area: gallery;
  align-self: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0.25rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.l-footer__gallery img {
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-footer__gallery {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
.l-footer__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.5rem;
}
.l-footer__copyright {
  grid-area: copy;
  padding-block: 1.5rem;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    font-size: clamp(0.625rem, 0.482rem + 0.3vw, 0.75rem);
    /* 10 - 12 */
  }
}

/*=======================
  main
=======================*/
.l-main {
  display: block;
  position: relative;
  overflow-x: clip;
}

/*=======================
  container
=======================*/
.l-container {
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .l-container {
    padding-inline: 5.5%;
    max-width: var(--inner-max-width-md);
  }
}

.l-container--sm {
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .l-container--sm {
    padding-inline: 5.5%;
    max-width: var(--inner-max-width-sm);
  }
}

.l-container--md {
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .l-container--md {
    padding-inline: 5.5%;
  }
}
@media screen and (min-width: 1024px) {
  .l-container--md {
    max-width: var(--inner-max-width-lg);
  }
}

.l-container--lg {
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .l-container--lg {
    padding-inline: 5.5%;
  }
}
@media screen and (min-width: 1024px) {
  .l-container--lg {
    max-width: var(--inner-max-width-xl);
  }
}

/* -----------------------------------------------------------------
 Component
----------------------------------------------------------------- */
/*=======================
  btn
=======================*/
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--color-white);
  padding: 0.625rem 1.25rem 0.625rem 1.5rem;
  width: 100%;
  max-width: 15rem;
  height: 3.5rem;
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn .text {
    overflow: hidden;
    color: transparent;
    -webkit-transition: text-shadow 0.3s;
    transition: text-shadow 0.3s;
    text-shadow: 0 -1.5em 0 var(--color-primary), 0 0 0 var(--color-primary);
  }
}
.c-btn .icon {
  padding-left: 1rem;
  margin-left: 1rem;
  border-left: 1px solid var(--color-primary);
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .c-btn:hover .text {
    text-shadow: 0 0 0 var(--color-primary), 0 1.5em 0 var(--color-primary);
  }
}

/*=======================
  head
=======================*/
.c-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 2rem;
  color: var(--color-text);
}
.c-title__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-right: 0.75rem;
  font-family: var(--font-en);
  font-size: clamp(0.8125rem, 0.7660714286rem + 0.1904761905vw, 0.9375rem);
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  line-height: 1;
}
.c-title__en .icon-shine {
  width: 1.5rem;
  aspect-ratio: 1/1;
}
.c-title__en--primary {
  color: var(--color-primary);
}
.c-title__en--secondary {
  color: #C1E4F4;
}
.c-title__en--white {
  color: var(--color-white);
}
.c-title__text {
  font-size: clamp(1.75rem, 1.4714285714rem + 1.1428571429vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
}
.c-title__text--primary {
  color: var(--color-primary);
}
.c-title__text--secondary {
  color: #C1E4F4;
}
.c-title__text--white {
  color: var(--color-white);
}

/* -----------------------------------------------------------------
 Utility
----------------------------------------------------------------- */
/*=======================
  fit-img
=======================*/
.u-fit-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*=======================
  スクロールアニメーション共通クラス
=======================*/
.js .js-pop-in {
  opacity: 0;
}
.js-pop-in.is-inview {
  -webkit-animation: pop-in 0.6s ease-out forwards;
          animation: pop-in 0.6s ease-out forwards;
}

.js .js-fade-in-up {
  opacity: 0;
}
.js-fade-in-up.is-inview {
  -webkit-animation: fade-in-up 0.6s ease-out forwards;
          animation: fade-in-up 0.6s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
  }
  .js-pop-in,
  .js-fade-in-up {
    opacity: 1 !important;
  }
}
/* -----------------------------------------------------------------
Project
----------------------------------------------------------------- */
.mv {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 46.25rem;
  max-height: 48.75rem;
  background-color: #9ECDEF;
  overflow-x: hidden;
}
@media screen and (min-width: 600px) {
  .mv {
    min-height: 43.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .mv {
    max-height: 64rem;
  }
}
.mv .l-container--lg {
  display: grid;
  place-content: center;
  grid-template-columns: minmax(0, 1fr);
  height: 100%;
}
.mv__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 20rem);
  grid-template-rows: auto auto auto;
  grid-template-areas: "main" "text-left" "text-right";
  gap: 1rem 3.2%;
  place-content: center;
  padding-top: 2.5rem;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    grid-template-columns: 1fr minmax(18.75rem, 34%) 1fr;
    grid-template-rows: auto;
    grid-template-areas: "text-left main text-right";
    gap: max(2rem, 3.2%);
  }
}
.mv__swiper {
  grid-area: main;
  position: relative;
  align-self: center;
  position: relative;
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .mv__swiper {
    max-width: 30rem;
  }
}
.mv__swiper::before {
  content: "";
  background-image: url("../images/mv_title.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 120%;
  max-width: 32.3125rem;
  aspect-ratio: 517/124;
  position: absolute;
  top: calc(clamp(1.5rem, 0.357rem + 2.38vw, 2.5rem) * -1);
  /* 24 - 40 */
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 20;
}
.is-opening .mv__swiper::before {
  -webkit-animation: opening-wipe 0.6s ease var(--opening-fade-duration) both;
          animation: opening-wipe 0.6s ease var(--opening-fade-duration) both;
}
.mv__swiper::after {
  content: "";
  background-image: url("../images/mv_deco.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 112.5%;
  aspect-ratio: 540/171;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 50;
}
.is-opening .mv__swiper::after {
  -webkit-animation: opening-wipe 0.6s ease var(--opening-fade-duration) both;
          animation: opening-wipe 0.6s ease var(--opening-fade-duration) both;
}
.mv__swiper .swiper-slide {
  position: relative;
  border-radius: 999px 999px 0 0;
  overflow: hidden;
}
.mv__swiper .swiper-slide .deco {
  position: absolute;
  z-index: 30;
}
.mv__swiper .swiper-slide .deco01 {
  top: 12%;
  right: 20%;
  width: 19.6%;
  aspect-ratio: 94/86;
}
.mv__swiper .swiper-slide .deco02 {
  top: 30%;
  left: 12.1%;
  width: 13.5%;
  aspect-ratio: 65/74;
}
.mv__swiper .swiper-slide .deco03 {
  bottom: 30%;
  right: 6.7%;
  width: 18.8%;
  aspect-ratio: 90/103;
}
.mv__swiper-img {
  width: 100%;
  height: 100%;
}
.mv__left, .mv__right {
  font-size: clamp(0.5rem, 0.411rem + 0.45vw, 0.625rem);
  /* 8 - 10 */
  color: var(--color-white);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .mv__left, .mv__right {
    font-size: clamp(0.5rem, 0.214rem + 0.6vw, 0.75rem);
    /* 8 - 12 */
  }
}
.mv__left .tag, .mv__right .tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.375rem 0.75rem 0.4375rem 0.875rem;
  background-color: #D0EBFF;
  border-radius: calc(infinity * 1px);
  font-size: clamp(0.688rem, 0.598rem + 0.45vw, 0.813rem);
  /* 11 - 13 */
  font-weight: 500;
  color: var(--color-primary);
  white-space: nowrap;
  z-index: 200;
}
@media screen and (min-width: 768px) {
  .mv__left .tag, .mv__right .tag {
    font-size: clamp(0.75rem, 0.536rem + 0.45vw, 0.938rem);
    /* 12 - 15 */
  }
}
.is-opening .mv__left .tag-01,
.is-opening .mv__left .tag-02,
.is-opening .mv__left .tag-03, .is-opening .mv__right .tag-01,
.is-opening .mv__right .tag-02,
.is-opening .mv__right .tag-03 {
  -webkit-animation: opening-scale-up var(--opening-tag-duration) ease-out calc(var(--opening-tag-delay) + var(--opening-tag-stagger) * var(--opening-tag-index)) both;
          animation: opening-scale-up var(--opening-tag-duration) ease-out calc(var(--opening-tag-delay) + var(--opening-tag-stagger) * var(--opening-tag-index)) both;
}
.mv__left .tag-01, .mv__right .tag-01 {
  --opening-tag-index: 2;
}
.mv__left .tag-02, .mv__right .tag-02 {
  --opening-tag-index: 0;
}
.mv__left .tag-03, .mv__right .tag-03 {
  --opening-tag-index: 1;
}
@media screen and (min-width: 768px) {
  .mv__left .tag-01, .mv__right .tag-01 {
    --opening-tag-index: 0;
  }
  .mv__left .tag-02, .mv__right .tag-02 {
    --opening-tag-index: 1;
  }
  .mv__left .tag-03, .mv__right .tag-03 {
    --opening-tag-index: 2;
  }
}
.mv__left {
  position: relative;
  grid-area: text-left;
  align-self: end;
  margin-top: -4rem;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .mv__left {
    margin-top: 0;
  }
}
.mv__left .tag {
  position: relative;
}
.mv__left .tag.tag-02 {
  margin-left: -0.625rem;
}
.mv__left .tag.tag-03 {
  margin: 0.375rem -0.625rem 0 auto;
}
@media screen and (min-width: 768px) {
  .mv__left .tag.tag-03 {
    margin: clamp(0.5rem, -0.071rem + 1.19vw, 1rem) 0 0 0;
  }
}
.mv__left .tag.tag-01 {
  margin: 0.375rem auto 0 auto;
}
@media screen and (min-width: 768px) {
  .mv__left .tag.tag-01 {
    display: none;
  }
}
.mv__left .notice {
  margin: 0.625rem 0 clamp(0rem, -1.714rem + 3.57vw, 1.5rem) 0;
  font-size: clamp(0.6875rem, 0.6410714286rem + 0.1904761905vw, 0.8125rem);
  text-align: right;
  color: var(--color-primary);
}
@media screen and (min-width: 768px) {
  .mv__left .notice {
    margin: 1rem 0 0 0;
    text-align: left;
  }
}
.mv__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.mv__right .tag {
  display: none;
}
@media screen and (min-width: 768px) {
  .mv__right .tag {
    display: block;
    position: absolute;
    top: 12%;
    left: -5.625rem;
  }
}
.mv__right .text {
  margin-top: auto;
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1.5;
}
.mv__right .text p + p {
  margin-top: 0.25rem;
}
.mv__bg {
  position: absolute;
  bottom: calc(clamp(0rem, -1.434rem + 7.17vw, 1.25rem) * -1);
  /* 0 - 20 */
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
  pointer-events: none;
  z-index: 100;
}
@media screen and (min-width: 600px) {
  .mv__bg {
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1;
  }
}
.mv__bg img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100vw;
  aspect-ratio: 1486/159;
  height: auto;
  max-width: 112.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .mv__bg img {
    width: 102vw;
    min-width: 18.75rem;
  }
}

.intro {
  padding-block: calc(10.4vw + 2.5rem) 0;
  background-color: #9ECDEF;
}
.intro__container {
  position: relative;
  background-color: var(--color-bg);
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .intro__container {
    padding-top: 0;
  }
}
.intro__container::before {
  content: "";
  background-image: url("../images/intro_head.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: 1440/150;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  z-index: 10;
}
.intro__container .color {
  color: var(--color-primary);
}
.intro__sub-title {
  width: 90%;
  max-width: 17.8125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .intro__sub-title {
    width: 34.3%;
    min-width: 17.8125rem;
    max-width: 23.125rem;
  }
}
.intro__title {
  margin-top: 3rem;
  font-size: clamp(1.5rem, 0.874rem + 3.13vw, 2.375rem);
  /* 24 - 38 */
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .intro__title {
    font-size: clamp(2.375rem, 1.946rem + 0.89vw, 2.75rem);
    /* 38 - 44 */
  }
}
.intro__title .sp-only {
  display: block;
}
@media screen and (min-width: 390px) {
  .intro__title .sp-only {
    display: none;
  }
}
.intro__main-img {
  width: 100%;
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .intro__main-img {
    max-width: 53.75rem;
    margin-top: 4rem;
  }
}
.intro__text {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .intro__text {
    margin-top: 3.5rem;
  }
}
.intro__text p + p {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .intro__text p + p {
    margin-top: 2rem;
  }
}
.intro__text .top {
  font-size: clamp(1.125rem, 1.0785714286rem + 0.1904761905vw, 1.25rem);
  text-decoration: underline;
  text-underline-offset: 0.375rem;
  text-decoration-thickness: 0.0625rem;
  line-height: 1.8;
}
.intro__text .bottom {
  font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
}

.about {
  padding-top: clamp(5rem, 4.286rem + 3.57vw, 7.5rem);
  /* 80 - 120 */
  padding-bottom: clamp(6.25rem, 5.893rem + 1.79vw, 7.5rem);
  /* 100 - 120 */
  background-color: var(--color-bg);
}
.about-profile__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 3.7%;
}
@media screen and (min-width: 768px) {
  .about-profile__inner {
    grid-template-columns: 48% 52%;
  }
}
.about-profile__left {
  -ms-flex-item-align: center;
      align-self: center;
}
.about-profile__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.625rem;
}
.about-profile__img:first-child {
  width: 55%;
  margin-bottom: 2rem;
  aspect-ratio: 297/395;
}
.about-profile__img:last-child {
  width: 43.1%;
  -ms-flex-item-align: end;
      align-self: end;
  aspect-ratio: 233/310;
}
.about-profile__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.about-profile__title .icon-shine {
  width: 1.5rem;
  color: var(--color-primary);
}
.about-profile__title .ja {
  font-size: clamp(1.25rem, 1.0642857143rem + 0.7619047619vw, 1.75rem);
  font-weight: 700;
}
.about-profile__title .en {
  display: inline-block;
  margin-top: 0.625rem;
  margin-left: 0.25rem;
  font-family: var(--font-en);
  font-size: clamp(0.8125rem, 0.7660714286rem + 0.1904761905vw, 0.9375rem);
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
}
.about-profile__desc {
  margin-top: 1.5rem;
  line-height: 2;
}
.about-profile__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.5rem;
  font-family: var(--font-en);
  font-size: clamp(0.8125rem, 0.7660714286rem + 0.1904761905vw, 0.9375rem);
}
.about-profile__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--color-text);
}
.about-profile__sns-link {
  width: 1.5rem;
  height: 1.5rem;
}
.about-career__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "lead" "tv" "other";
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .about-career__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "lead lead" "tv other";
  }
}
.about-career__head {
  grid-area: lead;
}
.about-career__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-primary);
  line-height: 1.5;
}
.about-career__title .ja {
  font-size: 1.5rem;
  font-weight: 700;
}
.about-career__title .en {
  display: inline-block;
  margin-top: 0.625rem;
  font-family: var(--font-en);
  font-size: 0.9375rem;
  color: var(--color-primary);
  text-transform: uppercase;
}
.about-career__desc {
  margin-top: 1.25rem;
  line-height: 2;
}
.about-career__box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.about-career__box .item img {
  height: 1.5rem;
  width: auto;
  aspect-ratio: 190/26;
}
.about-career__box .link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--color-text);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .about-career__box .link {
    margin-top: 0;
  }
}
.about-career__box .icon-youtube {
  display: inline-block;
  width: 1.5rem;
  height: auto;
}
.about-career__box.tv {
  grid-area: tv;
}
.about-career__box.other {
  grid-area: other;
}
.about-career__box-title {
  position: relative;
  padding-left: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.about-career__box-title::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.about-career__box-title.youtube {
  margin-top: 1.5rem;
}
.about-career__box-title.other {
  margin-top: 1.5rem;
}
.about-career__box-list {
  margin-top: 0.375rem;
}
.about-career__box-list li + li {
  margin-top: 0.25rem;
}

.works {
  padding-top: clamp(5rem, 4.643rem + 1.79vw, 6.25rem);
  /* 80 - 120 */
  padding-bottom: clamp(6.25rem, 5.893rem + 1.79vw, 7.5rem);
  /* 100 - 120 */
  background-color: var(--color-bg-secondary);
}
.works__lead {
  width: 100%;
  max-width: 22.5rem;
  margin-inline: auto;
}
.works__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, auto);
  gap: 2.5rem 7.4%;
  margin-top: 3rem;
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .works__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: clamp(2.5rem, -0.357rem + 5.95vw, 5rem) 7.4%;
    /* 40 - 80 */
    margin-left: 0;
  }
}
.works__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 27.5rem;
  margin-inline: auto;
  border: 1px solid #C1E4F4;
}
@media screen and (min-width: 768px) {
  .works__item {
    max-width: none;
  }
}
.works__item::after, .works__item::before {
  content: "";
  position: absolute;
  background-image: url("../images/works_deco.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.25rem;
  aspect-ratio: 1/1;
}
.works__item::after {
  top: -0.625rem;
  right: -0.625rem;
}
.works__item::before {
  bottom: -0.625rem;
  left: -0.625rem;
}
.works__item-number {
  position: absolute;
  top: 0;
  left: -1.5rem;
  font-family: var(--font-en);
  font-size: 0.8125rem;
  color: #C1E4F4;
  text-transform: uppercase;
  text-orientation: mixed;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.works__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0.625rem 0.625rem 1.125rem 0.625rem;
  margin: 0.5rem;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .works__item-content {
    padding: 1rem 1rem 1.5rem 1rem;
    margin: 0.625rem;
  }
}
.works__item-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  aspect-ratio: 388/269;
  min-height: auto;
  overflow: hidden;
}
.works__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works__item-body {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1rem;
  text-align: center;
}
.works__item-title {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
}
.works__item-text {
  margin-top: 0.625rem;
}

.tools {
  padding-top: clamp(5rem, 4.643rem + 1.79vw, 6.25rem);
  /* 80 - 100 */
  padding-bottom: clamp(5rem, 4.286rem + 3.57vw, 7.5rem);
  /* 80 - 120 */
  background-color: var(--color-bg-tertiary);
  color: var(--color-primary);
}
.tools__lead {
  text-align: left;
  line-height: 1.8;
}
@media screen and (min-width: 390px) {
  .tools__lead {
    text-align: center;
  }
}
.tools__list {
  display: grid;
  grid-template-columns: minmax(0, 18.75rem);
  grid-template-rows: repeat(6, 13rem);
  gap: clamp(0.625rem, 0.179rem + 1.19vw, 1.25rem);
  /* 10 - 20 */
  place-content: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 600px) {
  .tools__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 13rem);
  }
}
@media screen and (min-width: 768px) {
  .tools__list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 13rem);
  }
}
.tools__item:nth-child(1) .tools__img {
  margin-top: 1rem;
}
.tools__item:nth-child(1) .tools__img, .tools__item:nth-child(2) .tools__img, .tools__item:nth-child(3) .tools__img {
  width: 100%;
  max-width: 3.625rem;
}
.tools__item:nth-child(4) .tools__img, .tools__item:nth-child(5) .tools__img {
  width: 100%;
  max-width: 11.5625rem;
}
.tools__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 0.625rem;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  border: 1px solid var(--color-primary);
}
.tools__item-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.tools__img {
  display: grid;
  place-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.tools__title {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}
.tools__text {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0;
}
.tools__item-last {
  display: grid;
  place-items: center;
  place-content: center;
  padding: 0.625rem;
}
.tools__item-last .tools__img {
  width: 100%;
  max-width: 15.9375rem;
}

.contact {
  position: relative;
  padding-top: clamp(5rem, 4.643rem + 1.79vw, 6.25rem);
  /* 80 - 100 */
  padding-bottom: clamp(6.25rem, 5.893rem + 1.79vw, 7.5rem);
  /* 100 - 120 */
  background-color: var(--color-bg);
}
.contact__title {
  width: 100%;
  max-width: 17.5rem;
  margin-inline: auto;
}
.contact__lead {
  position: relative;
  margin-top: 1rem;
  z-index: 10;
  text-align: left;
  line-height: 1.8;
}
@media screen and (min-width: 390px) {
  .contact__lead {
    text-align: center;
  }
}
.contact__btn {
  position: relative;
}
.contact__bg {
  position: absolute;
  bottom: 1rem;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .contact__bg {
    bottom: 25%;
  }
}
.contact__bg-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: mv-bg-marquee 30s linear infinite;
          animation: mv-bg-marquee 30s linear infinite;
  z-index: 10;
}
.contact__bg-track img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: auto;
  height: 7.71vw;
  min-height: 4.375rem;
  margin-left: 1%;
  max-width: none;
}
@media screen and (min-width: 600px) {
  .contact__bg-track img {
    min-height: 6.125rem;
  }
}
.contact__btn-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 2.5rem);
  aspect-ratio: 10/5;
  max-width: 37.5rem;
  margin-inline: auto;
  margin-top: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
  /* 24 - 40 */
  padding: 1rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  -webkit-box-shadow: 6px 6px 0 rgb(78, 146, 201);
          box-shadow: 6px 6px 0 rgb(78, 146, 201);
  color: var(--color-primary);
  z-index: 100;
  -webkit-transition: all var(--transition-default);
  transition: all var(--transition-default);
}
@media screen and (min-width: 390px) {
  .contact__btn-link {
    aspect-ratio: 10/3;
  }
}
.contact__btn-link .text {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(0.938rem, 0.714rem + 1.12vw, 1.25rem);
  /* 15 - 20 */
  letter-spacing: 0;
}
@media screen and (min-width: 390px) {
  .contact__btn-link .text {
    margin-right: 5.3%;
    padding-right: 5.3%;
    border-right: 1px solid var(--color-primary);
  }
}
@media screen and (min-width: 768px) {
  .contact__btn-link .text {
    font-size: 1.25rem;
    text-shadow: 0 -1.5em 0 var(--color-primary), 0 0 0 var(--color-primary);
    overflow: hidden;
    font-weight: 400;
    color: transparent;
    -webkit-transition: text-shadow 0.3s;
    transition: text-shadow 0.3s;
  }
}
.contact__btn-link .icon {
  display: none;
}
@media screen and (min-width: 390px) {
  .contact__btn-link .icon {
    display: inline-block;
    width: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
    /* 24 - 40 */
    aspect-ratio: 1/1;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .contact__btn-link:hover .text {
    text-shadow: 0 0 0 var(--color-primary), 0 1.5em 0 var(--color-primary);
  }
}