@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

input,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

html {
  font-size: 16px;
}

body {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  background-color: #F8F8F8;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: #000000;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.06em;
  opacity: 0;
}

body.disable-scroll {
  overflow: hidden;
}

:where(img, svg, img[src$=".svg"]) {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  color: #000000;
}

a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.4;
    cursor: pointer;
  }
}
*:focus {
  outline: none;
}

strong {
  font-weight: 900;
}

b {
  font-weight: 700;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
main {
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 370px;
  height: 54px;
  border-radius: 40px;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  padding: 0 24px 0 23px;
  transition: opacity 0.3s, background-color 0.3s;
  border: 1px solid #000000;
}

.button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 28px;
  height: 20px;
  background-image: url(../img/00_common/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

@media (hover: hover) {
  .button:hover {
    opacity: 1;
    background-color: transparent;
    color: #000000;
  }
  .button:hover:after {
    filter: none;
  }
}
.button--more {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
}

.button--more:after {
  background-image: url(../img/00_common/cross.svg);
  width: 15px;
  height: 15px;
  filter: none;
}

@media (hover: hover) {
  .button--more:hover {
    color: #FFFFFF;
    background-color: #000000;
  }
  .button--more:hover:after {
    filter: brightness(0) invert(1);
  }
}
.js-more-item.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-more-btn.fade-out {
  animation: fadeOut 1s ease-in-out;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.footer {
  position: relative;
  padding: 40px 0 40px;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .footer {
    padding: 60px 0 60px;
  }
}

.footer__inner {
  position: relative;
  z-index: 1;
}

.footer__logo {
  width: 100%;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
@media screen and (min-width: 960px) {
  .footer__bottom {
    margin-top: min(4.6875vw, 60px);
  }
}

.footer__privacy {
  display: inline-block;
  position: relative;
  font-size: 10px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .footer__privacy {
    font-size: min(0.9375vw, 12px);
  }
}

.footer__copyright {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  letter-spacing: 0em;
}
@media screen and (min-width: 960px) {
  .footer__copyright {
    font-size: min(0.9375vw, 12px);
  }
}

.header {
  width: 100%;
}
@media screen and (max-width: 959px) {
  .header {
    height: 50px;
  }
}
@media screen and (min-width: 960px) {
  .header {
    grid-area: header;
    height: min(8.203125vw, 105px);
  }
}

.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header__container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 8px 0 0 16px;
}
@media screen and (min-width: 960px) {
  .header__container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: min(1.5625vw, 20px) min(4.6875vw, 60px) 0 0;
  }
}

.header__logo {
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 99;
  width: 256px;
}
@media screen and (min-width: 960px) {
  .header__logo {
    top: min(7.96875vw, 102px);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 120px);
    max-width: 1560px;
    pointer-events: none;
  }
}

.header__hamburger {
  display: block;
  position: absolute;
  z-index: 99;
  top: 16px;
  right: 15px;
}
@media screen and (min-width: 960px) {
  .header__hamburger {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .header__nav {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s, visibility 0.7s;
  }
}
.header__nav-items {
  display: flex;
  gap: 18px 0;
}
@media screen and (min-width: 960px) {
  .header__nav-items {
    display: flex;
    align-items: center;
    gap: min(1.015625vw, 13px);
  }
}

.header__nav-item {
  position: relative;
}

.header__nav-item.is-current:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -20px;
  z-index: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #000000;
  border-radius: 50%;
}
@media screen and (min-width: 960px) {
  .header__nav-item.is-current:after {
    left: max(-2.1875vw, -28px);
    width: min(1.25vw, 16px);
    height: min(1.25vw, 16px);
  }
}

.header__nav-link {
  display: block;
}
@media screen and (min-width: 960px) {
  .header__nav-link {
    padding: 0px min(0.78125vw, 10px);
  }
}

.header__nav-link span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1.8461538462;
  letter-spacing: 0em;
  transition: color 0.5s;
}
@media screen and (min-width: 960px) {
  .header__nav-link span {
    font-size: min(1.09375vw, 14px);
    font-family: "Noto Serif JP", serif;
    line-height: 1.8;
  }
}

.header__nav-link--contact {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  border: 1px solid #000000;
}
@media screen and (min-width: 960px) {
  .header__nav-link--contact {
    width: min(12.5vw, 160px);
    background-color: #000000;
    border-radius: 30px;
    padding: min(0.625vw, 8px) min(1.5625vw, 20px);
    margin-left: min(0.390625vw, 5px);
  }
  .header__nav-link--contact span {
    color: #FFFFFF;
  }
}

.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background-color: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s, visibility 0.7s;
}

@media (hover: hover) {
  .header__nav-link--contact:hover {
    opacity: 1;
    background-color: #FFFFFF;
  }
  .header__nav-link--contact:hover span {
    color: #000000;
  }
}
@media screen and (max-width: 959px) {
  .header.is-open {
    background-color: transparent;
  }
}
@media screen and (max-width: 959px) {
  .header.is-open .header__nav {
    display: none;
  }
}

.header__drawer {
  position: relative;
  z-index: 11;
}

.inner {
  width: 100%;
  height: 100%;
  max-width: 600px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (min-width: 960px) {
  .inner {
    max-width: 1560px;
    padding: 0 60px;
  }
}

.section {
  position: relative;
  padding: 80px 0;
}
@media screen and (min-width: 960px) {
  .section {
    padding: 160px 0 0;
  }
}

.case-card {
  display: grid;
  align-items: flex-start;
  gap: 0;
  max-width: 276px;
}
@media screen and (min-width: 960px) {
  .case-card {
    grid-template-columns: min(44.53125vw, 570px) 1fr;
    max-width: min(75.78125vw, 970px);
    gap: min(1.5625vw, 20px);
  }
}

.case-card__image {
  position: relative;
}

.case-card__image-inner {
  overflow: hidden;
}

.case-card__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 570/321;
  transition: transform 0.3s ease;
}

.case-card__number {
  display: inline-block;
  position: absolute;
  top: -21px;
  left: -12px;
  z-index: 10;
  writing-mode: vertical-rl;
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0.00096em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 960px) {
  .case-card__number {
    top: max(-1.40625vw, -18px);
    left: max(-2.1875vw, -28px);
    font-size: min(3.75vw, 48px);
  }
}

.case-card__content {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 959px) {
  .case-card__content {
    min-height: 350px;
    padding: 35px 0px 0 0;
  }
}
@media screen and (min-width: 960px) {
  .case-card__content {
    padding: min(2.734375vw, 35px) min(0.703125vw, 9px) 0 0;
  }
}

