@charset "UTF-8";
.js-reveal,
.js-show,
.heading.js-reveal,
.js-wave .char {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

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

html.is-loading,
html.is-loading body {
  overflow: hidden;
}

body {
  color: #2e2e2e;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: normal;
  letter-spacing: normal;
  position: relative;
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1200px;
  }
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-animation: none;
          animation: none;
}
@media screen and (min-width: 900px) {
  .heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
}

/* ===============================
  reveal（見出し / 画像）
============================== */
.heading.js-reveal {
  opacity: 0;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}
@media screen and (min-width: 900px) {
  .heading.js-reveal {
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
  }
}
.heading.js-reveal.is-inview {
  -webkit-animation: slideInRight 1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
          animation: slideInRight 1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width: 900px) {
  @-webkit-keyframes slideInRight {
    from {
      opacity: 0;
      -webkit-transform: translateX(60px);
              transform: translateX(60px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes slideInRight {
    from {
      opacity: 0;
      -webkit-transform: translateX(60px);
              transform: translateX(60px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
}
.js-show {
  opacity: 0;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}
@media screen and (min-width: 900px) {
  .js-show {
    -webkit-transform: translateX(-60px);
            transform: translateX(-60px);
  }
}
.js-show.is-inview {
  -webkit-animation: slideInLeft 1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
          animation: slideInLeft 1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@-webkit-keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width: 900px) {
  @-webkit-keyframes slideInLeft {
    from {
      opacity: 0;
      -webkit-transform: translateX(-60px);
              transform: translateX(-60px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes slideInLeft {
    from {
      opacity: 0;
      -webkit-transform: translateX(-60px);
              transform: translateX(-60px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
}
/* ===============================
  keyframes
  ※ keyframes内に@includeを入れない（事故りやすい）
============================== */
@keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* lgだけ開始位置を変えたい場合は、lgでは別keyframesにする */
@media screen and (min-width: 900px) {
  @-webkit-keyframes slideInRight {
    from {
      opacity: 0;
      -webkit-transform: translateX(200px);
              transform: translateX(200px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes slideInRight {
    from {
      opacity: 0;
      -webkit-transform: translateX(200px);
              transform: translateX(200px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @-webkit-keyframes slideInLeft {
    from {
      opacity: 0;
      -webkit-transform: translateX(-200px);
              transform: translateX(-200px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes slideInLeft {
    from {
      opacity: 0;
      -webkit-transform: translateX(-200px);
              transform: translateX(-200px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
}
.heading-main {
  font-size: 32px;
  font-family: "Edu SA Hand", cursive;
  font-weight: 700;
  color: #87cefa;
  -webkit-text-stroke: 1px black;
}
@media screen and (min-width: 900px) {
  .heading-main {
    font-size: 48px;
  }
}

.heading-sub {
  font-size: 24px;
}
@media screen and (min-width: 900px) {
  .heading-sub {
    font-size: 36px;
  }
}

.button__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.button__more:hover .button__more-text {
  color: #87cefa;
}
.button__more:hover .button__more-arrow {
  width: 40px;
  background: #87cefa;
}
@media screen and (min-width: 900px) {
  .button__more:hover .button__more-arrow {
    width: 80px;
  }
}
.button__more:hover .button__more-arrow::after {
  background: #87cefa;
}

.button__more-text {
  font-family: "Edu SA Hand", cursive;
  font-size: 18px;
  -webkit-transition: color 0.6s;
  transition: color 0.6s;
}
@media screen and (min-width: 769px) {
  .button__more-text {
    font-size: 24px;
  }
}
@media screen and (min-width: 900px) {
  .button__more-text {
    font-size: 32px;
  }
}

.button__more-arrow {
  width: 20px;
  height: 1px;
  background: #2e2e2e;
  position: relative;
  -webkit-transition: width 0.6s, background-color 0.6s;
  transition: width 0.6s, background-color 0.6s;
}
@media screen and (min-width: 900px) {
  .button__more-arrow {
    width: 40px;
  }
}
.button__more-arrow::after {
  position: absolute;
  content: "";
  right: 0;
  width: 8px;
  height: 1px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transition: background-color 0.6s;
  transition: background-color 0.6s;
  bottom: 3px;
  background: #2e2e2e;
}
@media screen and (min-width: 900px) {
  .button__more-arrow::after {
    width: 16px;
    bottom: 4px;
  }
}

/* 初期状態：少し下＆薄い */
.js-reveal {
  opacity: 0;
  -webkit-transform: translateY(14px);
          transform: translateY(14px);
  -webkit-transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), -webkit-transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), -webkit-transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), -webkit-transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

/* 画面内に入ったら表示 */
.js-reveal.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ユーザー設定でアニメ減らす（配慮） */
@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    -webkit-transition: none;
    transition: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* 文字を1文字ずつアニメさせるための共通 */
.js-wave {
  display: inline-block;
}

/* 最初は見えない */
.js-wave .char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  will-change: transform, opacity;
}

/* 画面内に入ったら開始 */
.js-wave.is-inview .char {
  -webkit-animation: waveIn 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
          animation: waveIn 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  -webkit-animation-delay: calc(var(--i) * 0.03s);
          animation-delay: calc(var(--i) * 0.03s);
}

@-webkit-keyframes waveIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  80% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes waveIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  80% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 1文字ずつにすると単語の途中改行が起きやすいので対策（必要なら） */
.front-about__text {
  word-break: normal;
  overflow-wrap: anywhere;
}

/* サイト本体：最初は非表示 */
.site {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.site.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh; /* ←これが効く（dvh） */
  display: grid;
  place-items: center;
  background: #0b0d12;
  z-index: 9999;
}
@supports (height: 100dvh) {
  .loading-overlay .loading-overlay {
    height: 100dvh;
  }
}

.site.is-show {
  opacity: 1;
}

/* ローディング：全画面オーバーレイ */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0b0d12;
  display: grid;
  place-items: center;
}

.loading-overlay.is-hide {
  opacity: 0;
}

@-webkit-keyframes square-animation {
  0% {
    left: 0;
    top: 0;
  }
  10.5% {
    left: 0;
    top: 0;
  }
  12.5% {
    left: 32px;
    top: 0;
  }
  23% {
    left: 32px;
    top: 0;
  }
  25% {
    left: 64px;
    top: 0;
  }
  35.5% {
    left: 64px;
    top: 0;
  }
  37.5% {
    left: 64px;
    top: 32px;
  }
  48% {
    left: 64px;
    top: 32px;
  }
  50% {
    left: 32px;
    top: 32px;
  }
  60.5% {
    left: 32px;
    top: 32px;
  }
  62.5% {
    left: 32px;
    top: 64px;
  }
  73% {
    left: 32px;
    top: 64px;
  }
  75% {
    left: 0;
    top: 64px;
  }
  85.5% {
    left: 0;
    top: 64px;
  }
  87.5% {
    left: 0;
    top: 32px;
  }
  98% {
    left: 0;
    top: 32px;
  }
  100% {
    left: 0;
    top: 0;
  }
}

@keyframes square-animation {
  0% {
    left: 0;
    top: 0;
  }
  10.5% {
    left: 0;
    top: 0;
  }
  12.5% {
    left: 32px;
    top: 0;
  }
  23% {
    left: 32px;
    top: 0;
  }
  25% {
    left: 64px;
    top: 0;
  }
  35.5% {
    left: 64px;
    top: 0;
  }
  37.5% {
    left: 64px;
    top: 32px;
  }
  48% {
    left: 64px;
    top: 32px;
  }
  50% {
    left: 32px;
    top: 32px;
  }
  60.5% {
    left: 32px;
    top: 32px;
  }
  62.5% {
    left: 32px;
    top: 64px;
  }
  73% {
    left: 32px;
    top: 64px;
  }
  75% {
    left: 0;
    top: 64px;
  }
  85.5% {
    left: 0;
    top: 64px;
  }
  87.5% {
    left: 0;
    top: 32px;
  }
  98% {
    left: 0;
    top: 32px;
  }
  100% {
    left: 0;
    top: 0;
  }
}
@-webkit-keyframes hue-rotate {
  0% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  100% {
    -webkit-filter: hue-rotate(360deg);
            filter: hue-rotate(360deg);
  }
}
@keyframes hue-rotate {
  0% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  100% {
    -webkit-filter: hue-rotate(360deg);
            filter: hue-rotate(360deg);
  }
}
/* 画面中央配置（ローディング単体で使う場合はoverlay側で中央寄せするので、bodyは触らなくてOK） */
.loading {
  position: relative;
  width: 96px;
  height: 96px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: hue-rotate 8s linear infinite both;
          animation: hue-rotate 8s linear infinite both;
}

.loading__square {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: 2px;
  border-radius: 2px;
  background-image: linear-gradient(45deg, rgba(0, 200, 255, 0.7) 40%, rgba(0, 80, 255, 0.4) 60%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* ネオンっぽい発光 */
  -webkit-box-shadow: 0 0 6px rgba(0, 200, 255, 0.7), 0 0 12px rgba(0, 120, 255, 0.6), 0 0 20px rgba(0, 80, 255, 0.4);
          box-shadow: 0 0 6px rgba(0, 200, 255, 0.7), 0 0 12px rgba(0, 120, 255, 0.6), 0 0 20px rgba(0, 80, 255, 0.4);
  -webkit-animation: square-animation 8s ease-in-out infinite both;
          animation: square-animation 8s ease-in-out infinite both;
}

/* ✅ ここが重要：7個に「負の遅延」を付けて“最初からバラけた位置”で動かす */
.loading__square:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.loading__square:nth-of-type(2) {
  -webkit-animation-delay: -1.1428571429s;
          animation-delay: -1.1428571429s;
}

.loading__square:nth-of-type(3) {
  -webkit-animation-delay: -2.2857142857s;
          animation-delay: -2.2857142857s;
}

.loading__square:nth-of-type(4) {
  -webkit-animation-delay: -3.4285714286s;
          animation-delay: -3.4285714286s;
}

.loading__square:nth-of-type(5) {
  -webkit-animation-delay: -4.5714285714s;
          animation-delay: -4.5714285714s;
}

.loading__square:nth-of-type(6) {
  -webkit-animation-delay: -5.7142857143s;
          animation-delay: -5.7142857143s;
}

.loading__square:nth-of-type(7) {
  -webkit-animation-delay: -6.8571428571s;
          animation-delay: -6.8571428571s;
}

/* =============================
   ロゴ
============================= */
.loading-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.loading-logo {
  position: absolute;
  font-size: 20px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  -webkit-animation: logo-fade 1.2s ease forwards;
          animation: logo-fade 1.2s ease forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 20px rgba(0, 255, 200, 0.5);
}

/* フェードイン */
@-webkit-keyframes logo-fade {
  to {
    opacity: 1;
  }
}
@keyframes logo-fade {
  to {
    opacity: 1;
  }
}
.header {
  background: #d3d3d3;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 20px;
  height: inherit;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-inline: 60px;
  }
}

.header__logo {
  font-family: "Edu SA Hand", cursive;
  font-size: 24px;
  line-height: normal;
}
.header__logo a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  font-weight: 500;
}
.header__logo a:hover {
  opacity: 0.6;
}

@media screen and (min-width: 900px) {
  .header__icon {
    display: none;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #000;
  left: 0;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 8px;
}
.drawer-icon__bar:nth-child(3) {
  top: 16px;
}

.header__nav {
  background: #FFFFFF;
  width: 270px;
  height: calc(100% - 60px);
  position: fixed;
  right: 0;
  top: 60px;
  padding: 32px 15px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
@media screen and (min-width: 769px) {
  .header__nav {
    width: 400px;
    padding: 72px 50px;
  }
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 900px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: sticky;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    top: 0;
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.header__link {
  display: inline-block;
  position: relative;
  padding-block: 8px;
  color: #2e2e2e;
  font-size: 18px;
}
@media screen and (min-width: 900px) {
  .header__link {
    font-size: 16px;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__link:hover {
    opacity: 0.6;
  }
  .header__link:hover::before, .header__link:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .header__link::before, .header__link::after {
    background: #2e2e2e;
    content: "";
    height: 2px;
    position: absolute;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    width: 100%;
    opacity: 0.6;
  }
  .header__link::before {
    left: 0;
    top: 0;
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .header__link::after {
    bottom: 0;
    right: 0;
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
}

.front-main {
  background: #fafafa;
}

.front-fv__inner {
  position: relative;
}

.fv__slide {
  width: 100%;
}
.fv__slide img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .fv__slide img {
    height: 630px;
  }
}
@media screen and (min-width: 900px) {
  .fv__slide img {
    height: auto;
    max-height: 800px;
  }
}

.front-fv__title {
  position: absolute;
  top: 50%;
  left: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  color: #FFFFFF;
}
@media screen and (min-width: 769px) {
  .front-fv__title {
    left: 30%;
  }
}

.front-fv-title__main {
  font-size: 32px;
  font-family: "Edu SA Hand", cursive;
  font-weight: 700;
  -webkit-text-stroke: 2px black;
  opacity: 0;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
  -webkit-animation: dropBounce 2s ease-out forwards;
          animation: dropBounce 2s ease-out forwards;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
@media screen and (min-width: 769px) {
  .front-fv-title__main {
    font-size: 48px;
  }
}
@media screen and (min-width: 900px) {
  .front-fv-title__main {
    font-size: 60px;
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
}

/* バウンド落下アニメーション */
@-webkit-keyframes dropBounce {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  85% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  90% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes dropBounce {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  85% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  90% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.front-fv-title__sub {
  font-size: 28px;
  font-weight: 700;
  -webkit-text-stroke: 0.7px black;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-animation: slideInRight 2s ease-out forwards;
          animation: slideInRight 2s ease-out forwards;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
@media screen and (min-width: 769px) {
  .front-fv-title__sub {
    font-size: 36px;
    -webkit-text-stroke: 1px black;
  }
}
@media screen and (min-width: 900px) {
  .front-fv-title__sub {
    font-size: 46px;
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
}

.front-fv__news {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  width: calc(100% - 100px);
  height: auto;
}
@media screen and (min-width: 900px) {
  .front-fv__news {
    height: 50px;
  }
}

.front-fv-news__box {
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  padding: 20px;
}
@media screen and (min-width: 900px) {
  .front-fv-news__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px;
  }
}

.front-fv-news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .front-fv-news__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.front-fv-news__head {
  color: #2e2e2e;
  padding-right: 30px;
  position: relative;
  font-size: 20px;
}
@media screen and (min-width: 900px) {
  .front-fv-news__head::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 30px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #000;
  }
}

.fv-news__swiper {
  height: 3.4em; /* 1行分だけ見せる */
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .fv-news__swiper {
    height: 1.6em;
  }
}

.fv-news__wrapper {
  width: 100%;
}

.fv-news__slide {
  width: 100%;
}

.fv-news__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: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px;
  text-decoration: none;
  width: 100%;
  -webkit-transition: color 0.6s;
  transition: color 0.6s;
}
.fv-news__link:hover {
  color: #87cefa;
}
@media screen and (min-width: 900px) {
  .fv-news__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 30px;
  }
}

.fv-news__date {
  white-space: nowrap;
  font-size: 14px;
  opacity: 0.8;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.fv-news__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.front-fv-news__button {
  padding-right: 20px;
  position: relative;
  text-align: right;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.front-fv-news__button:hover {
  color: #87cefa;
}
.front-fv-news__button:hover::before, .front-fv-news__button:hover::after {
  background: #87cefa;
}
.front-fv-news__button::before, .front-fv-news__button::after {
  position: absolute;
  content: "";
  background: #2e2e2e;
  height: 1px;
  right: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.front-fv-news__button::before {
  top: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
}
.front-fv-news__button::after {
  width: 7px;
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
  top: 50%;
}

.front-work {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .front-work {
    margin-top: 80px;
  }
}

.front-work__inner {
  padding: 0;
}

.front-work__title {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 900px) {
  .front-work__title {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.front-work__wrap {
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-bottom: 60px;
}
@media screen and (min-width: 900px) {
  .front-work__wrap {
    padding-bottom: 100px;
  }
}

.front-work__scene {
  width: 980px;
  height: 620px;
  -webkit-perspective: 1400px;
          perspective: 1400px; /* 視点 */
  -webkit-perspective-origin: 50% 15%;
          perspective-origin: 50% 15%;
  display: grid;
  place-items: center;
}

.front-work__cylinder {
  position: relative;
  width: 220px;
  height: 220px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; /* 子要素を3Dとして扱う */
  -webkit-transform: rotateX(-8deg) rotateY(0deg);
          transform: rotateX(-8deg) rotateY(0deg);
  -webkit-animation: ringRotate 30s linear infinite both;
          animation: ringRotate 30s linear infinite both;
  cursor: -webkit-grab;
  cursor: grab;
}
.front-work__cylinder:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

@-webkit-keyframes ringRotate {
  from {
    -webkit-transform: rotateX(-8deg) rotateY(0deg);
            transform: rotateX(-8deg) rotateY(0deg);
  }
  to {
    -webkit-transform: rotateX(-8deg) rotateY(360deg);
            transform: rotateX(-8deg) rotateY(360deg);
  }
}

@keyframes ringRotate {
  from {
    -webkit-transform: rotateX(-8deg) rotateY(0deg);
            transform: rotateX(-8deg) rotateY(0deg);
  }
  to {
    -webkit-transform: rotateX(-8deg) rotateY(360deg);
            transform: rotateX(-8deg) rotateY(360deg);
  }
}
.front-work__cylinder:hover,
.front-work__cylinder:active,
.front-work__cylinder:focus-within {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.front-work__item,
.front-work__card {
  pointer-events: auto;
}

.front-work__item {
  position: absolute;
  top: -50px;
  left: 0;
  width: 220px;
  height: 220px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  margin: 0;
  background: #FFFFFF;
  /* JSで transform を上書きする前提 */
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 18px;
  overflow: hidden;
  -webkit-box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
          box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  --ring-radius: 440px; /* 円の半径 */
  --card-angle: 36deg; /* カードの角度（360deg / カードの枚数） */
}
.front-work__item:nth-child(1) {
  -webkit-transform: rotateY(calc(var(--card-angle) * 0)) translateZ(var(--ring-radius));
          transform: rotateY(calc(var(--card-angle) * 0)) translateZ(var(--ring-radius));
}
.front-work__item:nth-child(2) {
  -webkit-transform: rotateY(calc(var(--card-angle) * 1)) translateZ(var(--ring-radius));
          transform: rotateY(calc(var(--card-angle) * 1)) translateZ(var(--ring-radius));
}
.front-work__item:nth-child(3) {
  -webkit-transform: rotateY(calc(var(--card-angle) * 2)) translateZ(var(--ring-radius));
          transform: rotateY(calc(var(--card-angle) * 2)) translateZ(var(--ring-radius));
}
.front-work__item:nth-child(4) {
  -webkit-transform: rotateY(calc(var(--card-angle) * 3)) translateZ(var(--ring-radius));
          transform: rotateY(calc(var(--card-angle) * 3)) translateZ(var(--ring-radius));
}
.front-work__item:nth-child(5) {
  -webkit-transform: rotateY(calc(var(--card-angle) * 4)) translateZ(var(--ring-radius));
          transform: rotateY(calc(var(--card-angle) * 4)) translateZ(var(--ring-radius));
}
.front-work__item:nth-child(6) {
  -webkit-transform: rotateY(calc(var(--card-angle) * 5)) translateZ(var(--ring-radius));
          transform: rotateY(calc(var(--card-angle) * 5)) translateZ(var(--ring-radius));
}
.front-work__item:nth-child(7) {
  -webkit-transform: rotateY(calc(var(--card-angle) * 6)) translateZ(var(--ring-radius));
          transform: rotateY(calc(var(--card-angle) * 6)) translateZ(var(--ring-radius));
}
.front-work__item:nth-child(8) {
  -webkit-transform: rotateY(calc(var(--card-angle) * 7)) translateZ(var(--ring-radius));
          transform: rotateY(calc(var(--card-angle) * 7)) translateZ(var(--ring-radius));
}
.front-work__item:nth-child(9) {
  -webkit-transform: rotateY(calc(var(--card-angle) * 8)) translateZ(var(--ring-radius));
          transform: rotateY(calc(var(--card-angle) * 8)) translateZ(var(--ring-radius));
}
.front-work__item:nth-child(10) {
  -webkit-transform: rotateY(calc(var(--card-angle) * 9)) translateZ(var(--ring-radius));
          transform: rotateY(calc(var(--card-angle) * 9)) translateZ(var(--ring-radius));
}
.front-work__item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.front-work__card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
}
.front-work__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 2;
}
.front-work__card::before {
  content: "詳しく見る";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.95);
          transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
}
.front-work__card:hover::after {
  opacity: 1;
}
.front-work__card:hover::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.front-work__card:hover .front-work__image img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
.front-work__card:hover .front-work__content {
  opacity: 0.9;
}

.front-work__image {
  width: 100%;
  height: 60%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.front-work__content {
  height: 40%;
  padding: 12px 14px;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.front-work__site {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.front-work__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.front-work-tag__text {
  border: 1px solid #d3d3d3;
  color: #2e2e2e;
  padding: 2px;
  font-size: 12px;
}

.front-work__button {
  margin-left: auto;
  width: 80px;
  padding-right: 20px;
}
@media screen and (min-width: 769px) {
  .front-work__button {
    width: 100px;
  }
}
@media screen and (min-width: 900px) {
  .front-work__button {
    width: 150px;
  }
}

.front-about {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .front-about {
    margin-top: 80px;
  }
}

.front-about__contents {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .front-about__contents {
    margin-top: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.front-about__image {
  max-height: 500px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .front-about__image {
    max-height: auto;
    width: 30%;
  }
}
.front-about__image img {
  height: auto;
  max-height: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 45px;
}

@media screen and (min-width: 900px) {
  .front-about__content {
    width: 50%;
    padding: 30px;
  }
}

.front-about__name-en {
  font-size: 38px;
  font-weight: 700;
  font-family: "Shadows Into Light", cursive;
}
@media screen and (min-width: 900px) {
  .front-about__name-en {
    font-size: 40px;
  }
}

.front-about__name-ja {
  font-size: 16px;
}
.front-about__name-ja ruby rt {
  font-size: 10px;
}

.front-about__text {
  margin-top: 10px;
}

.front-skill {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .front-skill {
    margin-top: 80px;
  }
}

.front-skill__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .front-skill__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .front-skill__cards {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .front-skill__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.front-skill__card {
  width: 100%;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}
.front-skill__card::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.front-skill__card.is-flipped .front-skill-card__back {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}
.front-skill__card.is-flipped .front-skill-card__front {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

/* PCでhoverしたら必ず裏面で固定 */
@media (hover: hover) and (pointer: fine) {
  .front-skill__card:hover .front-skill-card__back {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  .front-skill__card:hover .front-skill-card__front {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}
.front-skill-card__back,
.front-skill-card__front {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border: 3px solid #d3d3d3;
  border-radius: 24px;
}

.front-skill-card__back {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  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;
  padding: 20px;
  background: #FFFFFF;
}

@media screen and (min-width: 900px) {
  .front-skill-front__click {
    display: none;
  }
}

.front-skill-card__front {
  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;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #FFFFFF;
  -webkit-text-stroke: 1px #d3d3d3;
}

.skill-card-1 {
  background: #ea5532;
  border-radius: 22px;
}

.skill-card-2 {
  background: #00a1e9;
}

.skill-card-3 {
  background: #ffdc00;
}

.skill-card-4 {
  background: #7f1184;
}

.front-news {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .front-news {
    margin-top: 80px;
  }
}

.front-news__contents {
  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;
  margin-top: 30px;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .front-news__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 60px;
  }
}

@media screen and (min-width: 900px) {
  .front-news__main-image {
    width: 40%;
  }
}
.front-news__main-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.front-news__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .front-news__boxes {
    width: 60%;
    gap: 20px;
  }
}

.front-news__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  background: #FFFFFF;
  border-bottom: 1px solid #d3d3d3;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.front-news__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #87cefa;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 0;
}
.front-news__box:hover {
  color: #FFFFFF;
}
.front-news__box:hover .front-news__tag {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.front-news__box:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.front-news__box * {
  position: relative;
  z-index: 1;
}

.front-news-box__image {
  display: none;
}
@media screen and (min-width: 900px) {
  .front-news-box__image {
    display: block;
    width: 20%;
    height: auto;
  }
}

.front-news__content {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 900px) {
  .front-news__content {
    width: 80%;
    padding: 10px;
  }
}

.front-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.front-news__tag {
  border: 1px solid #737373;
  color: #737373;
  padding: 2px 4px;
  font-size: 12px;
}

.front-news__body {
  margin-top: 8px;
}

.front-news__button {
  margin-left: auto;
  margin-top: 20px;
  width: 80px;
}
@media screen and (min-width: 900px) {
  .front-news__button {
    width: 150px;
  }
}

.front-flow {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .front-flow {
    margin-top: 80px;
  }
}

.front-flow__boxes {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .front-flow__boxes {
    margin-top: 60px;
  }
}

.front-flow__box {
  background: #FFFFFF;
  border: 1px solid #737373;
  border-radius: 12px;
  padding: 10px 20px;
}
.front-flow__box.is-open .front-flow-box__head::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.is-open .front-flow-box__body {
  max-height: 200px;
  opacity: 1;
  margin-top: 20px;
}

.front-flow-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .front-flow-box__head {
    gap: 20px;
  }
}
.front-flow-box__head::before, .front-flow-box__head::after {
  position: absolute;
  content: "";
  background: #737373;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.front-flow-box__head::before {
  width: 20px;
  height: 3px;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .front-flow-box__head::before {
    right: 20px;
  }
}
.front-flow-box__head::after {
  width: 3px;
  height: 20px;
  right: 9px;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
@media screen and (min-width: 900px) {
  .front-flow-box__head::after {
    right: 29px;
  }
}

.front-flow-box__number {
  background: #87cefa;
  border-radius: 50%;
  border: 1px solid #d3d3d3;
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  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;
  font-size: 18px;
}
@media screen and (min-width: 900px) {
  .front-flow-box__number {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

.front-flow-box__title {
  font-size: 18px;
}
@media screen and (min-width: 900px) {
  .front-flow-box__title {
    font-size: 22px;
  }
}

.front-flow-box__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: max-height 1.5s ease, opacity 1.5s ease;
  transition: max-height 1.5s ease, opacity 1.5s ease;
}

.front-flow-box__text {
  font-size: 16px;
}

.front-contact {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .front-contact {
    margin-top: 80px;
  }
}

.wpcf7 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .wpcf7 {
    margin-top: 60px;
  }
}

.contact__text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.contact__text .is-required {
  color: #0000cd;
}

.contact__items {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .contact__items {
    margin-top: 40px;
  }
}

.contact__item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact__item:focus-within .message-label, .contact__item:focus-within .email-label, .contact__item:focus-within .name-label {
  color: #FFFFFF;
  background: #87cefa;
}
.contact__item:focus-within .form-textarea {
  outline: #87cefa auto 1px;
  -webkit-box-shadow: 5px 6px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 6px 16px rgba(0, 0, 0, 0.15);
}

.contact__footer {
  margin-top: 28px;
}
@media screen and (min-width: 900px) {
  .contact__footer {
    margin-top: 32px;
  }
}

.contact__privacy {
  text-align: center;
}

.contact__submit {
  text-align: center;
  margin-top: 23px;
}

.contact-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 769px) {
  .contact-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

@media screen and (min-width: 769px) {
  .contact-control__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 769px) {
  .contact-control__input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.contact-control__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: rgba(211, 211, 211, 0.7);
  color: #2e2e2e;
  font-size: 14px;
  font-weight: 600;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 16px;
}
@media screen and (min-width: 769px) {
  .form-label {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 4px;
    padding-inline: 4px;
    clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
  }
}

.form-label__required {
  color: #0000cd;
  font-size: 10px;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .form-label__required {
    font-size: 12px;
  }
}

.form-text {
  width: 100%;
  height: 40px;
  border: 0;
  font-size: 16px;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
  padding: 0 10px;
}
.form-text:focus {
  outline: #87cefa auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(211, 211, 211, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(211, 211, 211, 0.16);
}
.form-text::-webkit-input-placeholder {
  opacity: 0.5;
}
.form-text::-moz-placeholder {
  opacity: 0.5;
}
.form-text:-ms-input-placeholder {
  opacity: 0.5;
}
.form-text::-ms-input-placeholder {
  opacity: 0.5;
}
.form-text::placeholder {
  opacity: 0.5;
}

.form-textarea {
  width: 100%;
  height: 122px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
  background: #fff;
  resize: vertical;
  font-size: 16px;
  border: 0;
  padding: 8px 10px;
}
.form-textarea:focus {
  outline: #87cefa auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(211, 211, 211, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(211, 211, 211, 0.16);
}
.form-textarea::-webkit-input-placeholder {
  opacity: 0.5;
}
.form-textarea::-moz-placeholder {
  opacity: 0.5;
}
.form-textarea:-ms-input-placeholder {
  opacity: 0.5;
}
.form-textarea::-ms-input-placeholder {
  opacity: 0.5;
}
.form-textarea::placeholder {
  opacity: 0.5;
}

.wpcf7-list-item {
  position: relative;
}

.form-checkbox {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.form-checkbox:focus + .wpcf7-list-item-label:before {
  outline: #87cefa auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(211, 211, 211, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(211, 211, 211, 0.16);
}

.wpcf7-list-item-label {
  font-size: 16px;
  padding-left: 30px;
}
.wpcf7-list-item-label a {
  text-decoration-line: underline;
  color: #737373;
}
.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  margin-block: auto;
}
.wpcf7-list-item-label::before {
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border: 1px solid #87cefa;
}
.wpcf7-list-item-label::after {
  opacity: 0;
  width: 40px;
  height: 40px;
  left: -10px;
  background: url(../img/icon/check.png) no-repeat center center/contain;
}

/* リンク風ボタン（プライバシーポリシー） */
.privacy-policy-link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-size: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.privacy-policy-link:hover {
  color: #87cefa;
  opacity: 0.8;
}

/* dialog本体 */
.privacy-policy-modal {
  width: min(680px, 92vw);
  border: none;
  border-radius: 16px;
  padding: 0;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

/* 背景 */
.privacy-policy-modal::-ms-backdrop {
  background: rgba(0, 0, 0, 0.55);
}
.privacy-policy-modal::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

/* 中身 */
.privacy-policy-modal__body {
  padding: 22px 22px 18px;
}

/* ヘッダー（タイトル＋×） */
.privacy-policy-modal__header {
  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;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.privacy-policy-modal__title {
  font-size: 18px;
  margin: 0;
}

.privacy-policy-modal__x {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.06);
  cursor: pointer;
  line-height: 1;
  font-size: 22px;
}
.privacy-policy-modal__x:hover {
  background: rgba(0, 0, 0, 0.12);
}

/* 本文をスクロール可能に（長くなってもOK） */
.privacy-policy__text {
  margin-top: 14px;
  max-height: min(52vh, 520px);
  overflow: auto;
  padding-right: 6px;
}
.privacy-policy__text p {
  margin: 0 0 12px;
  line-height: 1.8;
}

/* 閉じるボタン */
.privacy-policy-modal__close-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 16px;
}

.button__close {
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  background: #87cefa;
  color: #fff;
  cursor: pointer;
}
.button__close:hover {
  opacity: 0.9;
}

.front-contact__button {
  background: #FFFFFF;
  border: 3px solid #d3d3d3;
  border-radius: 36px;
  padding: 10px 20px;
  display: inline-block;
  text-align: center;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  width: 100%;
  max-width: 150px;
}
@media screen and (min-width: 900px) {
  .front-contact__button {
    margin-top: 30px;
  }
}
.front-contact__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #87cefa;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 0;
}
.front-contact__button:hover {
  color: #FFFFFF;
  border-color: #d3d3d3;
}
.front-contact__button:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.front-contact__button:hover span {
  color: #FFFFFF;
}
.front-contact__button span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #2e2e2e;
}
@media screen and (min-width: 900px) {
  .front-contact__button span {
    font-size: 18px;
  }
}

.front-footer {
  margin-top: 40px;
  background: #737373;
  padding-top: 40px;
  padding-bottom: 10px;
}
@media screen and (min-width: 900px) {
  .front-footer {
    margin-top: 80px;
  }
}

.front-footer__inner {
  padding-left: 12px;
  padding-right: 12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.front-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .front-footer__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.front-footer__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.front-footer__icon {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  border-radius: 12px;
}
@media screen and (min-width: 900px) {
  .front-footer__icon {
    width: 60px;
    height: 60px;
  }
}
.front-footer__icon:hover {
  border: 3px solid #87cefa;
}
.front-footer__icon img {
  width: 100%;
  height: auto;
}

.icon-1 {
  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;
}
.icon-1 img {
  width: 60px;
  height: 60px;
}
@media screen and (min-width: 900px) {
  .icon-1 img {
    width: 40px;
    height: 40px;
  }
}

.footer__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  color: #FFFFFF;
}
@media screen and (min-width: 900px) {
  .footer__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.footer__link {
  font-size: 20px;
  display: inline-block;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s;
  transition: color 0.3s ease, -webkit-transform 0.3s;
  transition: transform 0.3s, color 0.3s ease;
  transition: transform 0.3s, color 0.3s ease, -webkit-transform 0.3s;
  -webkit-transform-origin: left;
          transform-origin: left;
}
.footer__link:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: #87cefa;
}

.front-footer__copy {
  color: #FFFFFF;
}

.pagetop {
  position: fixed;
  right: clamp(12px, 2.5vw, 40px);
  bottom: clamp(12px, 2.5vw, 40px);
  z-index: 9999;
  width: 90px;
  max-width: min(90px, 22vw);
  cursor: pointer;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  pointer-events: none;
  /* ★重要：初期からtransformを持たせる */
  -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
  /* ★合成を安定させる */
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.pagetop.is-show {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.pagetop img {
  width: 100%;
  display: block;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: none;
          animation: none;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.pagetop.is-show img {
  -webkit-animation: pagetopPulse 2.5s ease-in-out infinite;
          animation: pagetopPulse 2.5s ease-in-out infinite;
}

/* 1.0 ⇄ 1.3 */
@-webkit-keyframes pagetopPulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
@keyframes pagetopPulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
/* クリック時：アニメ停止 */
.pagetop.is-leaving img {
  -webkit-animation: none;
          animation: none;
}

/* クリック時：ふわふわ＋回転しながら上に飛んで消える */
.pagetop.is-leaving {
  -webkit-animation: pagetopLeaveFloatSpin 1.5s ease-in-out forwards;
          animation: pagetopLeaveFloatSpin 1.5s ease-in-out forwards;
  will-change: transform, opacity;
}

@-webkit-keyframes pagetopLeaveFloatSpin {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0deg) scale(1);
            transform: translate(0, 0) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(10px, -28px) rotate(12deg) scale(1.02);
            transform: translate(10px, -28px) rotate(12deg) scale(1.02);
  }
  40% {
    -webkit-transform: translate(-10px, -58px) rotate(-10deg) scale(1.04);
            transform: translate(-10px, -58px) rotate(-10deg) scale(1.04);
  }
  60% {
    -webkit-transform: translate(8px, -92px) rotate(16deg) scale(1.06);
            transform: translate(8px, -92px) rotate(16deg) scale(1.06);
  }
  80% {
    opacity: 0.5;
    -webkit-transform: translate(-8px, -125px) rotate(-14deg) scale(1.08);
            transform: translate(-8px, -125px) rotate(-14deg) scale(1.08);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -160px) rotate(25deg) scale(1.1);
            transform: translate(0, -160px) rotate(25deg) scale(1.1);
  }
}

@keyframes pagetopLeaveFloatSpin {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0deg) scale(1);
            transform: translate(0, 0) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(10px, -28px) rotate(12deg) scale(1.02);
            transform: translate(10px, -28px) rotate(12deg) scale(1.02);
  }
  40% {
    -webkit-transform: translate(-10px, -58px) rotate(-10deg) scale(1.04);
            transform: translate(-10px, -58px) rotate(-10deg) scale(1.04);
  }
  60% {
    -webkit-transform: translate(8px, -92px) rotate(16deg) scale(1.06);
            transform: translate(8px, -92px) rotate(16deg) scale(1.06);
  }
  80% {
    opacity: 0.5;
    -webkit-transform: translate(-8px, -125px) rotate(-14deg) scale(1.08);
            transform: translate(-8px, -125px) rotate(-14deg) scale(1.08);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -160px) rotate(25deg) scale(1.1);
            transform: translate(0, -160px) rotate(25deg) scale(1.1);
  }
}
body {
  background: #fafafa;
}

.mv-heading {
  background: linear-gradient(135deg, #737373 0%, #ffffff 100%);
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 900px) {
  .mv-heading {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.mv-title {
  color: #737373;
  -webkit-text-stroke: 2px #FFFFFF;
  font-size: 48px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .mv-title {
    font-size: 64px;
    -webkit-text-stroke: 3px #FFFFFF;
  }
}

.breadcrumb {
  padding: 5px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
  color: #d3d3d3;
}

.breadcrumb span[property=itemListElement] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; /* or inline-block */
  visibility: visible;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb [property=itemListElement],
.breadcrumb [property=item],
.breadcrumb [property=name] {
  display: inline !important;
  font-size: inherit !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-weight: 600;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.breadcrumb [property=itemListElement]:hover,
.breadcrumb [property=item]:hover,
.breadcrumb [property=name]:hover {
  color: #87cefa;
}

.breadcrumb .current-item {
  pointer-events: none;
  color: #2e2e2e;
  font-weight: 600;
}

.page-work__category {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .page-work__category {
    margin-top: 80px;
  }
}

.page-work__category-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-work__category-item {
  background: #d3d3d3;
  padding: 2px 10px;
  color: #2e2e2e;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  z-index: 0;
}
.page-work__category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #87cefa;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: -1;
}
.page-work__category-item:hover {
  color: #FFFFFF;
}
.page-work__category-item:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.page-work__category-item.is-active {
  color: #FFFFFF;
  background: #87cefa;
}

.page-work__category-text {
  margin-top: 10px;
}

.page-work__wrap {
  margin-top: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .page-work__wrap {
    margin-top: 100px;
    max-width: 1000px;
  }
}

.page-work__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .page-work__boxes {
    gap: 60px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-work__box {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #FFFFFF;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  -webkit-box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
          box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.page-work__box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.page-work__box::before {
  content: "詳しく見る";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.95);
          transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: #87cefa;
  color: #FFFFFF;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 1;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
}
.page-work__box:hover {
  border: 3px solid #87cefa;
}
.page-work__box:hover::after {
  opacity: 1;
}
.page-work__box:hover::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  border: 3px solid #FFFFFF;
}
.page-work__box:hover .page-work-box__image img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
.page-work__box:hover .page-work-box__content {
  opacity: 0.9;
}
.page-work__box:hover .page-work-box__text {
  background: #87cefa;
  color: #FFFFFF;
}

.page-work-box__image {
  height: 70%;
}

.page-work-box__content {
  padding: 20px;
  height: 30%;
}

.page-work-box__title {
  font-size: 20px;
  font-weight: 700;
  color: #2e2e2e;
}

.page-work-box__textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.page-work-box__text {
  font-weight: 500;
  color: #2e2e2e;
  background: #d3d3d3;
  padding: 2px 10px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .pagination {
    margin-top: 100px;
  }
}

.pagination__prev,
.pagination__number,
.pagination__next {
  width: 40px;
  height: 40px;
  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;
  font-weight: 500;
  font-size: 20px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 900px) {
  .pagination__prev,
  .pagination__number,
  .pagination__next {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

@media screen and (min-width: 900px) {
  .pagination__prev {
    font-size: 28px;
  }
}
.pagination__prev:hover {
  color: #87cefa;
}

.pagination__number {
  background: #d3d3d3;
  border-radius: 50%;
  text-decoration: none;
}
.pagination__number:hover {
  color: #FFFFFF;
  background: #87cefa;
}
.pagination__number.is-active {
  background: #87cefa;
  color: #FFFFFF;
  pointer-events: none;
}

@media screen and (min-width: 900px) {
  .pagination__next {
    font-size: 28px;
  }
}
.pagination__next:hover {
  color: #87cefa;
}

body {
  background: #fafafa;
  color: #2e2e2e;
}

.main {
  margin-top: 60px;
}
@media screen and (min-width: 900px) {
  .main {
    margin-top: 100px;
  }
}

.single-work__main {
  margin-top: 60px;
}
@media screen and (min-width: 900px) {
  .single-work__main {
    margin-top: 100px;
  }
}

.single-work__contents {
  background: #FFFFFF;
  -webkit-box-shadow: 0 18px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 18px 20px rgba(0, 0, 0, 0.25);
  padding: 60px 40px;
}
@media screen and (min-width: 900px) {
  .single-work__contents {
    padding: 80px 60px;
  }
}

.single-work__title {
  font-size: 32px;
  color: #737373;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .single-work__title {
    font-size: 48px;
  }
}

.single-work__categorys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .single-work__categorys {
    margin-top: 20px;
  }
}

.single-work__category {
  background: #d3d3d3;
  color: #000;
  padding: 2px 10px;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .single-work__category {
    font-size: 20px;
  }
}

.single-work__image {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .single-work__image {
    margin-top: 40px;
  }
}

.single-work__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .single-work__content {
    margin-top: 60px;
  }
}

.single-work__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .single-work__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.single-work__head {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .single-work__head {
    padding-right: 30px;
    position: relative;
    display: inline-block;
    font-size: 24px;
  }
  .single-work__head::after {
    position: absolute;
    content: "：";
    right: 0px;
  }
}

.single-work__body-url {
  text-decoration: underline;
}
@media screen and (min-width: 900px) {
  .single-work__body-url {
    font-size: 18px;
  }
}
.single-work__body-url:hover {
  color: #87cefa;
}

@media screen and (min-width: 900px) {
  .single-work__body {
    font-size: 18px;
  }
}

.single-work__lists {
  margin-top: 8px;
}

.single-work__list {
  list-style: disc;
}
@media screen and (min-width: 900px) {
  .single-work__list {
    list-style: inside;
    font-size: 18px;
  }
}

.pagination--2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 100px;
}
@media screen and (min-width: 900px) {
  .pagination--2 {
    margin-top: 150px;
  }
}

.pagination__prev--2,
.pagination__next--2 {
  background: #d3d3d3;
  font-size: 20px;
  padding: 2px 20px;
  font-weight: 500;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
  position: relative;
  -webkit-box-shadow: 0 18px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 18px 20px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 900px) {
  .pagination__prev--2,
  .pagination__next--2 {
    font-size: 24px;
    padding: 4px 20px;
    padding: 4px 20px;
  }
}
.pagination__prev--2:hover,
.pagination__next--2:hover {
  color: #FFFFFF;
  background-color: #87cefa;
}
.pagination__prev--2:hover::before, .pagination__prev--2:hover::after,
.pagination__next--2:hover::before,
.pagination__next--2:hover::after {
  background-color: #87cefa;
}

.pagination__prev--2 {
  margin-left: 30px;
  border-radius: 0 12px 12px 0;
}
.pagination__prev--2::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #d3d3d3;
  width: 60px;
  height: 60px;
  clip-path: polygon(100% 0, 50% 50%, 100% 100%);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 900px) {
  .pagination__prev--2::before {
    width: 80px;
    height: 80px;
    left: -80px;
  }
}

.pagination__next--2 {
  margin-right: 30px;
  border-radius: 12px 0 0 12px;
}
.pagination__next--2::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #d3d3d3;
  width: 60px;
  height: 60px;
  clip-path: polygon(50% 50%, 0 0, 0 100%);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 900px) {
  .pagination__next--2::after {
    width: 80px;
    height: 80px;
    right: -80px;
  }
}

.work__buttons {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  display: table;
}

.pagination--2 .is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

body {
  background: #fafafa;
  color: #2e2e2e;
  font-weight: 500;
}

.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
  gap: 100px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
}
@media screen and (min-width: 900px) {
  .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 100%;
    gap: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .wrap {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.main {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .main {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  .main {
    width: 70%;
  }
}

.page-news-main__title {
  font-size: 32px;
  font-weight: 700;
  color: #737373;
}
@media screen and (min-width: 900px) {
  .page-news-main__title {
    font-size: 42px;
  }
}

.page-news-main__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-news-main__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #FFFFFF;
  -webkit-box-shadow: 0 18px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 18px 20px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 900px) {
  .page-news-main__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .page-news-main__item {
    gap: 50px;
  }
}
.page-news-main__item:hover .page-news-main-item__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.page-news-main__item:hover .page-news-main-item__category {
  background-color: #87cefa;
  color: #FFFFFF;
}
.page-news-main__item:hover .page-news-main-item__data,
.page-news-main__item:hover .page-news-main-item__body {
  opacity: 0.6;
}

.page-news-main-item__image {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .page-news-main-item__image {
    width: 40%;
  }
}
.page-news-main-item__image img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.page-news-main-item__content {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 900px) {
  .page-news-main-item__content {
    width: 60%;
  }
}

.page-news-main-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page-news-main-item__category {
  background: #d3d3d3;
  padding: 2px 10px;
  font-weight: 700;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 900px) {
  .page-news-main-item__category {
    font-size: 18px;
  }
}

.page-news-main-item__data {
  font-weight: 700;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 900px) {
  .page-news-main-item__data {
    font-size: 18px;
  }
}

.page-news-main-item__body {
  font-weight: 500;
  margin-top: 20px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 900px) {
  .page-news-main-item__body {
    font-size: 18px;
  }
}

@media screen and (min-width: 900px) {
  .page-news__side {
    width: 40%;
    margin-top: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .page-news__side {
    width: 30%;
  }
}

.page-news-side__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.page-news-side__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.page-news-side__title {
  font-size: 24px;
  font-weight: 700;
  color: #737373;
}
.page-news-side__title:hover {
  color: #87cefa;
}

.page-news-side__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.page-news-side__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FFFFFF;
  -webkit-box-shadow: 0 18px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 18px 20px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 1200px) {
  .page-news-side__card {
    gap: 20px;
  }
}
.page-news-side__card:hover .page-news-side-card__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.page-news-side__card:hover .page-news-side-card__category {
  background: #87cefa;
  color: #FFFFFF;
}
.page-news-side__card:hover .page-news-side-card__data,
.page-news-side__card:hover .page-news-side-card__body {
  opacity: 0.6;
}

.page-news-side-card__image {
  width: 30%;
  overflow: hidden;
}
.page-news-side-card__image img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  overflow: hidden;
  height: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-news-side-card__content {
  width: 70%;
  padding: 10px;
}

.page-news-side-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 900px) {
  .page-news-side-card__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.page-news-side-card__category {
  font-weight: 700;
  background: #d3d3d3;
  padding: 2px 10px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.page-news-side-card__data {
  font-weight: 700;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.page-news-side-card__body {
  font-weight: 500;
  margin-top: 10px;
  font-size: 14px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.sidebar-search__title {
  font-size: 20px;
  font-weight: 600;
  color: #737373;
}

.search-form {
  margin-top: 10px;
}
.search-form ::-webkit-input-placeholder {
  opacity: 0.6;
}
.search-form ::-moz-placeholder {
  opacity: 0.6;
}
.search-form :-ms-input-placeholder {
  opacity: 0.6;
}
.search-form ::-ms-input-placeholder {
  opacity: 0.6;
}
.search-form ::placeholder {
  opacity: 0.6;
}

.search-field:hover {
  border-color: #87cefa;
}

.search-submit {
  color: #737373;
}
.search-submit:hover {
  color: #87cefa;
}

body {
  font-size: 16px;
  color: #2e2e2e;
  background: #fafafa;
}

@media screen and (min-width: 1200px) {
  .page-news__wrap {
    gap: 100px;
  }
}

.single-news-main__title {
  font-size: 32px;
  font-weight: 700;
  color: #737373;
}
@media screen and (min-width: 900px) {
  .single-news-main__title {
    font-size: 48px;
  }
}

.single-news-main__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .single-news-main__head {
    margin-top: 60px;
  }
}

.single-news-main__category {
  background: #d3d3d3;
  padding: 2px 10px;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (min-width: 900px) {
  .single-news-main__category {
    font-size: 20px;
  }
}

.single-news-main__data {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .single-news-main__data {
    font-size: 20px;
  }
}

.single-news-main__image {
  margin-top: 20px;
  -webkit-box-shadow: 0 18px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 18px 20px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 900px) {
  .single-news-main__image {
    margin-top: 40px;
  }
}

.single-news-main__textarea {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 18px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 18px 20px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 900px) {
  .single-news-main__textarea {
    padding: 60px 40px;
    gap: 20px;
  }
}

.single-news-main__text {
  font-size: 16px;
  font-weight: 500;
}

.single-news-main__text-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 20px;
}
@media screen and (min-width: 900px) {
  .single-news-main__text-list {
    gap: 20px;
  }
}

.single-news-main__list-text {
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.single-news-main__list-text::before {
  position: absolute;
  content: "・";
  top: -3px;
  left: -20px;
  font-size: 20px;
}

.page-news__bottom {
  background: #d3d3d3;
  padding-top: 40px;
  margin-bottom: -100px;
  padding-bottom: 100px;
}

.page-news-bottom__inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 900px) {
  .page-news-bottom__inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .page-news-bottom__inner {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.page-news-bottom__title {
  font-size: 24px;
}
@media screen and (min-width: 900px) {
  .page-news-bottom__title {
    font-size: 32px;
  }
}

.page-news-bottom__items {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .page-news-bottom__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
}

.page-news-bottom__item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #FFFFFF;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  -webkit-box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
          box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.page-news-bottom__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.page-news-bottom__item::before {
  content: "詳しく見る";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.95);
          transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: #87cefa;
  color: #FFFFFF;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 1;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
}
.page-news-bottom__item:hover {
  border: 3px solid #87cefa;
}
.page-news-bottom__item:hover::after {
  opacity: 1;
}
.page-news-bottom__item:hover::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  border: 3px solid #FFFFFF;
}
.page-news-bottom__item:hover .page-news-bottom__image img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
.page-news-bottom__item:hover .page-work-box__content {
  opacity: 0.9;
}
.page-news-bottom__item:hover .page-news-bottom__item-title {
  color: #87cefa;
}

.page-news-bottom__image {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page-news-bottom__image img {
  width: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-news-bottom__item-title {
  font-size: 18px;
  padding: 20px;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

body {
  background: #fafafa;
  color: #2e2e2e;
}

.thanks-contact__inner {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (min-width: 900px) {
  .thanks-contact__inner {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.thanks-contact__title {
  font-size: 32px;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .thanks-contact__title {
    font-size: 42px;
  }
}

.thanks-contact__textarea {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .thanks-contact__textarea {
    margin-top: 60px;
    gap: 30px;
  }
}

.thanks-contact__text {
  font-weight: 500;
  font-size: 16px;
}

.thanks-contact__buttons {
  margin-top: 60px;
}

.thanks-contact__button {
  background: #FFFFFF;
  border: 3px solid #d3d3d3;
  border-radius: 36px;
  padding: 10px 20px;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  width: 100%;
  max-width: 230px;
}
@media screen and (min-width: 900px) {
  .thanks-contact__button {
    margin-top: 30px;
  }
}
.thanks-contact__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #87cefa;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 0;
}
.thanks-contact__button:hover {
  color: #FFFFFF;
  border-color: #d3d3d3;
}
.thanks-contact__button:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.thanks-contact__button span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .thanks-contact__button span {
    font-size: 20px;
  }
}

.thanks-contact__search {
  margin-top: 20px;
}