@charset "UTF-8";
/* ========== Reset ========== */
/* Box-sizing設定 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* マージン・パディングの初期化 */
body, h1, h2, h3, h4, h5, h6,
p, ul, ol, li, figure, figcaption,
blockquote, dl, dt, dd {
  margin: 0;
  padding: 0;
}

/* リストのスタイルを削除 */
ul, ol {
  list-style: none;
}

/* aタグの初期化 */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像のはみ出し防止 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* テキストの整え */
body {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #fff;
}

/* ボタン・フォーム要素の初期化 */
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* HTML5要素の表示対応 */
article, aside, footer, header, nav, section, main, figure {
  display: block;
}

/* テーブルの初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.cta-btn {
  max-width: 280px;
  background-color: #D98C42;
  width: 100%;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  margin: 0 auto;
  transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  .cta-btn {
    max-width: 230px;
    font-size: 16px;
  }
}
.cta-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 16px 0;
}
.cta-btn img {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .cta-btn img {
    width: 20px;
    height: 20px;
  }
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.line-btn {
  max-width: 280px;
  color: #0074C2;
  background-color: #FFFFFF;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  margin: 0 auto;
  border: 3px solid #0074C2;
  align-items: center;
  transition: all 0.2s ease;
}
.line-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.line-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .line-btn {
    max-width: 230px;
    font-size: 16px;
  }
}
.line-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 0;
  width: 100%;
}
.line-btn img {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .line-btn img {
    width: 20px;
    height: 20px;
  }
}

.cta-contents {
  background-color: #f1f5f9;
  background-color: #fff4e5;
  background-color: #f7f9fc;
  padding: 60px 0;
}
.cta-contents img {
  width: 20px;
  height: 20px;
}

.cta-top-text {
  text-align: center;
  padding: 0 20px 16px 20px;
}
@media screen and (max-width: 768px) {
  .cta-top-text {
    font-size: 14px;
  }
}

.cta-top-text-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: normal;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .cta-top-text-top {
    font-size: 14px;
  }
}

.cta-bottom-text {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .cta-bottom-text {
    flex-direction: column;
    font-size: 14px;
  }
}

.cta-bottom-text-list {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cta-bottom-text-list {
    justify-content: center;
  }
}

.blue-btn {
  background-color: #003366;
  padding: 10px 0;
  border-radius: 8px;
  color: #FFFFFF;
  border: 3px solid #003366;
  display: inline-block;
  height: 50px;
  width: 128px;
  text-align: center;
}

.blue-border-btn {
  max-width: 180px;
  padding: 8px 0;
  background-color: #FFFFFF;
  width: 100%;
  color: #0074C2;
  border: 2px solid #0074C2;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  margin: 16px auto;
  text-align: center;
  display: block;
}

.blue-text {
  color: #003366;
}

.section {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
}
.section-title h2 {
  font-size: 36px;
  font-family: "Zen Old Mincho", serif;
  color: #1F2937;
  padding-bottom: 16px;
  position: relative;
}
.section-title h2::after {
  position: absolute;
  content: "";
  width: 64px;
  height: 2px;
  background-color: #D1D5DB;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .section-title h2::after {
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .section-title h2 {
    font-size: 24px;
  }
}
.section-title .section-subtitle {
  font-weight: normal;
}
.section-title .section-subtitle p {
  font-size: 16px;
  color: #4B5563;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .section-title .section-subtitle p {
    font-size: 14px;
  }
}

.service-post-visual {
  position: relative;
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .service-post-visual {
    height: 140px;
  }
}
.service-post-visual .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.service-post-visual .service-post-section-title {
  position: relative;
  z-index: 2;
  text-align: center;
}
.service-post-visual .service-post-title {
  color: #FFFFFF;
  font-family: "Zen Old Mincho", serif;
  font-size: 48px;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .service-post-visual .service-post-title {
    font-size: 22px;
  }
}

/* 投稿「屋根塗装」のときだけ上書き */
body.postid-55 .service-post-visual {
  background-position: center 30%;
}

