@charset "UTF-8";
.header {
  width: 100%;
  height: 70px;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10;
}
.header__logo {
  width: 200px;
}
@media (max-width: 924px) {
  .header__logo {
    width: 230px;
  }
}
.header__logo-img-sub {
  display: none;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin: 0 auto;
}
.header__inner--fixed {
  width: 100%;
  background-color: #fff;
  animation: slideDown 0.3s ease-in-out;
  z-index: 10;
}
.header__inner--fixed .nav__link {
  color: #000;
}
.header__inner--fixed .nav__item:not(:last-child)::before {
  background-color: #000;
}
.header__right {
  display: flex;
}

.cta {
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #020b1b, #1a1f2f, #2c3647, #3f4d60, #577083);
  margin-left: 10px;
  color: #fff;
  padding: 0 15px;
  height: 70px;
}
.cta__hours {
  font-size: clamp(12px, 0.9vw, 14px);
}
.cta__tel {
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: bold;
}

.btn {
  padding: clamp(4px, 0.6vw, 6px) clamp(14px, 1.8vw, 20px);
  border-radius: 30px;
  font-size: clamp(12px, 1vw, 14px);
}
.btn--contact {
  background-color: rgba(219, 249, 23, 0.852);
  margin-left: 15px;
  color: #fff;
}
.btn--contact i {
  margin-right: 5px;
}

.nav {
  align-items: center;
}
.nav__list {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: clamp(13px, 1.2vw, 14px);
}
.nav__item {
  position: relative;
  margin-left: 14px;
  line-height: 1.5;
}
.nav__link {
  color: #000;
  display: block;
  transition: 0.3s;
}
.nav__link:hover {
  color: #4B6CB7;
}
.nav__en {
  display: block;
  font-size: 0.5em;
  text-align: center;
}

.sp-nav {
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  width: 30%;
  height: 100vh;
  background: linear-gradient(to bottom, #020b1b, #1a1f2f, #2c3647, #3f4d60, #577083);
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 100;
  transition: all 0.3s ease;
  color: #fff;
  text-align: center;
}
.sp-nav__inner {
  padding: 10px 5px;
}
.sp-nav__show {
  visibility: visible;
  opacity: 1;
  top: 0;
  left: 0%;
}
.sp-nav__link {
  color: #fff;
}
.sp-nav__logo {
  max-width: 200px;
  margin: 0 auto;
}
.sp-nav__list {
  text-align: center;
  padding-top: 30px;
}
.sp-nav__item {
  font-size: 16px;
  margin-bottom: 15px;
}
.sp-nav__en {
  display: block;
  font-size: 0.5em;
}
.sp-nav__button {
  color: #fff;
  background-color: rgba(219, 249, 23, 0.852);
  font-size: 12px;
  padding: 6px 30px;
  border-radius: 20px;
  margin-bottom: 5px;
  display: inline-block;
}
.sp-nav__time {
  font-size: 12px;
}
.sp-nav__tel {
  margin-bottom: 20px;
}
.sp-nav__address {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
  font-size: 14px;
}
.sp-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 5;
}
.sp-nav {
  /* sp-navが開いているときだけオーバーレイを有効化 */
}

.sp-nav__show + .sp-nav__overlay {
  opacity: 1;
  pointer-events: auto;
}

.burger {
  width: 20px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
  margin-left: 20px;
  z-index: 100;
}
.burger__bar {
  background-color: #fff;
  position: absolute;
  top: 0;
  width: 20px;
  height: 2px;
  transition: all 0.3s ease;
}
.burger__bar:nth-child(1) {
  top: 9px;
}
.burger__bar:nth-child(2) {
  top: 16px;
}
.burger__bar:nth-child(3) {
  top: 23px;
}
.burger--active .burger__bar:nth-child(1) {
  transform: translateY(7px) rotate(-45deg);
  transition: all 0.3s ease;
}
.burger--active .burger__bar:nth-child(2) {
  opacity: 0;
}
.burger--active .burger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(45deg);
}

@media (max-width: 1024px) {
  .burger {
    display: block;
  }
  .nav {
    display: none;
  }
  .btn {
    margin-right: 50px;
  }
}
@media (max-width: 768px) {
  .header {
    height: 50px;
  }
  .header__logo {
    width: 150px;
  }
  .cta {
    padding: 10px;
    height: 50px;
  }
  .cta__meta {
    display: none;
  }
  .btn {
    margin-right: 60px;
    border-radius: 10px;
    padding: 10px;
  }
  .btn__text {
    display: none;
  }
  .btn--contact i {
    margin-right: 0;
  }
  .fa-solid {
    font-size: 15px;
  }
  .burger {
    margin-left: 0;
    top: 10px;
  }
}
.hero {
  height: 100vh;
}
.hero__copy {
  padding-top: 100px;
}
.hero__headline {
  position: absolute;
  top: 40%;
  left: 3%;
  padding: 20px;
  /* transform: translate(-50%, -50%); */
  color: #fff;
  font-size: clamp(24px, 5vw, 40px);
  text-shadow: 4.2px 4.2px 4px rgba(24, 40, 72, 0.5);
}
.hero__slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  position: absolute;
}
.hero__slide {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  animation: slide 24s linear infinite;
}
.hero__slide:nth-child(1) {
  background: url(../img/mv-slide01.webp) no-repeat center/cover;
  animation-delay: -2s;
}
.hero__slide:nth-child(2) {
  background: url(../img/mv-slide02.webp) no-repeat center/cover;
  animation-delay: 6s;
}
.hero__slide:nth-child(3) {
  background: url(../img/mv-slide03.webp) no-repeat center/cover;
  animation-delay: 14s;
}

@keyframes slide {
  0% {
    opacity: 1;
    transform: scale(1.2);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 0;
  }
}
.intro {
  background: url(../img/about-img.JPG) no-repeat center/cover;
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
  /* text-shadow: 4.2px 4.2px 4px rgba(10, 20, 12, 0.5); */
  margin-bottom: 100px;
}
.intro__title {
  font-size: 30px;
  margin-bottom: 30px;
}
.intro__text {
  margin-bottom: 50px;
  line-height: 2;
}

.services {
  margin-bottom: 100px;
}
.services__number {
  color: tomato;
  margin-right: 15px;
  display: inline-block;
  transform: skewX(-10deg);
}
.services__title {
  color: #001E53;
  position: relative;
}
.services__image {
  overflow: hidden;
}
.services__image img {
  width: 100%;
  transition: 0.4s;
}
.services__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #FF6B00; /* ベースの青 */
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 8%;
  right: 5%;
  margin-left: 10px;
  transition: all 0.3s ease;
}
.services__arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #FF6B00;
  border-bottom: 2px solid #FF6B00;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}
.services__link:hover .services__image img {
  transform: scale(1.1);
}
.services__link:hover .services__arrow {
  background-color: #FF6B00;
  border-color: #FF6B00;
  transform: translateX(4px);
}
.services__link:hover .services__arrow::before {
  border-color: #fff;
}

.services--index .services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.services--index .services__number {
  font-size: 24px;
}
.services--index .services__title {
  font-size: 24px;
}
.services--index .services__item {
  margin-bottom: 30px;
}
.services--index .services__image {
  width: 100%;
}
.services--index .services__image img {
  aspect-ratio: 10/5;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.works::after {
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: url(../img/work_bg.webp) no-repeat center/cover;
  filter: brightness(80%);
  opacity: 0.5;
  width: 100%;
  height: 100%;
}
.works__slider {
  margin-top: 40px;
  margin-bottom: 40px;
}
.works .swiper-wrapper {
  padding-bottom: 70px;
}
.works .swiper-slide {
  height: auto;
  width: 230px !important;
  display: flex;
}
.works__card {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
}
.works__image {
  width: 100%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  vertical-align: bottom;
  display: block;
}
.works__heading {
  border-radius: 20px 20px 0 0;
  text-align: center;
  padding: 10px;
  background-color: #001E53;
  color: #fff;
}
.works__info {
  text-align: left;
  padding: 20px;
  /* 🔵 ブロック全体を中央寄せ */
  width: -moz-fit-content;
  width: fit-content;
  /* 🔵 テキストは左寄せのまま */
  font-size: 14px;
  line-height: 1.6;
}
.works__modal-label {
  background-color: #ccc;
  padding: 5px;
  text-align: center;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 10px;
  width: 60px;
  border-radius: 10px;
  font-weight: bold;
}
.works__pagination {
  margin-top: 20px;
}
.works {
  /* 非アクティブ（色が染まる前） */
}
.works .swiper-pagination-bullet {
  background-color: rgba(93, 79, 76, 0.35);
  opacity: 1; /* ← これ必須！ */
}
.works {
  /* アクティブ */
}
.works .swiper-pagination-bullet-active {
  background-color: #5D4F4C;
}

.works__modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
}
.works__modal--show {
  display: flex;
}
.works__modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.works__modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 50%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
}
.works__modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}
.works__modal-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
}
.works__modal-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background-color: #001E53;
  color: #fff;
  padding: 20px;
  border-radius: 20px 20px 0 0;
}
.works__modal-info {
  font-size: 14px;
  line-height: 1.7;
  padding: 20px;
}
.works__modal-info p {
  margin-bottom: 4px;
}

/* モーダル表示中は背景スクロール禁止 */
body.is-modal-open {
  overflow: hidden;
}

.flow {
  padding-top: 100px;
  margin-bottom: 80px;
}
.flow__item {
  position: relative;
  background-color: #F3F7FA;
  border-radius: 30px;
  margin-bottom: 40px;
  padding: 20px 20px 20px 50px;
}
.flow__item::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #f6cf2e;
}
.flow__item:last-child {
  margin-bottom: 0;
}
.flow__item:last-child::before {
  display: none;
}
.flow__content {
  display: flex;
  justify-content: space-between;
}
.flow__number {
  position: absolute;
  top: -25px;
  left: 1%;
  font-size: 35px;
  color: #FFDE27;
}
.flow__title {
  width: 30%;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.flow__detail {
  width: 65%;
}

.price {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.price::after {
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: url(../img/price_bg.webp) no-repeat center/cover;
  filter: brightness(80%);
  opacity: 0.5;
  width: 100%;
  height: 100%;
}
.price__list {
  display: flex;
  justify-content: space-between;
}
.price__card {
  width: 30%;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  background: #fff;
  position: relative;
  padding-top: 50px;
}
.price__media img {
  width: 100%;
}
.price__icon {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  width: 100px;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.price__icon img {
  width: 60px;
}
.price__title {
  text-align: center;
  padding: 10px 0 20px;
}
.price__specs {
  padding: 20px;
}
.price__spec {
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}
.price__spec-label {
  background-color: #EFF2F7;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 5px;
}
.price__spec-value {
  padding: 5px 10px;
}

@media (max-width: 1024px) {
  .services__list {
    grid-template-columns: 1fr 1fr;
  }
  .services__image img {
    width: 100%;
    height: 100%;
  }
  .services__image:nth-of-type(1), .services__image:nth-of-type(2) {
    margin-right: 0;
  }
  .services__image:nth-of-type(2), .services__image:nth-of-type(4) {
    margin-left: 0;
  }
  .services__content {
    width: 100%;
  }
  .flow__item {
    padding: 30px;
  }
  .flow__content {
    flex-direction: column;
  }
  .flow__title {
    width: 100%;
    margin-bottom: 20px;
  }
  .flow__detail {
    width: 100%;
  }
  .works__grid {
    justify-items: center;
  }
  .works__card {
    max-width: 350px;
  }
  .works__image {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .price__list {
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin: 0 auto;
  }
  .price__card {
    width: 70%;
    margin-bottom: 80px;
    border-radius: 20px;
  }
  .price__icon {
    top: -8%;
  }
}
@media (max-width: 768px) {
  .works__grid {
    grid-template-columns: 1fr;
  }
  .works__modal-dialog {
    width: 70%;
  }
  .services--index .services__list {
    grid-template-columns: 1fr;
  }
  .price__card {
    width: 100%;
    margin-bottom: 80px;
  }
}
.faq {
  padding-top: 100px;
  margin-bottom: 100px;
}
.faq__item {
  margin-bottom: 30px;
}
.faq__question {
  background-color: #009D95;
  color: #fff;
  padding: 15px 30px;
  border-radius: 20px;
  margin-bottom: 8px;
  font-size: 20px;
  display: flex;
  align-items: center;
  position: relative;
}
.faq__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  right: 5%;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq {
  /* ▼ 矢印をCSSで描く（黒） */
}
.faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translate(-50%, -65%) rotate(45deg); /* ▼下向き */
  transition: transform 0.3s ease;
}
.faq__label {
  font-size: 26px;
  font-weight: bold;
  margin-right: 10px;
}
.faq__answer {
  height: 0;
  overflow: hidden;
  transition: 0.3s;
  padding: 0 30px;
  background-color: #F3F7FA;
  border-radius: 10px;
  font-size: 18px;
}
.faq__item.is-open .faq__answer {
  height: auto;
  overflow: visible;
  padding: 20px 30px;
}
.faq__item.is-open .faq__icon::before {
  transform: translate(-50%, -35%) rotate(-135deg); /* 上向きに回転 */
}

@media (max-width: 768px) {
  .faq__question {
    padding: 10px;
    font-size: 16px;
  }
  .faq__answer {
    font-size: 16px;
  }
  .faq__label {
    font-size: 20px;
  }
  .faq__item.is-open .faq__answer {
    padding: 15px;
  }
}
.contact {
  /* background-color: #EFF2F7; */
  padding: 10%;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.contact::after {
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: url(../img/contact_bg.webp) no-repeat center/cover;
  filter: brightness(80%);
  opacity: 0.8;
  width: 100%;
  height: 100%;
}
.contact__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 10%;
  background-color: #F3F7FA;
  border-radius: 50px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.contact__menu {
  display: flex;
  justify-content: space-between;
}
.contact__item {
  border: 1px solid;
  border-radius: 30px;
  /* padding: 15px; */
  width: 45%;
  text-align: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.contact__item--tel {
  background: linear-gradient(135deg, #2563eb, #1d4ed8); /* ブルー濃淡 */
  border: none;
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  padding: 15px;
}
.contact__item--tel:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
}
.contact__item--mail {
  background: linear-gradient(135deg, #10b981, #059669); /* エメラルド→深緑 */
  color: #fff;
  border: none;
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.contact__item--mail:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(16, 185, 129, 0.3);
}
.contact__lead {
  margin-bottom: 60px;
  text-align: center;
}
.contact__link {
  color: #fff;
  display: block;
  /* width: 100%;
  height: 100%; */
  padding: 15px;
}
.contact__icon {
  margin-right: 5px;
}

@media (max-width: 1024px) {
  .contact__menu {
    flex-direction: column;
  }
  .contact__item {
    width: 100%;
  }
  .contact__item--tel {
    margin-bottom: 30px;
  }
}
.footer {
  background: linear-gradient(to bottom, #020b1b, #1a1f2f, #2c3647, #3f4d60, #577083);
}
.footer__inner {
  padding: 40px 70px;
  color: #F3F7FA;
}
.footer__top {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #EFF2F7;
}
.footer__brand {
  width: 350px;
  margin-right: 30px;
}
.footer__nav-link {
  color: #F3F7FA;
}
.footer__address {
  letter-spacing: 0.1em;
}
.footer__nav-list {
  display: flex;
}
.footer__nav-item {
  margin-right: 30px;
}
.footer__copyright {
  text-align: center;
  color: #F3F7FA;
  background-color: #000;
  padding: 10px;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
  }
  .footer__brand {
    margin-bottom: 15px;
  }
  .footer__nav {
    max-width: 400px;
    margin: 0 auto;
  }
  .footer__nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 30px;
  }
  .footer__brand {
    text-align: center;
  }
  .footer__logo {
    max-width: 300px;
  }
}
html {
  font-size: 100%;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #000;
}

li {
  list-style: none;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  display: grid;
  gap: 6px;
  align-items: start;
  font-size: clamp(22px, 3vw, 32px);
  position: relative;
  padding-bottom: 20px;
  color: #182E3F;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.section-title__jp {
  font-size: 32px;
  margin-bottom: 5px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  bottom: 48px;
  width: 13%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, #1f6feb, #3f8cff, #7ab8ff, #b3e5ff);
}
.section-title__en {
  font-size: 0.52em;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page-title {
  color: #fff;
  text-align: center;
  line-height: 1.2;
  position: relative;
  top: 5%;
  text-shadow: 8px 8px 9px rgba(0, 0, 0, 0.4);
}
.page-title__jp {
  font-size: 40px;
}
.page-title__en {
  font-size: 23px;
  display: block;
}

.l-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.about__button {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  background: #fff; /* 通常時の背景（濃い青） */
  color: #000;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid #001E53;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  /* ===== ホバーの色流れ（左→右） ===== */
}
.about__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* 右に流れるため左に隠す */
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #001E53);
  transition: all 0.4s ease;
  z-index: -1;
}
.about__button:hover::before {
  left: 0; /* ホバー時に左→右へスライド */
}
.about__button:hover {
  color: #fff; /* 文字色は白のまま */
}

.works__more {
  position: relative;
  display: block;
  margin: 30px auto 0;
  padding: 10px 40px;
  background: #fff;
  border: 2px solid #001E53;
  color: #000;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  letter-spacing: 0.1em; /* MORE の文字に少し余白を出す場合 */
  /* 色が流れるアニメーション用 */
}
.works__more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* 左に隠しておく */
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #001E53);
  transition: all 0.4s ease;
  z-index: -1;
}
.works__more:hover::before {
  left: 0; /* 左→右へスライドして色が流れる */
}
.works__more:hover {
  color: #fff;
}

.breadcrumb {
  margin-top: 16px; /* FV下の余白 */
  margin-bottom: 60px; /* 次のセクションとの余白 */
  max-width: 1100px; /* サイトの幅に合わせて */
  padding: 0 16px; /* スマホ左右余白 */
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb .separator {
  margin: 0 8px; /* 区切りの余白 */
  opacity: 0.6;
}

@media (max-width: 768px) {
  .section-title::after {
    bottom: 40px;
  }
}
.company-hero {
  height: 350px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
}
.company-hero::after {
  content: "";
  background: url(../img/company-img.jpeg) no-repeat center/cover;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: -1;
  height: 350px;
  filter: brightness(50%);
}

.company-summary {
  margin-bottom: 100px;
}
.company-summary__inner {
  max-width: 800px;
  margin: 0 auto;
}
.company-summary__title {
  font-size: 36px;
  margin-bottom: 50px;
}
.company-summary__table {
  width: 100%;
  margin-bottom: 50px;
  border: 1px solid;
}
.company-summary__row {
  display: flex;
  border-bottom: 1px solid;
}
.company-summary__row:last-child {
  border-bottom: none;
}
.company-summary__term {
  width: 30%;
  padding: 15px;
  background-color: cornflowerblue;
  text-align: center;
  border-right: 1px solid;
}
.company-summary__desc {
  width: 70%;
  padding: 15px 30px;
  background-color: #F3F7FA;
}
.company-access {
  width: 100%;
  margin-bottom: 80px;
}
.company-access__map-iframe {
  width: 100%;
  height: 500px;
  vertical-align: bottom;
}
.company-access__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-hero {
  height: 350px;
  display: grid;
  place-items: center;
}
.service-hero::after {
  content: "";
  background: url(../img/contact_bg.webp) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 350px;
  width: 100%;
  z-index: -1;
  filter: brightness(50%);
}

.services--page .services__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  padding-top: 80px;
  scroll-margin-top: 100px;
}
.services--page .services__content {
  width: 45%;
}
.services--page .services__image {
  width: 45%;
}
.services--page .services__image img {
  aspect-ratio: 3/2;
  width: 100%;
}
.services--page .services__number {
  margin-bottom: 30px;
  font-size: 40px;
}
.services--page .services__title {
  font-size: 30px;
}
.services--page .services__desc {
  line-height: 2;
  font-weight: bold;
}

.contact-hero {
  height: 350px;
  display: grid;
  place-items: center;
}
.contact-hero::after {
  content: "";
  background: url(../img/contact-fv.jpeg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 350px;
  width: 100%;
  z-index: -1;
  filter: brightness(50%);
}

.contact-page__inner {
  max-width: 700px;
  padding: 0 20px;
  margin: 0 auto 80px;
}

.wpcf7-form-control-wrap:not(:has(input[type=checkbox])) {
  display: block;
  width: 100%;
}

.form__group {
  margin-bottom: 30px;
}
.form__label {
  display: block;
  margin-bottom: 10px;
  text-align: left;
}
.form__control {
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #F3F3F3;
}

.wpcf7-spinner {
  display: none !important;
}

.privacy-policy {
  margin: 24px 0;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f7f7f7;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  /* 幅の調整（フォームに合わせるなら width はそのままでOK） */
  width: 100%;
  box-sizing: border-box;
  /* 高さ・スクロール */
  max-height: 260px; /* 好きな高さに調整してOK */
  overflow-y: auto;
}

/* 見出しの調整（お好みで） */
.privacy-policy__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.privacy-policy__heading {
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
}

.form__group--agree {
  margin-top: 16px;
  margin-bottom: 24px;
  display: flex !important;
  justify-content: center !important;
}

.form__agree {
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

.form__agree-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form__agree-text {
  font-size: 14px;
}

.button {
  padding: 20px 60px;
  background-color: #001E53;
  border-radius: 30px;
  color: #F3F7FA;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .form__group {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .form__label {
    margin-bottom: 10px;
    width: 100%;
  }
  .form__control {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */