@charset "UTF-8";
/* -------------------------------------------------------------------------------- */
/*	サイドバー
/* -------------------------------------------------------------------------------- */
.sidebar {
  border-right: 1px solid #ccc;
  background: none;
}

.bl_sidebarTitleWrap {
  position: absolute;
  top: calc(87px + 3em);
  letter-spacing: 0.1em;
  left: 40px;
  font-weight: bold;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl_sidebarTitleWrap::after {
  background-color: #333;
  /* 横線の色 */
  content: "　";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  right: -2px;
}

body.home .bl_sidebarTitleWrap::after {
  content: none;
}

.el_title {
  width: 100%;
  max-width: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.el_title::after {
  background-color: #333;
  content: "　";
  height: 1px;
  width: 100%;
  margin-left: 0.5em;
}

@media (max-width: 1000px) {
  .bl_sidebarTitleWrap {
    display: none;
  }
}
.bl_projectList {
  position: absolute;
  top: 13em;
  list-style: none;
}
.bl_projectList li {
  line-height: 2;
  font-weight: normal;
  color: #767676;
}
.bl_projectList li a:link,
.bl_projectList li a:visited {
  color: #767676;
}
.bl_projectList li.current a,
.bl_projectList li a:hover {
  color: #000000;
}

.main-menu > li:first-child {
  display: none;
}
@media (max-width: 1000px) {
  .main-menu > li:first-child {
    display: block;
  }
}

/* -------------------------------------------------------------------------------- */
/*	index.php
/* -------------------------------------------------------------------------------- */
#page .posts .post-container,
#project .posts .post-container {
  padding: 0;
  margin-bottom: 14px;
}
#page .posts .post-container > div,
#project .posts .post-container > div {
  padding: 0;
  background: none;
}
#page .posts .post-title,
#project .posts .post-title {
  font-size: 14px;
}
#page .posts .featured-media + .post-header,
#project .posts .featured-media + .post-header {
  margin-top: 0.5em;
}

.featured-media {
  margin-bottom: 0.5em;
  padding: 0 10px;
}

.featured-media img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s ease-out !important;
}

body a,
.widget_fukasawa_recent_posts a:hover .title,
.widget_fukasawa_recent_comments a:hover .title {
  transition: all 0.3s ease-out !important;
}

.posts .format-standard .featured-media:hover img,
.posts .featured-media a:hover img,
.posts .format-image .featured-media:hover img {
  transform: scale(1.1);
}

.post-title,
.post.single h1.post-title,
.archive-title {
  font-size: 1.5em;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 5em;
  padding-left: 10px;
  word-break: break-word;
  -ms-word-break: break-word;
  color: #f2f2f2;
}
@media (max-width: 1000px) {
  .post-title,
  .post.single h1.post-title,
  .archive-title {
    margin-bottom: 0.5em;
    color: #282828;
    margin-bottom: calc(3svh + 36px);
    font-size: 12px;
  }
}

@media (max-width: 1000px) {
  .project-template-default .post.single .post-title {
    color: #f2f2f2;
  }
  .project-template-default .post.single .post-title::before {
    display: none;
  }
}
.bl_newsDetail .post-title {
  color: #282828;
}
.bl_newsDetail .post-header {
  margin-top: 11.5em;
}

@media (max-width: 1000px) {
  .bl_newsDetail .post-header {
    margin-top: 5em;
  }
  .posts .post-container + .post-container {
    margin-top: 0;
  }
}
/* -------------------------------------------------------------------------------- */
/*	全体
/* ----------------------------------------------------------- */
.wp-block-image,
.wp-block-gallery {
  margin: 0;
  padding: 0;
}

.wp-block-image,
.wp-block-gallery {
  margin-bottom: 7px !important;
}

.wp-block-gallery .wp-block-image {
  margin-bottom: 0 !important;
  padding: 0;
}

/* -------------------------------------------------------------------------------- */
/*	投稿ページ
/* -------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------- */
/*	front-page.php
/* -------------------------------------------------------------------------------- */
.bl_slideWrap {
  margin-bottom: 2rem;
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 10rem;
}
@media (max-width: 1000px) {
  .bl_slideWrap {
    margin-top: 10rem;
    margin-bottom: 66.6666666667vw; /* 横幅の比率に応じて計算 */
  }
}

.swiper-wrapper img,
.swiper-wrapper video {
  width: 100%;
  aspect-ratio: 1180/583; /* もしくは 2.02 でもOK */
  object-fit: cover;
  display: block;
}

.swiper-slide video {
  width: 100%;
  aspect-ratio: 1180/583; /* 約2.024 */
  object-fit: cover;
  display: block;
}

.videoWrapper .swiper-slide {
  width: 100%;
  /* 高さは中身に任せる */
  padding-top: 0 !important;
}

.bl_slide {
  width: 100%;
  height: auto;
  background: #eee;
  margin-bottom: 0.5em;
}
@media (max-width: 1000px) {
  .bl_slide {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.bl_slideDetail {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 10rem;
}
@media (max-width: 1000px) {
  .bl_slideDetail {
    margin-block: 2rem;
  }
}

.el_slideTxt {
  width: 40%;
  padding-right: 14px;
  height: auto;
  font-size: 12px;
  line-height: 2.5;
}

.el_slideSubImg {
  width: 58%;
  height: auto;
}

@media (max-width: 1000px) {
  .swiper-slide {
    position: relative;
    width: 100%;
    padding-top: 125% !important;
  }
}
.project-item {
  width: 100%;
  padding-top: calc(33.3333333333% - 7px);
  /* アスペクト比に基づいたパディング */
  height: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 1em;
  /* 下の余白 */
  flex-basis: calc(50% - 0.5em);
  /* コンテナの50%の幅 */
  margin-right: 1em;
  /* 右の余白 */
  line-height: 1;
}

.home .project-item {
  width: 100%;
  padding-top: calc(50% - 7px); /* 2:1のアスペクト比に基づいたパディング */
  height: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 1em; /* 下の余白 */
  flex-basis: calc(50% - 0.5em); /* コンテナの50%の幅 */
  margin-right: 1em; /* 右の余白 */
  line-height: 1;
}
@media (max-width: 1000px) {
  .home .project-item {
    padding-top: 60%;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    margin-bottom: 1em;
  }
}

.project-item img {
  position: absolute;
  top: 50%; /* 上から50%の位置に */
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%); /* 画像の中央を基準に移動 */
  object-fit: cover; /* 画像をコンテナいっぱいにカバー */
  object-position: center; /* 画像の中心を表示 */
  width: 100%;
  height: 100%;
  object-fit: cover; /* アスペクト比維持してトリミング */
  object-position: center; /* 中央を基準にトリミング */
  display: block;
}

.bl_slashLogo {
  max-width: 30%;
  margin-inline: auto;
  margin-top: calc(10rem - 29px);
}
.bl_slashLogo img {
  width: 100%;
  height: auto;
}

.bl_spLogo {
  display: none;
  height: 15px;
  width: auto;
}
.bl_spLogo img {
  display: none;
  width: auto;
  height: 100%;
}

.home h2.wp-block-heading {
  font-size: 12px;
  margin-bottom: 1em;
  font-weight: bolder;
  letter-spacing: 0.1em;
}

/* -------------------------------------------------------------------------------- */
/*	お知らせ
/* -------------------------------------------------------------------------------- */
.bl_newsPage .post.single h2.post-title {
  font-size: 14px;
  margin-bottom: 0;
}
.bl_newsPage .post-inner {
  max-width: 100%;
  padding: 0;
}
.bl_newsPage .posts {
  margin-top: calc(-10px - 0.25em);
}
.bl_newsPage .featured-media {
  margin-bottom: 0;
  padding: 0;
}

.page-template-page-news .post-inner .post-title {
  padding-left: 0;
  line-height: 1.45;
}
.page-template-page-news .post-inner .featured-media {
  margin-bottom: 1em;
  padding: 0;
}

.el_NewsDate {
  margin-top: 0.75em;
  margin-bottom: 0.5em;
}

.bl_newsDetail .post-date {
  padding: 0 10px;
  margin-bottom: 0.2em;
}
.bl_newsDetail .post-content {
  padding: 0 10px;
  margin-top: 5em;
  letter-spacing: 0.15em;
}
@media (max-width: 1000px) {
  .bl_newsDetail .post-content {
    margin-top: 3em;
  }
}
.bl_newsDetail .post-content p,
.bl_newsDetail .post-content blockquote,
.bl_newsDetail .post-content address,
.bl_newsDetail .post-content dl,
.bl_newsDetail .post-content .wp-caption,
.bl_newsDetail .post-content pre {
  margin-bottom: 0;
}
.bl_newsDetail .post-title,
.bl_newsDetail .post.single .post-title,
.bl_newsDetail .archive-title {
  color: #333;
}

@media (max-width: 1000px) {
  .bl_newsPage .posts .post-container {
    width: 100%;
  }
}

/* -------------------------------------------------------------------------------- */
/*	プロダクトページ
/* -------------------------------------------------------------------------------- */
.page-template-page-project,
.tax-project_category {
  /* 偶数のアイテムの右余白を削除 */
  /* 画面幅が小さくなった場合の調整（必要に応じて） */
}
.page-template-page-project .bl_prduct-itemWrap,
.tax-project_category .bl_prduct-itemWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* アイテム間のスペースを均等に分ける */
  box-sizing: border-box;
  padding: 0 14px;
  /*　Newsと空きを合わせる*/
  margin-top: 10rem;
}
@media (max-width: 1000px) {
  .page-template-page-project .bl_prduct-itemWrap,
  .tax-project_category .bl_prduct-itemWrap {
    margin-top: calc(6.875rem - 18px);
  }
}
.page-template-page-project .project-item,
.tax-project_category .project-item {
  width: 100%;
  padding-top: calc(33.3333333333% - 7px);
  /* アスペクト比に基づいたパディング */
  height: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 1em;
  /* 下の余白 */
  flex-basis: calc(50% - 0.5em);
  /* コンテナの50%の幅 */
  margin-right: 1em;
  /* 右の余白 */
  line-height: 1;
}
.page-template-page-project .project-item:nth-child(2n),
.tax-project_category .project-item:nth-child(2n) {
  margin-right: 0;
}
.page-template-page-project h2,
.tax-project_category h2 {
  position: absolute;
  bottom: 18px;
  left: 0;
  background: #fff;
  color: #000;
  letter-spacing: 0.05em;
  font-size: 12px;
  padding-top: 3px;
  padding-bottom: 2.5px;
  padding-right: 1em;
  padding-left: 1em;
}
@media (max-width: 600px) {
  .page-template-page-project .project-item,
  .tax-project_category .project-item {
    padding-top: calc(66.6666666667% - 7px);
    margin-bottom: 1em;
    flex-basis: 100%;
    margin-right: 0;
  }
}

.bl_customFields_area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 5em;
  padding: 0 10px;
  gap: var(--wp--style--gallery-gap-default, var(--gallery-block--gutter-size, var(--wp--style--block-gap, 0.5em)));
  width: 100%;
}
@media (max-width: 1000px) {
  .bl_customFields_area {
    flex-direction: column;
    margin-top: 2.5em;
  }
}

.bl_caseNote {
  width: auto;
  letter-spacing: 0.15em;
  font-size: 12px;
  line-height: 1.75;
}
@media (max-width: 1000px) {
  .bl_caseNote {
    padding-right: 0;
    margin-bottom: 0.5em;
  }
}

dl.bl_caseDetail {
  margin: 0;
  min-width: 33.1%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.75;
}
dl.bl_caseDetail dt, dl.bl_caseDetail dd {
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.25em;
  margin-bottom: 0.25em;
}
dl.bl_caseDetail dt {
  width: 15%;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}
@media (max-width: 1000px) {
  dl.bl_caseDetail dt {
    width: 10%;
  }
}
dl.bl_caseDetail dd {
  margin-inline-start: 0;
  width: 85%;
  text-align: end;
}
@media (max-width: 1000px) {
  dl.bl_caseDetail dd {
    width: 90%;
  }
}

.project-cat-mutu-products dl.bl_caseDetail {
  display: none;
}

.posts .bl_project_category-mutu-projectsWrap {
  display: flex;
  justify-content: space-between;
}
.posts .bl_project_category-mutu-projectsWrap .featured-media {
  margin-bottom: 1em;
}
.posts .bl_project_category-mutu-projectsWrap .post-container {
  padding: 0;
  width: calc(50% - 0.5em);
  margin-right: 0.5em;
}
.posts .bl_project_category-mutu-projectsWrap .post-container:nth-child(even) {
  margin-right: 0;
  background: red;
  left: calc(600px + 0.25em);
}
.posts .bl_project_category-mutu-projectsWrap .post-container > div {
  padding: 0;
}
.posts .bl_project_category-mutu-projectsWrap .featured-media + .post-header {
  background: #fff;
  display: inline-block;
  margin-top: 0;
  position: absolute;
  left: 1em;
  bottom: 1em;
  padding: 0.2em;
  font-size: 12px;
  font-weight: normal;
}
.posts .bl_project_category-mutu-projectsWrap h2.post-title {
  margin-bottom: 0;
  border-bottom: 0;
}

/*style.cssの打ち消し*/
.post-content table.inquiry tbody > tr:nth-child(odd) > td {
  background: none;
}

.post-content table.inquiry input[type=text],
.post-content table.inquiry input[type=tel],
.post-content table.inquiry input[type=url],
.post-content table.inquiry input[type=email],
.post-content table.inquiry input[type=password],
.post-content table.inquiry textarea {
  background: #ffffff;
  padding: 0.5em;
}

.post-content table.inquiry textarea {
  resize: auto;
  max-width: 100%;
  width: 100%;
  background: #ffffff;
  padding: 0.5em;
}

.post-content table.inquiry input[type=number] {
  width: 100%;
  background: #ffffff;
  padding: 0.5em;
}

.wpcf7-textarea.content {
  margin: 0;
}

.post-content table.inquiry input {
  border: none;
}

.wpcf7-list-item {
  margin-left: 0;
}

.post-content label {
  font-weight: normal;
  font-size: 1em;
  line-height: 2;
  padding-right: 1.5em;
}

.post-content h2,
.post-content h3 {
  font-size: 14px;
  font-weight: 700;
}

.el_inquiryChild_title {
  font-weight: bold;
}

tbody th {
  vertical-align: top;
}

.inquiry.form_must th + td {
  vertical-align: top;
  padding-left: 0;
}

tbody td {
  vertical-align: top;
}

.post-content th {
  padding-left: 0;
}

.el_detailBox {
  text-align: center;
  color: #900606;
  border: 1px solid #900606;
  padding: 0.5em;
  margin: auto;
}

/* -------------------------------------------------------------------------------- */
/*	ABOUT
/* -------------------------------------------------------------------------------- */
.ark-block-dl__dd {
  padding: 0.2em;
}

.bl_members .wp-block-image {
  margin-top: 0.5em;
}

.wp-block-image img {
  width: 80%;
  height: auto;
}

.bl_members {
  margin-top: 2rem;
}

.bl_members .wp-container-core-columns-is-layout-1 {
  margin-bottom: 56px;
}

.ark-block-dl__dt {
  border-left: none;
  padding-left: 0;
}

.post-content p.el_aboutTxt {
  font-size: 14px;
  line-height: 1.75;
}

[class*=is-style-ark-list-icon] > li {
  padding-left: 0 !important;
}

.is-style-ark-list-icon--dot li:before {
  clip-path: circle(10% at 20%);
}

[class*=is-style-ark-list-icon] {
  --arkb-li-padding--left: 1.25em !important;
}

.post-content p.bl_aboutMessage {
  line-height: 2;
}

@media (max-width: 1000px) {
  .el_member {
    text-align: center;
    margin: auto;
  }
  .el_member img {
    max-width: 65%;
  }
  .el_member h2.wp-block-heading.has-small-font-size {
    font-size: 10px;
  }
  .post-content h2.bl_aboutTitle {
    font-size: 10px;
  }
  .post-content p.bl_aboutMessage {
    font-size: 9px;
  }
}
/* -------------------------------------------------------------------------------- */
/*	お問合せ
/* -------------------------------------------------------------------------------- */
/*Contact Form 7カスタマイズ*/
/*スマホContact Form 7カスタマイズ*/
@media (max-width: 500px) {
  .inquiry th,
  .inquiry td {
    display: block !important;
    width: 100% !important;
    border-top: none !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
  }
  .inquiry tr:first-child th {
    border-top: 1px solid #d7d7d7 !important;
  }
  /* 必須・任意のサイズ調整 */
  .inquiry .haveto,
  .inquiry .any {
    font-size: 13px;
  }
  .post-content .sp_nonetd, .post-content .sp_noneth {
    border-bottom: none;
    padding: 0 !important;
  }
}
/*見出し欄*/
.inquiry th {
  text-align: left;
  font-size: 13px;
  color: #444;
  padding-right: 5px;
  width: 30%;
  /*background:#f7f7f7;*/
  /*border:solid 1px #d7d7d7; */
}

.inquiry th p {
  font-weight: bold;
}

/*必須欄*/
.inquiry.form_must th + td {
  white-space: nowrap;
}

/*通常欄*/
.inquiry td {
  font-size: 13px;
  /*:solid 1px #d7d7d7;	*/
}

/*横の行とテーブル全体*/
/*必須の調整*/
.haveto {
  padding: 5px;
  color: #900606;
  margin-right: 0.5em;
  position: relative;
  bottom: 1px;
}

/*ラジオボタンを縦並び指定*/
.verticallist .wpcf7-list-item {
  display: block;
}

/*送信ボタンのデザイン変更*/
#formbtn {
  display: block;
  padding: 1.5em 0;
  margin-top: 30px;
  width: 100%;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 2px;
  border: none;
}

/*送信ボタンマウスホバー時*/
#formbtn:hover {
  background: #666666;
  color: #fff;
}

.bl_adressArea input[type=text] {
  margin-bottom: 1em;
}

.bl_contactMessage {
  font-size: 13px;
}

.el_inquiryChild_note {
  font-size: 10px;
}

.copyright {
  display: none !important;
}/*# sourceMappingURL=style.css.map */