/* 投稿「外壁塗装」のときだけ上書き */
body.postid-51 .service-post-visual {
  background-position: center 17%;
}

.to-top {
  position: fixed;
  bottom: 90px;
  right: 10px;
  display: none; /* 最初は非表示 */
  background-color: #003366;
  color: #fff;
  padding: 20px 16px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid #D1D5DB;
}
.to-top img {
  width: 22px;
  height: auto;
}

.to-top:hover {
  background-color: #003f87;
}

body.admin-bar #header {
  top: 32px;
}

body.no-scroll {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  padding: 0 40px;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 20px;
  }
}

a {
  list-style: none;
}

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

main {
  overflow: hidden;
}

.about-section {
  background-color: #FCFBF9;
}

.reason-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .reason-contents {
    flex-direction: column;
  }
}

.reason-contents-list {
  padding: 16px 24px;
  text-align: center;
  background-color: #FFFFFF;
  width: 320px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  box-sizing: border-box;
  height: 220px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
@media screen and (max-width: 768px) {
  .reason-contents-list {
    width: 100%;
    max-width: 500px;
    height: 180px;
  }
}
.reason-contents-list img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .reason-contents-list img {
    width: 56px;
    height: 56px;
  }
}
.reason-contents-list h3 {
  height: 121.8px;
  align-content: center;
  font-weight: normal;
  color: #4B5563;
}
@media screen and (max-width: 768px) {
  .reason-contents-list h3 {
    font-size: 16px;
    height: 90px;
  }
}

.reason-contents-list.show {
  opacity: 1;
  transform: translateY(0);
}

.reason-works {
  padding: 40px 0;
}
.reason-works h3 {
  text-align: center;
  padding-bottom: 20px;
}

.reason-works-contents {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .reason-works-contents {
    flex-direction: column;
  }
}

.reason-works-list {
  display: flex;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
}

.reason-image {
  max-width: 270px;
  height: 290px;
}
@media screen and (max-width: 768px) {
  .reason-image {
    height: 200px;
  }
}
.reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  will-change: transform, filter;
}
.reason-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.reason-image img:hover {
  transform: scale(1.01);
  filter: brightness(1.02);
}

.reason-image-left {
  border-right: 2px solid #FFFFFF;
  position: relative;
}

.reason-image-right {
  position: relative;
}

.reason-image-left-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  text-align: center;
  width: 80px;
  padding: 2px 12px;
  background-color: #FFFFFF;
  font-size: 14px;
}

.reason-image-right-label {
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-align: center;
  width: 80px;
  padding: 2px 12px;
  background-color: #0074C2;
  color: #FFFFFF;
  font-size: 14px;
}

.reason-works-bottom {
  padding-top: 40px;
  text-align: center;
}

.reason-works-list-title {
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .reason-works-list-title {
    max-width: 380px;
    display: block;
    margin: 0 auto;
  }
}

.faq-section {
  background-color: #FCFBF9;
}

details {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.8em 20px 0.8em 24px;
  margin-bottom: 1em;
  background-color: #FFFFFF;
}
details p {
  padding-top: 16px;
}

summary {
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
summary img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  summary {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }
}

details[open] summary img {
  transform: rotate(180deg);
}

summary::marker {
  display: none;
}

.faq-q {
  display: inline-block;
  color: #005BAC;
  background-color: #E6F2F9;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  text-align: center;
  align-content: center;
  margin-right: 16px;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .faq-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
}

.company-info-contents {
  max-width: 800px;
  margin: 40px auto;
}
.company-info-contents .company-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.company-info-contents .company-info dt,
.company-info-contents .company-info dd {
  display: inline-block;
  vertical-align: top;
  padding: 0.2em 0;
}
.company-info-contents dt {
  width: 160px;
  font-weight: bold;
  flex-shrink: 0;
}
.company-info-contents dd {
  margin: 0;
}

.company-image-message {
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .company-image-message {
    flex-direction: column;
    gap: 20px;
  }
}

.company-image {
  flex-shrink: 0;
  width: 240px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .company-image {
    width: 60%;
    max-width: 240px;
    margin: 0 auto;
  }
}
.company-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.company-message-contents h3 {
  font-size: 18px;
  padding-bottom: 16px;
}
.company-message-contents .ceo-name {
  text-align: right;
  padding-top: 20px;
}

.company-info-row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #E5E7EB;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .company-info-row {
    flex-direction: column;
  }
}

.company-map {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.company-map iframe {
  width: 100%;
  max-width: 600px;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .company-map iframe {
    height: 300px;
  }
}

.contact-section {
  background-color: #F6F6F6;
}

.contact-box-contents {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .contact-box-contents {
    flex-direction: column;
    gap: 40px;
  }
}

.contact-box {
  max-width: 320px;
  width: 100%;
  text-align: center;
  background-color: #FFFFFF;
  padding: 20px 16px;
  border-radius: 16px;
}
.contact-box .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact-box {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
  }
}

.contact-box-text {
  color: #4B5563;
  font-size: 14px;
  padding: 10px 0;
}

.contact-box-text-title {
  font-weight: bold;
  color: #1F2937;
  font-size: 18px;
  padding-top: 8px;
}

.contact-box-text-tel {
  font-size: 28px;
  color: #005BAC;
  font-weight: bold;
}

.contact-form-contents-title {
  font-size: 32px;
  margin-bottom: 20px;
  border-left: 4px solid #0074C2;
  padding-left: 10px;
  margin: 20px auto;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .contact-form-contents-title {
    font-size: 20px;
  }
}

.contact-form-subtitle {
  text-align: center;
}

.contact-form-bg {
  background-position: 20% 20%;
}

.contact-form-contents {
  max-width: 800px;
  margin: 60px auto;
  padding: 32px 20px;
  background: #f9fbfd;
  border-radius: 12px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .contact-form-contents {
    padding: 32px 10px;
  }
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  color: #333;
}
label span {
  font-weight: normal;
}

.required {
  color: #e60033;
  font-size: 16px;
  margin-left: 6px;
}

input.wide,
textarea.wide {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
}

input.wide:focus,
textarea.wide:focus {
  border-color: #005bac;
  outline: none;
}

.works-check label {
  display: block;
  margin-bottom: 6px;
}

.box_check {
  font-size: 16px;
  margin: 20px auto 40px auto;
  max-width: 278px;
}

.confirm-check {
  display: block;
  font-size: 16px;
  max-width: 278px;
  margin: 40px auto 0 auto;
}

.privacy-text {
  color: #005bac;
  text-decoration: underline;
}

.form-btn {
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
}

.form-btn input[type=submit] {
  display: inline-block;
  padding: 12px 36px;
  font-size: 16px;
  background-color: #005bac;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
  max-width: 300px;
  width: 100%;
}

.form-btn input[type=submit]:hover {
  background-color: #0074C2;
}

.privacy-text {
  color: #0074C2;
}

.contact-form-subtitle {
  text-align: center;
}

.wpcf7-list-item {
  margin-left: 0.5em;
}

#header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
}
#header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .company-name {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: bold;
}
#header .company-name img {
  height: auto;
  width: 50px;
  object-fit: contain;
}
@media screen and (max-width: 1135px) {
  #header .navi {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #F9FAFB;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }
}
#header.active .navi {
  right: 0;
}
#header .humberger {
  width: 30px;
  height: 24px;
  position: relative;
  display: none;
  cursor: pointer;
}
#header .humberger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #333;
  transition: 0.4s;
  left: 0;
}
#header .humberger span:nth-child(1) {
  top: 0;
}
#header .humberger span:nth-child(2) {
  top: 11px;
}
#header .humberger span:nth-child(3) {
  top: 22px;
}
@media screen and (max-width: 1135px) {
  #header .humberger {
    display: block;
  }
}
#header.active .humberger span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
#header.active .humberger span:nth-child(2) {
  opacity: 0;
}
#header.active .humberger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}
#header .navi-menu {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1135px) {
  #header .navi-menu {
    flex-direction: column;
  }
}
#header .navi-menu .blue-border-btn, #header .navi-menu .blue-btn {
  transition: all 0.3s;
}
#header .navi-menu .blue-border-btn:hover, #header .navi-menu .blue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
#header .navi-menu .blue-border-btn:active, #header .navi-menu .blue-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
#header .navi-menu .navi-menu-text a {
  color: #000;
  text-decoration: none;
}
#header .navi-menu .navi-menu-text a:hover {
  color: #003366;
  transition: 0.3s all;
}
#header .navi-menu li .blue-btn {
  color: #FFFFFF;
}
#header .navi-menu li .header-line-btn {
  color: #0074C2;
}

.navi .header-line-btn {
  display: flex;
  color: #0074C2;
  background-color: #FFFFFF;
  border: 3px solid #0074C2;
  align-items: center;
  gap: 2px;
  justify-content: center;
}
.navi .header-line-btn img {
  width: 20px;
  height: 20px;
}

.works-section {
  background-color: #FCFBF9;
}

.splide__list {
  display: flex;
  align-items: stretch;
}

.splide__slide {
  max-width: 380px;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #FFFFFF;
  height: auto !important;
  margin: 20px 0;
}

.splide-works-image {
  max-width: 380px;
  height: 180px;
}
.splide-works-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .splide-works-image img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
}

.splide__arrow {
  background: transparent;
}

.splide__arrow--prev {
  left: -60px;
}

.splide__arrow--next {
  right: -60px;
}

.splide__arrow {
  width: 50px;
  height: 50px;
}

.splide__arrow svg {
  width: 70%;
  height: 70%;
}

.splide-link {
  color: #0074C2;
  font-size: 16px;
  display: block;
  height: 40px;
  align-content: center;
  cursor: pointer;
}

.splide__pagination {
  bottom: -10px;
}

.works-list-contents-text {
  padding: 16px;
}
.works-list-contents-text p {
  padding-bottom: 10px;
}

.works-list-label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  padding-bottom: 8px;
}

.single-post-works-list-label {
  padding-bottom: 20px;
}

.works-list-const-works {
  color: #0074C2;
  background-color: #E6F2F9;
  padding: 0 8px;
  border-radius: 5px;
  font-size: 13px;
  align-content: center;
}

.works-list-building {
  color: #1F2937;
  background-color: #D1D5DB;
  padding: 0 8px;
  border-radius: 5px;
  font-size: 13px;
  align-content: center;
}

.works-list-title {
  padding: 4px 0;
  min-height: 64px;
  font-size: 18px;
}

.works-list-more-btn {
  color: #0074C2;
  padding: 20px 0 0px 0;
}

.works-post-bg {
  background-position: 20% 15%;
}

.container {
  display: flex;
  justify-content: center;
  max-width: 1280px;
  gap: 60px;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
  }
}
.container .single-main-section {
  width: 80%;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .container .single-main-section {
    width: 100%;
  }
}
.container aside {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .container aside {
    width: 100%;
  }
}

.single-blog-post {
  margin-bottom: 80px;
}

.single-post-title {
  font-size: 32px;
  margin-bottom: 20px;
  border-left: 4px solid #0074C2;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .single-post-title {
    font-size: 18px;
  }
}

.single-post-image {
  display: flex;
  justify-content: center;
}

.single-post-image-before-after {
  width: 50%;
  height: 380px;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .single-post-image-before-after {
    height: 200px;
  }
}
.single-post-image-before-after img {
  width: 100%;
  object-fit: cover;
}
.single-post-image-before-after img:hover {
  transform: none;
  filter: none;
}
.single-post-image-before-after:hover {
  transform: none;
  box-shadow: none;
}

.other-service-posts {
  margin: 40px 0;
}
.other-service-posts ul {
  display: flex;
  gap: 32px;
  margin-left: 28px;
}
.other-service-posts li {
  color: #003366;
  text-decoration: underline;
  padding-left: 1.2em;
  position: relative;
}
.other-service-posts li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #003366;
  font-size: 0.5em;
  bottom: 5px;
}
.other-service-posts li:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .other-service-posts h3 {
    font-size: 17px;
  }
}

.single-aside-section {
  margin-bottom: 40px;
}

.single-aside-title {
  font-size: 24px;
  max-width: 208px;
  width: 100%;
  border-left: 4px solid #0074C2;
  padding-left: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .single-aside-title {
    font-size: 20px;
  }
}

.single-aside-category {
  font-size: 18px;
  width: 100%;
  padding: 12px 20px;
  background-color: #e9f2fb;
  text-align: center;
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 91, 172, 0.05); /* やわらかく立体感 */
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .single-aside-category {
    font-size: 16px;
  }
}
.single-aside-category:hover {
  background-color: #d9ebff;
  color: #003366;
  transform: translateY(-2px);
}

.single-aside-top {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .post-aside-contents {
    display: flex;
    justify-content: center;
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .post-aside-contents-right, .post-aside-contents-left {
    flex: 1;
  }
}

.post-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 480px;
  margin: 0 auto;
}

.post-nav {
  flex: 1;
  height: 50px;
  max-width: 150px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  align-content: center;
}
.post-nav a {
  display: block;
  width: 100%;
  height: 100%;
  align-content: center;
}
@media screen and (max-width: 768px) {
  .post-nav {
    font-size: 14px;
    padding: 6px;
  }
}

.archive-section-bg {
  background-position: 20% 15%;
}

.category-works-contents {
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .category-works-contents {
    margin: 0;
  }
}
.category-works-contents .single-aside-section {
  margin-bottom: 0;
}

.category-post-item {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid #D1D5DB;
}
@media screen and (max-width: 768px) {
  .category-post-item {
    flex-direction: column;
    padding: 20px 0;
  }
}

.category-works-text {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .category-works-text {
    width: 100%;
  }
}
.category-works-text h3 {
  font-size: 18px;
  padding-bottom: 8px;
}

.category-works-image {
  width: 30%;
  height: 160px;
}
@media screen and (max-width: 768px) {
  .category-works-image {
    width: 100%;
    height: 360px;
  }
}
@media screen and (max-width: 500px) {
  .category-works-image {
    width: 100%;
    height: 200px;
  }
}
.category-works-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.category-works-nav {
  margin: 40px auto;
}

.category-works-btn {
  display: flex;
  margin: 0 auto;
}

.pagination {
  margin: 40px auto;
  width: fit-content;
}
.pagination a, .pagination span {
  background-color: #003366;
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  display: inline-block;
  text-align: center;
  align-content: center;
}

.wp-pagenavi span.current {
  font-weight: normal !important;
}

.breadcrumb {
  padding: 16px 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.current-item {
  color: #003366;
}

.service-contents-list {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .service-contents-list {
    flex-direction: column;
  }
}

.service-contents-post {
  flex: 1 1 0;
  min-width: 0;
  max-width: 33.3333%;
  box-sizing: border-box;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  .service-contents-post {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.service-contents-post:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-post-image {
  width: 100%;
  aspect-ratio: 4/2.5;
}
.service-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-post-title {
  padding: 10px 20px;
}
.service-post-title img {
  width: 50px;
  height: 50px;
}

.service-contents-post .service-post-title {
  gap: 16px;
}

.service-post-desc {
  margin-bottom: 20px;
  color: #4B5563;
  padding: 0 20px;
}

.service-post-textList {
  color: #4B5563;
  min-height: 150px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .service-post-textList {
    min-height: auto !important; /* ← 高さの指定を無効にする */
    height: auto !important;
  }
}

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

.blue-text-link {
  text-decoration: underline;
}
.blue-text-link:hover {
  text-decoration: none;
}

.service-post-section {
  line-height: 1.75;
  padding-bottom: 60px;
}

.service-post-article-title {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  margin: 40px auto;
  font-size: 28px;
  border-left: 4px solid #0074C2;
  padding-left: 10px;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .service-post-article-title {
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.service-post-content-top {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .service-post-content-top {
    flex-direction: column;
    gap: 20px;
  }
}

.post-content-top-image {
  width: 40%;
  height: 300px;
}
.post-content-top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
}
@media screen and (max-width: 768px) {
  .post-content-top-image {
    width: 100%;
    height: 200px;
  }
}

.post-content-top-title {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}
.post-content-top-title img {
  width: 50px;
  height: 50px;
}

.post-content-top-right {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .post-content-top-right {
    width: 100%;
  }
}

.service-post-content-center-contents {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .service-post-content-center-contents {
    flex-direction: column;
    gap: 20px;
  }
}

.service-post-content-center-title {
  text-align: center;
  font-size: 24px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .service-post-content-center-title {
    font-size: 18px;
    padding: 0;
  }
}

.service-post-content-center-list {
  padding: 32px;
  background-color: #F9FAFB;
  width: 33%;
}
@media screen and (max-width: 768px) {
  .service-post-content-center-list {
    width: 100%;
  }
}

.post-content-center-text {
  text-align: center;
  padding-top: 8px;
}
@media screen and (max-width: 768px) {
  .post-content-center-text {
    font-size: 14px;
  }
}

.service-post-content-bottom {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .service-post-content-bottom {
    flex-direction: column;
    padding-top: 0;
  }
}

.post-content-bottom-text {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .post-content-bottom-text {
    width: 100%;
  }
}

.post-content-bottom-image {
  width: 40%;
  height: 340px;
}
.post-content-bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@media screen and (max-width: 768px) {
  .post-content-bottom-image {
    width: 100%;
    height: 200px;
  }
  .post-content-bottom-image img {
    object-fit: cover;
  }
}

.privacy-policy-section {
  padding: 40px 0;
}

.privacy-policy-contents .privacy-policy-contents-title {
  padding-bottom: 40px;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .privacy-policy-contents .privacy-policy-contents-title {
    font-size: 24px;
  }
}

.privacy-policy-text {
  text-align: left;
}
.privacy-policy-text h2 {
  font-size: 16px;
  font-weight: normal;
}
.privacy-policy-text h3 {
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .privacy-policy-text h3 {
    font-size: 17px;
  }
}
.privacy-policy-text ul, .privacy-policy-text p {
  padding-bottom: 20px;
}

.wp-block-separator {
  border-top: 1px solid;
}

.area-contents {
  background-color: #FAFBFB;
  padding: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .area-contents {
    padding: 20px;
  }
}

.area-title {
  padding-bottom: 0px;
}

.area-subtitle {
  text-align: center;
  padding-bottom: 8px;
}
.area-subtitle p {
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .area-subtitle {
    font-size: 14px;
  }
}

.service-area-contents {
  margin: 40px 0;
}

.service-area-title {
  text-align: left;
  font-weight: bold;
}

.service-area-text {
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .service-area-text {
    padding-bottom: 10px;
  }
}
.service-area-text img {
  width: 24px;
  height: 28px;
}
.service-area-text p {
  font-weight: normal;
}

.area-map-image img {
  filter: grayscale(25%) brightness(98%) contrast(105%);
}

.service-area-text-bottom {
  text-align: left;
  padding: 16px;
  background-color: #EDF4F8;
  border-radius: 10px;
}
.service-area-text-bottom p {
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .service-area-text-bottom {
    padding: 8px;
  }
}

.area-content-box {
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .area-content-box {
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
  .area-content-box .wp-block-columns.is-layout-flex {
    flex-direction: column;
  }
}

#area .wp-block-columns.is-layout-flex {
  gap: 90px;
}
@media screen and (max-width: 1135px) {
  #area .wp-block-columns.is-layout-flex {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  #area .wp-block-columns.is-layout-flex {
    gap: 0;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #area .wp-block-columns.is-layout-flex.wp-block-columns-is-layout-flex {
    justify-content: center;
  }
}
#area .wp-container-core-columns-is-layout-9d6595d7 {
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .area-map {
    width: 100%;
    height: auto;
  }
}

.process-list {
  position: relative;
  margin: 0 auto;
  max-width: 750px;
}

.process-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}
.process-item::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: -40px;
  left: 30px;
  width: 2px;
  background-color: #E6F2F9;
  z-index: 0;
}
.process-item:last-child::before {
  display: none;
}

.process-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #E6F2F9;
  border-radius: 50%;
  text-align: center;
  align-content: center;
  line-height: 40px;
  font-weight: bold;
  color: #0074C2;
  font-size: 18px;
}

.process-content {
  margin-left: 80px;
  padding: 20px;
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  background-color: #fafbfb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #e0e6eb;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.process-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
}

.process-step-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.process-step-text {
  font-size: 16px;
  line-height: 1.6;
}

#footer {
  background-color: #003366;
  color: #FFFFFF;
  padding: 40px 0 20px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
}
.footer-inner li {
  padding-bottom: 8px;
}
.footer-inner img {
  height: auto;
  width: 40px;
  object-fit: contain;
}
.footer-inner h2 {
  font-size: 16px;
}
.footer-inner .footer-menu-list {
  color: #D1D5DB;
}
.footer-inner .footer-menu-title {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
}

.footer-logo {
  display: flex;
  gap: 8px;
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
  align-items: center;
  height: 55px;
}

.footer-company-info li {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 8px;
}
.footer-company-info img {
  width: 20px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .footer-company-info img {
    width: 16px;
    height: 20px;
  }
}

.copyright {
  text-align: center;
  font-size: 14px;
  padding-top: 40px;
}

html {
  font-size: 100%;
  margin: 0;
  scroll-behavior: smooth;
  font-variant-numeric: tabular-nums;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: sans-serif;
}

img {
  width: 100%;
}

a {
  list-style: none;
  text-decoration: none;
}

.mainvisual-contents {
  position: relative;
  height: 75vh;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mainvisual-contents {
    height: 600px;
  }
}

#slideshow {
  position: relative;
  height: 100%;
  width: 100%;
}
#slideshow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  z-index: 10;
  pointer-events: none;
}

#slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
  object-position: 95% 10%;
}

#slideshow img.active {
  opacity: 1;
  z-index: 2;
}

.slideshow-text {
  position: absolute;
  top: 55%;
  left: 40px;
  transform: translateY(-50%);
  color: white;
  z-index: 15;
  width: 560px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .slideshow-text {
    top: 60%;
    width: 320px;
    left: 20px;
  }
}
.slideshow-text h1 {
  font-size: 48px;
  color: #1F2937;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 768px) {
  .slideshow-text h1 {
    font-size: 24px;
  }
}
.slideshow-text p {
  font-size: 20px;
  font-weight: normal;
  color: black;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 768px) {
  .slideshow-text p {
    font-size: 14px;
  }
}
.slideshow-text .mv-blue {
  color: #003366;
}

.mv-btn-box {
  font-family: sans-serif;
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .mv-btn-box {
    flex-direction: column;
    justify-content: left;
  }
}
.mv-btn-box .cta-btn {
  background-color: #003366;
  margin: 0;
}
.mv-btn-box .line-btn {
  margin: 0;
  align-content: center;
}

#about, #service, #works, #flow, #company, #faq {
  scroll-margin-top: 80px;
}

.error-404 {
  height: 100vh;
  padding-top: 40px;
}

.thanks-section {
  height: 100vh;
  padding-top: 40px;
  text-align: center;
}
.thanks-section h1 {
  text-align: center;
}
.thanks-section .thanks-text {
  padding: 60px 0 120px 0;
  text-align: center;
}
.thanks-section a {
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */