@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP);
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Set core body defaults */
body {
  min-height: 100svh;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-family: "kozuka-mincho-pro", "Noto Sans JP", serif;
  font-weight: 400;
  color: #2d2d2d;
  background: url("../../asset/images/bg-section.webp") no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 3px;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  apperance: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

.md-show {
  display: none;
}
@media screen and (min-width: 768px) {
  .md-show {
    display: block;
  }
}

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

body br.sp {
  display: none;
}
@media screen and (min-width: 768px) {
  body br.sp {
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  br.pc {
    display: none;
  }
}

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

body {
  font-weight: 400;
  font-style: normal;
  font-family: "kozuka-mincho-pro", "Noto Sans JP", serif;
  color: #2d2d2d;
}
body::before {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
}
body::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background: url(../images/bg-section.webp);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  body::after {
    width: 70%;
    right: 0;
    left: auto;
  }
}

body.js-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.parts__button {
  color: #2d2d2d;
  width: 100%;
  display: inline-block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  transition: opacity 0.3s;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .parts__button {
    width: 100%;
  }
}
.parts__button:hover {
  opacity: 0.7;
}
.parts__button:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .parts__button:last-of-type {
    margin-bottom: 0;
  }
}

.card {
  padding: 0 24px;
  text-shadow: 1px 1px 3px #2d2d2d;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .card {
    margin-bottom: 60px;
  }
}
.card a {
  width: 100%;
  display: block;
}
.card a .card_header {
  text-align: end;
  margin-bottom: 3svh;
}
@media screen and (min-width: 768px) {
  .card a .card_header {
    text-align: left;
  }
}
.card a .card_header h2 {
  font-size: 1rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .card a .card_header h2 {
    margin-bottom: 10px;
  }
}
.card a .card_header p {
  font-size: 0.875rem;
  margin-bottom: 2svh;
}
.card a .card_header p a {
  display: inline;
}
.card a .card_header .post_photo {
  text-align: start;
}
.card a .card_header .post_photo img {
  height: 130px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .card a .card_header .post_photo img {
    height: 300px;
  }
}
.card .card_content {
  height: 25vh;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .card .card_content {
    height: auto;
  }
}
.card .card_content.vertical-text {
  writing-mode: unset;
}
.card .card_content p {
  font-size: 0.75rem;
  line-height: 1.8;
  letter-spacing: 0.2rem;
  writing-mode: initial;
  margin-bottom: 15px;
}
.card .card_content p a {
  display: inline;
}

.cases {
  background: transparent;
  color: white;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .cases {
    padding: 80px 0;
  }
}

.cases .section-title {
  color: #ffffff;
}
.cases .section-title::after {
  background: linear-gradient(135deg, #ffec88, #ffd700);
}

.cases .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.cases .cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .cases .cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.cases .case-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid rgba(255, 236, 136, 0.3);
}
.cases .case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #ffec88;
  background: rgba(255, 255, 255, 0.15);
}
.cases .case-card:hover .case-image img {
  transform: scale(1.05);
}

.cases .case-card:hover .case-image img {
  transform: scale(1.05);
}

.cases .case-card .case-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.cases .case-card .case-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.cases .case-card .case-image .case-category {
  position: absolute;
  top: 15px;
  left: 15px;
  color: white;
  padding: 8px 16px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.cases .case-card .case-image .case-category.roof {
  background: linear-gradient(135deg, #033f83, #022a5c);
}
.cases .case-card .case-image .case-category.tile {
  background: linear-gradient(135deg, #8b4513, #654321);
}
.cases .case-card .case-image .case-category.leak {
  background: linear-gradient(135deg, #ff4444, #cc0000);
}

.cases .case-card .case-content {
  padding: 30px;
  color: white;
}
@media screen and (min-width: 768px) {
  .cases .case-card .case-content {
    padding: 35px;
  }
}

.cases .case-card .case-content .case-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
  display: block;
}

.cases .case-card .case-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .cases .case-card .case-content h3 {
    font-size: 22px;
  }
}

.cases .case-card .case-content .case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}
.cases .case-card .case-content .case-meta span {
  color: #ffec88;
  font-size: 14px;
  font-weight: 600;
}

.cases .case-card .case-content .case-excerpt {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 14px;
}

.cases .case-card .case-content .case-link {
  display: inline-block;
  color: #ffec88;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}
.cases .case-card .case-content .case-link:hover {
  color: #ffd700;
}

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

.cases .cases-summary p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cases .cases-summary p {
    font-size: 18px;
  }
}

.cases .cases-more {
  text-align: right;
  margin-top: 60px;
  width: 100%;
}

.cases .cases-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #033f83, #022a5c);
  color: white;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(3, 63, 131, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cases .cases-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cases .cases-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(3, 63, 131, 0.4);
  color: white;
  border-color: #ffec88;
}

.cases .cases-more-btn:hover::before {
  left: 100%;
}

.cases .cases-more-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cases .cases-more-btn:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cases .emergency-content {
    margin-bottom: 30px;
  }
  .cases .emergency-text {
    font-size: 0.875rem;
  }
  .cases .emergency-phone-btn {
    font-size: 1rem;
  }
  .cases .cases-grid {
    gap: 20px;
  }
  .cases .case-content {
    padding: 20px;
  }
  .cases .case-content .case-meta {
    gap: 10px;
  }
  .cases .case-content .case-meta span {
    font-size: 0.6875rem;
  }
  .cases .cases-summary {
    margin-top: 30px;
  }
  .cases .cases-summary p {
    font-size: 0.875rem;
  }
  .cases .cases-more {
    margin-top: 40px;
  }
  .cases .cases-more-btn {
    padding: 15px 28px;
    font-size: 14px;
  }
  .cases .cases-more-btn i {
    font-size: 16px;
  }
}
/*
.page-case {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  min-height: 100vh;
}
*/
/*
.page-header {
  padding: 120px 0 80px;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;

  @include mq("md") {
    padding: 150px 0 100px;
  }

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(30, 60, 114, 0.9) 0%,
      rgba(42, 82, 152, 0.9) 100%
    );
    backdrop-filter: blur(10px);
  }

  .page-header-content {
    position: relative;
    z-index: 2;
    color: white;
  }

  .page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;

    @include mq("md") {
      font-size: 48px;
      margin-bottom: 30px;
    }
  }

  .page-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

    @include mq("md") {
      font-size: 18px;
      margin-bottom: 40px;
    }
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);

    a {
      color: #ffec88;
      text-decoration: none;
      transition: color 0.3s ease;

      &:hover {
        color: #ffd700;
      }
    }

    .separator {
      color: rgba(255, 255, 255, 0.6);
    }

    .current {
      color: white;
    }
  }
}
*/
/*
.cases-list {
  padding: 80px 0;

  @include mq("md") {
    padding: 100px 0;
  }

  .cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;

    @include mq("sm") {
      grid-template-columns: repeat(2, 1fr);
      gap: 35px;
    }

    @include mq("md") {
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    @include mq("lg") {
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }
  }

  .case-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: $border-radius;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all $transition-duration ease;
    border: 1px solid rgba(255, 236, 136, 0.3);

    &:hover {
      transform: translateY(-15px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
      border-color: #ffec88;
      background: rgba(255, 255, 255, 0.15);

      .case-image img {
        transform: scale(1.1);
      }

      .case-link-text {
        color: #ffd700;

        i {
          transform: translateX(5px);
        }
      }
    }

    .case-link {
      display: block;
      text-decoration: none;
      color: inherit;
      height: 100%;
    }

    .case-image {
      position: relative;
      overflow: hidden;
      height: 220px;

      @include mq("md") {
        height: 200px;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .case-category {
        position: absolute;
        top: 15px;
        left: 15px;
        color: white;
        padding: 6px 12px;
        border-radius: $border-radius;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.5px;
        z-index: 2;

        &.roof {
          background: linear-gradient(135deg, #033f83, #022a5c);
        }

        &.tile {
          background: linear-gradient(135deg, #8b4513, #654321);
        }

        &.leak {
          background: linear-gradient(135deg, #ff4444, #cc0000);
        }
      }
    }

    .case-content {
      padding: 25px;
      color: white;
      display: flex;
      flex-direction: column;
      height: calc(100% - 220px);

      @include mq("md") {
        padding: 20px;
        height: calc(100% - 200px);
      }

      .case-date {
        color: rgba(255, 255, 255, 0.7);
        font-size: 12px;
        margin-bottom: 10px;
        font-weight: 500;
        display: block;
      }

      .case-title {
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 12px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;

        @include mq("md") {
          font-size: 15px;
        }
      }

      .case-meta {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;

        span {
          color: #ffec88;
          font-size: 11px;
          font-weight: 500;
          display: flex;
          align-items: center;
          gap: 5px;

          i {
            font-size: 10px;
            opacity: 0.8;
          }
        }
      }

      .case-excerpt {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.5;
        margin-bottom: 15px;
        font-size: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex-grow: 1;
      }

      .case-link-text {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: #ffec88;
        font-weight: 600;
        font-size: 12px;
        transition: all $transition-duration ease;
        margin-top: auto;

        i {
          font-size: 10px;
          transition: transform $transition-duration ease;
        }
      }
    }
  }
}

// ページネーション
.pagination-wrapper {
  margin-top: 60px;
  text-align: center;

  @include mq("md") {
    margin-top: 80px;
  }

  .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;

    a,
    span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      height: 44px;
      padding: 0 15px;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      text-decoration: none;
      border-radius: $border-radius;
      font-weight: 600;
      font-size: 14px;
      transition: all $transition-duration ease;
      border: 1px solid rgba(255, 236, 136, 0.3);
      backdrop-filter: blur(10px);

      &:hover {
        background: rgba(255, 236, 136, 0.2);
        border-color: #ffec88;
        transform: translateY(-2px);
      }

      &.current {
        background: linear-gradient(135deg, #ffec88, #ffd700);
        color: #033f83;
        border-color: #ffec88;
      }

      &.prev,
      &.next {
        padding: 0 20px;

        i {
          font-size: 12px;
        }
      }
    }

    .dots {
      color: rgba(255, 255, 255, 0.6);
      background: transparent;
      border: none;
      cursor: default;

      &:hover {
        background: transparent;
        transform: none;
      }
    }
  }
}

// 空状態（施工事例がない場合）
.cases-empty {
  text-align: center;
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: $border-radius;
  border: 2px dashed rgba(255, 236, 136, 0.5);
  margin-top: 40px;

  @include mq("md") {
    padding: 120px 40px;
  }

  .cases-empty-icon {
    font-size: 80px;
    color: #ffec88;
    margin-bottom: 30px;

    @include mq("md") {
      font-size: 100px;
      margin-bottom: 40px;
    }
  }

  .cases-empty-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;

    @include mq("md") {
      font-size: 36px;
      margin-bottom: 30px;
    }
  }

  .cases-empty-message {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;

    @include mq("md") {
      font-size: 18px;
      margin-bottom: 50px;
    }
  }

  .cases-empty-contact {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;

    .btn-phone,
    .btn-contact {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 25px;
      text-decoration: none;
      border-radius: $border-radius;
      font-weight: 600;
      font-size: 16px;
      transition: all $transition-duration ease;

      i {
        font-size: 16px;
      }

      &:hover {
        transform: translateY(-3px);
      }
    }

    .btn-phone {
      background: #ff4444;
      color: white;

      &:hover {
        background: #e63939;
        box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
      }
    }

    .btn-contact {
      background: linear-gradient(135deg, #033f83, #022a5c);
      color: white;

      &:hover {
        background: linear-gradient(135deg, #022a5c, #011936);
        box-shadow: 0 8px 25px rgba(3, 63, 131, 0.4);
      }
    }
  }
}

// モバイル専用調整
@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 60px;

    .page-title {
      font-size: 28px;
    }

    .page-subtitle {
      font-size: 14px;
    }
  }

  .cases-list {
    padding: 60px 0;

    .cases-grid {
      gap: 20px;
      margin-top: 30px;
    }

    .case-card {
      .case-image {
        height: 180px;
      }

      .case-content {
        padding: 20px;
        height: calc(100% - 180px);

        .case-title {
          font-size: 14px;
        }

        .case-excerpt {
          font-size: 12px;
        }

        .case-link-text {
          font-size: 11px;
        }
      }
    }
  }

  .pagination-wrapper {
    margin-top: 40px;

    .page-numbers {
      gap: 5px;

      a,
      span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 12px;
      }
    }
  }

  .cases-empty {
    padding: 60px 20px;

    .cases-empty-icon {
      font-size: 60px;
      margin-bottom: 20px;
    }

    .cases-empty-title {
      font-size: 22px;
      margin-bottom: 15px;
    }

    .cases-empty-message {
      font-size: 14px;
      margin-bottom: 30px;
    }

    .cases-empty-contact {
      flex-direction: column;
      gap: 15px;

      .btn-phone,
      .btn-contact {
        padding: 12px 20px;
        font-size: 14px;
      }
    }
  }
}
*/
.section_blog .archive-content,
.section_archive .archive-content,
.section_case .archive-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .section_blog .archive-content,
  .section_archive .archive-content,
  .section_case .archive-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .section_blog .archive-content,
  .section_archive .archive-content,
  .section_case .archive-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.section_blog .card,
.section_archive .card,
.section_case .card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 236, 136, 0.3);
  height: 100%;
  min-height: 400px;
}
.section_blog .card:hover,
.section_archive .card:hover,
.section_case .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #ffec88;
  background: rgba(255, 255, 255, 0.15);
}
.section_blog .card:hover .post_photo img,
.section_archive .card:hover .post_photo img,
.section_case .card:hover .post_photo img {
  transform: scale(1.05);
}
.section_blog .card a,
.section_archive .card a,
.section_case .card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.section_blog .card .card_header,
.section_archive .card .card_header,
.section_case .card .card_header {
  flex-shrink: 0;
}
.section_blog .card .card_header h2,
.section_archive .card .card_header h2,
.section_case .card .card_header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
  padding: 20px 0 0 0;
}
@media screen and (min-width: 768px) {
  .section_blog .card .card_header h2,
  .section_archive .card .card_header h2,
  .section_case .card .card_header h2 {
    font-size: 22px;
    padding: 25px 0 0 0;
  }
}
.section_blog .card .card_header p,
.section_archive .card .card_header p,
.section_case .card .card_header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .section_blog .card .card_header p,
  .section_archive .card .card_header p,
  .section_case .card .card_header p {
    padding: 0;
  }
}
.section_blog .card .card_header .post_photo,
.section_archive .card .card_header .post_photo,
.section_case .card .card_header .post_photo {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.section_blog .card .card_header .post_photo img,
.section_archive .card .card_header .post_photo img,
.section_case .card .card_header .post_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.section_blog .card .card_content,
.section_archive .card .card_content,
.section_case .card .card_content {
  flex: 1;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .section_blog .card .card_content,
  .section_archive .card .card_content,
  .section_case .card .card_content {
    padding: 25px;
  }
}
.section_blog .card .card_content p,
.section_archive .card .card_content p,
.section_case .card .card_content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 14px;
}
.section_blog .pagination,
.section_archive .pagination,
.section_case .pagination {
  grid-column: 1/-1;
  margin-top: 60px;
  text-align: center;
}
.section_blog .pagination .page-numbers,
.section_archive .pagination .page-numbers,
.section_case .pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.section_blog .pagination .page-numbers li,
.section_archive .pagination .page-numbers li,
.section_case .pagination .page-numbers li {
  margin: 0;
}
.section_blog .pagination .page-numbers a,
.section_blog .pagination .page-numbers span,
.section_archive .pagination .page-numbers a,
.section_archive .pagination .page-numbers span,
.section_case .pagination .page-numbers a,
.section_case .pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 3px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 236, 136, 0.3);
}
.section_blog .pagination .page-numbers a:hover,
.section_blog .pagination .page-numbers span:hover,
.section_archive .pagination .page-numbers a:hover,
.section_archive .pagination .page-numbers span:hover,
.section_case .pagination .page-numbers a:hover,
.section_case .pagination .page-numbers span:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffec88;
  transform: translateY(-2px);
}
.section_blog .pagination .page-numbers .current,
.section_archive .pagination .page-numbers .current,
.section_case .pagination .page-numbers .current {
  background: linear-gradient(135deg, #033f83, #022a5c);
  border-color: #ffec88;
  color: white;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

/* セクション共通 */
section {
  padding: 100px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  section {
    padding: 120px 0;
  }
}

/* 白背景セクション */
.white-bg {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.white-bg .section-title {
  color: #2d2d2d;
}
.white-bg .section-title::after {
  background: linear-gradient(135deg, #033f83, #022a5c);
}
.white-bg .section-subtitle {
  color: #666;
}

/* 透明背景セクション */
.transparent-bg {
  background: transparent;
  color: white;
}
.transparent-bg .section-title {
  color: white;
}
.transparent-bg .section-title::after {
  background: linear-gradient(135deg, #ffec88, #ffd700);
}
.transparent-bg .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* セクションヘッダー */
.section-header {
  margin-bottom: 80px;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .section-header {
    margin-bottom: 100px;
    gap: 40px;
  }
}
.section-header .section-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  position: relative;
  display: inline-block;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  order: 1;
}
@media screen and (min-width: 768px) {
  .section-header .section-title {
    font-size: 56px;
  }
}
.section-header .section-subtitle {
  font-size: 14px;
  color: #fff;
  max-width: 300px;
  margin: 0;
  line-height: 1.6;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-family: "kozuka-mincho-pro", "Noto Sans JP", serif;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-align: left;
  order: 2;
}
@media screen and (min-width: 768px) {
  .section-header .section-subtitle {
    font-size: 14px;
    letter-spacing: 0.2rem;
  }
}

/* セクション全体のグリッドレイアウト */
section .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  section .container {
    grid-template-columns: 1fr 4fr;
    gap: 80px;
    align-items: start;
  }
}
@media screen and (min-width: 768px) {
  section .full-width {
    grid-template-columns: 1fr;
  }
}
section .section-header {
  margin-bottom: 0;
  justify-self: end;
  grid-column: 1;
}
@media screen and (min-width: 768px) {
  section .section-header {
    grid-column: 1;
    grid-row: 1;
  }
}
section .services-grid,
section .reassurance-grid,
section .flow-steps,
section .credentials-content,
section .cases-grid {
  grid-column: 1;
}
@media screen and (min-width: 768px) {
  section .services-grid,
  section .reassurance-grid,
  section .flow-steps,
  section .credentials-content,
  section .cases-grid {
    grid-column: 2;
    grid-row: 1;
  }
}

/* line-contactセクションとCTAセクション、FAQセクションはグリッドレイアウトを無効化 */
.line-contact .container,
.cta .container {
  display: block;
  grid-template-columns: none;
  gap: 0;
  align-items: initial;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 50px;
  }
  .section-header .section-title {
    font-size: 32px;
    writing-mode: horizontal-tb;
  }
  .section-header .section-subtitle {
    font-size: 16px;
  }
}
.cases .case-card,
.cases .case-card .case-image .case-category,
.company .company-map,
.credentials .representative .rep-image,
.credentials .credentials-grid .credential-item,
.mobile-menu .mobile-menu-content .mobile-cta .mobile-phone-btn,
.mobile-menu .mobile-menu-content .mobile-cta .mobile-line-btn,
.flow .flow-step,
.flow .flow-step .step-number,
.cta .cta-content .cta-buttons .cta-phone-large,
.cta .cta-content .cta-buttons .cta-line-large,
.hero .hero-cta .cta-phone-large,
.hero .hero-cta .cta-line-large,
.cases .cases-more-btn,
.faq .faq-item,
.faq .faq-question {
  border-radius: 3px;
}

.company {
  background: transparent;
  color: white;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .company {
    padding: 80px 0;
  }
}

.company .section-title {
  color: #ffffff;
}
.company .section-title::after {
  background: linear-gradient(135deg, #ffec88, #ffd700);
}

.company .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.company .company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .company .company-content {
    gap: 60px;
  }
}

.company .company-info h3 {
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
}
.company .company-info .info-grid {
  display: grid;
  gap: 15px;
}
.company .company-info .info-grid .info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.company .company-info .info-grid .info-item:last-child {
  border-bottom: none;
}
.company .company-info .info-grid .info-item dt {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.company .company-info .info-grid .info-item dd {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
}
.company .company-info .info-grid .info-item dd a {
  color: #ffec88;
  font-weight: 500;
  text-decoration: none;
}
.company .company-info .info-grid .info-item dd a:hover {
  color: #ffd700;
}

.company .company-map {
  border-radius: 4px;
  overflow: hidden;
}
.company .company-map iframe {
  width: 100%;
  height: 350px;
}

@media (max-width: 768px) {
  .company .company-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .company .company-map iframe {
    height: 280px;
  }
}
.credentials {
  background: transparent;
  color: white;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .credentials {
    padding: 80px 0;
  }
}

.credentials .section-title {
  color: #ffffff;
}
.credentials .section-title::after {
  background: linear-gradient(135deg, #ffec88, #ffd700);
}

.credentials .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.credentials .credentials-content {
  margin-top: 40px;
}

.credentials .representative {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .credentials .representative {
    flex-direction: row;
    gap: 30px;
    margin-bottom: 80px;
  }
}

.credentials .representative .rep-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 768px) {
  .credentials .representative .rep-image {
    width: 150px;
    height: 150px;
  }
}

.credentials .representative .rep-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.credentials .representative .rep-content {
  flex: 1;
}
.credentials .representative .rep-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}
@media screen and (min-width: 768px) {
  .credentials .representative .rep-content h3 {
    font-size: 1.8rem;
  }
}
.credentials .representative .rep-content .rep-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}
.credentials .representative .rep-content .rep-text p {
  margin-bottom: 15px;
}
.credentials .representative .rep-content .rep-text p:last-child {
  margin-bottom: 0;
}
.credentials .representative .rep-content .signature {
  font-weight: 600;
  color: white;
  margin-top: 20px;
}

.credentials .credentials-grid {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .credentials .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.credentials .credentials-grid .credential-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.credentials .credentials-grid .credential-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.credentials .credentials-grid .credential-item .credential-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.credentials .credentials-grid .credential-item .credential-image .lightbox-trigger {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.credentials .credentials-grid .credential-item .credential-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.credentials .credentials-grid .credential-item .credential-image .lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.credentials .credentials-grid .credential-item .credential-image .lightbox-overlay i {
  color: white;
  font-size: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.credentials .credentials-grid .credential-item .credential-image:hover .lightbox-overlay {
  opacity: 1;
}
.credentials .credentials-grid .credential-item .credential-image:hover img {
  transform: scale(1.05);
}

.credentials .credentials-grid .credential-item .credential-content {
  padding: 20px;
}
.credentials .credentials-grid .credential-item .credential-content h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.credentials .credentials-grid .credential-item .credential-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .credentials .representative {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .credentials .representative .rep-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
  .credentials .representative .rep-image img {
    height: 100%;
  }
  .credentials .credentials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .credentials .credential-item {
    padding: 20px;
  }
}
.cta {
  background: linear-gradient(135deg, #033f83, #022a5c);
  color: white;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .cta {
    padding: 80px 0;
  }
}

.cta .section-title {
  color: white;
}

.cta .section-title::after {
  background: #ff8800;
}

.cta .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.cta .cta-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta .cta-content h2 {
    font-size: 2rem;
  }
}

.cta .cta-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
}

.cta .cta-content .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cta .cta-content .cta-buttons {
    flex-direction: row;
    max-width: 800px;
    flex-wrap: wrap;
  }
}

.cta .cta-content .cta-buttons .cta-phone-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 3px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta .cta-content .cta-buttons .cta-phone-large span {
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .cta .cta-content .cta-buttons .cta-phone-large span {
    font-size: 0.875rem;
  }
}
.cta .cta-content .cta-buttons .cta-phone-large {
  background: #ff4444;
}
.cta .cta-content .cta-buttons .cta-phone-large:hover {
  background: #e63939;
}
@media screen and (min-width: 768px) {
  .cta .cta-content .cta-buttons .cta-phone-large {
    flex: 1;
    padding: 25px;
  }
}

.cta .cta-content .cta-buttons .cta-line-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 3px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta .cta-content .cta-buttons .cta-line-large span {
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .cta .cta-content .cta-buttons .cta-line-large span {
    font-size: 0.875rem;
  }
}
.cta .cta-content .cta-buttons .cta-line-large {
  background: #00c300;
}
.cta .cta-content .cta-buttons .cta-line-large:hover {
  background: #00a800;
}
@media screen and (min-width: 768px) {
  .cta .cta-content .cta-buttons .cta-line-large {
    flex: 1;
    padding: 25px;
  }
}

.cta .cta-content .cta-buttons .cta-email-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 3px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta .cta-content .cta-buttons .cta-email-large span {
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .cta .cta-content .cta-buttons .cta-email-large span {
    font-size: 0.875rem;
  }
}
.cta .cta-content .cta-buttons .cta-email-large {
  background: #007cba;
}
.cta .cta-content .cta-buttons .cta-email-large:hover {
  background: #005a8b;
}
@media screen and (min-width: 768px) {
  .cta .cta-content .cta-buttons .cta-email-large {
    flex: 1;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .cta .cta-content h2 {
    font-size: 1.25rem;
  }
}
.fixed-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
.fixed-cta-bar.show {
  transform: translateY(0);
}

.fixed-cta-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.fixed-cta-btn i {
  font-size: 24px;
  margin-bottom: 5px;
}

.fixed-cta-btn span {
  font-size: 10px;
  font-weight: 400;
}

.fixed-cta-btn.fixed-cta-line {
  background-color: #00c300;
}

.fixed-cta-btn.fixed-cta-phone {
  background-color: #ff4444;
}

.fixed-cta-btn.fixed-cta-email {
  background-color: #007cba;
}

.fixed-cta-btn:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .fixed-cta-bar {
    height: 60px;
  }
  .fixed-cta-btn {
    font-size: 12px;
  }
  .fixed-cta-btn i {
    font-size: 20px;
  }
  .fixed-cta-btn span {
    font-size: 9px;
    display: none;
  }
}
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .back-to-top {
    bottom: 120px;
    right: 30px;
  }
}

.back-to-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #333;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}
@media screen and (min-width: 768px) {
  .back-to-top-btn {
    width: 60px;
    height: 60px;
  }
}
.back-to-top-btn:hover {
  background: #555;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: white;
}
.back-to-top-btn i {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .back-to-top-btn i {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 80px;
    right: 15px;
  }
  .back-to-top-btn {
    width: 45px;
    height: 45px;
  }
  .back-to-top-btn i {
    font-size: 14px;
  }
}
/* フローティング電話ボタン */
.floating-phone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.floating-phone .floating-phone-btn {
  background: #ff4444;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 5px 20px rgba(255, 68, 68, 0.4);
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}
.floating-phone .floating-phone-btn:hover {
  background: #e63939;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 68, 68, 0.5);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu .mobile-menu-content {
  text-align: center;
  color: white;
}
.mobile-menu .mobile-menu-content .mobile-nav-list {
  margin-bottom: 40px;
}
.mobile-menu .mobile-menu-content .mobile-nav-list li {
  margin-bottom: 20px;
}
.mobile-menu .mobile-menu-content .mobile-nav-list li a {
  color: white;
  font-size: 24px;
  font-weight: 500;
}
.mobile-menu .mobile-menu-content .mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 300px;
  margin: 0 auto;
}
.mobile-menu .mobile-menu-content .mobile-cta .mobile-phone-btn,
.mobile-menu .mobile-menu-content .mobile-cta .mobile-line-btn {
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.mobile-menu .mobile-menu-content .mobile-cta .mobile-phone-btn {
  background: #ff4444;
  color: white;
}
.mobile-menu .mobile-menu-content .mobile-cta .mobile-phone-btn:hover {
  background: #e63939;
}
.mobile-menu .mobile-menu-content .mobile-cta .mobile-line-btn {
  background: #00c300;
  color: white;
}
.mobile-menu .mobile-menu-content .mobile-cta .mobile-line-btn:hover {
  background: #00a300;
}

.flow {
  background: transparent;
  color: white;
  padding: 100px 0;
}
@media screen and (min-width: 768px) {
  .flow {
    padding: 120px 0;
  }
}
.flow .section-title {
  color: white;
}
.flow .section-title::after {
  background: linear-gradient(135deg, #ffec88, #ffd700);
}
.flow .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.flow .flow-steps {
  max-width: 800px;
  margin: 0 auto;
}
.flow .flow-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 236, 136, 0.3);
}
.flow .flow-step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
  border-color: #ffec88;
}
.flow .flow-step:last-child {
  margin-bottom: 0;
}
.flow .flow-step .step-number {
  background: linear-gradient(135deg, #033f83, #022a5c);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(3, 63, 131, 0.3);
}
.flow .flow-step .step-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffec88;
  margin-bottom: 10px;
}
.flow .flow-step .step-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .flow .flow-step {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }
  .flow .flow-step .step-number {
    margin: 0 auto;
  }
}
footer {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 40px 0 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 60px 0 30px;
  }
}

