@charset "UTF-8";
/** breakpoit */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  background-color: #fefefe;
  color: #323232;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea,
select {
  font: inherit;
  color: #323232;
  border: none;
  background: none;
  outline: none;
  appearance: none;
}

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

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

body.admin-bar .header {
  margin-top: 32px; /* 管理バーの高さ（通常32px） */
}

@media screen and (max-width: 782px) {
  body.admin-bar .header {
    margin-top: 46px; /* モバイル時の高さ */
  }
}
.main-container {
  overflow: hidden;
  font-size: 16px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: #f8f7f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 84px);
  padding-top: 84px;
  padding-bottom: 100px;
  gap: 100px;
}
@media (max-width: 768px) {
  .main-container {
    min-height: calc(100vh - 64px);
    padding-top: 64px;
    gap: 50px;
  }
}

.main-container,
.main-container * {
  box-sizing: border-box;
}

section {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 72px;
  text-align: center;
  white-space: nowrap;
  margin-top: 100px;
  font-family: "Poppins", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho",
    serif;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
    line-height: 42px;
    margin: 50px 0;
  }
}

h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 2rem;
  line-height: 180%;
  text-align: center;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
  font-family: "Roboto", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho",
    serif;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

/**
各ページのトップ写真
*/
.head-container {
  width: 100%;
  position: relative;
  height: 510px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .head-container {
    height: 244px;
    margin-top: 0;
  }
}
.head-container .main-backcolor {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 460px;
  background: #333232;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .head-container .main-backcolor {
    height: 216px;
    width: 90%;
  }
}
.head-container img {
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
  transform: translateX(10%);
  height: 430px;
  z-index: 2;
  object-fit: cover;
}
@media (max-width: 768px) {
  .head-container img {
    top: 34px;
    height: 210px;
  }
}

.sp {
  display: inline;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.excerpt-sp {
  display: none;
}

@media (max-width: 768px) {
  .excerpt-pc {
    display: none;
  }
  .excerpt-sp {
    display: block;
  }
}
/**  404ページ. */
.contact-section {
  background-color: #f8f6f2;
  padding: 60px 20px;
  height: 100vh;
}
.contact-section .section-title {
  font-size: 1.5rem;
  margin-bottom: 2em;
}
.contact-section .breadcrumb {
  margin-bottom: 4em;
}
@media (max-width: 768px) {
  .contact-section .breadcrumb {
    margin-bottom: 2em;
  }
}
.contact-section .contact-box {
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 2em;
}
.contact-section .contact-box a.back-to-home {
  display: inline-block;
  margin-top: 2em;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.fade-in-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-target.visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 84px;
  background: #fefefe;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .header {
    height: 64px;
  }
}
.header .menu {
  width: 100%;
  height: 84px;
  padding: 0 32px;
  background: #fefefe;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header .menu {
    padding: 0 16px;
    height: 64px;
  }
}
.header .menu .sm-logo {
  width: 208px;
  height: 22px;
  background-size: cover;
  z-index: 14;
}
.header .menu .sm-logo img {
  height: 22px;
}
.header .menu .hamburger-menu {
  display: none;
  background-color: transparent;
  border: none;
  width: 40px;
  height: 40px;
  z-index: 100;
}
@media (max-width: 1024px) {
  .header .menu .hamburger-menu {
    display: block;
  }
}
.header .menu .hamburger-menu img {
  width: 100%;
  height: auto;
}
.header .menu .hamburger-menu .icon-close {
  display: none;
}
.header .menu .hamburger-menu.active .icon-menu {
  display: none;
}
.header .menu .hamburger-menu.active .icon-close {
  display: inline;
}
.header .contact-button {
  background: #ac9373;
  padding: 8px 36px;
  font-size: 0.875rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}
.header .contact-button > span {
  color: #fff;
}
.header .contact-button:hover {
  transition: background 0.3s;
}
.header .contact-button:hover:hover {
  background: rgb(148.1614349776, 121.7040358744, 87.8385650224);
}
@media (max-width: 1024px) {
  .header .contact-button {
    margin-top: 16px;
    width: auto;
    order: 99;
  }
}
.header .menu-item {
  position: relative;
  height: 25px;
  color: #323232;
  font-size: 1rem;
  font-weight: 500;
  line-height: 25px;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .header .menu-item {
    margin-top: 8px;
    font-size: 1rem;
  }
}