.case-card__category {
  position: absolute;
  top: 13px;
  right: 0;
  display: block;
  border: 1px solid #000000;
  font-size: 10px;
  font-weight: 500;
  color: #000000;
  text-align: right;
  line-height: 1.4;
  letter-spacing: 0.0002em;
  white-space: nowrap;
  padding: 0 4px;
}
@media screen and (min-width: 960px) {
  .case-card__category {
    top: 0;
    font-size: min(0.78125vw, 10px);
    margin-right: min(0.703125vw, 9px);
    padding: 0 min(0.3125vw, 4px);
  }
}

.case-card__title {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0em;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .case-card__title {
    font-size: 20px;
    letter-spacing: 0;
  }
}

.case-card__description {
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0em;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  margin-top: 17px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .case-card__description {
    font-size: min(1.09375vw, 14px);
    margin-top: min(2.03125vw, 26px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }
}

.case-card__more {
  text-align: right;
  margin-top: auto;
}

.case-card__more-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1;
  letter-spacing: 0em;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  border-bottom: 1px solid #000000;
  gap: 62px;
  padding: 14px 0;
}
@media screen and (min-width: 960px) {
  .case-card__more-link {
    font-size: min(1.09375vw, 14px);
    gap: min(6.328125vw, 81px);
    padding: min(1.09375vw, 14px) 0;
  }
}

.case-card__more-link span {
  display: inline-block;
  width: 25px;
  height: 15px;
  background-image: url(../img/01_top/works-more.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 960px) {
  .case-card__more-link span {
    width: min(1.953125vw, 25px);
    height: min(1.171875vw, 15px);
  }
}

@media (hover: hover) {
  .case-card:hover {
    opacity: 1;
  }
  .case-card:hover .case-card__image img {
    transform: scale(1.1);
  }
}
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.7s, visibility 0.7s;
}
@media screen and (max-width: 959px) {
  .drawer {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
  }
}
.drawer.is-open {
  visibility: visible;
  opacity: 1;
}

.drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.96);
}

@media screen and (max-width: 959px) {
  .drawer__inner {
    height: auto;
    padding: 0 16px;
    padding-bottom: 90px;
    margin: 0 auto;
    overflow-y: auto;
    max-width: 388px;
  }
}
.drawer__nav {
  display: none;
}
@media screen and (min-width: 960px) {
  .drawer__nav {
    display: block;
    padding-right: min(3.90625vw, 50px);
  }
}

.drawer__nav-sp {
  display: block;
  margin-top: 22vh;
}
@media screen and (min-width: 960px) {
  .drawer__nav-sp {
    display: none;
  }
}

