@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Quattrocento+Sans);
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 13px;
  color: #333;
  line-height: 1.8;
  letter-spacing: 1.5px;
  background: #fff;
}

main {
  overflow: hidden;
}

#wrap {
  opacity: 0;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
}

#wrap.is-visible {
  opacity: 1;
  -webkit-transition: opacity 3s ease;
  transition: opacity 3s ease;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* 白背景 */
  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;
  z-index: 9999;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.page-loader.hide {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #333;
  border-top-color: transparent;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.char-animate {
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  display: inline-block;
  -webkit-animation: charFadeIn 1s ease forwards;
          animation: charFadeIn 1s ease forwards;
}

@-webkit-keyframes charFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes charFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.animated__slideIn--left,
.animated__slideIn--right {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, translate 0.5s ease;
  transition: opacity 0.5s ease, translate 0.5s ease;
}

.animated__slideIn--left {
  translate: -1000px;
}
@media (max-width: 800px) {
  .animated__slideIn--left {
    translate: 0 40px;
  }
}
.animated__slideIn--left.js-show {
  opacity: 1;
  translate: 0;
}

.animated__slideIn--right {
  translate: 1000px;
}
@media (max-width: 800px) {
  .animated__slideIn--right {
    translate: 0 40px;
  }
}
.animated__slideIn--right.js-show {
  opacity: 1;
  translate: 0;
}

.animated__fadeIn {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.animated__fadeIn.js-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.inner {
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .inner {
    padding-inline: 50px;
  }
}
@media (min-width: 900px) {
  .inner {
    padding-inline: 170px;
    max-width: 1440px;
    margin-inline: auto;
  }
}

.contact__button {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #fff;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid #333;
  padding: 10px 20px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  -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;
}
@media (min-width: 768px) {
  .contact__button {
    font-size: 18px;
    padding: 15px 30px;
  }
  .contact__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #333;
    z-index: 0;
    -webkit-transition: left 0.4s ease;
    transition: left 0.4s ease;
  }
  .contact__button span {
    position: relative;
    z-index: 1;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .contact__button:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  .contact__button:hover::before {
    left: 0;
  }
  .contact__button:hover span {
    color: #fff;
  }
}

.top-section {
  padding-block: 50px;
}
@media (min-width: 768px) {
  .top-section {
    padding-block: 80px;
  }
}

.top-section__main-title {
  font-size: 40px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 768px) {
  .top-section__main-title {
    font-size: 55px;
  }
}

.top-section__sub-title {
  font-size: 18px;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .top-section__sub-title {
    font-size: 25px;
  }
}
.top-section__sub-title::before, .top-section__sub-title::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 30px;
  background: #333;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-section__sub-title::before {
  left: -50px;
}
.top-section__sub-title::after {
  right: -50px;
}

.top-section__link {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #333;
  border: 1px solid #333;
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .top-section__link {
    position: relative;
    overflow: hidden;
    -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;
  }
  .top-section__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 0;
    -webkit-transition: left 0.4s ease;
    transition: left 0.4s ease;
  }
  .top-section__link span {
    position: relative;
    z-index: 1;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .top-section__link:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  .top-section__link:hover::before {
    left: 0;
  }
  .top-section__link:hover span {
    color: #333;
  }
}
@media (min-width: 768px) {
  .top-section__link {
    font-size: 18px;
    padding: 15px 40px;
  }
}
@media (min-width: 900px) {
  .top-section__link {
    font-size: 20px;
  }
}

.to-go-top-wrap {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 125px;
}
@media screen and (max-width: 767px) {
  .to-go-top-wrap {
    position: unset;
    padding-inline: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

.to-go-top {
  display: none;
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #333;
  border: 1px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .to-go-top {
    width: 50px;
    height: 50px;
  }
}
.to-go-top .line {
  position: absolute;
  width: 4px;
  height: 24px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.to-go-top .line.left {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 30px;
  top: 28px;
}
@media screen and (max-width: 767px) {
  .to-go-top .line.left {
    top: 10px;
    left: 15px;
  }
}
.to-go-top .line.right {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  right: 30px;
  top: 28px;
}
@media screen and (max-width: 767px) {
  .to-go-top .line.right {
    top: 10px;
    right: 15px;
  }
}
@media (any-hover: hover) {
  .to-go-top:hover {
    background: #fff;
    border: 1px solid #333;
  }
  .to-go-top:hover .line {
    background: #333;
  }
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  font-size: 14px;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  padding-inline: 170px;
}
@media screen and (max-width: 999px) {
  .breadcrumb {
    padding-inline: 80px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding-inline: 20px;
  }
}

.breadcrumb__item {
  display: inline-block;
}

.breadcrumb__item a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.breadcrumb__item a:hover {
  opacity: 0.7;
}

.current-item {
  font-weight: bold;
  pointer-events: none;
  font-size: 16px;
}

.breadcrumb__link {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.breadcrumb__link:hover {
  opacity: 0.7;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
}

.loading-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  width: 100%;
  height: 100px;
  line-height: 100px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-animation: flip-loading 2s ease-in-out infinite alternate;
          animation: flip-loading 2s ease-in-out infinite alternate;
}
.loading-text span {
  display: inline-block;
  margin: 0 5px;
  color: #fff;
}
.loading-text span:nth-child(1) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0s infinite linear alternate;
          animation: blur-text 1.5s 0s infinite linear alternate;
}
.loading-text span:nth-child(2) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0.2s infinite linear alternate;
          animation: blur-text 1.5s 0.2s infinite linear alternate;
}
.loading-text span:nth-child(3) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0.4s infinite linear alternate;
          animation: blur-text 1.5s 0.4s infinite linear alternate;
}
.loading-text span:nth-child(4) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0.6s infinite linear alternate;
          animation: blur-text 1.5s 0.6s infinite linear alternate;
}
.loading-text span:nth-child(5) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0.8s infinite linear alternate;
          animation: blur-text 1.5s 0.8s infinite linear alternate;
}
.loading-text span:nth-child(6) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 1s infinite linear alternate;
          animation: blur-text 1.5s 1s infinite linear alternate;
}
.loading-text span:nth-child(7) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 1.2s infinite linear alternate;
          animation: blur-text 1.5s 1.2s infinite linear alternate;
}

@-webkit-keyframes flip-loading {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
}

@keyframes flip-loading {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
}
@-webkit-keyframes blur-text {
  0% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
}
@keyframes blur-text {
  0% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
}
.header {
  height: 56px;
  background: #fff;
  top: 0; /* 上部に配置 */
  left: 0; /* 左端に配置 */
  width: 100%; /* 横幅を全体に広げる */
  z-index: 10; /* 重なり順を他の要素より前に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングを含めてボックスサイズを計算 */
}
@media (min-width: 900px) {
  .header {
    height: 65px;
    position: fixed; /* ヘッダーを固定 */
  }
  .header.is-scrolled {
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
}

.header__inner {
  height: inherit;
  padding-block: 16px;
  padding-inline: 20px;
  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;
}
@media (min-width: 900px) {
  .header__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 20px;
  }
}

.header__logo {
  font-family: "Oswald", sans-serif;
}
@media (min-width: 768px) {
  .header__logo {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .header__logo:hover {
    opacity: 0.8;
  }
}
@media (min-width: 900px) {
  .header__logo {
    font-size: 20px;
    padding-block: 5px;
  }
}

.header__nav {
  display: none;
}
@media (min-width: 900px) {
  .header__nav {
    display: inline;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

.header__link {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  padding-block: 5px;
}
.header__link img {
  width: 20px;
}

.link-hover-line-smooth {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.link-hover-line-smooth::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.link-hover-line-smooth:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-icon {
  width: 32px;
  height: 27px;
  position: relative;
  z-index: 9999;
  position: fixed;
  right: 20px;
  top: 18px;
}
.drawer-icon.is-checked .drawer-icon__bar {
  background: #fff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 14px;
  width: 32px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  top: 9px;
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 14px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 900px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.drawer-icon--white .drawer-icon__bar {
  background-color: #fff;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background-color: #333;
  border-radius: 6px;
  -webkit-transition: top 0.4s linear, -webkit-transform 0.4s linear;
  transition: top 0.4s linear, -webkit-transform 0.4s linear;
  transition: transform 0.4s linear, top 0.4s linear;
  transition: transform 0.4s linear, top 0.4s linear, -webkit-transform 0.4s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed; /*固定して浮かせる*/
  top: 0;
  background: #333;
  color: #fff;
  z-index: 50;
  padding: 125px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 900px) {
  .drawer-content {
    display: none;
  }
}

.drawer-content__menu {
  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;
  text-align: center;
  height: 543px;
}

.drawer-content__link {
  font-size: 20px;
  display: inline-block;
  padding-block: 8px;
  font-family: "Oswald", sans-serif;
}

.drawer-sns__button {
  margin-top: 20px;
}

.drawer-button img {
  width: 40px;
}

.mv {
  position: relative;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .mv {
    margin-top: 80px;
  }
}
@media (min-width: 900px) {
  .mv {
    margin-top: 100px;
  }
}

.mv__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .mv__wrap {
    gap: 70px;
  }
}

.mv__logo-float {
  position: absolute;
  top: -15%;
  left: calc(50% + 150px);
  width: 450px;
  opacity: 0;
  -webkit-animation: logoFadeIn 5s ease 1s forwards, logoFloat 5s ease-in-out infinite;
          animation: logoFadeIn 5s ease 1s forwards, logoFloat 5s ease-in-out infinite;
  z-index: 2;
  pointer-events: none; /* クリックを通過させる */
}
@media screen and (max-width: 1099px) {
  .mv__logo-float {
    width: 250px;
    top: 0%;
    left: calc(50% + 223px);
  }
}
@media screen and (max-width: 899px) {
  .mv__logo-float {
    left: calc(50% + 152px);
  }
}
@media screen and (max-width: 767px) {
  .mv__logo-float {
    left: calc(50% + 39px);
    width: 272px;
    top: -23%;
  }
}
@media screen and (max-width: 549px) {
  .mv__logo-float {
    display: none;
  }
}

.mv__logo-float img {
  width: 100%;
  display: block;
  -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;
}

.mv__logo-float:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@-webkit-keyframes logoFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes logoFadeIn {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes logoFloat {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes logoFloat {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.mv__lead {
  padding-inline: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .mv__lead {
    padding-inline: 60px;
  }
}
@media (min-width: 900px) {
  .mv__lead {
    padding-inline: 100px;
  }
}
@media (min-width: 1440px) {
  .mv__lead {
    padding-inline: 0;
    margin: 0 180px;
  }
}

.mv__lead-title {
  font-size: 22px;
  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 (min-width: 768px) {
  .mv__lead-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    font-size: 26px;
  }
}
@media (min-width: 900px) {
  .mv__lead-title {
    font-size: 35px;
  }
}
@media (min-width: 1440px) {
  .mv__lead-title {
    font-size: 40px;
  }
}
.mv__lead-title span {
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #f6f5f0;
}
@media (min-width: 768px) {
  .mv__lead-title span {
    width: auto;
    background: none;
    padding: 0;
  }
}

.mv__lead-line.is-2 {
  margin-left: 50px;
}
@media (min-width: 768px) {
  .mv__lead-line.is-2 {
    margin-left: 0;
  }
}

.mv__lead-text--en {
  font-size: 10px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .mv__lead-text--en {
    font-size: 12px;
  }
}
@media (min-width: 900px) {
  .mv__lead-text--en {
    font-size: 15px;
  }
}

.mv__lead-text--ja {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .mv__lead-text--ja {
    font-size: 15px;
  }
}
@media (min-width: 900px) {
  .mv__lead-text--ja {
    font-size: 17px;
  }
}

.mv__swiper {
  width: 100%;
  height: auto;
  overflow: hidden; /* スライドが外にはみ出さないようにする */
}
.mv__swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px; /* 画像間のスペースを設定 */
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear; /* スライドの動きを滑らかにする */
}

.mv-swiper-slide {
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (min-width: 768px) {
  .mv-swiper-slide {
    width: 500px;
  }
}
@media (min-width: 1440px) {
  .mv-swiper-slide {
    width: 100%;
    max-width: 650px;
  }
}
.mv-swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-button__wrap {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .mv-button__wrap {
    margin-top: 50px;
  }
}

@media (min-width: 900px) {
  .mv__contact-button {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .mv__contact-button {
    font-size: 22px;
  }
}

/* スクロールバー全体 */
.mv__scrolldown {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -150px;
  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;
  gap: 12px;
}
@media (min-width: 1440px) {
  .mv__scrolldown {
    bottom: -215px;
  }
}

/* テキスト */
.mv__scrolldown-text {
  font-size: 15px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #000;
}
@media (min-width: 1440px) {
  .mv__scrolldown-text {
    font-size: 20px;
  }
}

/* グレーバー */
.mv__scrolldown-bar {
  width: 2px;
  height: 50px;
  background: #bbbbbb;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1440px) {
  .mv__scrolldown-bar {
    height: 100px;
  }
}

/* 黒バー（アニメーション） */
.mv__scrolldown-bar-active {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 2px;
  height: 50px;
  background: #000;
  -webkit-animation: scrollDown 2s ease-in-out infinite;
          animation: scrollDown 2s ease-in-out infinite;
}

@-webkit-keyframes scrollDown {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: -50px;
  }
}

@keyframes scrollDown {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: -50px;
  }
}
.top-service {
  padding-top: 180px;
}
@media (min-width: 768px) {
  .top-service {
    padding-top: 200px;
  }
}
@media (min-width: 1440px) {
  .top-service {
    padding-top: 300px;
  }
}

@media screen and (max-width: 999px) {
  .top-service__inner {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 899px) {
  .top-service__inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .top-service__inner {
    padding-inline: 20px;
  }
}

.top-service__title {
  text-align: center;
}

.top-service__text {
  margin-top: 10px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .top-service__text {
    font-size: 14px;
    text-align: center;
  }
}
@media (min-width: 1440px) {
  .top-service__text {
    font-size: 17px;
    text-align: center;
  }
}

.top-service__cards {
  overflow: hidden;
  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: 50px;
}
@media (min-width: 768px) {
  .top-service__cards {
    margin-top: 80px;
    gap: 100px;
  }
}
@media screen and (max-width: 799px) {
  .top-service__cards {
    overflow: unset;
  }
}

.top-service__card:nth-of-type(even) .top-service-card__image::before {
  top: 5px;
  right: 5px;
}
@media (min-width: 1440px) {
  .top-service__card:nth-of-type(even) .top-service-card__image::before {
    top: 10px;
    right: 10px;
  }
}
@media (min-width: 768px) {
  .top-service__card:nth-of-type(even) .top-service-card__wrap {
    padding-bottom: 10px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .top-service__card:nth-of-type(even) .top-service-card__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.top-service-card__title {
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .top-service-card__title {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .top-service__card:nth-of-type(even) .top-service-card__title {
    text-align: end;
  }
}

.top-service-card__wrap {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .top-service-card__wrap {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1440px) {
  .top-service-card__wrap {
    margin-top: 40px;
    gap: 65px;
  }
}

.top-service-card__image {
  position: relative;
}
.top-service-card__image img {
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.top-service-card__image::before {
  position: absolute;
  content: "";
  border: 1px solid #333;
  top: -5px;
  right: -6px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (min-width: 1440px) {
  .top-service-card__image::before {
    top: -10px;
    right: -10px;
  }
}

.top-service-card__body {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .top-service-card__text {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .top-service-card__text {
    font-size: 17px;
  }
}

.top-service-card-button__container {
  margin-top: 15px;
  text-align: right;
}
@media (min-width: 1440px) {
  .top-service-card-button__container {
    margin-top: 80px;
  }
}

@media (min-width: 768px) {
  .top-service__card:nth-of-type(even) .top-service-card-button__container {
    text-align: start;
  }
}

.top-service-card__button {
  font-weight: 700;
  font-size: 15px;
  border: 1px solid #333;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1440px) {
  .top-service-card__button {
    font-size: 17px;
    padding: 15px 40px;
  }
}
@media (any-hover: hover) {
  .top-service-card__button:hover {
    background: #333;
    color: #fff;
  }
}

.top-service-button__container {
  text-align: center;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .top-service-button__container {
    margin-top: 100px;
  }
}
@media (min-width: 900px) {
  .top-service-button__container {
    margin-top: 150px;
  }
}

.service-contents__inner {
  padding-inline: 170px;
  max-width: 1440px;
  margin-inline: auto;
}
@media screen and (max-width: 999px) {
  .service-contents__inner {
    padding-inline: 80px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .service-contents__inner {
    padding-inline: 20px;
  }
}

.service-content__price-box {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  padding: 30px 40px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.service-content__price-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/price-image1.webp") no-repeat center center/cover;
  opacity: 0.5;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.service-content__price-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .service-content__price-box {
    padding: 20px 15px;
  }
}

.service-content__price-box__title--wrap {
  text-align: center;
  position: relative;
  color: #fff;
  z-index: 2;
}

.service-content__price-box__title {
  font-size: 40px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 767px) {
  .service-content__price-box__title {
    font-size: 30px;
  }
}

.service-content__price-box__text {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .service-content__price-box__text {
    font-size: 13px;
  }
}

.service-price-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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 (max-width: 767px) {
  .service-price-list {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}

.service-price-list__item {
  width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 150px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 2;
  border-bottom: #fff 1px solid;
  padding-block: 20px;
}
@media screen and (max-width: 999px) {
  .service-price-list__item {
    gap: 170px;
  }
}
@media screen and (max-width: 799px) {
  .service-price-list__item {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}

.service-price-list__term {
  width: 280px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 999px) {
  .service-price-list__term {
    font-size: 18px;
    width: 255px;
  }
}
@media screen and (max-width: 799px) {
  .service-price-list__term {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .service-price-list__term {
    font-size: 16px;
  }
}

.service-price-list__price {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 999px) {
  .service-price-list__price {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .service-price-list__price {
    font-size: 16px;
  }
}

.service-price-list__note {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  text-align: center;
  position: relative;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .service-price-list__note {
    text-align: start;
  }
}

.service-content2 {
  -webkit-margin-before: 150px;
          margin-block-start: 150px;
}

.service-content__price-box2::before {
  background: url("../img/service-image2.webp") no-repeat center center/cover;
}
.service-content__price-box2::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.service-price__btn-wrap {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.service-price__btn {
  border: 1px solid transparent;
  color: #333;
  display: inline-block;
  background: #fff;
  padding: 10px 30px;
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .service-price__btn:hover {
    color: #fff;
    background: #000;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    border: 1px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .service-price__btn {
    font-size: 15px;
  }
}

.service-price__btn2 {
  border: 1px solid transparent;
  color: #333;
  display: inline-block;
  background: #fff;
  padding: 10px 30px;
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .service-price__btn2:hover {
    color: #fff;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    border: 1px solid #fff;
    background: linear-gradient(135deg, #03212a 50%, #0d3a4b 100%);
  }
}
@media screen and (max-width: 767px) {
  .service-price__btn2 {
    font-size: 15px;
  }
}

.top-works {
  background: #eaeaea;
}

@media (min-width: 900px) {
  .top-works__inner {
    padding-inline: 100px;
    max-width: 1040px;
    margin-inline: auto;
  }
}
@media (min-width: 1440px) {
  .top-works__inner {
    padding-inline: 170px;
    max-width: 1440px;
    margin-inline: auto;
  }
}

.top-works__title {
  text-align: center;
}

.top-works__text {
  margin-top: 10px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .top-works__text {
    text-align: center;
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .top-works__text {
    font-size: 17px;
  }
}

.top-works__cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .top-works__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media (min-width: 1440px) {
  .top-works__cards {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
}

.top-works__card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 10px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .top-works__card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    gap: 10px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1440px) {
  .top-works__card {
    margin-bottom: 60px;
  }
}
@media (any-hover: hover) {
  .top-works__card:hover .top-works-card__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.top-works-card__image {
  overflow: hidden;
}
.top-works-card__image img {
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-works-card__body {
  padding: 20px;
  background: #fff;
}
@media (min-width: 900px) {
  .top-works-card__body {
    padding: 30px;
  }
}

.top-works-card__name,
.top-works-card__text,
.top-works__category,
.top-works-card-button__wrap {
  padding-inline: 16px;
}
@media (min-width: 1440px) {
  .top-works-card__name,
  .top-works-card__text,
  .top-works__category,
  .top-works-card-button__wrap {
    padding-inline: 20px;
  }
}

.top-works-card__name {
  font-size: 15px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .top-works-card__name {
    font-size: 18px;
  }
}

@media (min-width: 900px) {
  .top-works-card__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .top-works-card__text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.top-works__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-works__category-link {
  color: #fff;
  background: #345e7d;
  font-size: 11px;
  padding: 2px 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.top-works-card-button__wrap {
  margin-top: 5px;
  text-align: right;
  padding-bottom: 20px;
}
@media (min-width: 1440px) {
  .top-works-card-button__wrap {
    padding-bottom: 30px;
  }
}

.top-works-card__link {
  font-weight: 700;
  font-size: 15px;
  border: 1px solid #333;
  padding: 10px 20px;
  background: #fff;
  position: relative;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-works-card__link:hover {
  color: #fff;
  border: 1px solid #333;
  background: #333;
}
@media screen and (max-width: 767px) {
  .top-works-card__link {
    font-size: 13px;
  }
}

.top-works-button__container {
  text-align: center;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .top-works-button__container {
    margin-top: 100px;
  }
}
@media (min-width: 900px) {
  .top-works-button__container {
    margin-top: 120px;
  }
}

.works__inner {
  padding-inline: 170px;
  max-width: 1440px;
  margin-inline: auto;
}
@media screen and (max-width: 999px) {
  .works__inner {
    padding-inline: 80px;
  }
}
@media screen and (max-width: 767px) {
  .works__inner {
    padding-inline: 20px;
  }
}

.works__cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 549px) {
  .works__cards {
    grid-template-columns: repeat(1, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

.works-category__wrap {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  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;
}

.works__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 549px) {
  .works__category {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
}

.works__category-link {
  font-size: 16px;
  padding-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works__category-link.is-active {
  color: #345e7d;
  font-weight: 700;
  border-bottom: 1px solid #345e7d;
}
@media (any-hover: hover) {
  .works__category-link:hover {
    color: #345e7d;
  }
}
@media screen and (max-width: 549px) {
  .works__category-link {
    font-size: 14px;
  }
}

.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination__link {
  padding: 8px 16px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .pagination__link {
    padding: 5px 7px;
  }
}

.pagination__link:hover {
  background: #eee;
}

.pagination__link.is-current {
  background: #345e7d;
  color: #fff;
  font-weight: bold;
  pointer-events: none;
}

.pagination__link.pagination__prev,
.pagination__link.pagination__next {
  font-weight: bold;
}

@media screen and (max-width: 549px) {
  .works-card__text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media screen and (max-width: 1099px) {
  .about__inner {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 899px) {
  .about__inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .about__inner {
    padding-inline: 20px;
  }
}

.top-about__title {
  text-align: center;
}

.top-about__text {
  margin-top: 10px;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
}

.top-about-content {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
}

.top-about-image {
  width: 39.0909090909%;
  position: relative;
}
.top-about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  z-index: 1;
}
.top-about-image img {
  border-radius: 16px;
}
@media screen and (max-width: 899px) {
  .top-about-image {
    width: unset;
  }
}

.top-about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 899px) {
  .top-about-content {
    -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;
  }
}

.top-about-content__wrap {
  width: 56.3636363636%;
  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 (max-width: 899px) {
  .top-about-content__wrap {
    width: unset;
  }
}

.top-about-content__title {
  padding-left: 20px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: left;
}
.top-about-content__title::before {
  content: "";
  position: absolute;
  background: #333;
  width: 10px;
  height: 1px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-about-content__title::after {
  content: "";
  position: absolute;
  background: #333;
  width: 10px;
  height: 1px;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.top-about-content__text {
  font-size: 15px;
}

.top-contact__inner {
  padding-inline: 200px;
}
@media screen and (max-width: 1099px) {
  .top-contact__inner {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 767px) {
  .top-contact__inner {
    padding-inline: 20px;
  }
}

.top-contact__title {
  text-align: center;
}

.top-contact__wrap {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  background: #333;
  padding: 30px 20px;
  border-radius: 16px;
  position: relative;
}
.top-contact__wrap::before {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  inset: 10px;
  border-radius: 16px;
  pointer-events: none;
}

.top-contact__text {
  color: #fff;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .top-contact__text {
    font-size: 13px;
  }
}

.top-contact-btn-wrap {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  text-align: center;
}

.top-contact-btn {
  display: inline-block;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .top-contact-btn:hover {
    color: #fff;
    background: #333;
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}
@media screen and (max-width: 767px) {
  .top-contact-btn {
    font-size: 16px;
    padding: 10px 15px;
  }
}

@media (min-width: 768px) {
  .top-contact__hidden {
    display: none;
  }
}

.contact {
  padding-top: 100px;
  padding-bottom: 150px;
}

.contact__inner {
  max-width: 1440px;
  padding-inline: 170px;
  margin-inline: auto;
}
@media screen and (max-width: 1029px) {
  .contact__inner {
    padding-inline: 80px;
  }
}
@media screen and (max-width: 767px) {
  .contact__inner {
    padding-inline: 20px;
  }
}

.contact__wrap {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 50px 40px;
}
@media screen and (max-width: 767px) {
  .contact__wrap {
    padding: 30px 15px;
  }
}

.contact__fields {
  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;
}

.contact__privacy {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  text-align: center;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 899px) {
  .form-field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: 163px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 899px) {
  .form-field__head {
    width: 100%;
  }
}

.form-field__label {
  font-size: 16px;
}

.form-field__tag {
  font-size: 10px;
  color: #ff7a7a;
  border: 1px solid #ff7a7a;
  border-radius: 4px;
  padding: 1px;
}

.gray-color {
  color: #333;
  border: 1px solid #333;
}

.form-field__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.form-text {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
  font-size: 16px;
  border-radius: 8px;
  background: #f0f0f0;
}
.form-text:focus {
  border: 1px solid #345e7d;
  outline: none;
}

.form-field__radios,
.wpcf7-form-control.wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .form-field__radios,
  .wpcf7-form-control.wpcf7-checkbox {
    gap: 10px;
  }
}

.form-radio,
.wpcf7-list-item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
}

.form-radio__input,
.wpcf7-list-item input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::after, .form-radio__input:checked + .wpcf7-list-item-label::after,
.wpcf7-list-item input[type=checkbox]:checked + .form-radio__text::after,
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.form-radio__input:focus + .form-radio__text::before, .form-radio__input:focus + .wpcf7-list-item-label::before,
.wpcf7-list-item input[type=checkbox]:focus + .form-radio__text::before,
.wpcf7-list-item input[type=checkbox]:focus + .wpcf7-list-item-label::before {
  border: 1px solid #345e7d;
}

.form-radio__text,
.wpcf7-list-item-label {
  font-size: 16px;
  position: relative;
  padding-left: 26px;
}
.form-radio__text::before, .form-radio__text::after,
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-radio__text::before,
.wpcf7-list-item-label::before {
  width: 20px;
  height: 20px;
  border: 1px solid #989898;
  background: #fff;
}
.form-radio__text::after,
.wpcf7-list-item-label::after {
  width: 20px;
  height: 20px;
  background: url(../img/lucide--check.webp) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .form-radio__text,
  .wpcf7-list-item-label {
    font-size: 12px;
  }
}

.form-textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 8px;
  background: #f0f0f0;
}
.form-textarea:focus {
  border: 1px solid #345e7d;
  outline: none;
}

.form-checkbox__container {
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
}

.form-checkbox__text a {
  font-size: 16px;
  color: #345e7d;
  font-weight: 700;
  border-bottom: 1px solid #345e7d;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .form-checkbox__text a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .form-checkbox__text a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .form-checkbox__text {
    font-size: 14px;
  }
}

.contact__btn-wrap {
  text-align: center;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
}

.contact-button__link {
  color: #345e7d;
  display: inline-block;
  font-size: 18px;
  padding: 10px 20px;
  border: 1px solid #345e7d;
  background: #fff;
  border-radius: 100vmax;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .contact-button__link:hover {
    background: #345e7d;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .contact-button__link {
    font-size: 16px;
  }
}

.form-checkbox__input input[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
}

.form-checkbox__text {
  font-size: 16px;
  position: relative;
  padding-left: 5px;
  display: inline-block;
}

.form-checkbox__input input[type=checkbox]:checked + .form-checkbox__text::before {
  background: url(../img/lucide--check.webp) no-repeat center center/contain;
}

.wpcf7-spinner {
  display: none;
}

.contact-confirm__btn-wrap {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 499px) {
  .contact-confirm__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact-button__link--prev {
  padding: 10px 80px;
}

.contact-button__link--submit {
  padding: 10px 70px;
  background: #345e7d;
  color: #fff;
  border: 1px solid #345e7d;
}
@media (any-hover: hover) {
  .contact-button__link--submit:hover {
    color: #345e7d;
    background: #fff;
  }
}

@media screen and (max-width: 899px) {
  .form-field__head--confirm {
    width: 163px;
  }
}

@media screen and (max-width: 899px) {
  .form-field--confirm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 499px) {
  .form-field--confirm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}

.form-confirm__text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .form-confirm__text {
    font-size: 14px;
  }
}

.contact__field--confirm {
  border-bottom: 1px solid #d9d9d9;
  padding-block: 10px;
}

.contact__privacy--text {
  color: #ff7a7a;
}

.page-main {
  -webkit-margin-before: 65px;
          margin-block-start: 65px;
}
@media screen and (max-width: 899px) {
  .page-main {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.page-contents {
  padding-top: 80px;
}

.page-mv {
  background: url("../img/bg-image.webp") no-repeat center center/cover;
  width: 100%;
  height: 30vh;
  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;
  position: relative;
}
.page-mv::before, .page-mv::after {
  content: "";
  position: absolute;
  border: 2px solid #d9d9d9;
}
.page-mv::before {
  inset: 10px;
}
.page-mv::after {
  inset: 20px;
}
@media screen and (max-width: 499px) {
  .page-mv {
    height: 200px;
  }
}

.page-mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.page-mv__title {
  color: #fff;
  letter-spacing: 3px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
  font-size: 60px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 499px) {
  .page-mv__title {
    font-size: 30px;
  }
}

.page-mv__text {
  color: #fff;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.8);
  font-size: 20px;
}
@media screen and (max-width: 499px) {
  .page-mv__text {
    font-size: 13px;
  }
}

.page-section__title {
  -webkit-margin-after: 10px;
          margin-block-end: 10px;
  padding-left: 25px;
  text-align: start;
  font-weight: 700;
  font: italic 700 28px "Oswald", sans-serif;
  position: relative;
}
.page-section__title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px;
  height: 1px;
  background: #333;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .page-section__title {
    font-size: 20px;
    white-space: nowrap;
  }
}

.page-section__text {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .page-section__text {
    font-size: 13px;
  }
}

.page-contact {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .page-contact {
    padding-bottom: 60px;
  }
}

.page-404 {
  padding-inline: 170px;
  max-width: 1440px;
  margin-inline: auto;
  height: 440px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 899px) {
  .page-404 {
    padding-inline: 80px;
  }
}
@media screen and (max-width: 767px) {
  .page-404 {
    padding-inline: 20px;
  }
}

.page-error-text {
  text-align: center;
  font-size: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 899px) {
  .page-error-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .page-error-text {
    font-size: 15px;
  }
}

.single-works__inner {
  margin-inline: auto;
  max-width: 1440px;
  padding-inline: 200px;
  padding-block: 100px;
}
@media screen and (max-width: 999px) {
  .single-works__inner {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 767px) {
  .single-works__inner {
    padding-inline: 20px;
  }
}

.single-works__title {
  text-align: left;
  font-size: 50px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .single-works__title {
    font-size: 40px;
  }
}

.single-works__category--wrap {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.single-works__category {
  font-size: 16px;
  padding: 5px 10px;
  background: #345e7d;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .single-works__category {
    font-size: 14px;
    padding: 2px 8px;
  }
}

.single-works__content {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
}

.single-works__text h2,
.single-works__text p,
.single-works__text ul li {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .single-works__text h2,
  .single-works__text p,
  .single-works__text ul li {
    padding-left: 10px;
  }
}

.single-works__text {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
}
.single-works__text a {
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .single-works__text a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .single-works__text a {
    font-size: 14px;
  }
}
.single-works__text h2 {
  border-left: 2px solid #345e7d;
  font-size: 25px;
  font-weight: 700;
}
.single-works__text h2:nth-child(n+2) {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
}
@media screen and (max-width: 767px) {
  .single-works__text h2 {
    font-size: 20px;
  }
}
.single-works__text p {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .single-works__text p {
    font-size: 14px;
  }
}
.single-works__text ul {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  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;
}
.single-works__text ul li {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .single-works__text ul li {
    font-size: 16px;
  }
}

.single-works__btn-wrap {
  text-align: center;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
}

.single-works__btn-link {
  font-size: 20px;
  border-radius: 100vmax;
  color: #fff;
  background: #345e7d;
  border: 1px solid #345e7d;
  padding: 10px 50px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .single-works__btn-link:hover {
    color: #345e7d;
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .single-works__btn-link {
    font-size: 16px;
  }
}

.privacy__inner {
  padding-inline: 150px;
  margin-inline: auto;
  max-width: 1440px;
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .privacy__inner {
    padding-inline: 20px;
    padding-block: 60px;
  }
}

.privacy__title--wrap {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
}
@media screen and (max-width: 767px) {
  .privacy__title--wrap {
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
  }
}

.privacy__title {
  padding-left: 25px;
  text-align: start;
  font: italic 700 30px "Oswald", sans-serif;
  position: relative;
}
.privacy__title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px;
  height: 1px;
  background: #333;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .privacy__title {
    font-size: 22px;
  }
}

.privacy__text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .privacy__text {
    font-size: 13px;
  }
}

.privacy__heading {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  font-size: 25px;
  font-weight: 700;
  border-left: 3px solid #345e7d;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .privacy__heading {
    font-size: 18px;
  }
}

.privacy__text {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
}

.privacy__list {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  padding-left: 20px;
}
.privacy__list li {
  list-style-type: disc;
  font-size: 15px;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .privacy__list li {
    font-size: 13px;
  }
}

.footer {
  background: #333;
}

.footer__inner {
  padding: 30px 20px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 499px) {
  .footer__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 15px;
  }
}

.footer__item a {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.footer__item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media (any-hover: hover) {
  .footer__item a:hover::before {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 499px) {
  .footer__item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.footer__item--sns img {
  width: 20px;
  height: 20px;
}

.footer__lower {
  background: #fff;
  padding-inline: 20px;
}

.footer__copy {
  display: block;
  text-align: center;
}