.header-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  gap: 20px;
  margin-left: auto;
  margin-right: 20px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .header-nav-wrapper {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 24px 16px;
    background: #fff;
    position: fixed;
    top: 64px;
    height: calc(100vh - 64px);
    left: 0;
    z-index: 9999;
  }
  .header-nav-wrapper.active {
    display: flex;
  }
}
.header-nav-wrapper .header-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .header-nav-wrapper .header-nav {
    width: 100%;
  }
}
.header-nav-wrapper .header-nav .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1vw;
}
@media (max-width: 1024px) {
  .header-nav-wrapper .header-nav .menu-list {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
}
.header-nav-wrapper .header-nav .menu-list li {
  display: flex;
  align-items: center;
  position: relative;
  height: 25px;
  font-size: min(1.3333vw, 1rem);
  font-weight: 500;
  line-height: 25px;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .header-nav-wrapper .header-nav .menu-list li {
    justify-content: center;
    width: 100%;
    text-align: center;
    height: auto;
    font-size: 1rem;
  }
}

body.admin-bar .header {
  margin-top: 32px; /* 管理バーの高さ（通常32px） */
}

@media (max-width: 1024px) {
  body.admin-bar .header .menu .header-nav-wrapper {
    top: 84px;
    height: calc(100vh - 84px);
  }
}

.main-footer-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 357px;
  margin: 0 auto;
  box-sizing: border-box;
}
.main-footer-container * {
  box-sizing: border-box;
}
.main-footer-container .footer-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #333232;
  overflow: hidden;
}
.main-footer-container .footer-container .flex-row-fa {
  position: relative;
  height: 226px;
  margin: 54px 54px 0 93px;
  display: flex;
  padding-right: 20px;
  justify-content: space-between;
}
.main-footer-container .footer-container .flex-row-fa .company-name {
  position: relative;
  height: 58px;
  display: flex;
  align-items: center;
}
.main-footer-container
  .footer-container
  .flex-row-fa
  .company-name
  .akura-architecture {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 57.6px;
  text-align: left;
  white-space: nowrap;
}
.main-footer-container .footer-container .flex-row-fa .footer-menu-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-left: 50px;
}
.main-footer-container
  .footer-container
  .flex-row-fa
  .footer-menu-container
  .footer-menu-column
  .footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main-footer-container
  .footer-container
  .flex-row-fa
  .footer-menu-container
  .footer-menu-column
  .footer-menu-list
  li
  a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}
.main-footer-container
  .footer-container
  .flex-row-fa
  .footer-menu-container
  .footer-menu-column
  .footer-menu-list
  li
  a:hover {
  text-decoration: underline;
}
.main-footer-container .contact-info {
  position: absolute;
  width: 241px;
  height: 125px;
  top: 101px;
  left: 57px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 25.2px;
  text-align: left;
  z-index: 10;
}
.main-footer-container .privacy-policy {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  text-align: right;
  white-space: nowrap;
  margin-top: 20px;
  margin-right: 20px;
}
.main-footer-container .privacy-policy span {
  color: #fff;
}
.main-footer-container .sm-logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.main-footer-container .copyright {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 21.6px;
  text-align: center;
  white-space: nowrap;
  z-index: 11;
}
@media (max-width: 768px) {
  .main-footer-container {
    display: none;
  }
}

.sidebar {
  margin-top: 80px;
  width: 100%;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .sidebar {
    margin-top: 50px;
  }
}
.sidebar .recent-posts-widget,
.sidebar .archive-widget {
  margin-bottom: 50px;
}
.sidebar .recent-posts-widget h3,
.sidebar .archive-widget h3 {
  font-size: 0.875rem;
  font-weight: normal;
  margin-bottom: 10px;
}
.sidebar .recent-posts-widget ul,
.sidebar .archive-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar .recent-posts-widget ul li,
.sidebar .archive-widget ul li {
  padding: 5px 10px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.sidebar .recent-posts-widget ul li::before,
.sidebar .archive-widget ul li::before {
  content: "ー";
  margin-right: 5px;
}
.sidebar .recent-posts-widget a,
.sidebar .archive-widget a {
  text-decoration: none;
  display: block;
}
.sidebar .recent-posts-widget a:hover,
.sidebar .archive-widget a:hover {
  text-decoration: underline;
}

.privacy-policy-wrapper {
  margin: 0 auto;
  width: 80%;
  padding: 84px 124px;
  background: #fefefe;
  height: 1195px;
  font-size: 0.875rem;
  text-align: left;
  line-height: 28px;
}

.return-list {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  padding: 80px 12px;
  transition: 0.3s ease-in-out;
  width: 138px;
  margin: 0 auto;
}
.return-list span {
  display: block;
}

/** もっと見る矢印. */
.see-more-container {
  display: flex;
  float: right;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  margin-top: 50px;
  position: relative;
}
.see-more-container .see-more {
  height: 25px;
  margin-left: 50px;
  margin-bottom: 50px;
  color: #323232;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 25px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .see-more-container .see-more {
    position: absolute;
  }
}
.see-more-container .arrow-left {
  width: 315px;
  height: 51px;
  margin-right: 65px;
  background: url(../../assets/images/arrow-l.svg) no-repeat center;
  background-size: cover;
}
@media (max-width: 768px) {
  .see-more-container .arrow-left {
    margin: 0;
  }
}

.button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #ac9373;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.button:hover {
  background-color: #917b5c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* モバイル向け */
@media (max-width: 768px) {
  .button {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 16px;
    box-sizing: border-box;
  }
}
.button-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.button-secondary:hover {
  background-color: #f2f2f2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #111;
  border-color: #111;
}

.nav {
  width: 100%;
  margin-top: 100px;
}
@media (max-width: 1024px) {
  .nav {
    margin-top: 50px;
  }
}

.breadcrumb {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 100px;
  gap: 5px;
}
@media (max-width: 1024px) {
  .breadcrumb {
    margin-left: 20px;
  }
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 5px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 12px;
  position: relative;
  width: 100%;
  height: auto;
  background: #ac9373;
  overflow: hidden;
  flex: 1 1 calc(25% - 1.125rem);
}

.blog-description {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 280px;
  min-width: 0;
  height: 54px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.blog-card img {
  height: 245px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.pagination {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 50px;
  }
}
.pagination a,
.pagination span {
  padding: 8px 12px;
  margin: 2px;
  color: #333;
}
.pagination .current {
  background: #333;
  color: #fff;
  border: 1px solid #333;
}
.pagination .pagination-prev,
.pagination .pagination-next {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}
.pagination .pagination-prev:hover svg,
.pagination .pagination-next:hover svg,
.pagination a:hover,
.pagination span:hover {
  transform: scale(1.2);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
  .post-navigation .nav {
    width: 120px;
  }
}
.post-navigation span {
  max-width: 20ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .post-navigation span {
    max-width: 12ch;
  }
}
.post-navigation a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  text-align: center;
}
.post-navigation a:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .post-navigation {
    gap: 20px;
  }
  .post-navigation a {
    max-width: 100%;
  }
}

.works {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  max-width: 1206px;
  width: 100%;
  margin-top: 62px;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .works {
    margin: 50px auto 0;
    justify-content: center;
    gap: 50px;
  }
  .works > a {
    width: 348px;
  }
}
.works .work-card {
  display: flex;
  flex: 1 1 calc(33.333% - 1rem);
  flex-direction: column;
  gap: 20px;
  max-width: 380px;
  width: 100%;
  height: auto;
  background: #fefefe;
  overflow: hidden;
}
@media (max-width: 768px) {
  .works .work-card {
    flex: 1 1 100%;
    gap: 0;
  }
}
.works .work-card .work-card-frame {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  height: 325px;
  background-size: cover;
  overflow: hidden;
}
.works .work-card .work-card-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.works .work-card .work-info {
  position: relative;
  width: 100%;
  height: 65px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 21.6px;
  text-align: left;
  white-space: normal;
  padding: 12px;
}
.works .work-card .work-info-title {
  color: #323232;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 21.6px;
  text-align: left;
  text-decoration: underline;
}

.works-tags {
  padding: 5px 10px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.works-tags .tag {
  margin-left: 10%;
  font-weight: bold;
}

.work-tag-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 10px;
  padding: 0 10%;
}
.work-tag-frame .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.work-tag-frame .tags .tag {
  font-size: 0.875rem;
  text-transform: capitalize;
  transition: 0.3s;
}
.work-tag-frame .tags .tag a {
  text-decoration: none;
  color: #323232;
  height: 36px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 36px;
  white-space: nowrap;
}
.work-tag-frame .tags .tag:hover {
  border-bottom: 1px solid #000;
}

.flex-row-f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 372px;
  height: 36px;
  margin: 6px 0 0 3px;
  z-index: 28;
}

/** 施工事例シングルページ. */
.works-gallery {
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
}

.work-detail h2 {
  margin-bottom: 24px;
}