.drawer__nav-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 960px) {
  .drawer__nav-items {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (max-width: 959px) {
  .drawer__nav-item {
    background: none;
    border-bottom: none;
  }
}

.drawer__nav-item--hidden-arrow {
  background: none;
}

.drawer__nav-item--ex-link {
  background-image: url(../img/00_common/drawer-ex-link.svg);
}

.drawer__nav-link {
  position: relative;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1;
  letter-spacing: 0;
  transition: color 0.2s;
}
@media screen and (max-width: 959px) {
  .drawer__nav-link {
    padding: 0;
  }
}
.drawer__nav-link.--reserve {
  background-image: url(../img/00_common/icon-reserve.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 13px 16px;
  padding-left: 18px;
}

.drawer__nav-item-cross {
  position: absolute;
  top: 19px;
  right: 0;
  width: 15px;
  height: 15px;
  transition: transform 0.5s;
}

.drawer__nav-item-cross:before,
.drawer__nav-item-cross:after {
  content: "";
  position: absolute;
  background-color: #000000;
  transition: opacity 0.5s;
}

.drawer__nav-item-cross:before {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
}

.drawer__nav-item-cross:after {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
}

.drawer__nav-item.is-open .drawer__nav-item-cross {
  transform: rotate(90deg);
}
.drawer__nav-item.is-open .drawer__nav-item-cross:before {
  opacity: 0;
}

.drawer__nav-service {
  margin-top: 10px;
}
@media screen and (min-width: 960px) {
  .drawer__nav-service {
    margin-top: min(4.6875vw, 60px);
  }
}

@media screen and (min-width: 960px) {
  .drawer__nav-service-container {
    display: flex;
    margin-top: min(3.28125vw, 42px);
  }
}

@media screen and (min-width: 960px) {
  .drawer__nav-service-content {
    min-width: min(18.28125vw, 234px);
  }
}

@media screen and (min-width: 960px) {
  .drawer__nav-service-content + .drawer__nav-service-content {
    margin-left: min(4.6875vw, 60px);
  }
}

.drawer__nav-service-title {
  display: block;
  position: relative;
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  margin: 12px 0;
}
@media screen and (min-width: 960px) {
  .drawer__nav-service-title {
    font-size: min(1.09375vw, 14px);
    line-height: 1.5;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: min(1.640625vw, 21px);
    margin: 0;
  }
}

@media screen and (max-width: 959px) {
  .drawer__nav-service-title2 {
    margin-top: 24px;
  }
}
@media screen and (min-width: 960px) {
  .drawer__nav-service-title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: min(3.90625vw, 50px);
    height: 100%;
    border-bottom: 1px solid #A9D3E3;
  }
}
@media screen and (max-width: 959px) {
  .drawer__nav-service-items {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0 23px;
    height: 0;
    overflow: hidden;
  }
}
.drawer__nav-service-items .drawer__nav-item:first-child {
  margin-top: 15px;
  margin-right: 1000px;
}

.drawer__nav-service-items .drawer__nav-item:last-child {
  margin-bottom: 5px;
}

.drawer__nav-service-items .drawer__nav-item {
  border: none;
  padding-right: 23px;
}

.drawer__nav-service-items .drawer__nav-link {
  font-size: 14px;
  color: #000000;
  padding: 8px 0;
  white-space: nowrap;
}

.drawer__pickup {
  display: none;
}
@media screen and (min-width: 960px) {
  .drawer__pickup {
    display: block;
    border-left: 1px solid #FFFFFF;
    padding-left: min(3.90625vw, 50px);
  }
}

.drawer__pickup-title {
  display: block;
  font-size: min(1.25vw, 16px);
  font-weight: 500;
  color: #FFFFFF;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: min(1.71875vw, 22px);
}

.drawer__pickup-banner {
  display: block;
}

.drawer__pickup-banner + .drawer__pickup-banner {
  margin-top: min(2.5vw, 32px);
}

.drawer__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (min-width: 960px) {
  .drawer__cta {
    justify-content: flex-start;
    margin-top: min(3.125vw, 40px);
  }
}

.drawer__cta a + a {
  margin-left: 20px;
}
@media screen and (min-width: 960px) {
  .drawer__cta a + a {
    margin-left: min(1.5625vw, 20px);
  }
}

.drawer__cta-button {
  width: 332px;
  height: 65px;
  font-size: min(4.2666666667vw, 16px);
  background-image: url(../img/00_common/icon-mail.png), url(../img/00_common/circle-arrow.svg);
  background-position: left min(13.3333333333vw, 50px) center, right 15px center;
  background-size: 23px 23px, 48px 48px;
}

.drawer__hours {
  margin-top: 34px;
}

.drawer__contact {
  margin-top: 8vh;
}
@media screen and (min-width: 960px) {
  .drawer__contact {
    display: none;
  }
}

@media (hover: hover) {
  .drawer__nav-link:hover {
    opacity: 1;
    color: #A9D3E3;
  }
  .drawer__cta-button:hover {
    background-position: left min(13.3333333333vw, 50px) center, right 10px center;
  }
}
.hamburger {
  width: 50px;
  height: 33px;
  padding: 5px;
}
.hamburger__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
  height: 23px;
  pointer-events: none;
}
.hamburger__line {
  position: relative;
  width: 100%;
  pointer-events: none;
  height: 11px;
}

.hamburger__line span {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #000000;
}
@media screen and (min-width: 960px) {
  .hamburger__line span {
    width: 24px;
    height: 2px;
  }
}

.hamburger__line span:nth-of-type(1) {
  top: 0px;
  left: 0;
}

.hamburger__line span:nth-of-type(2) {
  top: 10px;
  left: 0;
  height: 3px;
}
.hamburger__line span:nth-of-type(3) {
  top: 22px;
  left: 0;
}
.hamburger__text {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  text-transform: uppercase;
  margin-top: 6px;
}
.hamburger__text span {
  display: inline-block;
}

.modal-news {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-template-areas: "thumbnail thumbnail" "date category" "title title";
  justify-items: flex-start;
  align-items: center;
  gap: 0 12px;
}
@media screen and (max-width: 959px) {
  .modal-news {
    padding-right: 56px;
  }
}
@media screen and (min-width: 960px) {
  .modal-news {
    width: 374px;
    margin-left: 40px;
  }
}

.modal-news__date {
  grid-area: date;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0em;
}
@media screen and (min-width: 960px) {
  .modal-news__date {
    font-size: min(1.09375vw, 14px);
    margin-top: 0;
  }
}

.modal-news__category {
  grid-area: category;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 4px 3px 4px;
  border: 1px solid #000000;
  font-size: 10px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.01em;
  font-family: "Noto Serif JP", serif;
}

.modal-news__title {
  grid-area: title;
  font-size: 24px;
  font-weight: 300;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0em;
  margin-top: 8px;
}
@media screen and (min-width: 960px) {
  .modal-news__title {
    font-size: min(1.875vw, 24px);
    margin-top: 8px;
  }
}

.modal-news__thumbnail {
  grid-area: thumbnail;
  display: block;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .modal-news__thumbnail {
    margin-bottom: 38px;
  }
}
.modal-news__thumbnail img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-talent {
  background-color: #f8f8f8;
  max-width: 1280px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
@media screen and (max-width: 959px) {
  .modal-talent {
    max-width: 375px;
    max-height: 800px;
  }
}

.modal-talent__inner {
  padding: 120px 20px 40px;
}
@media screen and (min-width: 960px) {
  .modal-talent__inner {
    padding: 120px 51px 40px;
  }
}

.modal-talent__content {
  display: block;
}

.modal-talent__item {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .modal-talent__item {
    max-width: 500px;
  }
}

.modal-talent__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 333px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .modal-talent__image-wrapper {
    max-width: 233px;
  }
}

.modal-talent__image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.modal-talent__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-talent__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.modal-talent__frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-talent__bleed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}
.modal-talent__bleed img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-talent__name-vertical {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  z-index: 2;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: #000;
  white-space: nowrap;
}
@media screen and (max-width: 959px) {
  .modal-talent__name-vertical {
    right: -49px;
    font-size: 32px;
  }
}

.modal-talent__profile {
  margin-top: 40px;
}
@media screen and (min-width: 960px) {
  .modal-talent__profile {
    margin-top: 60px;
  }
}

.modal-talent__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.09em;
  color: #000;
  margin-top: 0;
}
@media screen and (max-width: 959px) {
  .modal-talent__title {
    font-size: 24px;
  }
}

.modal-talent__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .modal-talent__tags {
    margin-top: 20px;
  }
}

.modal-talent__tag {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.8;
  color: #000;
}

.modal-talent__line {
  width: 100%;
  height: 1px;
  background-color: #000;
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .modal-talent__line {
    margin-top: 20px;
  }
}

.modal-talent__sns {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .modal-talent__sns {
    margin-top: 20px;
  }
}

.modal-talent__sns-link {
  display: block;
  width: 20px;
  height: 20px;
  transition: opacity 0.3s;
}
.modal-talent__sns-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (hover: hover) {
  .modal-talent__sns-link:hover {
    opacity: 0.7;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal.visible {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  width: 100%;
  height: 100vh;
}

.modal__inner {
  width: 100%;
  height: 100%;
  max-width: 600px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (min-width: 960px) {
  .modal__inner {
    max-width: 1163px;
    padding: 0 170px 0 60px;
  }
}

.modal__container {
  display: grid;
  align-items: flex-start;
  position: relative;
  overflow-y: auto;
}
@media screen and (max-width: 959px) {
  .modal__container {
    max-height: calc(100vh - 111px);
    padding-top: 20px;
    padding-bottom: 50px;
    margin-top: 86px;
  }
}
@media screen and (min-width: 960px) {
  .modal__container {
    grid-template-columns: auto min(32.65625vw, 418px);
    margin-top: 120px;
    overflow-y: visible;
  }
}

.modal__cross {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  background-image: url(../img/00_common/modal-close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  transition: opacity 0.5s;
}
@media screen and (min-width: 960px) {
  .modal__cross {
    top: 60px;
    right: 60px;
  }
}

@media screen and (max-width: 959px) {
  .modal__description {
    margin-top: 18px;
    padding-right: 60px;
  }
}
@media screen and (min-width: 960px) {
  .modal__description {
    margin-left: 20px;
    max-height: calc(100vh - 240px);
    padding-top: 0;
    padding-right: 30px;
    overflow-y: auto;
  }
}

.modal__description p {
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0em;
  margin-top: 0;
}
@media screen and (min-width: 960px) {
  .modal__description p {
    font-size: min(1.09375vw, 14px);
  }
}

.modal__container::-webkit-scrollbar,
.modal__description::-webkit-scrollbar {
  width: 3px;
}

.modal__container::-webkit-scrollbar-track,
.modal__description::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}

.modal__container::-webkit-scrollbar-thumb,
.modal__description::-webkit-scrollbar-thumb {
  background-color: #000;
}

.modal__container::-webkit-scrollbar-thumb:hover,
.modal__description::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .modal__container .talent-card {
    margin-top: -54px;
    margin-left: -5px;
  }
}
@media screen and (min-width: 960px) {
  .modal__container .talent-card {
    margin-top: -80px;
  }
}

.news-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-template-areas: "thumbnail thumbnail" "date category" "title title";
  justify-items: flex-start;
  align-items: center;
  gap: 12px 12px;
  padding: 15px 0;
  border-top: 1px solid black;
  color: inherit;
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 960px) {
  .news-item {
    grid-template-areas: "date category" "title title";
    gap: 12px 12px;
    padding: 23px 0;
  }
}

.news-item__date {
  grid-area: date;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0em;
}
@media screen and (min-width: 960px) {
  .news-item__date {
    font-size: min(1.09375vw, 14px);
    margin-top: 0;
  }
}

.news-item__category {
  grid-area: category;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 4px 3px 4px;
  border: 1px solid #000000;
  font-size: 10px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.01em;
  font-family: "Noto Serif JP", serif;
}

.news-item__title {
  grid-area: title;
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.3s ease;
}
@media screen and (max-width: 959px) {
  .news-item__title {
    margin-top: -5px;
  }
}
@media screen and (min-width: 960px) {
  .news-item__title {
    font-size: min(1.09375vw, 14px);
    margin-right: min(23.4375vw, 300px);
  }
}

.news-item__thumbnail {
  display: block;
  position: absolute;
  top: -40px;
  right: -60px;
  width: min(27.734375vw, 355px);
  height: min(15.234375vw, 195px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background-color: #FFFFFF;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) translateX(-30px);
  transform-origin: left center;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 959px) {
  .news-item__thumbnail {
    display: block;
    grid-area: thumbnail;
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

.news-item__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (hover: hover) {
  .news-item:hover {
    opacity: 1;
  }
  .news-item:hover .news-item__title {
    text-decoration-color: #000000;
  }
  .news-item:hover .news-item__thumbnail {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateX(0);
  }
}
.news-archive .news-item {
  display: grid;
  position: relative;
  border-bottom: 1px solid #ce9a83;
}
@media screen and (max-width: 959px) {
  .news-archive .news-item {
    height: 87px;
    padding-bottom: 13px;
    padding-right: 35px;
    padding-top: 22px;
  }
}
@media screen and (min-width: 960px) {
  .news-archive .news-item {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0 min(1.640625vw, 21px);
    height: 60px;
    padding-right: min(2.734375vw, 35px);
  }
}

.news-archive .news-item:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 58%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  width: 14px;
  height: 14px;
  background-image: url(../img/00_common/icon-arrow-right.svg);
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  .news-archive .news-item:before {
    top: 50%;
    width: min(1.09375vw, 14px);
    height: min(1.09375vw, 14px);
  }
}

.news-archive .news-item__date {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 960px) {
  .news-archive .news-item__date {
    font-size: min(1.171875vw, 15px);
  }
}

.news-archive .news-item__heading {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  text-align: left;
}
@media screen and (max-width: 959px) {
  .news-archive .news-item__heading {
    line-height: 1.5;
    letter-spacing: 0.06em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 13px;
  }
}
@media screen and (min-width: 960px) {
  .news-archive .news-item__heading {
    font-size: min(1.171875vw, 15px);
    line-height: 1.1;
    letter-spacing: 0.06em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
}

@media (hover: hover) {
  .news-archive .news-item:hover:before {
    transform: translate(5px, -50%);
  }
}
.pagination {
  display: inline-flex;
  align-items: center;
}

.pagination__prev,
.pagination__next {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  width: 50px;
  height: 50px;
  background-image: url(../img/00_common/btn-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.pagination__prev:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../img/00_common/arrow-left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s;
}

.pagination__next:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../img/00_common/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s;
}

.pagination__page-number {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1;
  letter-spacing: 0.4em;
  margin: 0 40px 0 50px;
}

.pagination__prev.disabled,
.pagination__next.disabled {
  pointer-events: none;
  opacity: 0.5;
}

@media (hover: hover) {
  .pagination__prev:hover:before {
    transform: translateX(-5px);
  }
  .pagination__next:hover:before {
    transform: translateX(5px);
  }
}
.slider-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 62px;
}
@media screen and (min-width: 960px) {
  .slider-navigation {
    gap: 30px;
    margin-top: 56px;
  }
}

.slider-navigation__buttons {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-right: 20px;
}
@media screen and (min-width: 960px) {
  .slider-navigation__buttons {
    margin-right: 15px;
  }
}

.slider-navigation__prev,
.slider-navigation__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 16px;
  cursor: pointer;
}

.slider-navigation__prev img,
.slider-navigation__next img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .slider-navigation__prev:hover img {
    transform: translateX(-5px);
  }
  .slider-navigation__next:hover img {
    transform: translateX(5px);
  }
}
.slider-navigation__pagination {
  display: flex;
  gap: 8px;
  width: auto !important;
}
@media screen and (min-width: 960px) {
  .slider-navigation__pagination {
    gap: 16px;
  }
}

.slider-navigation__pagination .swiper-pagination-bullet {
  width: 16px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0;
  opacity: 1;
  margin: 0 !important;
}
@media screen and (min-width: 960px) {
  .slider-navigation__pagination .swiper-pagination-bullet {
    width: 24px;
  }
}

.slider-navigation__pagination .swiper-pagination-bullet-active {
  position: relative;
  width: 40px;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .slider-navigation__pagination .swiper-pagination-bullet-active {
    width: 120px;
  }
}

.slider-navigation__pagination .swiper-pagination-bullet-active:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #000000;
  z-index: 1;
  animation: progressBar 4s linear 0s infinite;
}

.slider-navigation__pagination .swiper-pagination-bullet-active.first-slide:after {
  animation-duration: 3s;
}

@keyframes progressBar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.talent-card {
  width: 321px;
  min-height: 434px;
  padding-top: 60px;
}
@media screen and (min-width: 960px) {
  .talent-card {
    width: 459px;
    min-height: 602px;
    padding-top: 100px;
  }
}

.talent-card__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.talent-card__image {
  position: relative;
  z-index: 0;
  aspect-ratio: 1;
  width: 240px;
}
@media screen and (min-width: 960px) {
  .talent-card__image {
    width: 344px;
  }
}

.talent-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/01_top/fv-talent-mask.png);
          mask-image: url(../img/01_top/fv-talent-mask.png);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.talent-card__frame {
  position: absolute;
  top: 4px;
  left: 3px;
  width: 232px;
  height: 232px;
  background-image: url(../img/01_top/fv-talent-frame.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
}
@media screen and (min-width: 960px) {
  .talent-card__frame {
    top: 6px;
    left: 5px;
    width: 333px;
    height: 333px;
  }
}

.talent-card__bleed {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  top: -22px;
  right: -84px;
  width: 223px;
  height: 223px;
}
@media screen and (min-width: 960px) {
  .talent-card__bleed {
    top: -32px;
    right: -120px;
    width: 320px;
    height: 320px;
  }
}

.talent-card__bleed img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.talent-card__name-vertical {
  position: absolute;
  top: 18px;
  right: 37px;
  z-index: 10;
  writing-mode: vertical-rl;
  font-size: 32px;
  font-weight: 500;
  color: #000000;
  text-align: left;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  white-space: pre-line;
}
@media screen and (min-width: 960px) {
  .talent-card__name-vertical {
    top: 80px;
    right: 48px;
    line-height: 1.2;
    letter-spacing: 0.00192em;
  }
}

.talent-card__profile {
  position: relative;
  z-index: 1;
  padding: 0px 30px 0 8px;
  margin-top: -30px;
}
@media screen and (min-width: 960px) {
  .talent-card__profile {
    padding: 0px 20px 0 41px;
    margin-top: -38px;
  }
}

.talent-card__title {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  text-align: left;
  line-height: 2;
  letter-spacing: 0.00144em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
}
@media screen and (min-width: 960px) {
  .talent-card__title {
    font-size: 24px;
    margin-bottom: 4px;
  }
}

.talent-card__description {
  font-size: 12px;
  font-weight: 300;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0em;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  padding-bottom: 17px;
}
@media screen and (min-width: 960px) {
  .talent-card__description {
    font-size: 12px;
    padding-bottom: 17px;
  }
}

.talent-card__description span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.talent-card__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000000;
}

.talent-card__tags {
  display: flex;
  flex-wrap: wrap;
  padding-top: 15px;
  gap: 0 15px;
}
@media screen and (min-width: 960px) {
  .talent-card__tags {
    padding-top: 15px;
  }
}

.talent-card__tag {
  font-size: 12px;
  font-weight: 300;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0em;
  font-family: "Noto Sans JP", system-ui, sans-serif;
}

.talent-card__sns {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 15px;
}
@media screen and (min-width: 960px) {
  .talent-card__sns {
    padding-top: 15px;
  }
}

.talent-card__sns-link {
  display: block;
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease;
}

.talent-card__sns-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (hover: hover) {
  .talent-card__sns-link:hover {
    opacity: 0.7;
  }
}
.top-company {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .top-company {
    padding: 100px 0 0;
  }
}

.top-company__inner {
  position: relative;
}

.top-company__bg {
  position: absolute;
  top: -143px;
  left: -450px;
  width: 786px;
  height: 786px;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 960px) {
  .top-company__bg {
    top: max(-12.03125vw, -154px);
    left: max(-18.75vw, -240px);
    width: min(61.40625vw, 786px);
    height: min(61.40625vw, 786px);
  }
}

.top-company__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.top-company__heading {
  position: relative;
  z-index: 1;
  font-size: 48px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 960px) {
  .top-company__heading {
    font-size: min(6.09375vw, 78px);
    letter-spacing: 0.96px;
  }
}

.top-company__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  gap: 0px;
  margin-top: 45px;
}
@media screen and (min-width: 960px) {
  .top-company__content {
    grid-template-columns: repeat(2, 1fr);
    gap: min(4.375vw, 56px);
    margin-top: min(7.421875vw, 95px);
  }
}

.top-company__items {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid black;
  border-top: 1px solid black;
}

@media screen and (max-width: 959px) {
  .top-company__items:last-child {
    border-top: none;
  }
}

.top-company__item {
  display: grid;
  gap: 9px;
  padding: 16px 0;
  border-bottom: 1px solid #000000;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .top-company__item {
    gap: min(1.25vw, 16px);
    padding: min(1.875vw, 24px) 0;
    grid-template-columns: min(9.375vw, 120px) 1fr;
  }
}

.top-company__item--last {
  border-bottom: none;
}

.top-company__term {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 960px) {
  .top-company__term {
    font-size: min(1.09375vw, 14px);
  }
}

.top-company__description {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0em;
  font-family: "Noto Sans JP", system-ui, sans-serif;
}
@media screen and (min-width: 960px) {
  .top-company__description {
    font-size: min(1.09375vw, 14px);
  }
}

.top-company__description-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-company__description-list-item {
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0em;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 960px) {
  .top-company__description-list-item {
    font-size: min(1.09375vw, 14px);
  }
}

.top-contact {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .top-contact {
    padding: 243px 0 146px;
  }
}

.top-contact__inner {
  position: relative;
}

.top-contact__bg {
  position: absolute;
  top: -130px;
  right: -550px;
  width: 900px;
  pointer-events: none;
}
@media screen and (min-width: 960px) {
  .top-contact__bg {
    top: max(-21.328125vw, -273px);
    right: max(-21.875vw, -280px);
    width: min(75.859375vw, 971px);
    height: min(75.859375vw, 971px);
  }
}

.top-contact__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.top-contact__heading {
  position: relative;
  z-index: 1;
  font-size: 48px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 960px) {
  .top-contact__heading {
    font-size: min(6.25vw, 80px);
  }
}

.top-contact__container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin-top: 48px;
}
@media screen and (min-width: 960px) {
  .top-contact__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: min(1.5625vw, 20px);
    margin-top: min(5.625vw, 72px);
  }
}

.top-contact__fields {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 960px) {
  .top-contact__fields {
    gap: min(1.875vw, 24px);
  }
}

.top-contact__field {
  position: relative;
}

.top-contact__input,
.top-contact__textarea {
  width: 100%;
  border: none;
  background-color: rgba(0, 0, 0, 0.03);
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid black;
}
@media screen and (min-width: 960px) {
  .top-contact__input,
  .top-contact__textarea {
    padding: min(2.03125vw, 26px) min(1.5625vw, 20px);
    font-size: min(1.09375vw, 14px);
    height: 75px;
  }
}

.top-contact__input::-moz-placeholder, .top-contact__textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.top-contact__input::placeholder,
.top-contact__textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.top-contact__input:focus,
.top-contact__textarea:focus {
  outline: none;
  background-color: rgba(0, 0, 0, 0.06);
}

.top-contact__note {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0em;
}

.top-contact__message {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 960px) {
  .top-contact__message {
    gap: min(1.25vw, 16px);
    height: 100%;
  }
}

@media screen and (min-width: 960px) {
  .top-contact__message .wpcf7-form-control-wrap {
    display: block;
    height: 100%;
  }
}

.top-contact__textarea {
  min-height: 220px;
  border-bottom: 1px solid black;
  resize: vertical;
}
@media screen and (min-width: 960px) {
  .top-contact__textarea {
    height: calc(100% - 30px);
  }
}

.top-contact__agreement {
  text-align: center;
  margin-top: 102px;
}
@media screen and (min-width: 960px) {
  .top-contact__agreement {
    margin-top: min(5.3125vw, 68px);
  }
}

.top-contact__agreement-label,
.top-contact__agreement label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.top-contact__agreement-text {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0em;
}

.top-contact__checkbox {
  width: 14px;
  height: 14px;
  border: 1px solid #000000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  cursor: pointer;
}

.top-contact__checkbox:checked {
  background-color: #000000;
}

.top-contact__agreement-link {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
}

.top-contact__actions {
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 960px) {
  .top-contact__actions {
    margin-top: min(1.875vw, 24px);
  }
}

.top-contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  width: min(100%, 374px);
  height: 54px;
  border-radius: 40px;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: left;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0 24px;
}
@media screen and (min-width: 960px) {
  .top-contact__submit {
    width: min(29.21875vw, 374px);
    height: min(4.21875vw, 54px);
    padding: 0 min(1.875vw, 24px);
  }
}

.top-contact__submit:before {
  content: "";
  position: absolute;
  transition: transform 0.3s ease;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 17px;
  transform: translateY(-50%);
  background-image: url(../img/01_top/contact-submit.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s, filter 0.3s;
}

@media (hover: hover) {
  .top-contact__submit:hover {
    color: #000000;
    background-color: #A9D3E3;
  }
  .top-contact__submit:hover:before {
    transform: translate(5px, -50%);
    filter: brightness(0);
  }
}
@media screen and (max-width: 959px) {
  .top-contact__form {
    grid-template-columns: 1fr;
  }
  .top-contact__fields {
    order: 1;
  }
  .top-contact__message {
    order: 2;
  }
  .top-contact__agreement {
    order: 3;
  }
  .top-contact__actions {
    order: 4;
  }
}
.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  font-size: 12px !important;
  margin-top: 5px !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none !important;
  font-size: 12px !important;
  text-align: center !important;
}

.top-data {
  width: 100%;
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .top-data {
    padding-top: 140px;
    padding-bottom: 40px;
  }
}

.top-data__bg {
  position: absolute;
  top: -101px;
  left: -239px;
  z-index: 0;
  width: 493px;
  height: 493px;
}
@media screen and (min-width: 960px) {
  .top-data__bg {
    top: max(-11.25vw, -144px);
    left: max(-16.796875vw, -215px);
    width: min(69.53125vw, 890px);
    height: min(69.53125vw, 890px);
  }
}

.top-data__heading {
  position: relative;
}
.top-data__heading-main {
  display: block;
  position: relative;
  font-size: 42px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 960px) {
  .top-data__heading-main {
    font-size: min(8.75vw, 112px);
  }
}

.top-data__heading-main:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -28px;
  left: 24px;
  width: 48px;
  height: 48px;
  background-image: url(../img/01_top/data-cross.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 960px) {
  .top-data__heading-main:before {
    bottom: max(-5.859375vw, -75px);
    left: min(4.0625vw, 52px);
    width: min(7.5vw, 96px);
    height: min(7.5vw, 96px);
  }
}

.top-data__heading-sub {
  display: block;
  position: relative;
  font-size: 42px;
  font-weight: 300;
  color: #000000;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0em;
  margin-top: 8px;
}
@media screen and (min-width: 960px) {
  .top-data__heading-sub {
    font-size: min(8.75vw, 112px);
    margin-top: min(3.515625vw, 45px);
  }
}

.top-data__heading-sub:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -28px;
  left: 24px;
  width: 48px;
  height: 48px;
  background-image: url(../img/01_top/data-cross.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 960px) {
  .top-data__heading-sub:before {
    bottom: max(-5.859375vw, -75px);
    left: min(4.0625vw, 52px);
    width: min(7.5vw, 96px);
    height: min(7.5vw, 96px);
  }
}

.top-data__heading img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 177px;
  margin-top: 24px;
}
@media screen and (min-width: 960px) {
  .top-data__heading img {
    max-width: min(36.875vw, 472px);
    height: min(9.921875vw, 127px);
    -o-object-fit: contain;
       object-fit: contain;
    margin-top: min(2.578125vw, 33px);
    margin-left: max(-1.171875vw, -15px);
  }
}

.top-data__description {
  position: relative;
  z-index: 3;
  margin-top: 55px;
}
@media screen and (min-width: 960px) {
  .top-data__description {
    margin-top: min(5.3125vw, 68px);
    text-align: right;
  }
}

.top-data__description-main {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  text-align: right;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  margin-top: 0;
  line-height: 1.8;
}
@media screen and (min-width: 960px) {
  .top-data__description-main {
    font-size: 27px;
    letter-spacing: 2.7px;
    line-height: 2;
  }
}

.top-data__description-text {
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  text-align: right;
  line-height: 2;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  margin-top: 24px;
  white-space: nowrap;
}
@media screen and (min-width: 960px) {
  .top-data__description-text {
    font-size: 18px;
    letter-spacing: 1.44px;
    line-height: 2;
    margin-top: min(3.125vw, 40px);
    margin-right: -1em;
  }
}

.top-fv {
  position: relative;
  width: 100%;
  padding: 132px 0 20px 0;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .top-fv {
    padding: min(20.703125vw, 335px) 0 20px 0;
  }
}

.top-fv__bg {
  position: absolute;
  top: -493px;
  right: -415px;
  z-index: 0;
  width: 722px;
  height: 722px;
  pointer-events: none;
}
@media screen and (min-width: 960px) {
  .top-fv__bg {
    top: max(-40.625vw, -520px);
    right: max(-28.125vw, -360px);
    width: min(74.453125vw, 953px);
    height: min(74.453125vw, 953px);
  }
}

.top-fv__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 959px) {
  .top-fv__fixed-text {
    display: block;
    margin-left: 20px;
  }
}
@media screen and (min-width: 960px) {
  .top-fv__fixed-text {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10;
    width: 14px;
    height: 98vh;
    overflow: hidden;
  }
}

.top-fv__fixed-text span {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 960px) {
  .top-fv__fixed-text span {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}

.top-fv__fixed-text span:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100vh;
  background-color: #000000;
}
@media screen and (max-width: 959px) {
  .top-fv__fixed-text span:before {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .top-fv__inner {
    padding-left: min(9.375vw, 120px);
  }
}

.top-fv__container {
  margin-left: 12px;
}
@media screen and (min-width: 960px) {
  .top-fv__container {
    margin-left: min(9.375vw, 120px);
  }
}

.top-fv__slider {
  width: 100%;
  overflow: visible;
  position: relative;
}

.top-fv__items {
  display: flex;
  width: 100%;
}

.top-fv__item {
  width: auto;
  height: auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.top-fv__item.swiper-slide-prev {
  transition: opacity 1s ease;
  opacity: 0;
}

@media (hover: hover) {
  .top-fv__item:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 960px) {
  .top-fv .slider-navigation {
    display: flex;
    margin-left: 38px;
    margin-right: min(3.28125vw, 42px);
  }
}

.top-news {
  position: relative;
  overflow: hidden;
  padding: 70px 0 88px;
  min-height: 850px;
}
@media screen and (min-width: 960px) {
  .top-news {
    padding: 57px 0 150px;
    min-height: 700px;
  }
}

.top-news__inner {
  position: relative;
}
@media screen and (min-width: 960px) {
  .top-news__inner {
    display: grid;
    grid-template-columns: min(18.75vw, 240px) 1fr;
    gap: min(12.03125vw, 154px);
  }
}

.top-news__header {
  position: relative;
  z-index: 2;
}

.top-news__heading {
  font-size: 48px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1;
  letter-spacing: 0em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 960px) {
  .top-news__heading {
    font-size: min(6.25vw, 80px);
  }
}

.top-news__content {
  position: relative;
  z-index: 1;
  margin-top: 48px;
}
@media screen and (min-width: 960px) {
  .top-news__content {
    margin-top: 16px;
  }
}

.top-news__bg {
  position: absolute;
  top: -202px;
  right: -184px;
  width: 929px;
  height: 92px;
  pointer-events: none;
}
@media screen and (min-width: 960px) {
  .top-news__bg {
    top: max(-15.78125vw, -202px);
    right: max(-14.375vw, -184px);
    width: min(71.484375vw, 915px);
    height: min(71.484375vw, 915px);
  }
}

.top-news__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.top-news__items {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  border-bottom: 1px solid black;
}

.top-news__item {
  position: relative;
}

.top-news__item.is-hidden {
  display: none;
}

.top-news__more {
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .top-news__more {
    margin-top: 64px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 960px) {
  .top-news__more {
    margin-top: 64px;
  }
}

.top-solution {
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .top-solution {
    padding-top: 140px;
    padding-bottom: 100px;
  }
}

.top-solution__heading {
  position: relative;
  font-size: 72px;
  font-weight: 400;
  color: #000000;
  text-align: right;
  line-height: 1.4;
  letter-spacing: 0em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 960px) {
  .top-solution__heading {
    font-size: min(8.75vw, 112px);
    letter-spacing: 0;
  }
}

.top-solution__bg {
  position: absolute;
  top: -210px;
  right: -510px;
  z-index: -1;
  width: 975px;
  height: 975px;
}
@media screen and (min-width: 960px) {
  .top-solution__bg {
    top: max(-22.265625vw, -285px);
    right: max(-40.390625vw, -517px);
    width: min(119.0625vw, 1524px);
    height: min(119.0625vw, 1524px);
  }
}

.top-solution__items {
  margin-top: 78px;
}
@media screen and (min-width: 960px) {
  .top-solution__items {
    margin-top: 80px;
  }
}

.top-solution__item {
  display: grid;
}
@media screen and (min-width: 960px) {
  .top-solution__item {
    grid-template-columns: 1fr min(56.796875vw, 800px);
    align-items: flex-start;
  }
}

@media screen and (min-width: 960px) {
  .top-solution__item:nth-child(1) {
    margin-right: -60px;
  }
}

@media screen and (max-width: 959px) {
  .top-solution__item:nth-child(2) {
    margin-top: 50px;
  }
}
@media screen and (min-width: 960px) {
  .top-solution__item:nth-child(2) {
    flex-direction: row-reverse;
    grid-template-columns: min(45.9375vw, 700px) 1fr;
    margin-left: -60px;
    margin-top: min(8.59375vw, 110px);
  }
}

@media screen and (max-width: 959px) {
  .top-solution__item:nth-child(3) {
    margin-top: 32px;
  }
}
@media screen and (min-width: 960px) {
  .top-solution__item:nth-child(3) {
    grid-template-columns: 1fr min(47vw, 700px);
    margin: min(3.28125vw, 42px) min(4.453125vw, 57px) 0 min(7.578125vw, 97px);
  }
}

.top-solution__content {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 49px 1fr;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .top-solution__content {
    grid-template-columns: min(6.171875vw, 79px) 1fr;
  }
}

@media screen and (min-width: 960px) {
  .top-solution__item:nth-child(1) .top-solution__content {
    margin-right: max(-14.53125vw, -186px);
    margin-top: min(6.25vw, 80px);
  }
}

.top-solution__item:nth-child(2) .top-solution__content {
  margin-left: 60px;
}
@media screen and (min-width: 960px) {
  .top-solution__item:nth-child(2) .top-solution__content {
    margin-left: max(-11.40625vw, -146px);
    margin-top: min(5.78125vw, 74px);
  }
}

@media screen and (min-width: 960px) {
  .top-solution__item:nth-child(3) .top-solution__content {
    margin-right: max(-21.09375vw, -270px);
    margin-top: min(7.03125vw, 90px);
  }
}

.top-solution__number {
  font-size: 28px;
  font-weight: 500;
  color: #000000;
  text-align: left;
  line-height: 1.3;
  letter-spacing: 0.00056em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: min(1.25vw, 16px);
  position: relative;
}
@media screen and (min-width: 960px) {
  .top-solution__number {
    font-size: 48px;
    letter-spacing: 0.96px;
    margin-bottom: 20px;
  }
}

.top-solution__text-area {
  position: relative;
  padding-left: 18px;
}
@media screen and (min-width: 960px) {
  .top-solution__text-area {
    padding-left: min(1.875vw, 24px);
  }
}

.top-solution__text-area:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
}

.top-solution__text-area:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 71px;
  background-color: #000000;
}
@media screen and (min-width: 960px) {
  .top-solution__text-area:after {
    height: min(5.546875vw, 71px);
  }
}

.top-solution__title {
  font-size: 28px;
  font-weight: 500;
  color: #000000;
  text-align: left;
  line-height: 1.3;
  letter-spacing: 0.00056em;
  font-family: "Noto Serif JP", serif;
  white-space: nowrap;
}
@media screen and (min-width: 960px) {
  .top-solution__title {
    font-size: min(3.75vw, 48px);
    letter-spacing: 0.96px;
  }
}

.top-solution__subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.00028em;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  margin-top: 15px;
}
@media screen and (min-width: 960px) {
  .top-solution__subtitle {
    font-size: 20px;
    letter-spacing: 1.6px;
    margin-top: min(1.5625vw, 20px);
  }
}

.top-solution__description {
  font-size: 12px;
  font-weight: 300;
  color: #000000;
  text-align: left;
  line-height: 1.9;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  margin-top: 15px;
}
@media screen and (min-width: 960px) {
  .top-solution__description {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0em;
    margin-top: min(1.171875vw, 15px);
  }
}

@media screen and (max-width: 959px) {
  .top-solution__item:nth-child(1) .top-solution__image {
    transform: translateX(20px);
    margin-top: -40px;
  }
}

@media screen and (max-width: 959px) {
  .top-solution__item:nth-child(2) .top-solution__image {
    order: 10;
    padding-right: 60px;
    margin-top: -30px;
    transform: translateX(-20px);
  }
}

@media screen and (max-width: 959px) {
  .top-solution__item:nth-child(3) .top-solution__image {
    padding-left: 50px;
    margin-top: -45px;
    transform: translateX(20px);
  }
}

.top-solution__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-works {
  width: 100%;
  position: relative;
  padding: 40px 0 100px;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .top-works {
    padding: 110px 0 200px;
  }
}

.top-works__bg {
  position: absolute;
  top: -29px;
  left: -165px;
  z-index: -1;
  width: 589px;
  height: 589px;
  pointer-events: none;
}
@media screen and (min-width: 960px) {
  .top-works__bg {
    top: max(-1.953125vw, -25px);
    left: min(9.921875vw, 127px);
    width: min(77.890625vw, 997px);
  }
}

.top-works__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.top-works__heading {
  font-size: 72px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 960px) {
  .top-works__heading {
    font-size: min(8.75vw, 112px);
  }
}

.top-works__inner {
  padding-right: 0;
}
@media screen and (min-width: 960px) {
  .top-works__inner {
    max-width: 100%;
  }
}

.top-works__slider {
  padding-top: 20px;
  padding-left: 28px;
  margin-left: -28px;
  margin-top: 40px;
}
@media screen and (min-width: 960px) {
  .top-works__slider {
    padding-top: min(1.40625vw, 18px);
    padding-left: min(2.1875vw, 28px);
    margin-top: min(2.5vw, 32px);
    margin-left: max(-2.1875vw, -28px);
  }
}

.top-works__items {
  display: flex;
  align-items: stretch;
}

.top-works__item {
  width: auto;
  height: auto;
}

@media screen and (min-width: 960px) {
  .top-works .slider-navigation {
    margin-top: 40px;
    margin-right: min(3.28125vw, 42px);
  }
}

.u-sp-only {
  display: block !important;
}
@media screen and (min-width: 960px) {
  .u-sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 959px) {
  .u-sp-only.inline {
    display: inline-block !important;
  }
}

.u-pc-only {
  display: none !important;
}
@media screen and (min-width: 960px) {
  .u-pc-only {
    display: block !important;
  }
}

@media screen and (min-width: 960px) {
  .u-pc-only.inline {
    display: inline-block !important;
  }
}

.u-none-func {
  pointer-events: none;
}

@media screen and (max-width: 959px) {
  .u-pc-only-func {
    pointer-events: none;
  }
}

@media screen and (min-width: 960px) {
  .u-sp-only-func {
    pointer-events: none;
  }
}

.u-hidden {
  display: none !important;
}

.u-hidden2 {
  opacity: 0;
  visibility: hidden;
}

.u-visible {
  visibility: visible !important;
  opacity: 1 !important;
}

.u-color-invert {
  filter: brightness(0) invert(1) !important;
}

.u-anime-fadein {
  opacity: 0;
  animation: fade-in 0.3s linear forwards;
}
@media screen and (min-width: 960px) {
  .u-anime-fadein {
    animation: fade-in 0.4s linear forwards;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.u-mt-0 {
  margin-top: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-pt-0 {
  padding-top: 0;
}

.u-pb-0 {
  padding-bottom: 0;
}

.u-aspect-fix-image {
  position: relative;
}

.u-aspect-fix-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.u-center {
  text-align: center;
}

.u-left {
  text-align: left;
}

.u-spacer-120-160 {
  height: 120px;
}
@media screen and (min-width: 960px) {
  .u-spacer-120-160 {
    height: min(12.5vw, 160px);
  }
}

.u-anchor-offset {
  padding-top: 80px;
  margin-top: -80px;
  pointer-events: none;
}
@media screen and (min-width: 960px) {
  .u-anchor-offset {
    padding-top: min(9.375vw, 120px);
    margin-top: max(-9.375vw, -120px);
  }
}

.u-inline {
  display: inline !important;
}