.footer__copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 1rem;
  }
}

.layout-footer {
  margin-bottom: 64px; /* 固定CTAバー分の余白を確保 */
}

body {
  padding-bottom: 64px; /* 固定バー分の余白を確保 */
}

/* 緊急対応バナー */
.emergency-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ff4444, #cc0000);
  color: white;
  padding: 8px 0;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(255, 68, 68, 0.3);
  animation: pulse 2s infinite;
}
.emergency-banner .emergency-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .emergency-banner .emergency-content {
    gap: 20px;
  }
}
.emergency-banner .emergency-text {
  font-weight: 600;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .emergency-banner .emergency-text {
    font-size: 16px;
  }
}
.emergency-banner .emergency-phone-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
}
.emergency-banner .emergency-phone-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .emergency-banner .emergency-phone-btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
/* ヘッダー */
.header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.header .header-logo img {
  height: 40px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .header .header-logo img {
    height: 50px;
  }
}
.header .header-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header .header-nav {
    display: block;
  }
}
.header .header-nav .nav-list {
  display: flex;
  gap: 30px;
}
.header .header-nav .nav-list a {
  font-weight: 500;
  color: #2d2d2d;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}
.header .header-nav .nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #033f83;
  transition: width 0.3s ease;
}
.header .header-nav .nav-list a:hover::after {
  width: 100%;
}
.header .header-cta {
  display: none;
}
@media screen and (min-width: 768px) {
  .header .header-cta {
    display: block;
  }
}
.header .header-cta .header-phone-btn {
  background: #033f83;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.header .header-cta .header-phone-btn:hover {
  background: #022a5c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(3, 63, 131, 0.3);
}
.header .mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 5px;
  z-index: 1001;
}
@media screen and (min-width: 768px) {
  .header .mobile-menu-btn {
    display: none;
  }
}
.header .mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #2d2d2d;
  transition: all 0.3s ease;
}

.parts__header-nav_items {
  display: flex;
  align-items: center;
  height: inherit;
}

.parts__nav_item {
  height: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1024px) {
  .parts__nav_item {
    font-size: 1rem;
  }
}

.parts__nav_item a {
  display: flex;
  align-items: center;
  height: inherit;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .parts__nav_item a {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.header.header-black .parts__nav_item a {
  color: #ffffff;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(3, 63, 131, 0.8), rgba(2, 42, 92, 0.8));
}

.hero .hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero .hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  text-align: left;
  padding: 0 20px;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .hero .hero-content {
    flex-direction: row;
    text-align: left;
    align-items: start;
    gap: 10px;
    padding: 0 40px;
  }
}

.hero .hero-logo {
  order: 1;
}

.hero .hero-logo img {
  height: 200px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .hero .hero-logo img {
    height: 300px;
  }
}

.hero .hero-text {
  order: 2;
  flex: 1;
  max-width: 600px;
}

.hero .hero-text .hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .hero .hero-text .hero-title {
    font-size: 2.25rem;
  }
}

.hero .hero-text .hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 30px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0 auto;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .hero .hero-text .hero-subtitle {
    font-size: 1.125rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
}

.hero .hero-cta {
  order: 3;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .hero .hero-cta {
    flex-direction: row;
    max-width: 500px;
  }
}

.hero .hero-cta .cta-phone-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 3px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero .hero-cta .cta-phone-large span {
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .hero .hero-cta .cta-phone-large span {
    font-size: 0.875rem;
  }
}
.hero .hero-cta .cta-phone-large {
  background: #ff4444;
}
.hero .hero-cta .cta-phone-large:hover {
  background: #e63939;
}
.hero .hero-cta .cta-phone-large {
  padding: 15px 20px;
  font-size: 1rem;
  min-width: 200px;
}
@media screen and (min-width: 768px) {
  .hero .hero-cta .cta-phone-large {
    flex: 1;
    padding: 20px;
    font-size: 1.125rem;
  }
}

.hero .hero-cta .cta-line-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 3px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero .hero-cta .cta-line-large span {
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .hero .hero-cta .cta-line-large span {
    font-size: 0.875rem;
  }
}
.hero .hero-cta .cta-line-large {
  background: #00c300;
}
.hero .hero-cta .cta-line-large:hover {
  background: #00a800;
}
.hero .hero-cta .cta-line-large {
  padding: 15px 20px;
  font-size: 1rem;
  min-width: 200px;
}
@media screen and (min-width: 768px) {
  .hero .hero-cta .cta-line-large {
    flex: 1;
    padding: 20px;
    font-size: 1.125rem;
  }
}

.hero .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hero .scroll-indicator .scroll-line {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

@keyframes scrollAnimation {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@media (max-width: 768px) {
  .hero .hero-content {
    gap: 40px;
  }
  .hero .hero-cta {
    display: none; /* 固定CTAバーに移動したため非表示 */
  }
  .hero .hero-text .hero-title {
    font-size: 1.5rem;
  }
  .hero .hero-text .hero-subtitle {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin: 0;
    max-width: none;
  }
  .hero .hero-logo img {
    height: 300px;
  }
}
.line-contact {
  background: transparent;
  color: white;
  padding: 100px 0;
}
@media screen and (min-width: 768px) {
  .line-contact {
    padding: 120px 0;
  }
}
.line-contact .section-title {
  color: white;
}
.line-contact .section-title::after {
  background: linear-gradient(135deg, #ffec88, #ffd700);
}
.line-contact .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.line-contact .line-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .line-contact .line-content {
    grid-template-columns: 1fr 1fr;
  }
}
.line-contact .line-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffec88;
}
@media screen and (min-width: 768px) {
  .line-contact .line-text h2 {
    font-size: 42px;
  }
}
.line-contact .line-text p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}
.line-contact .line-text .line-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.line-contact .line-text .line-features .line-feature {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.line-contact .line-qr {
  text-align: center;
}
.line-contact .line-qr .qr-code {
  background: white;
  padding: 20px;
  border-radius: 3px;
  margin-bottom: 20px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.line-contact .line-qr .qr-code img {
  width: 150px;
  height: 150px;
}
.line-contact .line-qr p {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.line-contact .line-qr .line-btn {
  background: linear-gradient(135deg, #00c300, #00a300);
  color: white;
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 195, 0, 0.3);
}
.line-contact .line-qr .line-btn:hover {
  background: linear-gradient(135deg, #00a300, #008300);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 195, 0, 0.4);
}

@media (max-width: 768px) {
  .line-contact .line-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .line-contact .line-text h2 {
    font-size: 28px;
  }
}
.page .section_content h1, .page .section_content h2, .page .section_content h3, .page .section_content h4, .page .section_content h5, .page .section_content h6 {
  color: #ffffff;
  margin-bottom: 20px;
}
.page .section_content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 15px;
}
.page .section_content a {
  color: #ffec88;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page .section_content a:hover {
  color: rgb(255, 244.1428571429, 187);
}

.section_contact .contact-info {
  margin-bottom: 40px;
}
.section_contact .contact-info h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .section_contact .contact-info h2 {
    font-size: 1.5rem;
  }
}
.section_contact .company-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.section_contact .company-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffec88;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section_contact .company-info h3 {
    font-size: 1.25rem;
  }
}
.section_contact .company-info .info-grid {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .section_contact .company-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
.section_contact .company-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .section_contact .company-info .info-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }
}
.section_contact .company-info .info-item .label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffec88;
  min-width: 80px;
}
@media screen and (min-width: 768px) {
  .section_contact .company-info .info-item .label {
    font-size: 1rem;
    min-width: 100px;
  }
}
.section_contact .company-info .info-item .value {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .section_contact .company-info .info-item .value {
    font-size: 1rem;
  }
}
.section_contact .company-info .info-item .value a {
  color: #ffec88;
  text-decoration: none;
  transition: color 0.3s ease;
}
.section_contact .company-info .info-item .value a:hover {
  color: rgb(255, 244.1428571429, 187);
}
.section_contact .contact-form-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.section_contact .contact-form-container h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffec88;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section_contact .contact-form-container h3 {
    font-size: 1.25rem;
  }
}
.section_contact .contact-form-container p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .section_contact .contact-form-container p {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Contact Form 7 カスタムCSS - 未来創舎様 (最適化版)
   ========================================================================== */
/* フォーム全体のコンテナ */
.wpcf7 {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 30px;
  background: #1a1a1a;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid #333333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  position: relative;
}

/* フォーム内の基本要素 */
.wpcf7 * {
  box-sizing: border-box;
}

/* フォームの見出し・説明文 */
.wpcf7 h3 {
  color: #e0e0e0;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 3px solid #4a9eff;
  padding-bottom: 10px;
}

.wpcf7 p:first-of-type {
  color: #b0b0b0;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

/* フォーム項目のラベル */
.wpcf7 label {
  display: block;
  color: #e0e0e0;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
  text-align: left;
}

/* 必須項目のマーク */
.wpcf7 label.required::after {
  content: " *";
  color: #ff6b6b;
  font-weight: 700;
}

/* 入力フィールドの共通スタイル */
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=url],
.wpcf7 input[type=number],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 15px 16px;
  border: 2px solid #444444;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.5;
  background-color: #2a2a2a;
  color: #e0e0e0;
  transition: all 0.3s ease;
  font-family: inherit;
}

/* フォーカス時のスタイル */
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=url]:focus,
.wpcf7 input[type=number]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: #4a9eff;
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.2);
  background-color: #333333;
}

/* テキストエリア */
.wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

/* セレクトボックス */
.wpcf7 select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23e0e0e0' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* チェックボックス・ラジオボタン */
.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  margin-right: 8px;
  transform: scale(1.2);
}

.wpcf7 .wpcf7-list-item {
  margin-bottom: 10px;
}

.wpcf7 .wpcf7-list-item label {
  font-weight: 400;
  display: inline-block;
  margin-bottom: 0;
  cursor: pointer;
}

/* フォーム項目の間隔 */
.wpcf7 p {
  margin-bottom: 25px;
}

/* 送信ボタン */
.wpcf7 input[type=submit] {
  background: linear-gradient(135deg, #4a9eff 0%, #2c5aa0 100%);
  color: #ffffff;
  border: none;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
  min-width: 200px;
  text-transform: none;
}

.wpcf7 input[type=submit]:hover {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
}

.wpcf7 input[type=submit]:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(74, 158, 255, 0.3);
}

/* ==========================================================================
   バリデーション関連CSS - 最適化版
   ========================================================================== */
/* エラーメッセージの基本スタイル */
.wpcf7 .wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  display: block;
  padding: 8px 12px;
  background-color: rgba(255, 107, 107, 0.1);
  border-left: 3px solid #ff6b6b;
  border-radius: 4px;
  position: relative;
  animation: fadeInError 0.3s ease-in-out;
}

/* エラーメッセージのアニメーション */
@keyframes fadeInError {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* エラー状態のフィールド */
.wpcf7 .wpcf7-not-valid {
  border-color: #ff6b6b !important;
  background-color: rgba(255, 107, 107, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1) !important;
  animation: shakeError 0.5s ease-in-out;
}

/* エラー時のシェイクアニメーション */
@keyframes shakeError {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-2px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(2px);
  }
}
/* 送信完了・エラーメッセージ */
.wpcf7 .wpcf7-response-output {
  border: none;
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: 500;
  position: relative;
  animation: slideInMessage 0.4s ease-out;
}

/* メッセージのスライドインアニメーション */
@keyframes slideInMessage {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 成功メッセージ */
.wpcf7 .wpcf7-mail-sent-ok {
  background-color: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  border-left: 4px solid #22c55e;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

/* エラーメッセージ */
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-aborted,
.wpcf7 .wpcf7-spam,
.wpcf7 .wpcf7-validation-errors {
  background-color: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  border-left: 4px solid #ff6b6b;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
}

/* バリデーションエラーリスト */
.wpcf7 .wpcf7-validation-errors {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wpcf7 .wpcf7-validation-errors li {
  margin-bottom: 8px;
  padding: 8px 12px;
  background-color: rgba(255, 107, 107, 0.1);
  border-left: 3px solid #ff6b6b;
  border-radius: 4px;
}

/* ローディング状態 */
.wpcf7 .ajax-loader {
  display: none;
}

.wpcf7.submitting .ajax-loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  vertical-align: middle;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .wpcf7 {
    padding: 30px 20px;
    margin: 0 15px;
  }
  .wpcf7 h3 {
    font-size: 20px;
  }
  .wpcf7 input[type=text],
  .wpcf7 input[type=email],
  .wpcf7 input[type=tel],
  .wpcf7 input[type=url],
  .wpcf7 input[type=number],
  .wpcf7 textarea,
  .wpcf7 select {
    padding: 12px 14px;
    font-size: 16px; /* iOS zoom防止 */
  }
  .wpcf7 input[type=submit] {
    padding: 14px 30px;
    font-size: 16px;
    width: 100%;
  }
  /* モバイルでのエラーメッセージ最適化 */
  .wpcf7 .wpcf7-not-valid-tip {
    font-size: 13px;
    padding: 6px 10px;
    margin-top: 6px;
  }
  .wpcf7 .wpcf7-response-output {
    padding: 12px 16px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .wpcf7 {
    padding: 20px 15px;
  }
  .wpcf7 h3 {
    font-size: 18px;
  }
  /* 小画面でのエラー表示最適化 */
  .wpcf7 .wpcf7-not-valid-tip {
    font-size: 12px;
    padding: 5px 8px;
  }
}
/* アクセシビリティ向上 */
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: 2px solid #4a9eff;
  outline-offset: 2px;
}

/* プレースホルダーのスタイル */
.wpcf7 input::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
  color: #888888;
  opacity: 1;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #888888;
  opacity: 1;
}

/* 無効状態 */
.wpcf7 input:disabled,
.wpcf7 textarea:disabled,
.wpcf7 select:disabled {
  background-color: #3a3a3a;
  color: #666666;
  cursor: not-allowed;
  border-color: #555555;
}

/* フォームの追加装飾 */
.wpcf7::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a9eff, #2c5aa0, #4a9eff);
  border-radius: 12px 12px 0 0;
}

/* 特定フィールドのカスタマイズ例 */
.wpcf7 .field-group {
  display: flex;
  gap: 15px;
}

.wpcf7 .field-group > p {
  flex: 1;
  margin-bottom: 25px;
}

@media (max-width: 600px) {
  .wpcf7 .field-group {
    flex-direction: column;
    gap: 0;
  }
}
/* 隠しフィールドコンテナのボーダー削除 */
.wpcf7 .hidden-fields-container {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.wpcf7 .wpcf7-form-control-wrap {
  border: none !important;
}

@media (max-width: 768px) {
  .section_contact .company-info {
    padding: 20px;
  }
  .section_contact .company-info .info-grid {
    gap: 15px;
  }
  .section_contact .company-info .info-item .label {
    min-width: 70px;
  }
  .section_contact .contact-form-container {
    padding: 20px;
  }
}
.pagination {
  margin: 60px 0;
  text-align: center;
}

.pagination .page-numbers {
  display: flex;
  padding: 8px 16px;
  margin: 0 4px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.pagination .page-numbers.current {
  background-color: #333;
  color: #fff;
  border-color: #333;
  font-weight: bold;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  color: #333;
  background-color: #f8f8f8;
  font-weight: bold;
}

.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

@media screen and (max-width: 768px) {
  .pagination {
    margin: 40px 0;
  }
  .pagination .page-numbers {
    padding: 6px 12px;
    margin: 0 2px;
    font-size: 12px;
  }
}
.reassurance {
  background: transparent;
  color: white;
  padding: 100px 0;
}
@media screen and (min-width: 768px) {
  .reassurance {
    padding: 120px 0;
  }
}
.reassurance .section-title {
  color: white;
}
.reassurance .section-title::after {
  background: linear-gradient(135deg, #ffec88, #ffd700);
}
.reassurance .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.reassurance .reassurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .reassurance .reassurance-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
}
.reassurance .reassurance-item {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 236, 136, 0.3);
}
.reassurance .reassurance-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffec88;
}
.reassurance .reassurance-item .reassurance-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.reassurance .reassurance-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffec88;
}
.reassurance .reassurance-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 768px) {
  .reassurance .reassurance-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .reassurance .reassurance-item {
    padding: 30px 15px;
  }
}
.reviews {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: white;
  padding: 100px 0;
}
@media screen and (min-width: 768px) {
  .reviews {
    padding: 120px 0;
  }
}
.reviews .section-title {
  color: white;
}
.reviews .section-title::after {
  background: linear-gradient(135deg, #ffec88, #ffd700);
}
.reviews .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.reviews .rating-summary {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 768px) {
  .reviews .rating-summary {
    padding: 40px;
  }
}
.reviews .rating-summary .rating-header {
  text-align: center;
  margin-bottom: 30px;
}
.reviews .rating-summary .rating-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .reviews .rating-summary .rating-header h3 {
    font-size: 1.6rem;
  }
}
.reviews .rating-summary .rating-header .rating-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}
.reviews .rating-summary .rating-header .rating-stars .star {
  color: #ffd700;
  font-size: 1.2rem;
}
.reviews .rating-summary .rating-header .rating-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}
.reviews .rating-summary .customer-reviews {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.reviews .rating-summary .customer-reviews .review-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.reviews .rating-summary .customer-reviews .review-item .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.reviews .rating-summary .customer-reviews .review-item .review-header .review-stars {
  display: flex;
  gap: 2px;
}
.reviews .rating-summary .customer-reviews .review-item .review-header .review-stars .star {
  color: #ffd700;
  font-size: 0.9rem;
}
.reviews .rating-summary .customer-reviews .review-item .review-header .review-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}
.reviews .rating-summary .customer-reviews .review-item .review-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.reviews .rating-summary .customer-reviews .review-item .review-author {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-style: italic;
  margin: 0;
}
.reviews .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .reviews .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
.reviews .reviews-grid .review-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews .reviews-grid .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.reviews .reviews-grid .review-card .review-stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.reviews .reviews-grid .review-card .review-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.reviews .reviews-grid .review-card .review-author {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-style: italic;
  text-align: right;
}

.reviews .review-service {
  margin-top: 15px;
  text-align: right;
}
.reviews .review-service .service-label {
  display: inline-block;
  background: linear-gradient(135deg, #033f83, #022a5c);
  color: white;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.reviews .rating-stars .star.full {
  color: #ffec88;
}
.reviews .rating-stars .star.half {
  color: #ffec88;
  opacity: 0.6;
}
.reviews .rating-stars .star.empty {
  color: rgba(255, 255, 255, 0.3);
}
.reviews .review-stars .star.empty {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .reviews .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reviews .review-card {
    padding: 20px;
  }
  .reviews .rating-summary {
    padding: 20px;
  }
  .reviews .rating-summary .customer-reviews {
    gap: 20px;
  }
  .reviews .rating-summary .customer-reviews .review-item {
    padding: 15px;
  }
}
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 0;
  /*全体の高さ*/
  height: 50px;
}
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.scrollright {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  right: 55px;
  /*全体の高さ*/
  height: 50px;
}
.scrollright span {
  /*描画位置*/
  position: absolute;
  left: -35px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.scrollright::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: -8px;
  /*線の形状*/
  width: 30px;
  height: 1px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove-y 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove-y {
  0% {
    width: 0;
    left: 0;
    opacity: 0;
  }
  30% {
    width: 30px;
    opacity: 1;
  }
  100% {
    width: 0;
    left: 50px;
    opacity: 0;
  }
}
section {
  overflow: hidden;
  color: #fff;
  margin-bottom: 60px;
  padding: 5vh 0;
}
@media screen and (min-width: 768px) {
  section {
    padding: 5vh 5vw;
  }
}
section .section-header {
  justify-self: end;
}
@media (max-width: 768px) {
  section .section-header {
    justify-self: initial;
  }
}

.section_main {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(3, 63, 131, 0.8), rgba(2, 42, 92, 0.8));
  margin-bottom: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .section_main {
    padding: 0;
  }
}
.section_main .section_main_grid {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .section_main .section_main_grid {
    padding: 0 40px;
    gap: 40px;
  }
}
.section_main .section_main_grid .logo {
  order: 1;
}
.section_main .section_main_grid .logo img {
  height: 200px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .section_main .section_main_grid .logo img {
    height: 300px;
  }
}
.section_main .section_main_grid .catch {
  order: 2;
  flex: 1;
  max-width: 600px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (min-width: 768px) {
  .section_main .section_main_grid .catch {
    font-size: 1.125rem;
  }
}
.section_main .section_main_grid .scroll {
  order: 3;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.section_main .section_main_grid .scroll .scrolldown {
  position: relative;
  height: 50px;
}
.section_main .section_main_grid .scroll .scrolldown span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.section_main .section_main_grid .scroll .scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #eee;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
.section_main .section_main_slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section_main .section_main_slide .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section_main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.vertical-text {
  writing-mode: vertical-lr;
  text-orientation: mixed;
}

.text-align-end {
  text-align: end;
}

@media (max-width: 768px) {
  section {
    padding: 3vh 0;
    margin-bottom: 40px;
  }
  .section-header {
    display: block;
  }
  .section-header .section-subtitle {
    font-size: 16px;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    max-width: none;
    text-align: left;
    margin: 0;
  }
  .section-header .section-subtitle br {
    display: none;
  }
  .section_main .section_main_grid {
    gap: 20px;
  }
  .section_main .section_main_grid .logo img {
    height: 200px;
  }
  .section_main .section_main_grid .catch {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin: 0;
    max-width: none;
  }
}
.section_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 30svh;
  padding: 40px 0;
  margin: 60px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section_header {
    -moz-column-gap: 60px;
         column-gap: 60px;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.05);
    padding: 80px 60px;
    margin: 80px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}
.section_header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff8800, transparent);
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .section_header::before {
    width: 100px;
    height: 4px;
  }
}
.section_header .photo {
  width: 45%;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  max-height: 320px;
}
@media screen and (min-width: 768px) {
  .section_header .photo {
    width: 40%;
    border-radius: 20px;
    max-height: 320px;
  }
}
.section_header .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.section_header .photo img:hover {
  transform: scale(1.05);
}
.section_header .photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), transparent);
  pointer-events: none;
}
.section_header .title {
  width: 50%;
  padding: 0 20px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .section_header .title {
    width: 45%;
    padding: 0 40px;
    gap: 30px;
  }
}
.section_header .title .section-subtitle {
  font-family: "kozuka-mincho-pro", "Noto Sans JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #666666;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .section_header .title .section-subtitle {
    font-size: 1rem;
    letter-spacing: 0.2rem;
  }
}
.section_header .title h1, .section_header .title h2 {
  color: #fff;
  font-family: "kozuka-mincho-pro", "Noto Sans JP", serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .section_header .title h1, .section_header .title h2 {
    font-size: 2rem;
    letter-spacing: 0.5rem;
  }
}
.section_header .title p {
  font-family: "kozuka-mincho-pro", "Noto Sans JP", serif;
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .section_header .title p {
    font-size: 1rem;
  }
}
.section_header .title.vertical-text {
  writing-mode: vertical-lr;
  text-orientation: mixed;
}
@media screen and (min-width: 768px) {
  .section_header .title.vertical-text {
    writing-mode: horizontal-tb;
  }
}
@media (max-width: 768px) {
  .section_header {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
    margin: 40px 0;
    justify-self: initial;
  }
  .section_header .photo {
    width: 100%;
    order: 1;
    max-height: 320px;
  }
  .section_header .title {
    width: 100%;
    order: 2;
    padding: 0;
    flex-direction: column;
    gap: 15px;
  }
  .section_header .title .section-subtitle {
    writing-mode: horizontal-tb;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    text-align: left;
    margin: 0;
  }
  .section_header .title h1, .section_header .title h2 {
    font-size: 1.25rem;
    letter-spacing: 0.2rem;
  }
}

.services {
  background: transparent;
  color: white;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .services {
    padding: 80px 0;
  }
}

.services .section-title {
  color: #ffffff;
}
.services .section-title::after {
  background: linear-gradient(135deg, #ffec88, #ffd700);
}

.services .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .services .services-grid {
    gap: 50px;
  }
}

.services .service-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 236, 136, 0.5);
}
.services .service-card:hover .service-image img {
  transform: scale(1.05);
}

.services .service-card .service-image {
  height: 200px;
  overflow: hidden;
}
.services .service-card .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.services .service-card .service-content {
  padding: 30px;
  color: white;
}
@media screen and (min-width: 768px) {
  .services .service-card .service-content {
    padding: 35px;
  }
}
.services .service-card .service-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}
.services .service-card .service-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.7;
}
.services .service-card .service-content ul {
  list-style: none;
  padding: 0;
}
.services .service-card .service-content ul li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.services .service-card .service-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffec88;
  font-weight: bold;
}

@media (max-width: 768px) {
  .services .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .services .service-content {
    padding: 20px;
  }
}
.blog {
  background: transparent;
  color: white;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .blog {
    padding: 80px 0;
  }
}

.blog .section-title {
  color: #ffffff;
}
.blog .section-title::after {
  background: linear-gradient(135deg, #ffec88, #ffd700);
}

.blog .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.blog .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .blog .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.blog .blog-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid rgba(255, 236, 136, 0.3);
}
.blog .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #ffec88;
  background: rgba(255, 255, 255, 0.15);
}
.blog .blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog .blog-card .blog-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.blog .blog-card .blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #033f83, #022a5c);
  color: white;
  padding: 5px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.blog .blog-card .blog-content {
  padding: 25px;
  color: white;
}

.blog .blog-card .blog-content .blog-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: 500;
  display: block;
}

.blog .blog-card .blog-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .blog .blog-card .blog-content h3 {
    font-size: 20px;
  }
}

.blog .blog-card .blog-content .blog-excerpt {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog .blog-card .blog-content .blog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffec88;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}
.blog .blog-card .blog-content .blog-link:hover {
  color: #ffd700;
}
.blog .blog-card .blog-content .blog-link i {
  font-size: 12px;
}

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

.blog .blog-summary p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .blog .blog-summary p {
    font-size: 18px;
  }
}

.blog .blog-more {
  text-align: right;
  margin-top: 60px;
}

.blog .blog-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #033f83, #022a5c);
  color: white;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(3, 63, 131, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.blog .blog-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.blog .blog-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(3, 63, 131, 0.4);
  color: white;
  border-color: #ffec88;
}

.blog .blog-more-btn:hover::before {
  left: 100%;
}

.blog .blog-more-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.blog .blog-more-btn:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .blog .blog-grid {
    gap: 20px;
  }
  .blog .blog-card .blog-content {
    padding: 20px;
  }
  .blog .blog-card .blog-content h3 {
    font-size: 16px;
  }
  .blog .blog-summary {
    margin-top: 30px;
  }
  .blog .blog-summary p {
    font-size: 14px;
  }
  .blog .blog-more {
    margin-top: 40px;
  }
  .blog .blog-more-btn {
    padding: 15px 28px;
    font-size: 14px;
  }
  .blog .blog-more-btn i {
    font-size: 16px;
  }
}
.section_case .section_content .post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .section_case .section_content .post-meta {
    margin-bottom: 40px;
  }
}
.section_case .section_content .post-date {
  color: rgba(255, 255, 255, 0.7);
}
.section_case .section_content .post-category {
  background: linear-gradient(135deg, #ffec88, #ffd700);
  color: #2d2d2d;
  padding: 4px 12px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 12px;
}
.section_case .section_content .post-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .section_case .section_content .post-content {
    font-size: 18px;
  }
}
.section_case .section_content .post-content h1, .section_case .section_content .post-content h2, .section_case .section_content .post-content h3, .section_case .section_content .post-content h4, .section_case .section_content .post-content h5, .section_case .section_content .post-content h6 {
  color: white;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}
.section_case .section_content .post-content h1 {
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .section_case .section_content .post-content h1 {
    font-size: 32px;
  }
}
.section_case .section_content .post-content h2 {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .section_case .section_content .post-content h2 {
    font-size: 28px;
  }
}
.section_case .section_content .post-content h3 {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .section_case .section_content .post-content h3 {
    font-size: 24px;
  }
}
.section_case .section_content .post-content h4 {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .section_case .section_content .post-content h4 {
    font-size: 20px;
  }
}
.section_case .section_content .post-content h5 {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .section_case .section_content .post-content h5 {
    font-size: 18px;
  }
}
.section_case .section_content .post-content h6 {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .section_case .section_content .post-content h6 {
    font-size: 16px;
  }
}
.section_case .section_content .post-content p {
  margin-bottom: 20px;
}
.section_case .section_content .post-content a {
  color: #ffec88;
  text-decoration: none;
  transition: color 0.3s ease;
}
.section_case .section_content .post-content a:hover {
  color: #ffd700;
}
.section_case .section_content .post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.section_case .section_content .post-content blockquote {
  border-left: 4px solid #ffec88;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 0 3px 3px 0;
}
.section_case .section_content .post-content ul, .section_case .section_content .post-content ol {
  margin: 20px 0;
  padding-left: 20px;
}
.section_case .section_content .post-content li {
  margin-bottom: 10px;
}
.section_case .section_content .post-content strong {
  color: white;
  font-weight: 700;
}
.section_case .section_content .post-content em {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}
.section_case .section_content .post-content code {
  background: rgba(0, 0, 0, 0.3);
  color: #ffec88;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.section_case .section_content .post-content pre {
  background: rgba(0, 0, 0, 0.3);
  color: #ffec88;
  padding: 20px;
  border-radius: 3px;
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid rgba(255, 236, 136, 0.2);
}
.section_case .section_content .post-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.section_case .section_content .post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}
.section_case .section_content .post-content table th, .section_case .section_content .post-content table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.section_case .section_content .post-content table th {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 700;
}
.section_case .section_content .post-content table td {
  color: rgba(255, 255, 255, 0.9);
}
.section_case .section_content .post-content table tr:hover {
  background: rgba(255, 255, 255, 0.05);
}
.section_case .section_content .post-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 236, 136, 0.5), transparent);
  margin: 40px 0;
}

.blog-empty {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-empty .blog-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-empty .blog-empty-icon i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
}
.blog-empty .blog-empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}
.blog-empty .blog-empty-message {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 30px;
}
.blog-empty .blog-empty-contact {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 400px;
  margin: 0 auto;
}
.blog-empty .blog-empty-contact p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.5;
}
.blog-empty .blog-empty-contact .blog-empty-phone,
.blog-empty .blog-empty-contact .blog-empty-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  margin: 8px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-empty .blog-empty-contact .blog-empty-phone i,
.blog-empty .blog-empty-contact .blog-empty-line i {
  font-size: 1rem;
}
.blog-empty .blog-empty-contact .blog-empty-phone {
  background: rgba(40, 167, 69, 0.8);
  color: #ffffff;
}
.blog-empty .blog-empty-contact .blog-empty-phone:hover {
  background: rgb(40, 167, 69);
}
.blog-empty .blog-empty-contact .blog-empty-line {
  background: rgba(0, 200, 81, 0.8);
  color: #ffffff;
}
.blog-empty .blog-empty-contact .blog-empty-line:hover {
  background: rgb(0, 200, 81);
}

@media (max-width: 768px) {
  .section_case .section_content {
    padding: 0 20px;
  }
  .section_case .section_content .post-meta {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .section_case .section_content .post-content {
    font-size: 15px;
  }
  .section_case .section_content .post-content h1 {
    font-size: 22px;
  }
  .section_case .section_content .post-content h2 {
    font-size: 20px;
  }
  .section_case .section_content .post-content h3 {
    font-size: 18px;
  }
  .section_case .section_content .post-content h4 {
    font-size: 16px;
  }
  .section_case .section_content .post-content h5 {
    font-size: 15px;
  }
  .section_case .section_content .post-content h6 {
    font-size: 14px;
  }
  .section_case .section_content .post-content blockquote {
    padding: 15px;
    margin: 20px 0;
  }
  .section_case .section_content .post-content table th, .section_case .section_content .post-content table td {
    padding: 8px;
    font-size: 14px;
  }
  .blog-empty {
    padding: 40px 20px;
  }
  .blog-empty .blog-empty-contact .blog-empty-phone,
  .blog-empty .blog-empty-contact .blog-empty-line {
    display: block;
    width: 100%;
    margin: 8px 0;
    justify-content: center;
  }
}
.faq {
  background: transparent;
  color: white;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 80px 0;
  }
}

.faq .section-title {
  color: #ffffff;
}
.faq .section-title::after {
  background: linear-gradient(135deg, #ffec88, #ffd700);
}

.faq .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.faq .faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq .faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.faq .faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 236, 136, 0.5);
}
.faq .faq-item.active .faq-question {
  background: rgba(255, 236, 136, 0.1);
  border-bottom: 1px solid rgba(255, 236, 136, 0.3);
}
.faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #ffec88;
}

.faq .faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.faq .faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0;
  flex: 1;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .faq .faq-question h3 {
    font-size: 20px;
  }
}
.faq .faq-question .faq-toggle {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq .faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq .faq-answer p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0;
  padding: 0 0 25px 0;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .faq .faq-answer p {
    font-size: 17px;
  }
}

.faq .faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .faq .faq-question {
    padding: 20px 25px;
  }
  .faq .faq-question h3 {
    font-size: 16px;
  }
  .faq .faq-question .faq-toggle {
    font-size: 20px;
    margin-left: 15px;
  }
  .faq .faq-answer {
    padding: 0 25px;
  }
  .faq .faq-answer p {
    font-size: 15px;
    padding: 0 0 20px 0;
  }
  .faq .faq-item.active .faq-answer {
    padding-top: 15px;
  }
}
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
  max-width: 80%;
}
@media screen and (min-width: 768px) {
  .lightbox-caption {
    font-size: 1.2rem;
  }
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox-close:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .lightbox-close {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95vw;
  }
  .lightbox-image {
    max-height: 70vh;
  }
  .lightbox-caption {
    font-size: 1rem;
    margin-top: 15px;
  }
  .lightbox-close {
    top: -40px;
    font-size: 20px;
  }
}
/*# sourceMappingURL=style.css.map */