.work-main-image img {
  object-fit: contain;
  width: 100%;
  max-height: 520px;
}
@media (max-width: 768px) {
  .work-main-image img {
    width: 90%;
    margin: 0 auto;
    max-height: 325px;
  }
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.scroll-container {
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.scroll-container::-webkit-scrollbar {
  height: 8px;
}

.scroll-container::-webkit-scrollbar-thumb {
  border-radius: 4px;
}

.thumbnail-images {
  margin: 10px auto 0;
  display: flex;
  justify-content: start;
  width: 80%;
}
@media (max-width: 768px) {
  .thumbnail-images {
    width: 90%;
  }
}

.thumbnail {
  border: 2px solid transparent;
  transition: border 0.3s;
  object-fit: cover;
  width: 120px;
  height: 100px;
  cursor: pointer;
}

.thumbnail:hover {
  border: 2px solid #333232;
}

.work-thumbnail {
  width: 100%;
  height: 325px;
  object-fit: cover;
  display: block;
}

.works-table {
  margin: 0 auto;
  width: 800px;
  border-collapse: collapse;
  border-top: 1px solid #000;
}
@media (max-width: 768px) {
  .works-table {
    width: 90%;
  }
}

.works-table th {
  width: 120px;
}

.works-table th,
.works-table td {
  padding: 25px;
  text-align: left;
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .works-table th,
  .works-table td {
    padding: 12px;
  }
}

.blog-wrapper {
  margin: 0 auto 100px;
  display: flex;
}
.blog-wrapper .blog-container {
  width: 75%;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .blog-wrapper .blog-container {
    width: 90%;
    margin: 0 auto;
  }
}
.blog-wrapper .blog-container article {
  width: 100%;
  max-width: 900px;
  line-height: 180%;
}
.blog-wrapper .blog-container article > div {
  padding: 60px;
  background-color: #fefefe;
}
@media (max-width: 768px) {
  .blog-wrapper .blog-container article > div {
    padding: 20px;
  }
}
.blog-wrapper .sidebar-container {
  width: 25%;
}
@media (max-width: 768px) {
  .blog-wrapper .sidebar-container {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .blog-wrapper {
    flex-direction: column;
  }
}

.blog-card-l {
  position: relative;
  width: 100%;
  max-width: 868px;
  background: #fefefe;
  height: 260px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .blog-card-l {
    height: 124px;
    margin-bottom: 24px;
  }
}
.blog-card-l > a {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
}
.blog-card-l img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .blog-card-l img {
    width: 124px;
    height: 124px;
  }
}
.blog-card-l .blog-card-content {
  width: 100%;
  max-width: 510px;
  padding-left: 20px;
}
.blog-card-l .blog-card-content h4 {
  padding: 60px 20px 20px 0;
  font-size: 0.875rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .blog-card-l .blog-card-content h4 {
    padding: 20px 10px 10px 0px;
  }
}
.blog-card-l .blog-card-content p {
  padding: 0 50px 20px 0;
  font-size: 0.875rem;
  color: #666;
}
@media (max-width: 768px) {
  .blog-card-l .blog-card-content p {
    padding: 0 10px 0px 0;
  }
}

.director {
  position: relative;
  height: 58px;
  left: 183px;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .director {
    text-align: center;
    left: auto;
    height: auto;
  }
}

.flex-row-a {
  position: relative;
  width: 100%;
  height: 933px;
  margin-top: 44px;
}
@media (max-width: 1024px) {
  .flex-row-a {
    height: auto;
  }
}
.flex-row-a .chief-wrapper {
  display: flex;
  max-width: 1495px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .flex-row-a .chief-wrapper {
    flex-direction: column;
  }
}
.flex-row-a .image-container {
  width: 60%;
  height: auto;
  margin-left: 5vw;
  z-index: 3;
}
@media (max-width: 1024px) {
  .flex-row-a .image-container {
    width: 100%;
    height: auto;
    min-height: 238px;
    margin-left: 30px;
  }
}
.flex-row-a img {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .flex-row-a img {
    width: 100%;
    height: auto;
    min-height: 238px;
    left: 50px;
  }
}
.flex-row-a .chief-message {
  width: 40%;
  margin-top: 8vw;
  margin-left: 40px;
  margin-right: 5vw;
  height: auto;
  font-weight: 500;
  line-height: 28.8px;
  text-align: left;
  z-index: 2;
}
@media (max-width: 1024px) {
  .flex-row-a .chief-message {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 20px 20px;
  }
}
.flex-row-a .chief-container {
  position: absolute;
  width: 65vw;
  height: 641px;
  top: 171px;
  left: -2vw;
  background: #dac5b2;
  overflow: hidden;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .flex-row-a .chief-container {
    top: 51px;
    left: -50px;
    width: 100vw;
    height: 70vw;
  }
}
.flex-row-a .akira-architect {
  width: 398px;
  height: 56px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 25.2px;
  z-index: 1;
}
.flex-row-a .akira-architect span {
  font-size: 0.875rem;
  margin-left: 30px;
}
@media (max-width: 1024px) {
  .flex-row-a .akira-architect {
    text-align: center;
    width: 90%;
  }
}
.flex-row-a .profile {
  position: absolute;
  width: 506px;
  height: 354px;
  top: 579px;
  right: 10vw;
  background: #fefefe;
  z-index: 4;
  overflow: hidden;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .flex-row-a .profile {
    position: relative;
    top: 0;
    left: auto;
    right: auto;
    width: 90%;
    height: auto;
    margin: 50px auto 0;
  }
}
.flex-row-a .profile .profile-title {
  position: relative;
  height: 29px;
  margin: 12px 0 0 20px;
  font-weight: 500;
  line-height: 28.8px;
  text-align: left;
  white-space: nowrap;
}
.flex-row-a .profile .profile-table {
  width: 100%;
  border-collapse: collapse;
}
.flex-row-a .profile .profile-table td {
  padding: 10px;
  font-size: 0.75rem;
}
.flex-row-a .profile .profile-table td.year {
  width: 120px;
  text-align: right;
  padding-right: 15px;
  white-space: nowrap;
  vertical-align: top;
  z-index: 5;
}
.flex-row-a .profile .profile-table td.info {
  width: 140px;
  font-weight: bold;
  text-align: left;
  padding-right: 15px;
  white-space: nowrap;
  vertical-align: top;
}

.overview-section {
  margin: 0 auto;
  width: 75%;
}
@media (max-width: 768px) {
  .overview-section {
    width: 90%;
  }
}
.overview-section .office-overview {
  text-align: start;
}
@media (max-width: 768px) {
  .overview-section .office-overview {
    text-align: center;
  }
}
.overview-section .office-table-wrapper {
  width: 100%;
  background-color: #fefefe;
  padding: 40px 50px;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .overview-section .office-table-wrapper {
    margin-top: 50px;
    padding: 0 20px 20px;
  }
}
.overview-section .office-table-wrapper .office-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.overview-section .office-table-wrapper .office-table th,
.overview-section .office-table-wrapper .office-table td {
  padding: 28px;
  text-align: center;
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .overview-section .office-table-wrapper .office-table th,
  .overview-section .office-table-wrapper .office-table td {
    padding: 20px 0;
  }
}
.overview-section .office-table-wrapper .office-table th {
  text-align: right;
  font-weight: bold;
  width: 25%;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .overview-section .office-table-wrapper .office-table th {
    text-align: left;
    width: 30%;
  }
}
.overview-section .office-table-wrapper .office-table td {
  width: 75%;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .overview-section .office-table-wrapper .office-table td {
    width: 70%;
  }
}

.access-section {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  position: relative;
  width: 100%;
  padding: 80px 0;
  margin: 0 auto;
  background: #dac5b2;
  overflow: hidden;
}
@media (max-width: 768px) {
  .access-section {
    padding: 50px 0;
  }
}
.access-section .title {
  text-align: start;
}
@media (max-width: 768px) {
  .access-section .title {
    text-align: center;
  }
}
.access-section .access-frame {
  width: 80%;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .access-section .access-frame {
    width: 90%;
  }
}
.access-section .company-address {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 352px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  margin-top: 32px;
  margin-bottom: 24px;
}
.access-section .map {
  width: 100%;
  height: 500px;
}

.business-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.business-section .button-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: auto;
  top: -50px;
  right: 40%;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  background-color: #fefefe;
}
@media (max-width: 1024px) {
  .business-section .button-container {
    right: auto;
    width: auto;
    height: auto;
    top: -40px;
  }
}
.business-section .button-container .design-button {
  font-size: 1.5rem;
  padding: 12px;
}
@media (max-width: 1024px) {
  .business-section .button-container .design-button {
    font-size: 1.25rem;
  }
}
.business-section .content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1122px;
  width: 100%;
}
@media (max-width: 1024px) {
  .business-section .content-wrapper {
    flex-direction: column;
    margin-top: 20px;
  }
}
.business-section .content-wrapper .image-container {
  width: 50%;
  aspect-ratio: 4/3;
}
@media (max-width: 1024px) {
  .business-section .content-wrapper .image-container {
    width: 90%;
  }
}
.business-section .content-wrapper .description {
  line-height: 1.8;
  color: #323232;
  width: 50%;
  margin: 20px 60px;
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  .business-section .content-wrapper .description {
    width: 100%;
  }
}

.business-heading {
  font-weight: 400;
  color: #323232;
  text-align: left;
  max-width: 1122px;
  width: 100%;
  margin: 0 auto 32px;
}
@media (max-width: 1024px) {
  .business-heading {
    text-align: center;
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .service-container .business-heading {
    font-size: 1.5rem;
  }
  .service-container .design-button {
    width: 180px;
    height: 45px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .service-container .business-heading {
    font-size: 1.5rem;
  }
  .service-container .design-button {
    width: 160px;
    height: 40px;
    font-size: 1rem;
  }
  .service-container .description {
    font-size: 0.875rem;
  }
}
.technical-container {
  margin-bottom: 100px;
}

.card-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 52px;
  max-width: 1192px;
  width: 100%;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .card-container {
    width: 90%;
    gap: 82px;
  }
}
.card-container .property-card {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  width: calc(50% - 26px);
  padding: 60px;
  background: #fefefe;
  z-index: 1;
  position: relative;
}
@media (max-width: 1024px) {
  .card-container .property-card {
    width: 100%;
    height: fit-content;
    padding: 40px 20px;
  }
}
.card-container .property-card .about-property-title {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  min-width: 152px;
  height: 52px;
  padding: 14px 20px;
  background: #ac9373;
  border: 1px solid #b7a8a8;
  z-index: 3;
  overflow: hidden;
}
.card-container .property-card .about-property-title span {
  flex-shrink: 0;
  height: 25px;
  color: #fefefe;
  font-size: 0.875rem;
  white-space: nowrap;
}
.card-container .property-card .property-info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-grow: 1;
  width: 450px;
  height: 100%;
  font-size: 0.875rem;
  text-align: left;
}
@media (max-width: 1024px) {
  .card-container .property-card .property-info {
    height: auto;
  }
}
.card-container .property-card .property-info span {
  line-height: 25px;
}

.faq-subject {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 70%;
}
@media (max-width: 768px) {
  .faq-subject {
    justify-content: center;
    flex-direction: column;
    gap: 0;
  }
}

.faq {
  height: 58px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 57px;
  text-align: left;
  white-space: nowrap;
}

.faq-sub {
  height: 29px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 28.8px;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .faq-sub {
    flex-direction: column;
  }
}

.faq-frame {
  position: relative;
  width: 80%;
  max-width: 1100px;
  margin: 20px 0 0 0;
  padding: 20px;
  background: #fefefe;
}
@media (max-width: 768px) {
  .faq-frame {
    margin: 8px 0 0 0;
    width: 90%;
  }
}

.faq-container {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  margin-left: 50px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .faq-question {
    margin-left: 20px;
  }
}

.faq-toggle {
  font-size: 1.25rem;
  margin-left: auto;
  margin-right: 50px;
}
@media (max-width: 768px) {
  .faq-toggle {
    margin: 0;
  }
}

.faq-title {
  display: block;
}
@media (max-width: 768px) {
  .faq-title {
    margin-right: 10px;
  }
}

.faq-answer {
  max-height: 0;
  padding: 0 50px 0 90px;
  background-color: #fefefe;
  overflow: hidden;
  transform: translateY(-10px);
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .faq-answer {
    padding: 0 0 0 22px;
  }
}
.faq-answer.show {
  max-height: 500px;
  transform: translateY(0);
}

.flow-wrapper {
  position: relative;
  width: 100%;
  margin-top: 100px;
}
@media (max-width: 1024px) {
  .flow-wrapper {
    margin-top: 50px;
  }
}

.work-flow {
  margin-top: 30px;
  margin-right: 100px;
  width: 100%;
}
@media (max-width: 1024px) {
  .work-flow {
    margin-top: 0;
    margin-right: 0;
  }
}

.flow-step-container {
  position: relative;
  width: 100%;
  max-width: 1046px;
  overflow: hidden;
  margin: 0 auto;
  background: #dac5b2;
}

.line-bottom {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.flow-title {
  cursor: pointer;
  display: block;
  margin: 45px;
}

.circle {
  position: absolute;
  right: 30px;
  top: 220px;
}

.flow-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}
.flow-content.active {
  padding: 10px;
}

.work-flow-wrapper {
  display: flex;
  gap: 30px;
}
@media (max-width: 1024px) {
  .work-flow-wrapper {
    gap: 10px;
  }
}

.step-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  max-width: 764px;
  width: 100%;
  margin: 0 auto 50px;
  gap: 23px;
  padding: 0 12px;
  background: #fefefe;
}
@media (max-width: 1024px) {
  .step-card {
    gap: 0;
  }
}
.step-card .step-number {
  position: absolute;
  top: -30px;
  left: 43px;
  font-size: 36px;
  font-weight: 500;
  line-height: 64.8px;
}
.step-card .step-title {
  position: relative;
  height: 25px;
  font-weight: 500;
  line-height: 25px;
  text-align: left;
  white-space: nowrap;
  z-index: 1;
}
.step-card .step-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  font-size: 0.875rem;
  width: 80%;
  padding: 20px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .step-card .step-description {
    width: 90%;
    padding: 20px 10px;
  }
}
.step-card .step-description .consultation-title {
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  margin-top: 10px;
}

.additional-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 53px;
  margin: 0 50px 50px;
  padding: 62px 19px;
  background: #ac9373;
  overflow: hidden;
}
@media (max-width: 768px) {
  .additional-info {
    margin: 0 20px 50px;
  }
}
.additional-info span {
  color: #fefefe;
}

/* 日本語用 横書き */
.horizontal-label {
  writing-mode: horizontal-tb;
}

/* 英語用 縦書き */
.vertical-label {
  writing-mode: vertical-rl;
}

.separator-line {
  flex-shrink: 0;
  position: absolute;
  width: 1px;
  height: 90%;
  top: 30px;
  left: 27px;
  background-color: #000;
}
@media (max-width: 1024px) {
  .separator-line {
    height: 95%;
  }
}

.amount-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin: 100px auto 0;
}
@media (max-width: 1024px) {
  .amount-container {
    gap: 105px;
  }
}
.amount-container > div {
  display: flex;
  justify-content: center;
}
.amount-container .amount-card {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 480px;
  padding: 68px 60px;
  background: #fefefe;
  border: 1px solid #000;
  position: relative;
}
@media (max-width: 1024px) {
  .amount-container .amount-card {
    width: 90%;
    height: auto;
    margin: auto;
    padding: 40px 20px;
  }
}
.amount-container .amount-card .amount-title {
  position: absolute;
  top: -72px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 8px;
  font-weight: bold;
  border-bottom: 2px solid #000;
  padding-bottom: 4px;
}
@media (max-width: 1024px) {
  .amount-container .amount-card .amount-title {
    top: -52px;
    font-size: 1.5rem;
    left: auto;
    transform: none;
  }
}

.contact-container {
  border: 1px solid #000;
  padding: 24px;
  width: 75%;
}
@media (max-width: 1024px) {
  .contact-container {
    width: 80%;
    text-align: center;
  }
}
.contact-container .tel-info {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .contact-container .tel-info {
    justify-content: center;
  }
}
.contact-container .tel-info img {
  margin-right: 10px;
  width: 24px;
  height: auto;
}
.contact-container p {
  font-weight: bold;
  font-size: 0.875rem;
}

.contact-form {
  width: 100%;
  max-width: 950px;
  margin: 100px auto;
  padding: 20px;
}
@media (max-width: 1024px) {
  .contact-form {
    margin: 0px auto;
  }
}
.contact-form .form-title {
  font-size: 1.25rem;
  color: #323232;
  margin-bottom: 24px;
  text-align: left;
}
@media (max-width: 1024px) {
  .contact-form .form-title {
    margin-top: 50px;
  }
}
.contact-form .input-group {
  margin-bottom: 20px;
}
.contact-form .input-group .label {
  display: block;
  font-weight: bold;
  color: #323232;
  margin-bottom: 10px;
}
.contact-form .input-group .required {
  color: black;
}
.contact-form .input-group .input-field,
.contact-form .input-group .textarea-field {
  width: 100%;
  padding: 10px;
  height: 54px;
  font-size: 1rem;
  border: 1px solid #fff;
  box-sizing: border-box;
  background-color: #fff;
}
.contact-form .input-group .input-field:focus,
.contact-form .input-group .textarea-field:focus {
  border-color: #0066cc;
  outline: none;
}
.contact-form .input-group .textarea-field {
  height: 200px;
}
.contact-form .input-group .input-field.error,
.contact-form .input-group .textarea-field.error {
  border: 2px solid #e53935;
  background-color: #fff6f6;
}
.contact-form .input-group .error-message {
  color: #e53935;
  font-size: 14px;
  margin-top: 6px;
  display: none;
}
.contact-form .input-group .error-message.active {
  display: block;
}
.contact-form .note {
  font-size: 0.875rem;
  color: #777;
  text-align: left;
  margin-top: 10px;
}
.contact-form .send-contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 310px;
  height: 60px;
  margin: 100px auto 0;
  padding: 8px 17px;
  background: #ac9373;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  color: #fefefe;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  transition: background-color 0.3s, transform 0.2s;
}
.contact-form .send-contact-button:hover {
  background: #917b5c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.concept-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 20px;
}

.concept-section:nth-of-type(3),
.concept-section:nth-of-type(5) {
  background-color: #dac5b2;
}

.concept-block {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}
.concept-block .concept-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1024px) {
  .concept-block .concept-text {
    width: 100%;
  }
}
.concept-block .concept-text .concept-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #323232;
}
.concept-block .concept-text .concept-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #323232;
}
.concept-block img {
  flex-shrink: 0;
  width: 50%;
  max-width: 660px;
  height: auto;
  object-fit: cover;
}

/* アニメーション用の初期状態 */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

/* アニメーションが発動されたときの状態 */
.animate-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .concept-block {
    flex-direction: column;
    text-align: start;
  }
  .concept-block img {
    width: 100%;
    max-width: 100%;
  }
}
.main-frame {
  position: relative;
  width: 100%;
  height: 740px;
  background: #b7a8a8;
  overflow: hidden;
}
@media (max-width: 768px) {
  .main-frame {
    height: 390px;
  }
}

.main-image {
  width: 100%;
  height: 859px;
  background-position: center;
  background-size: cover;
  transition: background-image 1s ease-in-out;
}
@media (max-width: 768px) {
  .main-image {
    height: 390px;
  }
}

.greetings-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 590px;
  flex-wrap: wrap;
  margin: 68px 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .greetings-container {
    width: 100%;
    margin: 0 auto;
    height: auto;
  }
}
.greetings-container .left-content {
  width: 60%;
  height: 590px;
  position: relative;
}
@media (max-width: 768px) {
  .greetings-container .left-content {
    height: 338px;
    width: 100%;
  }
}
.greetings-container .rectangle-3c {
  position: relative;
  width: 515px;
  max-width: 515px;
  height: 543px;
  left: -18px;
  background: #ac9373;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .greetings-container .rectangle-3c {
    height: 338px;
    left: -239px;
  }
}
.greetings-container .your-wish {
  position: absolute;
  top: 46px;
  left: 194px;
  color: #fefefe;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  white-space: normal;
  z-index: 4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .greetings-container .your-wish {
    font-size: 1.25rem;
    top: 32px;
    left: 274px;
  }
}
.greetings-container .ch-3d {
  position: absolute;
  width: 80%;
  max-height: 470px;
  top: 112px;
  left: 71px;
  background-size: cover;
  background-position: center;
}
.greetings-container .ch-3d > img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .greetings-container .ch-3d > img {
    height: 228px;
  }
}
@media (max-width: 768px) {
  .greetings-container .ch-3d {
    height: 228px;
    top: 92px;
  }
}
.greetings-container .welcome-message {
  width: 40%;
  max-width: 425px;
  font-weight: 500;
  line-height: 28.8px;
  text-align: left;
  object-fit: cover;
  z-index: 5;
}
@media (max-width: 768px) {
  .greetings-container .welcome-message {
    width: 90%;
    margin: 50px auto 0;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .greetings-container .ch-3d {
    width: 100%;
  }
}

.rectangle {
  position: relative;
  width: 800px;
  height: 85px;
  background: #ac9373;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .rectangle {
    width: 100%;
  }
}
.rectangle .work-flow-link {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  height: 36px;
  top: 17px;
  left: 27px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 36px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .rectangle .work-flow-link {
    left: 10px;
  }
}
.rectangle .arrow-left {
  position: absolute;
  width: 315px;
  height: 51px;
  top: 18px;
  right: 20px;
  background: url(../../assets/images/arrow-l.svg) no-repeat center;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 768px) {
  .rectangle .arrow-left {
    margin: 0;
    width: 250px;
    height: 48px;
    top: 20px;
  }
}
.rectangle .cost-details {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  height: 22px;
  top: 50px;
  left: 88px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 21.6px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .rectangle .cost-details {
    left: 20px;
  }
}

.construction-example {
  position: relative;
  height: 58px;
  margin: 90px 0 0;
  color: #323232;
  font-size: 2rem;
  font-weight: 500;
  line-height: 57.6px;
  text-align: left;
  white-space: nowrap;
}

.blog-section {
  margin: auto;
}

.blog-title {
  display: block;
  position: relative;
  height: 58px;
  margin: 58px auto 0;
  width: 70%;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .blog-title {
    margin: 0 auto;
    text-align: center;
  }
}

.blog-frame {
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
  max-width: 1206px;
  margin: 50px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .blog-frame {
    flex-direction: column;
  }
}

.contact-frame {
  position: relative;
  width: 80%;
  font-size: 0;
  background: #fefefe;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact-frame {
    width: 100%;
    height: auto;
  }
}
.contact-frame .contact-title {
  display: block;
  position: relative;
  margin-top: 80px;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 72px;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .contact-frame .contact-title {
    line-height: 58px;
    font-size: 2rem;
  }
}
.contact-frame .button-l {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 330px;
  height: 54px;
  margin: 32px auto 0;
  background: #ac9373;
  border-radius: 50px;
}
.contact-frame .button-l:hover {
  transition: background 0.3s;
}
.contact-frame .button-l:hover:hover {
  background: rgb(148.1614349776, 121.7040358744, 87.8385650224);
}
@media (max-width: 768px) {
  .contact-frame .button-l {
    width: 304px;
  }
}
.contact-frame .button-l span {
  flex-shrink: 0;
  position: relative;
  height: 36px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 36px;
  white-space: nowrap;
}
.contact-frame .mail-send-envelope {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 302px;
  margin: 32px 0 80px;
  padding: 4px 18px;
  overflow: hidden;
}
.contact-frame .mail-send-envelope span {
  flex-shrink: 0;
  position: relative;
  height: 25px;
  color: #323232;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 25px;
  white-space: nowrap;
}

.privacy-policy-wrapper {
  margin: 0 auto;
  width: 80%;
  padding: 84px 124px 84px 124px;
  background: #fefefe;
  height: 1195px;
  font-size: 0.875rem;
  text-align: left;
  line-height: 28px;
}
.privacy-policy-wrapper h2 {
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
}

.thanks-wrapper {
  text-align: center;
  padding: 0px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.thanks-message {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 50px;
}

.thanks-detail {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 50px;
}

/*# sourceMappingURL=style.css.map */
