@charset "UTF-8";
/***************************************************************
*
* CSS
* site name: RUC
*
***************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Decol&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Shippori+Mincho&family=Squada+One&display=swap");
/*--------------------------------------------------------
*
* 変数定義
*
--------------------------------------------------------*/
/*カラー*/
/*メインビジュアル用の背景色（グラデーション）*/
/*WEBフォント（フォントファミリー）*/
/*--------------------------------------------------------
*
* @MIXIN
*
--------------------------------------------------------*/
/*--------------------------------------------------------
*
* 矢印 arrow
*
--------------------------------------------------------*/
/*丸の中に入った矢印*/
/***************************************************************
*
* CSS
* site name: RUC
*
***************************************************************/
/*--------------------------------------------------------------
header ヘッダー
--------------------------------------------------------------*/
@media (min-width: 960px) {
  .p-breadcrumb {
    margin-top: calc(var(--logo_size_pc) + 32px);
  }
}
/* ヘッダー追従 上スクロールで表示 下スクロールで非表示 */
.l-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, background-color 0.3s;
  will-change: transform;
  box-shadow: none;
  background-color: transparent;
  /* 100px以降は背景色を白に */
}
.l-header.--hidden {
  transform: translateY(-100%);
  pointer-events: none;
}
.l-header.--visible {
  transform: translateY(0);
  pointer-events: auto;
}
.l-header.--scrolled {
  background-color: rgba(245, 239, 239, 0.9);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.l-header.--scrolled .c-gnav > .menu-item > a:after {
  background: #bf7f75;
}
.l-header.--scrolled .c-gnav .ttl {
  color: #bf7f75;
}
.l-header__inner {
  transition: 0.5s all;
}
.l-header__inner.scrolling {
  background-color: rgba(191, 127, 117, 0.6);
}
.l-header .c-gnav {
  align-items: center;
}
.l-header .c-gnav > .menu-item {
  margin-right: 30px;
}
.l-header .c-gnav > .menu-item:last-child {
  margin-right: 0;
}
.l-header .c-gnav > .menu-item > a {
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
}
.l-header .c-gnav > .menu-item > a:after {
  bottom: -8px;
  background: white;
}
.l-header .c-gnav > .menu-item > a .ttl {
  letter-spacing: 0.5px;
  font-size: 18px;
}

/* 固定追従 ヘッダー */
.-body-solid .l-fixHeader {
  box-shadow: none;
}
.-body-solid .l-fixHeader:before {
  background: #5a5251;
  opacity: 0;
}

.l-header .l-container,
.l-footer .l-container {
  max-width: 1440px !important;
}

/* ヘッダーメニュー */
/*--------------------------------------------------------------
セカンダリヘッダーメニュー（角丸ボタン）
--------------------------------------------------------------*/
.l-header__nav--secondary {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}
.l-header__nav--secondary .menu--secondary {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__nav--secondary .menu--secondary .menu-item {
  margin: 0;
}
.l-header__nav--secondary .menu--secondary .menu-item a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px 8px 48px;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.l-header__nav--secondary .menu--secondary .menu-item a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.l-header__nav--secondary .menu--secondary .menu-item a:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.l-header__nav--secondary .menu--secondary .menu-item a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(12, 183, 58, 0.3);
}
.l-header__nav--secondary .menu--secondary .menu-item.header-contact a {
  color: white;
  background: #bf7f75;
  border: 1px solid #bf7f75;
}
.l-header__nav--secondary .menu--secondary .menu-item.header-contact a::before {
  height: 15px;
  background-image: url(../images/icon/icon_mail_white.svg);
}
.l-header__nav--secondary .menu--secondary .menu-item.header-contact a:hover::before {
  background-image: url(../images/icon/icon_mail_pink.svg);
}
.l-header__nav--secondary .menu--secondary .menu-item.header-line a {
  color: white;
  background: #bf7f75;
  border: 1px solid #bf7f75;
}
.l-header__nav--secondary .menu--secondary .menu-item.header-line a::before {
  height: 20px;
  background-image: url(../images/icon/icon_fukidashi_white.svg);
}
.l-header__nav--secondary .menu--secondary .menu-item.header-line a:hover::before {
  background-image: url(../images/icon/icon_fukidashi_pink.svg);
}

/*---------------------------------------------------
 ヘッダーメニュー 電話（管理画面 > カスタマイズ > メニュー）
---------------------------------------------------*/
/* SP用 PCでは非表示 */
.header-phone-sp {
  display: none;
}

/*---------------------------------------------------
※PC非表示 ヘッダー ハンバーガーボタン
 --------------------------------------------------*/
/* ハンバーガーボタン 大枠 SWELL */
.l-header__menuBtn {
  position: relative;
  margin-right: 16px;
  width: 40px;
}
.l-header__menuBtn .c-iconBtn {
  position: absolute;
  top: calc(50% + 8px);
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 30px;
}
.l-header__menuBtn .c-iconBtn .c-iconBtn__label {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: #bf7f75;
  line-height: 1px;
  letter-spacing: 1px;
  font-size: 13px;
  display: none;
}

/* ハンバーガーボタン 本体 SWELL */
.hamburger {
  position: absolute;
  top: 0;
}
.hamburger .hamburger-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 1px;
  background-color: #be9e9a;
}
.hamburger .hamburger-line:nth-of-type(1) {
  top: 0;
}
.hamburger .hamburger-line:nth-of-type(2) {
  top: 7px;
}
.hamburger .hamburger-line:nth-of-type(3) {
  top: 14px;
}

/* ドロワーメニュー */
.p-spMenu__inner {
  width: 100%;
  max-width: 380px;
}

/* ヘッダーメニューを非表示 */
@media (min-width: 960px) {
  .l-header__menuBtn.sp_ {
    /* ハンバーガーボタンを表示 */
  }
  .-series .l-header__inner {
    /* ハンバーガーボタンの上下位置調整 */
    align-items: center;
    padding: 0 32px;
  }
  .-series .l-header__logo {
    padding: 40px 0;
  }
  .-series .l-header__logo .c-headLogo {
    max-width: 100%;
  }
  .p-spMenu {
    display: block;
    /* 開閉メニューを有効 */
  }
}
/***************************************************************
*
* CSS
* site name: RUC
*
***************************************************************/
/*--------------------------------------------------------
*
* 固定ページ CSS
*
--------------------------------------------------------*/
/*--------------------------------------------------------
page-template-sub-page デフォルトテンプレート
--------------------------------------------------------*/
.page-template-sub-page,
.page-template-default,
.blog,
.archive,
.single {
  /* ページタイトル アイキャッチ画像上 中央配置 */
}
.page-template-sub-page .l-header.--scrolled,
.page-template-default .l-header.--scrolled,
.blog .l-header.--scrolled,
.archive .l-header.--scrolled,
.single .l-header.--scrolled {
  background-color: #f7f4f4;
}
.page-template-sub-page .l-header .c-gnav > .menu-item > a,
.page-template-default .l-header .c-gnav > .menu-item > a,
.blog .l-header .c-gnav > .menu-item > a,
.archive .l-header .c-gnav > .menu-item > a,
.single .l-header .c-gnav > .menu-item > a {
  color: #bf7f75;
}
.page-template-sub-page .l-header .c-gnav > .menu-item > a:after,
.page-template-default .l-header .c-gnav > .menu-item > a:after,
.blog .l-header .c-gnav > .menu-item > a:after,
.archive .l-header .c-gnav > .menu-item > a:after,
.single .l-header .c-gnav > .menu-item > a:after {
  height: 1px;
  background: #bf7f75;
}
.page-template-sub-page .l-topTitleArea,
.page-template-default .l-topTitleArea,
.blog .l-topTitleArea,
.archive .l-topTitleArea,
.single .l-topTitleArea {
  align-items: flex-end;
  min-height: 380px;
}
.page-template-sub-page .l-topTitleArea.c-filterLayer::before,
.page-template-default .l-topTitleArea.c-filterLayer::before,
.blog .l-topTitleArea.c-filterLayer::before,
.archive .l-topTitleArea.c-filterLayer::before,
.single .l-topTitleArea.c-filterLayer::before {
  content: "";
  top: auto;
  bottom: 0;
  width: 60%;
  height: 60%;
  background-color: #ede6e6;
  border-radius: 0 24px 24px 0;
  opacity: 1;
}
.page-template-sub-page .l-topTitleArea.c-filterLayer.-texture-dot:after,
.page-template-default .l-topTitleArea.c-filterLayer.-texture-dot:after,
.blog .l-topTitleArea.c-filterLayer.-texture-dot:after,
.archive .l-topTitleArea.c-filterLayer.-texture-dot:after,
.single .l-topTitleArea.c-filterLayer.-texture-dot:after {
  opacity: 0;
}
.page-template-sub-page .l-topTitleArea .c-filterLayer__img,
.page-template-default .l-topTitleArea .c-filterLayer__img,
.blog .l-topTitleArea .c-filterLayer__img,
.archive .l-topTitleArea .c-filterLayer__img,
.single .l-topTitleArea .c-filterLayer__img {
  position: absolute;
  display: none;
}
.page-template-sub-page h1.c-pageTitle,
.page-template-default h1.c-pageTitle,
.blog h1.c-pageTitle,
.archive h1.c-pageTitle,
.single h1.c-pageTitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  color: #bf7f75;
  letter-spacing: 6px;
  text-shadow: none;
  font-size: clamp(18px, 2vw, 22px) !important;
  font-weight: 100;
  font-family: "Montserrat", serif;
}
.page-template-sub-page h1.c-pageTitle .c-pageTitle__subTitle,
.page-template-default h1.c-pageTitle .c-pageTitle__subTitle,
.blog h1.c-pageTitle .c-pageTitle__subTitle,
.archive h1.c-pageTitle .c-pageTitle__subTitle,
.single h1.c-pageTitle .c-pageTitle__subTitle {
  margin-top: 16px;
  margin-left: 0;
  text-align: left;
  text-indent: -3px;
  line-height: 1;
  text-shadow: none;
  text-transform: uppercase;
  letter-spacing: clamp(1px, 1vw, 8px);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 100;
  font-family: "Montserrat", serif;
  font-style: inherit;
}

.page-template-sub-page .post_content h2,
.blog .post_content h2,
.archive .post_content h2 {
  margin-top: 0;
  letter-spacing: clamp(2px, 0vw, 6px) !important;
  font-size: clamp(24px, 4vw, 40px) !important;
}
.page-template-sub-page .post_content h3,
.blog .post_content h3,
.archive .post_content h3 {
  margin-top: 0;
  padding-bottom: 5px;
  font-size: clamp(22px, 2vw, 26px);
}
.page-template-sub-page .post_content h4,
.blog .post_content h4,
.archive .post_content h4 {
  margin-bottom: 10px;
  padding-left: 15px;
  font-size: clamp(16px, 2vw, 18px);
}
.page-template-sub-page .post_content h4::before,
.blog .post_content h4::before,
.archive .post_content h4::before {
  content: none;
}
.page-template-sub-page .post_content h4::after,
.blog .post_content h4::after,
.archive .post_content h4::after {
  left: 0;
  right: auto;
  width: 3px;
  height: 100%;
  background-color: #bf7f75;
  border-radius: 5px;
}
.page-template-sub-page .button-a,
.blog .button-a,
.archive .button-a {
  width: 150px;
}

.page-template-sub-page,
.page-template-default,
.blog,
.single {
  /* タイトル アーカイブの記事一覧 */
  /* テーブル */
  /* 見出し H2 H3 */
}
.page-template-sub-page .archive-title-wrap,
.page-template-default .archive-title-wrap,
.blog .archive-title-wrap,
.single .archive-title-wrap {
  display: none;
}
.page-template-sub-page .l-article,
.page-template-default .l-article,
.blog .l-article,
.single .l-article {
  max-width: 100%;
}
.page-template-sub-page .eyeCatch-area,
.page-template-default .eyeCatch-area,
.blog .eyeCatch-area,
.single .eyeCatch-area {
  display: none;
  position: relative;
  width: 100vw;
}
.page-template-sub-page .eyeCatch-area .c-pageTitle,
.page-template-default .eyeCatch-area .c-pageTitle,
.blog .eyeCatch-area .c-pageTitle,
.single .eyeCatch-area .c-pageTitle {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  /* サブタイトル */
}
.page-template-sub-page .eyeCatch-area .c-pageTitle .c-pageTitle__inner,
.page-template-default .eyeCatch-area .c-pageTitle .c-pageTitle__inner,
.blog .eyeCatch-area .c-pageTitle .c-pageTitle__inner,
.single .eyeCatch-area .c-pageTitle .c-pageTitle__inner {
  padding: 0 0 0 40px;
}
.page-template-sub-page .eyeCatch-area .c-pageTitle .c-pageTitle__subTitle,
.page-template-default .eyeCatch-area .c-pageTitle .c-pageTitle__subTitle,
.blog .eyeCatch-area .c-pageTitle .c-pageTitle__subTitle,
.single .eyeCatch-area .c-pageTitle .c-pageTitle__subTitle {
  position: absolute;
  top: auto;
  bottom: -30px;
  right: 0;
}
.page-template-sub-page .eyeCatch-area .p-articleThumb img,
.page-template-default .eyeCatch-area .p-articleThumb img,
.blog .eyeCatch-area .p-articleThumb img,
.single .eyeCatch-area .p-articleThumb img {
  width: calc(100% + 32px);
  height: 400px;
  object-fit: cover;
  object-position: bottom;
  margin-left: 0;
  border-radius: 24px 0 0 24px;
  box-shadow: none;
}
.page-template-sub-page .wp-block-table tr td,
.page-template-sub-page .wp-block-table tr th,
.page-template-default .wp-block-table tr td,
.page-template-default .wp-block-table tr th,
.blog .wp-block-table tr td,
.blog .wp-block-table tr th,
.single .wp-block-table tr td,
.single .wp-block-table tr th {
  padding: 1em 0.5em;
  border: none;
  border-top: 1px solid #ccc;
}
.page-template-sub-page .wp-block-table tr:last-child,
.page-template-default .wp-block-table tr:last-child,
.blog .wp-block-table tr:last-child,
.single .wp-block-table tr:last-child {
  border-bottom: 1px solid #ccc;
}
.page-template-sub-page .heading-center,
.page-template-default .heading-center,
.blog .heading-center,
.single .heading-center {
  position: relative;
  text-align: center;
}

.page-template-sub-page,
.page-template-default,
.blog {
  /* 全体の余白調整 */
}
.page-template-sub-page .p-articleThumb,
.page-template-default .p-articleThumb,
.blog .p-articleThumb {
  display: none;
}
.page-template-sub-page .l-topTitleArea__body,
.page-template-default .l-topTitleArea__body,
.blog .l-topTitleArea__body {
  margin-bottom: 40px;
  padding: 0 96px;
}
.page-template-sub-page .l-content,
.page-template-default .l-content,
.blog .l-content {
  margin-bottom: 0;
}

.page-template-sub-page,
.page-template-default {
  /* 全体の余白調整 */
}
.page-template-sub-page .l-content,
.page-template-default .l-content {
  padding-top: 0;
}

.blog #content,
.archive #content,
.single #content {
  max-width: 1440px;
}

.single #content {
  padding: 160px 60px 60px;
}

.archive #content {
  padding: 60px;
}
.archive .archive-title-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 16px 0;
}
.archive .archive-title-wrap .page-title {
  /* 見出し H2 */
  position: relative;
  padding: 0 0 10px;
  background-color: transparent;
  color: #bf7f75;
  line-height: 1;
  letter-spacing: clamp(6px, 2vw, 16px);
  text-transform: uppercase;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 100;
  font-family: "Montserrat", serif;
  font-feature-settings: "palt";
}

.c-pagination {
  margin: 3em 0 !important;
}

.l-mainContent__inner > .post_content {
  margin: 0 auto;
}
.l-mainContent__inner > .post_content .txt-wrap h2 {
  font-size: clamp(32px, 4vw, 40px);
}
.l-mainContent__inner > .post_content .txt-wrap .l-contents .wp-block-group {
  margin-bottom: 30px;
}

/*--------------------------------------------------------
*
* 事業内容 サービス
*
--------------------------------------------------------*/
#service .section-main-title {
  letter-spacing: 16px;
  font-size: clamp(24px, 4vw, 48px);
}
#service .section-sub-title {
  letter-spacing: 4px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
}
#service .section-txt {
  line-height: 1.8;
  letter-spacing: 2px;
  font-size: clamp(16px, 2vw, 18px);
}
#service .column-section .two-column-normal {
  position: relative;
  height: 480px;
  margin-bottom: 96px;
}
#service .column-section .two-column-normal:last-child {
  margin-bottom: 0;
}
#service .column-section .two-column-normal:nth-of-type(odd) .column-img {
  right: -64px;
}
#service .column-section .two-column-normal:nth-of-type(even) .column-img {
  left: -64px;
  margin-left: 0;
}
#service .column-section .two-column-normal:nth-of-type(even) .column-copy {
  margin-left: auto;
}
#service .column-section .column-copy {
  max-width: 576px;
}
#service .column-section .column-img {
  position: absolute;
  top: 0;
  max-width: 810px;
  width: 54%;
  z-index: -1;
}
#service .column-section .column-img img {
  height: 480px;
  object-fit: cover;
}
#service .column-section .column-heading {
  margin-bottom: clamp(16px, 3vw, 32px);
  padding-left: clamp(16px, 2vw, 24px);
  border-left: 6px solid #bf7f75;
}
#service .column-section h2 {
  font-size: clamp(24px, 4vw, 40px);
}
#service .column-section .read-txt {
  color: #bf7f75;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
}
#service .column-section .main-txt {
  margin-bottom: 32px;
  line-height: 1.5;
  font-size: clamp(16px, 2vw, 18px);
}

/*--------------------------------------------------------------
*
* faq よくある質問
*
*--------------------------------------------------------------*/
#faq .swell-block-faq .faq_q,
#faq .swell-block-faq .faq_a {
  font-size: clamp(16px, 2vw, 18px);
}
#faq .swell-block-faq .faq_q {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#faq .swell-block-faq .faq_q .faq-arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  transition: transform 0.3s;
  background: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 10l6 6 6-6" stroke="%23bf7f75" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
}
#faq .swell-block-faq .faq_q.open .faq-arrow {
  transform: rotate(180deg);
  /* 上向き */
}

/*--------------------------------------------------------
*
* contact お問い合わせフォーム
*
*--------------------------------------------------------*/
/*ContactForm7カスタマイズ*/
.wpcf7 {
  max-width: 1023px;
  margin: 0 auto;
  padding: 48px;
  background-color: #ececec;
  /* 希望相談日時 */
  /* 「送信する」ボタン */
}
.wpcf7 p {
  text-align: left;
}
.wpcf7 .cf7_container {
  margin-bottom: 24px;
}
.wpcf7 .cf7_row {
  display: flex;
  margin-bottom: 24px;
  /* 入力指示タイトル */
  /* 入力フォーム */
}
.wpcf7 .cf7_row .form-label {
  width: 30%;
  margin-right: 48px;
  /*「必須」文字*/
  /*「任意」文字*/
}
.wpcf7 .cf7_row .form-label .cf7_req {
  margin-right: 8px;
  padding: 2px 5px;
  border-radius: 3px;
  background-color: red;
  color: white;
  font-size: 12px;
}
.wpcf7 .cf7_row .form-label .cf7_unreq {
  margin-right: 8px;
  padding: 2px 5px;
  border-radius: 3px;
  background-color: gray;
  color: white;
  font-size: 12px;
}
.wpcf7 .cf7_row .response {
  width: 100%;
  max-width: 850px;
  /* ラジオボタン */
  /*入力欄*/
}
.wpcf7 .cf7_row .response input,
.wpcf7 .cf7_row .response textarea {
  width: 100%;
}
.wpcf7 .cf7_row .response input,
.wpcf7 .cf7_row .response select,
.wpcf7 .cf7_row .response textarea {
  padding: 12px 8px;
  border-radius: 4px;
  background-color: #f8f8f8;
}
.wpcf7 .cf7_row .response.no-txt {
  /* テキスト以外は幅調整しない */
}
.wpcf7 .cf7_row .response.no-txt span,
.wpcf7 .cf7_row .response.no-txt input {
  width: auto;
  margin-bottom: 0;
}
.wpcf7 .cf7_row .response.unit {
  /* 単位あり 幅をより狭くする */
}
.wpcf7 .cf7_row .response.unit span {
  display: inline-block;
}
.wpcf7 .cf7_row .response.unit span.form-unit {
  margin-left: 8px;
}
.wpcf7 .cf7_row .response.unit input {
  width: 80px;
}
.wpcf7 .cf7_row .response .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7 .cf7_row .response .wpcf7-list-item {
  margin-left: 0;
  margin-right: 16px;
}
.wpcf7 .cf7_row .response input,
.wpcf7 .cf7_row .response select,
.wpcf7 .cf7_row .response textarea {
  border: none;
  font-size: clamp(14px, 2vw, 16px);
}
.wpcf7 .cf7_row .response p {
  padding: 0;
}
.wpcf7 .cf7_row .response .day-of-week-time {
  margin-bottom: 16px;
}
.wpcf7 .cf7_row .response .day-of-week-time p {
  display: flex;
  align-items: center;
  width: auto;
}
.wpcf7 .cf7_row .response .day-of-week-time p span {
  display: inline-block;
  width: auto;
}
.wpcf7 .cf7_row .response .day-of-week-time p span:not(:first-child) {
  margin-left: 8px;
}
.wpcf7 .cf7_row .response .day-of-week-time p span:not(:last-child) {
  margin-right: 8px;
}
.wpcf7 input.wpcf7-submit {
  width: 100%;
  background-color: #bf7f75;
  border: 0;
  border-radius: 5px;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 auto;
  padding: 16px;
}
.wpcf7 .cf7_btn {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.wpcf7 .wpcf7-spinner {
  width: 0;
  margin: 0;
}
.wpcf7 .form-bottom {
  margin-bottom: 16px;
}
.wpcf7 .form-bottom .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7 .form-bottom p {
  margin-bottom: 32px;
}
.wpcf7 .form-bottom p .form-bottom-heading {
  display: block;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
}

/*--------------------------------------------------------
*
* 料金案内 CSS pricePage-wrap
*
--------------------------------------------------------*/
/* 見出し H3 */
.heading-line {
  position: relative;
}
.heading-line .heading-bg-txt {
  margin-bottom: -75px;
  color: #ffeaf5;
  letter-spacing: 7px;
  text-indent: 7px;
  font-size: 80px;
  font-weight: bold;
  font-family: "Montserrat", serif;
}

.pricePage-wrap .heading-center {
  /* 見出し H2 下余白調整 */
  margin-bottom: 60px;
}

.price-detail-wrap .wp-block-table figcaption {
  text-align: left;
}

@media screen and (min-width: 769px) {
  #industrial-waste .wp-block-table > table tr > :first-child:not(.-no1) {
    max-width: 100%;
    width: 500px;
  }
}
/*--------------------------------------------------------
*
* 回収・買取 CSS collectPage-wrap
*
--------------------------------------------------------*/
.count-content > div {
  counter-increment: flow-counter;
}
.count-content > div figure {
  position: relative;
}
.count-content > div figure::before {
  position: absolute;
  content: "";
  content: counter(flow-counter, decimal-leading-zero);
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: #f50d8d;
  color: white;
  border-radius: 5px 0 0 0;
  mix-blend-mode: multiply;
  font-size: 24px;
}
.count-content > div figure img {
  border-radius: 5px;
}

/* 2カラム 修理内容 */
.two-column-a {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
  background-color: white;
  /*PC:2カラム SP:1カラム*/
}
.two-column-a .column-item {
  counter-increment: flow-counter;
}
.two-column-a .column-item .swell-block-columns__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  height: auto;
  margin: 0 auto 140px;
  padding-top: 60px;
  /*見出し*/
  /*画像 右*/
  /*説明文 左*/
}
.two-column-a .column-item .swell-block-columns__inner:last-child {
  margin-bottom: 0;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  padding-left: 125px;
  z-index: 3;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  line-height: 0.75;
  font-size: 90px;
  font-family: "Montserrat", serif;
  z-index: -1;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading::after {
  content: counter(flow-counter, decimal-leading-zero);
  left: 50px;
  color: #f2f2f2;
  font-style: italic;
  font-size: 90px;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading h3 {
  position: relative;
  padding-bottom: 0;
  letter-spacing: 2px;
  line-height: 1;
  font-size: 32px;
  font-family: "Montserrat", serif;
  z-index: 2;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading h3::before {
  content: none;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading .detail-list {
  margin-bottom: 0;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading .detail-list .swell-block-columns__inner {
  flex-direction: row;
  justify-content: flex-start;
  padding: 0;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading .detail-list .swell-block-columns__inner .swell-block-column {
  display: inline-block;
  width: auto;
  margin-right: 5px;
  margin-bottom: 10px;
  padding: 2px 5px;
  border: 1px solid #5a5251;
  border-radius: 5px;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading .detail-list .swell-block-columns__inner .swell-block-column:last-child {
  margin-bottom: 10px !important;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading .detail-list .swell-block-columns__inner .swell-block-column p {
  font-size: 14px;
}
.two-column-a .column-item .swell-block-columns__inner .column-img {
  position: absolute;
  top: 0;
  left: 510px;
  flex: 1;
  width: 80%;
  height: 100%;
  margin-bottom: 0;
  overflow: hidden;
  z-index: 2;
}
.two-column-a .column-item .swell-block-columns__inner .column-img figure img {
  width: 730px;
  height: 480px;
  object-fit: cover;
}
.two-column-a .column-item .swell-block-columns__inner .description {
  position: relative;
  max-width: 600px;
  width: 50%;
  margin-left: 0;
  padding: 30px 0 60px 60px;
  z-index: 1;
}
.two-column-a .column-item .swell-block-columns__inner .description::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: calc(100vw - 60px);
  opacity: 0.9;
  z-index: -1;
  background-image: url("../images/texcha_01.png");
  background-repeat: repeat;
  background-size: 30px;
}
.two-column-a .column-item .swell-block-columns__inner .description .service-txt {
  margin-bottom: 30px;
}
.two-column-a .column-item:nth-of-type(even) {
  /*見出し*/
  /*画像 右*/
  /*説明文 左*/
}
.two-column-a .column-item:nth-of-type(even) .item-heading {
  width: 605px;
  margin-left: auto;
  padding-left: 95px;
}
.two-column-a .column-item:nth-of-type(even) .item-heading::after {
  left: 0;
}
.two-column-a .column-item:nth-of-type(even) .column-img {
  left: auto;
  right: 510px;
}
.two-column-a .column-item:nth-of-type(even) .column-img figure img {
  margin-left: auto;
}
.two-column-a .column-item:nth-of-type(even) .description {
  margin-right: 0;
  padding-left: 0;
  margin-left: auto;
  padding-right: 60px;
}
.two-column-a .column-item:nth-of-type(even) .description::before {
  left: auto;
  right: 0;
}

/* 2カラム 枠あり */
.two-column-b {
  position: relative;
}
.two-column-b h4 {
  position: absolute;
  top: 0;
  left: calc(50% + 16px);
  width: 50%;
}
.two-column-b .swell-block-column {
  margin-top: 48px;
}
.two-column-b .swell-block-column:last-child {
  margin-bottom: 60px !important;
}

/* 吹き出し */
.bubble-content {
  position: relative;
  /* 吹き出し 余白調整 */
  /* シルエット 透過 */
}
.bubble-content .bubble-message {
  position: absolute;
  top: 0;
  left: 120px;
  padding-left: 15px;
  font-size: 12px;
}
.bubble-content .bubble-message::before, .bubble-content .bubble-message::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background-color: #5a5251;
}
.bubble-content .bubble-message::before {
  left: 0;
}
.bubble-content .bubble-message::after {
  right: -15px;
}
.bubble-content .c-balloon__body {
  padding: 24px 24px 8px;
}
.bubble-content .c-balloon .c-balloon__iconImg {
  box-shadow: 0 0 30px #ccc;
  opacity: 0.8;
}

/* カラム 見出し付きテキスト */
.column-copy h4 {
  z-index: 1;
}

/* カラム テーブル 料金表など */
.column-table .wp-block-table td:first-child {
  min-width: 90px;
  background-color: #5a5251;
  color: white;
  font-weight: 400;
}
.column-table .wp-block-table td:not(:first-child) {
  background-color: white;
}
.column-table .wp-block-table td:first-child {
  background-color: #5a5251;
  color: white;
}

.fadeBottom-first {
  opacity: 0;
}
.fadeBottom-first.fadeHead {
  opacity: 1;
  animation: fadeHead 1s ease-out forwards;
}

@keyframes fadeHead {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------
*
* スライダー
*
--------------------------------------------------------*/
.slide-a {
  /* スライダー 矢印 */
  /* スライダー 下余白調整（ボタンとの隙間） */
  /* スライダー コンテンツ */
}
.slide-a .slick-arrow {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50px;
  transition-duration: 0.8s;
  z-index: 1;
  /* スライダー 矢印 左 */
  /* スライダー 矢印 右 */
}
.slide-a .slick-arrow::before {
  position: absolute;
  content: "" !important;
  top: 0;
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 30px;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: bold;
}
.slide-a .slick-arrow.slick-prev {
  left: 16px;
}
.slide-a .slick-arrow.slick-prev::before {
  left: 0;
  background-image: url("../images/icon/arrow_left.svg");
}
.slide-a .slick-arrow.slick-next {
  right: 16px;
}
.slide-a .slick-arrow.slick-next::before {
  right: 0;
  background-image: url("../images/icon/arrow_right.svg");
}
.slide-a.slick-dotted.slick-slider {
  margin-bottom: 48px;
}
.slide-a .slick-slide {
  /* アイテム 左右の余白調整 */
  margin: 10px;
}
.slide-a .slick-slide:nth-of-type(2n) {
  /* 1点ごとに下に配置ズラし */
  margin-top: 30px;
}
.slide-a .slick-slide figure {
  /* 画像: 商品 */
  position: relative;
  margin-bottom: 0;
}
.slide-a .slick-slide figure img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}
.slide-a .slick-slide .wp-block-column {
  /* テキスト: 品名 価格 */
  position: relative;
  padding: 5px 10px;
  background-color: #5a5251;
  color: white;
  border-radius: 0 0 5px 5px;
  font-size: 16px;
  z-index: 1;
}
.slide-a .slick-slide .wp-block-column p {
  margin-bottom: 0;
}
.slide-a .slick-slide .wp-block-column p:nth-child(1) {
  /* テキスト: 品名 */
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

/*--------------------------------------------------------
*
* office 事務所情報
*
--------------------------------------------------------*/
.office-content > div > .swell-block-column {
  flex: 1;
}

.message-section {
  position: relative;
}
.message-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-color: #bf7f75;
}
.message-section .massage-image img {
  height: 550px;
  object-fit: cover;
}
.message-section::after {
  position: absolute;
  content: "";
  top: 66px;
  left: calc(50% + 3px);
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: #bf7f75;
  z-index: 1;
}

/***************************************************************
*
* CSS
* site name: RUC
*
***************************************************************/
/*---------------------------------------------------------------
*
* レスポンシブ CSS max-width: 1023px
*
---------------------------------------------------------------*/
@media screen and (max-width: 1099px) {
  /*--------------------------------------------------------------
    fv メインビジュアル 
    --------------------------------------------------------------*/
  .fv-wrap .fv-model {
    right: 0;
    width: 370px;
    height: 100%;
  }
  /*--------------------------------------------------------------
    cv 冒頭CVボタン
    --------------------------------------------------------------*/
  .post_content .cv-wrap {
    padding: 12px 24px;
    /* 右寄せ */
    /* 幅 660px */
  }
  .post_content .cv-wrap .swell-block-columns__inner {
    gap: 24px;
    justify-content: center;
  }
  .post_content .cv-wrap.first-cv .l-contents {
    width: auto;
    max-width: 530px;
    margin-top: 16px !important;
  }
  .post_content .cv-wrap.first-cv .l-contents::after {
    right: auto;
    left: -24px;
    width: 190px;
    height: 320px;
    background-image: url(../images/cv/cv_person_02.png);
  }
  .post_content .cv-wrap.first-cv .l-contents .swell-block-columns__inner {
    flex-direction: column;
    align-items: flex-end;
  }
  .post_content .cv-wrap.first-cv .l-contents .swell-block-column:not(:first-child) figure img {
    max-width: 230px;
  }
  .post_content .cv-wrap.first-cv .l-contents a {
    height: auto;
    padding: 12px 24px;
  }
}
/***************************************************************
*
* CSS
* site name: RUC
*
***************************************************************/
/*---------------------------------------------------------------
*
* レスポンシブ max-width: 959px
*
---------------------------------------------------------------*/
@media screen and (max-width: 959px) {
  #body_wrap {
    /*--------------- 共通 ----------------*/
    /*--------------- 外枠 ----------------*/
    /*--------------- ヘッダー ----------------*/
    /*--------------- ボタン ----------------*/
    /* ボタン 固定フッター */
    /* 追従型ボタン 左下 非表示 */
    /*-----------------------------------------------------------------
          hero メインビジュアル
    -----------------------------------------------------------------*/
    /*--------------------------------------------------------------
          TOP service 3カラム
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
          TOP about us 私たちについて
    --------------------------------------------------------------*/
    /*--------------- menu list ----------------*/
    /* 3カラム 全幅 */
    /*--------------------------------------------------------------
          service 対応エリア
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
          contact area フッター直前のCTAエリア
    --------------------------------------------------------------*/
    /*-----------------------------------------------------------------
          footer フッター
    -----------------------------------------------------------------*/
    /*-----------------------------------------------------------------
          office 事務所情報
    -----------------------------------------------------------------*/
    /*--------------- feature 実例 ----------------*/
    /*--------------- デフォルトテンプレート ----------------*/
    /*--------------- message 私たちについて ----------------*/
    /*--------------------------------------------------------
          contact お問い合わせフォーム
    --------------------------------------------------------*/
    /*--------------------------------------------------------
          page 下層ページ
    --------------------------------------------------------*/
  }
  #body_wrap .__pc {
    display: none;
  }
  #body_wrap .__sp {
    display: inherit;
  }
  #body_wrap .br-tb {
    display: block;
  }
  #body_wrap .dot-circle::before {
    top: 16px;
    left: -48px;
    width: 170px;
    height: 200px;
  }
  #body_wrap .dot-circle::after {
    top: -72px;
    right: -24px;
    width: 210px;
    height: 200px;
  }
  #body_wrap .c-scrollHint {
    display: none;
  }
  #body_wrap .swell-block-fullWide {
    padding: 48px 0 !important;
  }
  #body_wrap .swell-block-fullWide__inner.l-container {
    padding: 0 24px;
  }
  #body_wrap .swell-block-fullWide#booking {
    padding: 0 !important;
  }
  #body_wrap .l-header__inner {
    padding: 16px 0;
  }
  #body_wrap .c-iconBtn {
    background-color: inherit;
    border: none;
  }
  #body_wrap .-img .c-headLogo__link {
    padding: 0;
  }
  #body_wrap .l-header {
    position: fixed !important;
  }
  #body_wrap .l-header__customBtn.sp_ {
    display: none;
  }
  #body_wrap .c-spnav .menu-item:last-child {
    display: none;
  }
  #body_wrap .sp-header-btn {
    display: flex;
  }
  #body_wrap .btn-heading {
    padding: 0 16px;
  }
  #body_wrap #fix_bottom_menu .menu-item.menu_btn {
    display: none;
  }
  #body_wrap #fix_bottom_menu .menu_list li {
    position: relative;
  }
  #body_wrap #fix_bottom_menu .menu_list li:nth-of-type(2) a {
    background-color: #0cb73a;
  }
  #body_wrap #fix_bottom_menu .menu_list li:nth-of-type(3) a {
    background-color: #bf7f75;
  }
  #body_wrap #fix_bottom_menu .menu_list li:before {
    position: absolute;
    top: calc(50% + 2px);
    left: calc(50% - 56px);
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
  }
  #body_wrap #fix_bottom_menu .menu-item {
    position: relative;
  }
  #body_wrap #fix_bottom_menu .menu-item a {
    display: flex;
    align-items: center;
    color: white;
    height: 50px;
    padding-left: 24px;
    font-weight: bold;
    font-family: sans-serif;
  }
  #body_wrap #fix_bottom_menu .menu-item a span {
    font-size: 16px;
  }
  #body_wrap #fix_bottom_menu .menu-item a i {
    display: none;
  }
  #body_wrap #fix_bottom_menu .menu-item.fa-solid a {
    background-color: #bf7f75;
  }
  #body_wrap #fix_bottom_menu .fa-line:before,
  #body_wrap #fix_bottom_menu .fa-calculator:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0.5;
    font-size: 28px;
    z-index: -1;
  }
  #body_wrap .btn-contact-fixed {
    display: none;
  }
  #body_wrap .p-mainVisual__inner.swiper {
    overflow: visible;
    margin-right: 0;
    padding: 0;
  }
  #body_wrap .p-mainVisual__textLayer {
    justify-content: flex-end;
    padding-top: 48px;
  }
  #body_wrap .p-mainVisual__textLayer .post_content {
    padding-bottom: 64px;
  }
  #body_wrap .hero-button-group > div {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  #body_wrap .hero-button-group .hero-title-group .kv-sub-title {
    margin-bottom: 80px !important;
  }
  #body_wrap .hero-button-group .hero-page-link {
    padding: 16px 48px 16px 92px;
  }
  #body_wrap .hero-button-group .hero-page-link::before {
    width: 44px;
    height: 60px;
  }
  #body_wrap .fv-wrap.__sp {
    margin-top: 48px;
  }
  #body_wrap .fv-wrap.__sp .wp-block-image img {
    width: auto;
    height: 630px;
    object-fit: contain;
  }
  #body_wrap .icon-column-a .column-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
  }
  #body_wrap .icon-column-a .column-item > div,
  #body_wrap .icon-column-a .column-item > figure {
    flex: 1;
  }
  #body_wrap .icon-column-a .column-item:nth-of-type(2), #body_wrap .icon-column-a .column-item:nth-of-type(3) {
    margin-top: 0;
  }
  #body_wrap .icon-column-a .column-item figure::before {
    height: 118px;
  }
  #body_wrap #service .heading-center {
    margin-bottom: 24px;
  }
  #body_wrap #service h3,
  #body_wrap #service .txt-center {
    text-align: left;
  }
  #body_wrap #about_us {
    padding-top: 128px !important;
  }
  #body_wrap #about_us::before {
    width: calc(100% - 32px);
  }
  #body_wrap #about_us .l-contents {
    margin-bottom: 48px;
  }
  #body_wrap .three-column-overall .swell-block-column {
    margin-bottom: 16px;
  }
  #body_wrap .three-column-overall .swell-block-column figure {
    height: 80px;
  }
  #body_wrap .three-column-overall .swell-block-column figure img {
    height: 100%;
  }
  #body_wrap .three-column-overall .swell-block-column .swell-block-button {
    top: 0;
    left: 0;
    transform: unset;
    width: 100%;
    height: 80px;
  }
  #body_wrap .three-column-overall .swell-block-column .swell-block-button .swell-block-button__link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  #body_wrap #service {
    padding-top: 48px !important;
    padding-bottom: 80px !important;
  }
  #body_wrap #service .column-copy {
    margin-top: 0 !important;
  }
  #body_wrap #service .simple-column-a {
    flex: 1;
  }
  #body_wrap #service .simple-column-a:nth-of-type(even) > div {
    flex-direction: column-reverse;
  }
  #body_wrap .contact-section {
    padding-bottom: 144px !important;
  }
  #body_wrap .cta-block .cta-card::after {
    width: 8px;
    height: 16px;
    background: url("../images/icon/arrow_triangle_normal_pink.svg") no-repeat center/contain;
  }
  #body_wrap .l-footer {
    /* 2カラム */
    /* フッターメニュー */
  }
  #body_wrap .l-footer__foot {
    padding: 64px 16px;
  }
  #body_wrap .l-footer .l-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    /* フッターロゴ・アドレス */
  }
  #body_wrap .l-footer .l-container .footer-logo {
    text-align: center;
  }
  #body_wrap .l-footer .footer-nav-wrap {
    width: 100%;
    justify-content: flex-start;
  }
  #body_wrap .l-footer .footer-nav-wrap ul.l-footer__nav {
    justify-content: center;
    gap: 16px 24px;
  }
  #body_wrap .office-content > div > .swell-block-column {
    flex: unset;
  }
  #body_wrap .office-content .table-box {
    margin-bottom: 48px;
  }
  #body_wrap .office-content iframe {
    height: 400px;
  }
  #body_wrap .message-section::before {
    left: auto;
    right: 0;
    width: 40%;
    height: 40%;
  }
  #body_wrap .message-section::after {
    top: 20px;
    left: 30%;
    width: 12px;
    height: 12px;
  }
  #body_wrap .message-section .massage-image {
    margin-top: -96px;
    display: flex;
    justify-content: flex-end;
  }
  #body_wrap .message-section .massage-image img {
    width: auto;
    height: 500px;
    object-fit: contain;
    object-position: 70px center;
  }
  #body_wrap .message-section .message-text {
    position: relative;
    width: 60%;
    margin-top: -418px;
    padding: 32px 32px 32px 0;
    background-image: linear-gradient(90deg, transparent 0%, #efefef 50%);
    z-index: 1;
  }
}
@media screen and (max-width: 959px) and (max-width: 780px) {
  #body_wrap .message-section .message-heading {
    position: relative;
    display: inline-block;
    padding: 0 24px 16px 0;
    background-color: #efefef;
  }
  #body_wrap .message-section .massage-image {
    margin-top: -48px;
    justify-content: center;
  }
  #body_wrap .message-section .massage-image > div {
    width: 100%;
  }
  #body_wrap .message-section .massage-image img {
    width: 100%;
    max-width: 420px;
    height: 300px;
    object-fit: cover;
    object-position: center top;
  }
  #body_wrap .message-section .message-text {
    width: 100%;
    margin-top: 0;
    padding: 0;
    background-image: none;
  }
}
@media screen and (max-width: 959px) {
  #body_wrap #feature .heading-center::before, #body_wrap #feature .heading-center::after {
    bottom: auto;
    top: 0;
  }
  #body_wrap #feature .heading-center::before {
    width: 79px;
    height: 194px;
    left: calc(50% - 320px);
  }
  #body_wrap #feature .heading-center::after {
    width: 82px;
    height: 200px;
    left: calc(50% + 320px);
  }
  #body_wrap #feature .achievement-price {
    padding: 4px;
  }
  #body_wrap #feature .achievement-info {
    flex-wrap: wrap;
  }
  #body_wrap #feature .achievement-info p {
    flex: unset;
    width: calc(50% - 2px);
  }
  #body_wrap.single #content {
    padding: 80px 16px;
  }
  #body_wrap.archive #content {
    padding: 48px 16px 80px;
  }
  #body_wrap.archive .archive-title-wrap {
    padding-top: 96px;
  }
  #body_wrap.page-template-sub-page .post_content {
    margin-top: 0;
  }
  #body_wrap.page-template-sub-page .summary-content {
    margin-bottom: 0 !important;
    padding: 0 20px 48px;
  }
  #body_wrap.page-template-sub-page, #body_wrap.page-template-default, #body_wrap.blog, #body_wrap.archive, #body_wrap.single {
    /* ページタイトル アイキャッチ画像上 中央配置 */
  }
  #body_wrap.page-template-sub-page .l-topTitleArea, #body_wrap.page-template-default .l-topTitleArea, #body_wrap.blog .l-topTitleArea, #body_wrap.archive .l-topTitleArea, #body_wrap.single .l-topTitleArea {
    min-height: 240px;
  }
  #body_wrap.page-template-sub-page .l-topTitleArea.c-filterLayer::before, #body_wrap.page-template-default .l-topTitleArea.c-filterLayer::before, #body_wrap.blog .l-topTitleArea.c-filterLayer::before, #body_wrap.archive .l-topTitleArea.c-filterLayer::before, #body_wrap.single .l-topTitleArea.c-filterLayer::before {
    width: 80%;
    height: calc(100% - 80px);
  }
  #body_wrap.page-template-sub-page .l-topTitleArea__body, #body_wrap.page-template-default .l-topTitleArea__body, #body_wrap.blog .l-topTitleArea__body, #body_wrap.archive .l-topTitleArea__body, #body_wrap.single .l-topTitleArea__body {
    margin-bottom: 16px;
    padding: 0 24px;
  }
  #body_wrap.page-template-sub-page h1.c-pageTitle, #body_wrap.page-template-default h1.c-pageTitle, #body_wrap.blog h1.c-pageTitle, #body_wrap.archive h1.c-pageTitle, #body_wrap.single h1.c-pageTitle {
    letter-spacing: 3px;
  }
  #body_wrap #message {
    padding-top: 0;
    padding-bottom: 160px;
  }
  #body_wrap #message .l-contents {
    margin-bottom: 0 !important;
  }
  #body_wrap #message .heading-image {
    position: relative;
    right: -48px;
    margin-left: auto;
    width: calc(100% - 96px);
  }
  #body_wrap #message .heading-image img {
    height: 256px;
  }
  #body_wrap #message .section-main-title {
    display: inline-block;
    padding: 24px 48px;
    background-color: #fdfdfd;
    color: #bf7f75;
    border-radius: 4px;
  }
  #body_wrap #message .l-contents:nth-child(2) {
    margin-top: -96px;
  }
  #body_wrap #message .l-contents:nth-child(2)::before {
    top: 100%;
    left: auto;
    right: 0;
    width: 100%;
    height: 330px;
  }
  #body_wrap .carrier-contents .swell-block-columns__inner {
    flex-direction: column-reverse;
  }
  #body_wrap .carrier-contents .swell-block-columns__inner:nth-last-child(1) img {
    height: 360px;
    object-fit: contain;
  }
  #body_wrap .wpcf7 {
    padding: 24px 0 0;
    background-color: transparent;
    border-top: 1px solid #ede6e6;
  }
  #body_wrap .wpcf7 .cf7_row {
    flex-direction: column;
  }
  #body_wrap .wpcf7 .cf7_row .form-label {
    width: 100%;
    margin-bottom: 8px;
    margin-right: 0;
  }
  #body_wrap .index-button-group {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-bottom: 8px;
  }
  #body_wrap .index-button-group .wp-block-group__inner-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    min-width: max-content;
  }
  #body_wrap .index-button-group .swell-block-button {
    flex: 0 0 auto;
    min-width: 280px;
    max-width: 80vw;
    white-space: normal;
  }
  #body_wrap .simple-column-a {
    margin-bottom: 48px;
  }
  #body_wrap .simple-column-a > div {
    flex-wrap: nowrap;
    gap: 0;
  }
  #body_wrap .simple-column-a figure {
    height: 280px;
  }
  #body_wrap .cta-block {
    padding: 0 24px;
  }
}
/***************************************************************
*
* CSS
* site name: RUC
*
***************************************************************/
/*---------------------------------------------------------------
*
* レスポンシブ max-width: 781px
*
---------------------------------------------------------------*/
@media screen and (max-width: 781px) {
  /*--------------- テキスト ----------------*/
  .large-txt {
    font-size: 26px;
  }
  .post_content .profile-detail .heading-middle {
    align-items: center;
  }
  .post_content .profile-detail h2::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .post_content .profile-detail .heading-sub {
    text-align: center;
  }
  .post_content .profile-detail .heading-sub::before {
    left: -25px;
  }
  /*--------------- ヘッダー ----------------*/
  /* 電話番号 */
  .header-phone-sp a {
    padding: 4px 8px 4px 32px;
  }
  .header-phone-sp .header-tel {
    letter-spacing: 1px;
    font-size: 18px;
  }
  .header-phone-sp .header-tel::before {
    left: -22px;
  }
  .header-phone-sp .operation-time .txt {
    margin-right: 0;
  }
  /*--------------- メインビジュアル ----------------*/
  /* タイトル トラブル例 */
  .mv-title-content {
    max-width: 350px;
  }
  .mv-title-content .mv-title-box .content-trouble {
    position: relative;
    margin-bottom: 15px;
    padding-left: 80px;
  }
  .mv-title-content .mv-title-box .content-trouble::before {
    position: absolute;
    content: "";
    top: 0;
    left: 15px;
    width: 70px;
    height: 70px;
    background-image: url(../images/icon/icon_driver_pink.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .mv-title-content .mv-title-box .content-trouble .swell-block-columns__inner {
    margin: 0 !important;
  }
  .mv-title-content .mv-title-box .content-trouble .swell-block-columns__inner .swell-block-column {
    margin: 0 7px 7px 0 !important;
    padding: 5px 10px;
  }
  .mv-title-content .mv-title-box .content-trouble .swell-block-columns__inner .swell-block-column:not(:first-child) {
    margin-right: 0 !important;
  }
  .mv-title-content .mv-title-box .content-trouble .swell-block-columns__inner .swell-block-column:last-child {
    margin-bottom: 0 !important;
    padding: 5px 18px;
  }
  .mv-title-content .mv-title-box .content-trouble .swell-block-columns__inner .swell-block-column p {
    font-size: 14px;
  }
  .mv-title-content .mv-title-box .main-title {
    margin-bottom: 5px;
  }
  .mv-title-content .mv-title-box .main-title .swell-block-columns__inner {
    margin: 0 !important;
  }
  .mv-title-content .mv-title-box .main-title .swell-block-columns__inner .swell-block-column {
    margin: 0 auto !important;
  }
  .mv-title-content .mv-title-box .main-title .swell-block-columns__inner .swell-block-column h1 {
    display: inherit;
    padding-left: 0;
    line-height: 1;
  }
  .mv-title-content .mv-title-box .main-title .swell-block-columns__inner .swell-block-column h1::before {
    content: none;
  }
  .mv-title-content .mv-title-box .main-title .swell-block-columns__inner .swell-block-column h1 .font-yColor {
    line-height: 1.4;
  }
  .mv-title-content .mv-title-box .content-solution {
    margin-bottom: 50px !important;
  }
  .mv-title-content .mv-title-box .content-solution .swell-block-columns__inner {
    margin: 0;
  }
  .mv-title-content .mv-title-box .content-solution .swell-block-columns__inner .swell-block-column {
    margin: 0 7px 0 0 !important;
    padding: 5px 10px;
  }
  .mv-title-content .mv-title-box .content-solution .swell-block-columns__inner .swell-block-column p {
    font-size: 14px;
  }
  .mv-title-content .mv-btn a {
    width: 280px;
    font-size: 16px;
  }
  /*--------------- cv cvボタン ----------------*/
  .cv-main-pc {
    display: none;
  }
  .cv-main-sp {
    display: block;
  }
  .main-cv .cv-feature {
    width: 50%;
    max-width: 390px;
  }
  .main-cv .cv-person {
    bottom: 52px;
    width: 44%;
  }
  /*--------------- footer widget フッター直前 access ----------------*/
  #before_footer_widget .access-wrap {
    /* アクセス */
  }
  #before_footer_widget .access-wrap .footer-map iframe {
    /* ビル写真 Googleマップ */
    height: 400px;
  }
  /*--------------- カラム ----------------*/
  /* 2カラム 枠あり */
  .two-column-b h4 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
  .two-column-b .swell-block-column {
    margin-top: 0;
    margin-bottom: inherit !important;
  }
  /*--------------- デフォルトテンプレート ----------------*/
  .page-template-sub-page .summary-content {
    align-items: flex-start !important;
    margin-bottom: 10px !important;
  }
  .page-template-sub-page .summary-content p {
    display: contents;
  }
  .page-template-sub-page .no-space-table.wp-block-group {
    flex-wrap: wrap;
  }
  .page-template-sub-page .no-space-table.wp-block-group .wp-block-table {
    width: 48%;
  }
  .page-template-sub-page .no-space-table.wp-block-group table tr td:last-child {
    width: 30px;
  }
  /*--------------- footer フッター ----------------*/
  /*  */
  .l-footer__foot {
    padding: 48px 16px;
  }
  .l-footer .l-container {
    flex-direction: column;
    align-items: center;
  }
  .l-footer .footer-logo {
    margin-bottom: 32px;
  }
  .l-footer .footer-logo .p-blogParts {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .l-footer .footer-nav-wrap ul.l-footer__nav {
    justify-content: flex-start;
  }
}
/***************************************************************
*
* CSS
* site name: RUC
*
***************************************************************/
/*---------------------------------------------------------------
*
* レスポンシブ max-width: 599px / 499px
*
---------------------------------------------------------------*/
@media screen and (max-width: 599px) {
  body #body_wrap {
    /*--------------------------------------------------------------
          共通SCSS
    --------------------------------------------------------------*/
    /*--------------- 外枠 ----------------*/
    /*--------------- ボタン ----------------*/
    /* ボタン用 見出し */
    /*--------------------------------------------------------------
          カラム テンプレート
    --------------------------------------------------------------*/
    /* 2カラム 画像サイズ */
    /* 3カラム 全幅 */
    /* インデックス ボタン */
    /*--------------------------------------------------------------
          テキスト関連
    --------------------------------------------------------------*/
    /* 見出し下 補足テキスト */
    /*--------------------------------------------------------------
          header ヘッダー
    --------------------------------------------------------------*/
    /* 電話番号 ボタン */
    /* ハンバーガーボタン */
    /*-----------------------------------------------------------------
          hero メインビジュアル
    -----------------------------------------------------------------*/
    /* メインビジュアルのCTAボタン */
    /* ボタン 追従型 */
    /*--------------------------------------------------------------
          TOP service 3カラム
          3カラム推奨  上下テキスト＋中心にアイコン リッチカラム 
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
    about us 私たちについて
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
    contact area フッター直前のCTAエリア
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
    feature 選ばれる理由
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
          contact area フッター直前のCTAエリア
    --------------------------------------------------------------*/
    /*-----------------------------------------------------------------
          footer フッター
    -----------------------------------------------------------------*/
    /*-----------------------------------------------------------------
          office 事務所情報
    -----------------------------------------------------------------*/
    /*--------------- staff スタッフ紹介 ----------------*/
    /*--------------- message トップメッセージ ----------------*/
    /*--------------- service サービス ----------------*/
    /*--------------- about 私たちについて ----------------*/
    /*--------------- qa よくある質問 ----------------*/
    /*--------------- カラム ----------------*/
    /*--------------- before_footer_widget フッター直前 ----------------*/
    /*--------------- footer フッター ----------------*/
    /* ページ最下 余白調整 追従ボタンの幅分 */
    /* ページトップボタン 前面移動 */
    /*--------------- 固定ページ ----------------*/
    /*--------------- service 事業内容 ----------------*/
    /*--------------- デフォルトテンプレート ----------------*/
    /* サービス 目次 */
    /*--------------------------------------------------------
    contact お問い合わせフォーム
    --------------------------------------------------------*/
  }
  body #body_wrap .__pc,
  body #body_wrap .br-pc {
    display: none;
  }
  body #body_wrap .br-sp {
    display: block !important;
  }
  body #body_wrap .shining::before {
    top: -40px;
    right: -20px;
    transform: unset;
  }
  body #body_wrap .btn-heading .banzai::before, body #body_wrap .btn-heading .banzai::after {
    content: none !important;
  }
  body #body_wrap .dot-circle::before {
    top: 96px;
    left: -48px;
    width: 118px;
    height: 141px;
  }
  body #body_wrap .dot-circle::after {
    top: -72px;
    right: -16px;
    width: 120px;
    height: 120px;
  }
  body #body_wrap .c-scrollHint {
    display: inherit;
    margin-top: -48px;
  }
  body #body_wrap .swell-block-fullWide {
    padding: 36px 0 !important;
  }
  body #body_wrap .swell-block-fullWide__inner.l-container {
    padding: 0 16px;
  }
  body #body_wrap .btn-heading {
    padding: 0;
    line-height: 1.6;
  }
  body #body_wrap .btn-heading p {
    text-align: left;
  }
  body #body_wrap .btn-heading br {
    display: none;
  }
  body #body_wrap .simple-column-a figure {
    height: 220px;
  }
  body #body_wrap .three-column-overall .swell-block-column .swell-block-button {
    height: 64px;
  }
  body #body_wrap .three-column-overall .swell-block-column .swell-block-button .swell-block-button__link {
    height: auto;
    padding-left: 8px;
    padding-right: 24px;
  }
  body #body_wrap .three-column-overall .swell-block-column figure {
    height: 64px;
  }
  body #body_wrap .three-column-overall .swell-block-column figure img {
    height: inherit;
  }
  body #body_wrap .index-button-group {
    overflow-x: unset;
    -webkit-overflow-scrolling: unset;
    white-space: break-spaces;
  }
  body #body_wrap .index-button-group .wp-block-group__inner-container {
    flex-wrap: wrap;
    min-width: auto;
  }
  body #body_wrap .index-button-group .swell-block-button {
    min-width: 160px;
    max-width: 100vw;
    margin-bottom: 0;
  }
  body #body_wrap .index-button-group.sp-linear .swell-block-button {
    min-width: 100%;
  }
  body #body_wrap .index-button-group.sp-linear .swell-block-button a {
    height: auto;
  }
  body #body_wrap .index-button-group.sp-linear .swell-block-button a br {
    display: none;
  }
  body #body_wrap .index-button-group.sp-linear .swell-block-button .swell-block-button__link[data-has-icon] {
    justify-content: flex-start;
  }
  body #body_wrap .large-txt {
    font-size: clamp(24px, 2vw, 26px);
  }
  body #body_wrap.home .post_content .heading-center, body #body_wrap.page-template-sub-page .post_content .heading-center, body #body_wrap.blog .post_content .heading-center, body #body_wrap.archive .post_content .heading-center {
    margin-bottom: 16px;
  }
  body #body_wrap.home .post_content h2, body #body_wrap.page-template-sub-page .post_content h2, body #body_wrap.blog .post_content h2, body #body_wrap.archive .post_content h2 {
    letter-spacing: 4px;
  }
  body #body_wrap.home .post_content h2 .font-large, body #body_wrap.page-template-sub-page .post_content h2 .font-large, body #body_wrap.blog .post_content h2 .font-large, body #body_wrap.archive .post_content h2 .font-large {
    font-size: 72px;
  }
  body #body_wrap.home .post_content .heading-center h2, body #body_wrap.page-template-sub-page .post_content .heading-center h2, body #body_wrap.blog .post_content .heading-center h2, body #body_wrap.archive .post_content .heading-center h2 {
    text-indent: 0;
  }
  body #body_wrap .heading-line .heading-bg-txt {
    margin-bottom: -65px;
    font-size: 65px;
  }
  body #body_wrap .txt-center.pc {
    text-align: left;
  }
  body #body_wrap .txt-center.pc br {
    display: none;
  }
  body #body_wrap .btn-heading .sun-burst {
    text-align: center;
    font-size: 19px;
  }
  body #body_wrap .btn-heading .sun-burst::before {
    left: -16px;
  }
  body #body_wrap .heading-sub {
    letter-spacing: 1px;
    font-feature-settings: "palt";
  }
  body #body_wrap .heading-sub br {
    display: none;
  }
  body #body_wrap .bg-txt {
    letter-spacing: 5px;
  }
  body #body_wrap.home .l-header {
    background-color: rgba(255, 255, 255, 0.8);
  }
  body #body_wrap .l-header__inner {
    justify-content: space-between;
    padding: 16px;
  }
  body #body_wrap .l-header__logo {
    margin-right: 0;
    padding: 0;
  }
  body #body_wrap .l-header__logo .c-headLogo {
    margin-right: 5px;
  }
  body #body_wrap .p-spMenu {
    left: auto;
    right: 0;
    width: calc(100% - 50px);
  }
  body #body_wrap .swell-block-button.header-phone-sp a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
  }
  body #body_wrap .swell-block-button.header-phone-sp a::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 24px;
    background-image: url("../images/icon/icon_phone.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  body #body_wrap .swell-block-button.header-phone-sp a div {
    display: none;
  }
  body #body_wrap .header-phone-sp a {
    padding: 2px 5px;
  }
  body #body_wrap .hamburger {
    top: 0;
  }
  body #body_wrap .hamburger .hamburger-line {
    width: 30px;
  }
  body #body_wrap .l-header__menuBtn {
    width: 30px;
    margin-right: 0;
  }
  body #body_wrap .l-header__menuBtn .c-iconBtn {
    width: 30px;
  }
  body #body_wrap .l-header__menuBtn .c-iconBtn .c-iconBtn__label {
    font-size: 10px;
  }
  body #body_wrap .p-mainVisual__inner {
    height: 650px;
    padding: 0;
  }
  body #body_wrap .p-mainVisual .swiper-slide img {
    object-position: top;
  }
  body #body_wrap .p-mainVisual__textLayer {
    padding: 56px 0 !important;
  }
  body #body_wrap .p-mainVisual__textLayer .post_content {
    padding-bottom: 0;
  }
  body #body_wrap .p-mainVisual__textLayer .hero-title-group {
    margin-top: 0 !important;
    /* メインビジュアル タイトル */
  }
  body #body_wrap .p-mainVisual__textLayer .hero-title-group h1 {
    margin-bottom: 16px;
    line-height: 1.4;
  }
  body #body_wrap .p-mainVisual__textLayer .hero-title-group .kv-sub-title {
    margin-bottom: 36px !important;
    line-height: 1.4;
    text-indent: 16px;
    letter-spacing: 1px;
  }
  body #body_wrap .p-mainVisual__textLayer .hero-title-group .kv-feature-group .wp-block-group__inner-container {
    gap: 8px;
  }
  body #body_wrap .hero-button-group > div {
    gap: 8px;
  }
  body #body_wrap .hero-button-group > div .hero-page-link {
    padding: 20px 32px 20px 56px;
    /* ボタン イラストアイコン */
    /* ボタン 矢印アイコン */
  }
  body #body_wrap .hero-button-group > div .hero-page-link::before {
    left: 16px;
    width: 24px;
  }
  body #body_wrap .hero-button-group > div .hero-page-link:nth-child(1)::before {
    height: 31px;
  }
  body #body_wrap .hero-button-group > div .hero-page-link:nth-child(2)::before {
    height: 38px;
  }
  body #body_wrap .hero-button-group > div .hero-page-link::after {
    right: 16px;
    width: 16px;
    height: 16px;
  }
  body #body_wrap .hero-button-group > div .hero-page-link .link-heading {
    margin-bottom: 0;
  }
  body #body_wrap .hero-button-group > div .hero-page-link .link-summary {
    display: none;
  }
  body #body_wrap .p-blogParts .btn-contact-fixed {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: none;
  }
  body #body_wrap .icon-column-a .column-item {
    display: block;
    margin-bottom: 16px;
  }
  body #body_wrap .icon-column-a .column-item figure::before {
    height: 48px;
  }
  body #body_wrap .icon-column-a .column-item figure img {
    max-width: 100%;
    height: 144px;
  }
  body #body_wrap #service h3,
  body #body_wrap #service .txt-center {
    text-align: center;
  }
  body #body_wrap #about_us {
    padding-top: 48px !important;
  }
  body #body_wrap #about_us .heading-image {
    top: -80px;
    right: -56px;
  }
  body #body_wrap #about_us .heading-image img {
    height: 294px;
    object-position: -96px center;
  }
  body #body_wrap #about_us .l-contents {
    margin-bottom: 16px;
  }
  body #body_wrap #about_us .section-main-title {
    display: inline-block;
    background-color: #f5f7f4;
    padding-right: 8px;
    letter-spacing: 6px;
  }
  body #body_wrap #about_us .swell-block-button[data-align=left] {
    text-align: center;
  }
  body #body_wrap .cta-block {
    padding: 0 16px;
  }
  body #body_wrap .cta-block > div {
    gap: 24px;
  }
  body #body_wrap .cta-block .cta-card {
    padding: 16px 32px 16px 24px;
  }
  body #body_wrap .cta-block .cta-card::after {
    right: 16px;
  }
  body #body_wrap .cta-block .cta-card .cta-title {
    margin-bottom: 16px;
  }
  body #body_wrap #feature .bg-txt {
    text-indent: 0;
  }
  body #body_wrap #feature h2 img {
    max-width: 280px;
  }
  body #body_wrap .contact-section {
    padding-bottom: 144px !important;
  }
  body #body_wrap .l-footer {
    padding-bottom: 80px !important;
  }
  body #body_wrap .l-footer__foot {
    padding-bottom: 24px;
  }
  body #body_wrap .l-footer .footer-nav-wrap ul.l-footer__nav {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    gap: 0;
  }
  body #body_wrap .l-footer .footer-nav-wrap ul.l-footer__nav > li:first-child {
    border-top: 1px solid #ddd7d6;
  }
  body #body_wrap .l-footer .footer-nav-wrap ul.l-footer__nav > li {
    border-bottom: 1px solid #ddd7d6;
  }
  body #body_wrap .l-footer .footer-nav-wrap ul.l-footer__nav > li > a {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
    padding: 12px 0 12px 8px;
  }
  body #body_wrap .l-footer .footer-nav-wrap ul.l-footer__nav > li > a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 6px;
    height: 12px;
    background: url("../images/icon/arrow_triangle_normal_pink.svg") no-repeat center/contain;
    opacity: 0.8;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  body #body_wrap .message-section::before {
    width: 50%;
    height: 25%;
  }
  body #body_wrap .message-section::after {
    top: 20px;
    left: calc(50% - 24px);
    width: 12px;
    height: 12px;
  }
  body #body_wrap .message-section .message-heading {
    background-color: none;
  }
  body #body_wrap .message-section .massage-image {
    margin-top: 0;
  }
  body #body_wrap .message-section .massage-image img {
    height: auto;
  }
  body #body_wrap #staff .swell-block-fullWide__inner.l-container {
    padding: 0;
  }
  body #body_wrap #staff .heading-content {
    padding: 0 16px;
  }
  body #body_wrap #staff .service-column {
    margin-left: 0;
  }
  body #body_wrap #message .heading-image {
    width: calc(100% - 16px);
  }
  body #body_wrap #message .l-contents:nth-child(2) {
    margin-top: -56px;
  }
  body #body_wrap #message .l-contents:nth-child(2)::before {
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 100%;
  }
  body #body_wrap .carrier-contents {
    padding-top: 48px;
  }
  body #body_wrap .carrier-contents .swell-block-columns__inner:nth-last-child(1) img {
    height: 100%;
  }
  body #body_wrap #service {
    padding-top: 0;
  }
  body #body_wrap #service h2 .heading-top {
    top: 24px;
    left: 24px;
  }
  body #body_wrap #service .bg-txt {
    right: -8px;
    bottom: -16px;
  }
  body #body_wrap #service .l-menu-list .swell-block-columns__inner .swell-block-column {
    padding: 0;
    box-shadow: none;
  }
  body #body_wrap #service .l-menu-list figcaption {
    width: 100%;
  }
  body #body_wrap #service .l-menu-list figure img {
    width: calc(100% - 32px);
    margin-bottom: 0;
  }
  body #body_wrap #philosophy .swell-block-fullWide__inner.l-container {
    padding: 0;
  }
  body #body_wrap #philosophy .heading-content {
    padding: 0 16px;
  }
  body #body_wrap #philosophy .service-column {
    margin-left: 0;
  }
  body #body_wrap #philosophy .service-column::before {
    background-color: transparent;
    box-shadow: none;
  }
  body #body_wrap #philosophy .service-column .column-description {
    color: white;
  }
  body #body_wrap .three-column-b figure img {
    height: 230px;
  }
  body #body_wrap .two-column-d {
    padding: 20px 16px;
  }
  body #body_wrap .two-column-d .swell-block-step .swell-block-step__item .swell-block-step__title + .swell-block-step__body {
    margin-top: 8px;
  }
  body #body_wrap .two-column-c .swell-block-columns {
    padding: 16px;
  }
  body #body_wrap .booking-wrap .c-bannerLink img {
    height: 220px;
  }
  body #body_wrap .l-footer {
    padding-bottom: 55px;
  }
  body #body_wrap .column-table .wp-block-table td:first-child {
    /* テーブル */
    min-width: 70px;
  }
  body #body_wrap #service .column-section .column-img {
    position: relative;
    width: 100%;
  }
  body #body_wrap #service .column-section .column-img img {
    height: 220px;
  }
  body #body_wrap #service .column-section .two-column-normal {
    height: auto;
  }
  body #body_wrap #service .column-section .two-column-normal:nth-of-type(odd) .swell-block-columns__inner {
    flex-direction: column-reverse;
  }
  body #body_wrap #service .column-section .two-column-normal:nth-of-type(odd) .column-img {
    right: 0;
  }
  body #body_wrap #service .column-section .two-column-normal:nth-of-type(even) .column-img {
    left: 0px;
  }
  body #body_wrap.page-template-sub-page, body #body_wrap.blog, body #body_wrap.archive {
    /* 画像 */
  }
  body #body_wrap.page-template-sub-page h1.c-pageTitle, body #body_wrap.blog h1.c-pageTitle, body #body_wrap.archive h1.c-pageTitle {
    font-size: 48px;
  }
  body #body_wrap.page-template-sub-page .eyeCatch-area .p-articleThumb img, body #body_wrap.blog .eyeCatch-area .p-articleThumb img, body #body_wrap.archive .eyeCatch-area .p-articleThumb img {
    height: 250px;
  }
  body #body_wrap.page-template-sub-page .l-topTitleArea, body #body_wrap.blog .l-topTitleArea, body #body_wrap.archive .l-topTitleArea {
    min-height: 200px;
  }
  body #body_wrap.page-template-sub-page .l-topTitleArea__body, body #body_wrap.blog .l-topTitleArea__body, body #body_wrap.archive .l-topTitleArea__body {
    margin-top: 96px;
  }
  body #body_wrap.page-template-sub-page {
    /* リッチカラム 画像の高さ */
    /* テーブルタグ */
  }
  body #body_wrap.page-template-sub-page .post_content h3 {
    margin-bottom: 10px;
  }
  body #body_wrap.page-template-sub-page .rich-content:nth-of-type(even) .swell-block-columns__inner {
    flex-direction: column-reverse;
  }
  body #body_wrap.page-template-sub-page .rich-content .swell-block-columns__inner {
    gap: 10px;
  }
  body #body_wrap.page-template-sub-page .rich-wrap .swell-block-columns .wp-block-image img {
    height: 200px;
  }
  body #body_wrap.page-template-sub-page .wp-block-table th,
  body #body_wrap.page-template-sub-page .wp-block-table td {
    font-size: 13px;
  }
  body #body_wrap .service-index {
    gap: 5px !important;
  }
  body #body_wrap .service-index figure {
    width: 110px;
  }
  body #body_wrap .contact-wrap .l-heading::before {
    top: -60px;
  }
}
@media screen and (max-width: 499px) {
  .post_content .cv-wrap.first-cv {
    padding-top: 64px;
  }
  .post_content .cv-wrap.first-cv .l-contents {
    padding: 0;
    border-radius: 0;
    border: none;
  }
  .post_content .cv-wrap.first-cv .l-contents::after {
    left: calc(50% - 150px);
    bottom: auto;
    top: -100px;
    width: 300px;
    height: 138px;
    background-image: url(../images/cv/cv_person_right_bubble_sp.png);
  }
  .post_content .cv-wrap.first-cv .l-contents .swell-block-columns__inner {
    align-items: center;
  }
  .three-column-overall a {
    padding: 16px 8px;
  }
  #work .l-inner::before, #work .l-inner::after {
    content: none;
  }
}
/*--------------------------------------------------------
*
* 変数定義 import
*
--------------------------------------------------------*/
/*--------------------------------------------------------
変数
--------------------------------------------------------*/
/* 角丸 */
/* レイアウト transform */
/* アニメーション */
/*--------------------------------------------------------
全体の親要素 初期化
--------------------------------------------------------*/
/* TOP コンテンツ外枠 余白 */
.home .archive-title-wrap,
.page-template-contact-page .archive-title-wrap {
  display: none;
}
.home #content,
.page-template-contact-page #content {
  position: relative;
  margin-bottom: 0;
  padding: 0;
  z-index: 1;
}
.home .l-article,
.page-template-contact-page .l-article {
  max-width: 100%;
}

.home a,
.blog a,
.page-template-sub-page a,
.page-template-default a {
  color: inherit;
}

/* フルワイド サイト幅 padding */
.swell-block-fullWide {
  padding: 96px 0;
}
.swell-block-fullWide .l-container {
  padding: 0 96px;
}

/* 背景テクスチャ用オーバーレイ */
#body_wrap {
  position: relative;
}
#body_wrap::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #f3f3f3;
  mix-blend-mode: multiply;
}

/*--------------------------------------------------------------
カラム
--------------------------------------------------------------*/
.post_content .l-wrap {
  position: relative;
  margin-bottom: 0 !important;
  padding: 96px 0;
}

.l-inner {
  padding: 0 64px;
}

.l-contents {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}
.l-contents.small {
  max-width: 1023px;
}

.m-contents {
  max-width: 1024px;
  margin: 0 auto;
}

.s-contents {
  max-width: 1024px;
  margin: 0 auto;
}

/*--------------------------------------------------------
3カラム推奨  上下テキスト＋中心にアイコン リッチカラム
--------------------------------------------------------*/
.icon-column-a .column-item:nth-of-type(2) {
  margin-top: 96px;
}
.icon-column-a .column-item:nth-of-type(3) {
  margin-top: 192px;
}
.icon-column-a .column-item h3::before {
  content: none;
}
.icon-column-a .column-item figure {
  position: relative;
}
.icon-column-a .column-item figure::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  height: 144px;
  background-color: #faf9f5;
  border-radius: 160px;
  z-index: -1;
}
.icon-column-a .column-item figure img {
  height: 200px;
  object-fit: contain;
}

/* ボタン3つ並び */
.index-button-group > div {
  display: flex;
  gap: 24px;
}
.index-button-group > div .swell-block-button {
  flex: 1;
}
.index-button-group > div .swell-block-button a {
  width: 100%;
  height: 80px;
}

/*--------------------------------------------------------------
2カラム
--------------------------------------------------------------*/
.simple-column-a {
  position: relative;
  height: 100%;
  margin-bottom: 96px;
}
.simple-column-a > div {
  flex-wrap: nowrap;
  gap: 48px;
}
.simple-column-a figure {
  height: 100%;
}
.simple-column-a figure img {
  object-fit: cover;
  height: 100%;
}

.normal-column > div {
  display: block;
}

/* 2カラム 枠付き */
.two-column-frame {
  padding: 20px;
  gap: 0;
  border: 1px solid #bf7f75;
  border-radius: 4px;
}
.two-column-frame p {
  font-size: 14px;
}

/*--------------------------------------------------------------
テキスト
--------------------------------------------------------------*/
.price-txt {
  margin-top: -5px !important;
  padding-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.price-txt:last-child {
  border: none;
}

.large-txt {
  padding-bottom: 6px;
  line-height: 1;
  font-size: 32px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

.font-pop {
  letter-spacing: clamp(2px, 1vw, 10px);
}

.small-txt {
  font-size: 14px;
}

.txt-center.pc {
  text-align: center;
}

.sub-heading {
  letter-spacing: 8px;
  font-size: clamp(16px, 3vw, 32px);
  font-weight: bold;
}

.read-txt {
  line-height: 2;
  letter-spacing: 2px;
  font-size: clamp(16px, 1vw, 20px);
}

.button-white {
  color: white;
}

/* ボタン テキスト型 */
.button-text-a a {
  color: #bf7f75;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: bold;
  transition: color 0.2s, text-decoration-color 0.2s;
  text-decoration-thickness: 2px;
  text-decoration-color: #0cb73a;
}
.button-text-a a:hover, .button-text-a a:focus {
  color: #0cb73a;
  text-decoration-color: #bf7f75;
  text-decoration-thickness: 3px;
}

/*--------------------------------------------------------------
テキストリンクブロック（太字テキスト＋右矢印＋下線）
--------------------------------------------------------------*/
.button-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 320px;
  margin: 0 auto;
}

/* テキストリンク 右矢印 */
.button-a {
  position: relative;
  flex: 1;
  padding: 4px 0;
  text-decoration: none;
  cursor: pointer;
}
.button-a a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  letter-spacing: 0.02em;
  font-weight: bold;
  transition: all 0.3s;
}
.button-a a::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url('data:image/svg+xml;utf8,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 14H20" stroke="%23222" stroke-width="2.5" stroke-linecap="round"/><path d="M15.5 9L20 14L15.5 19" stroke="%23222" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
  vertical-align: middle;
  transition: all 0.3s;
}
.button-a a:hover {
  opacity: 0.8;
}
.button-a a:hover::before {
  transform: translate(4px, -50%);
}
.button-a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #5a5251;
  border-radius: 2px;
}

/*--------------------------------------------------------------
見出し H2 H3 H4
--------------------------------------------------------------*/
.home .post_content,
.page-template-sub-page .post_content,
.blog .post_content,
.archive .post_content {
  /* テーブルタグ 共通 */
}
.home .post_content .heading-content,
.page-template-sub-page .post_content .heading-content,
.blog .post_content .heading-content,
.archive .post_content .heading-content {
  width: auto;
  z-index: 1;
}
.home .post_content h2,
.page-template-sub-page .post_content h2,
.blog .post_content h2,
.archive .post_content h2 {
  /* 見出し H2 */
  position: relative;
  padding: 0 0 10px;
  background-color: transparent;
  color: #bf7f75;
  line-height: 1;
  letter-spacing: clamp(6px, 2vw, 16px);
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 100;
  font-family: "Montserrat", serif;
  font-feature-settings: "palt";
  /* 見出し上の補足 小フォント */
  /* 数字の大フォント */
}
.home .post_content h2 .heading-top,
.page-template-sub-page .post_content h2 .heading-top,
.blog .post_content h2 .heading-top,
.archive .post_content h2 .heading-top {
  position: relative;
  top: 16px;
  display: block;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: bold;
}
.home .post_content h2 .font-large,
.page-template-sub-page .post_content h2 .font-large,
.blog .post_content h2 .font-large,
.archive .post_content h2 .font-large {
  padding-right: 2px;
  font-size: 96px;
  font-weight: bold;
  font-family: "Montserrat", serif;
}
.home .post_content h2::before, .home .post_content h2::after,
.page-template-sub-page .post_content h2::before,
.page-template-sub-page .post_content h2::after,
.blog .post_content h2::before,
.blog .post_content h2::after,
.archive .post_content h2::before,
.archive .post_content h2::after {
  border: none;
}
.home .post_content .heading-sub,
.page-template-sub-page .post_content .heading-sub,
.blog .post_content .heading-sub,
.archive .post_content .heading-sub {
  letter-spacing: clamp(2px, 1vw, 6px);
  font-size: clamp(14px, 2vw, 22px);
  font-weight: bold;
}
.home .post_content .heading-center,
.page-template-sub-page .post_content .heading-center,
.blog .post_content .heading-center,
.archive .post_content .heading-center {
  position: relative;
  margin-bottom: 48px;
  text-align: center;
}
.home .post_content .heading-center h2,
.page-template-sub-page .post_content .heading-center h2,
.blog .post_content .heading-center h2,
.archive .post_content .heading-center h2 {
  text-indent: clamp(0px, 1vw, 16px);
}
.home .post_content .heading-center h2::before,
.page-template-sub-page .post_content .heading-center h2::before,
.blog .post_content .heading-center h2::before,
.archive .post_content .heading-center h2::before {
  left: 50%;
  transform: translateX(-50%);
}
.home .post_content h3,
.page-template-sub-page .post_content h3,
.blog .post_content h3,
.archive .post_content h3 {
  margin-bottom: 20px;
  padding: 0;
  font-size: clamp(20px, 2vw, 24px);
}
.home .post_content h3.area-price,
.page-template-sub-page .post_content h3.area-price,
.blog .post_content h3.area-price,
.archive .post_content h3.area-price {
  position: relative;
  padding-left: 90px;
}
.home .post_content h3.area-price::after,
.page-template-sub-page .post_content h3.area-price::after,
.blog .post_content h3.area-price::after,
.archive .post_content h3.area-price::after {
  position: absolute;
  content: "";
  left: 0;
  width: 80px;
  height: 50px;
  background-image: url("../images/dash.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.home .post_content .wp-block-table th,
.home .post_content .wp-block-table td,
.page-template-sub-page .post_content .wp-block-table th,
.page-template-sub-page .post_content .wp-block-table td,
.blog .post_content .wp-block-table th,
.blog .post_content .wp-block-table td,
.archive .post_content .wp-block-table th,
.archive .post_content .wp-block-table td {
  padding: 1em 0.5em;
}

/* サブタイトル */
.sub-title {
  color: #bf7f75;
  letter-spacing: 6px;
  font-size: clamp(18px, 3vw, 32px);
}

/* 縦中央配置 */
.heading-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* リード文 */
.l-read {
  letter-spacing: clamp(2px, 1vw, 4px);
  font-size: clamp(18px, 2vw, 20px);
}

/*--------------------------------------------------------------
セクション CSS
--------------------------------------------------------------*/
/* TOP コンテンツ外枠 余白 */
#body_wrap {
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
}

#body_wrap.home .archive-title-wrap {
  display: none;
}
#body_wrap.home .post_content {
  position: static;
}
#body_wrap.home #content {
  position: relative;
  margin-bottom: 0;
  padding: 0;
  z-index: 1;
}
#body_wrap.home .l-article {
  max-width: 100%;
}

/* コンテンツブロック */
.page-template-sub-page .post_content .content-block {
  margin-bottom: clamp(48px, 6vw, 64px);
}
.page-template-sub-page .post_content .content-block h2 {
  margin-bottom: 16px !important;
  padding-left: clamp(16px, 3vw, 32px);
  padding-top: 16px;
  padding-bottom: 16px;
  letter-spacing: clamp(1px, 1vw, 8px);
  font-size: clamp(24px, 3vw, 36px);
}
.page-template-sub-page .post_content .content-block h2::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background-color: #bf7f75;
}

/*--------------------------------------------------------------
FV hero メインビジュアル
--------------------------------------------------------------*/
.p-mainVisual {
  overflow: visible;
}
.p-mainVisual * {
  text-shadow: none;
}
.p-mainVisual__inner.swiper {
  overflow: visible;
}
.p-mainVisual__inner.swiper .swiper-wrapper::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(145deg, #171515 0%, #d4d4d4 30%, #121212 93.5%, transparent 93.5%, transparent 94%, #444 94%, #444 95%, transparent 95%, transparent 95.5%, #444 95.5%, #444 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.p-mainVisual__imgLayer,
.p-mainVisual .swiper-wrapper::before,
.p-mainVisual .swiper-fade .swiper-slide,
.p-mainVisual .swiper-slide img {
  border-radius: 0 0 32px 32px;
}
.p-mainVisual .swiper-fade .swiper-slide {
  filter: drop-shadow(0px 12px 16px rgba(0, 0, 0, 0.1));
}
.p-mainVisual__imgLayer {
  overflow: hidden;
}
.p-mainVisual .swiper-fade .swiper-slide {
  overflow: hidden;
}
.p-mainVisual .swiper-fade .swiper-slide img {
  overflow: hidden;
}
.p-mainVisual__textLayer .post_content {
  margin-top: 96px !important;
  padding: 0 16px;
}
.p-mainVisual .hero-title-group {
  max-width: 1024px;
  margin: 0 auto;
}
.p-mainVisual .hero-title-group h1 {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  color: #f3e9e7;
  text-align: center;
  letter-spacing: clamp(2px, 1vw, 8px);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 100;
  font-family: "Shippori Mincho", serif;
  font-feature-settings: "palt";
}
.p-mainVisual .hero-title-group .kv-sub-title {
  margin-bottom: 32px !important;
  color: #f3e9e7;
  letter-spacing: clamp(1px, 1vw, 6px);
  text-align: center;
  font-size: clamp(20px, 2vw, 24px);
  font-family: "Shippori Mincho", serif;
}

/*--------------------------------------------------------------
FV ヒーロー詳細ページ遷移ボタン（リッチ・モダン）
--------------------------------------------------------------*/
.hero-button-group > div {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.hero-page-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 320px;
  max-width: 512px;
  padding: 24px 64px 24px 108px;
  color: #fff;
  background-color: rgba(191, 127, 117, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(191, 127, 117, 0.38);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, background 0.3s;
}
.hero-page-link:hover, .hero-page-link:focus {
  background-color: rgba(191, 127, 117, 0.8);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(191, 127, 117, 0.22);
  text-decoration: none;
}
.hero-page-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 64px;
  pointer-events: none;
  transition: opacity 0.3s;
}
.hero-page-link:nth-child(1)::before {
  height: 80px;
  background: url("../images/icon/icon_recycle.svg") no-repeat center/contain;
}
.hero-page-link:nth-child(2)::before {
  height: 80px;
  background: url("../images/icon/icon_restaurant.svg") no-repeat center/contain;
}
.hero-page-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../images/icon/arrow_triangle_normal.svg") no-repeat center/contain;
  opacity: 0.8;
  pointer-events: none;
  transition: opacity 0.3s;
}
.hero-page-link:hover::after, .hero-page-link:focus::after {
  opacity: 0.35;
}

.link-heading {
  font-size: clamp(18px, 2vw, 20px);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(191, 127, 117, 0.1);
}

.link-summary {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.92;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(191, 127, 117, 0.08);
}

.fadeTop1 {
  opacity: 0;
  animation: animation-sample 0.5s ease-in-out 1s alternate forwards;
}

.fadeTop2 {
  opacity: 0;
  animation: animation-sample 0.5s ease-in-out 1.3s alternate forwards;
}

.fadeTop3 {
  opacity: 0;
  animation: animation-sample2 0.5s ease-in-out 1.6s alternate forwards;
}

@keyframes animation-sample {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes animation-sample2 {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: ease-in-out;
  }
  5% {
    transform: translateY(-14px);
    animation-timing-function: ease-in;
  }
  10% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  15% {
    transform: translateY(-7px);
    animation-timing-function: ease-in;
  }
  20% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateY(0);
  }
}
/* QR 追従型ボタン 左下 */
.btn-contact-fixed {
  display: flex;
  position: fixed;
  right: 16px;
  bottom: 48px;
  width: 80px;
  z-index: 2;
}
.btn-contact-fixed p {
  position: relative;
  margin-bottom: 16px;
  padding: 8px;
  background-color: #0cb73a;
  color: white;
  border-radius: 4px;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  animation: bounce 10s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.btn-contact-fixed p::before {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid #0cb73a;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  z-index: 1;
}
.btn-contact-fixed p img {
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.25);
}
.btn-contact-fixed svg.__icon {
  margin-left: 0;
  color: white;
}

/* bodyタグに .home と .page のクラスが"両方とも付いていない"場合に適用 */
#body_wrap:not(.home):not(.page) .btn-contact-fixed {
  display: none;
}

/*--------------------------------------------------------------
*
* メインビジュアルから下のコンテンツ 共通CSS
*
--------------------------------------------------------------*/
/*--------------------------------------------------------------
service サービス 3カラム
--------------------------------------------------------------*/
.bg-txt {
  position: absolute;
  top: -96px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  line-height: 1;
  text-indent: 24px;
  letter-spacing: clamp(3px, 2vw, 24px);
  z-index: -1;
}
.bg-txt.large {
  color: rgba(191, 127, 117, 0.5);
  text-transform: uppercase;
  font-size: clamp(64px, 13vw, 192px);
  font-weight: bold;
  font-family: "Montserrat", serif;
}

#service .l-inner {
  position: relative;
}
#service .l-inner > .wp-block-column {
  z-index: 1;
}
#service .heading-center {
  margin-bottom: 0;
}
#service h2 {
  margin-bottom: 0 !important;
  color: #bf7f75;
  line-height: 1.2;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 100;
  z-index: 1;
}
#service h3 {
  color: #bf7f75;
  border: none;
}
#service .txt-center {
  text-align: center;
  font-size: clamp(16px, 1vw, 18px);
  font-weight: bold;
}
#service .heading-top {
  top: 0;
  margin-bottom: 12px;
}

/*--------------------------------------------------------------
about us 私たちについて
--------------------------------------------------------------*/
#about_us {
  position: relative;
  padding-top: 256px !important;
}
#about_us::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 50%;
  height: 100%;
  background-color: #f5f7f4;
  border-radius: 0 24px 24px 0;
}
#about_us .heading-image {
  position: absolute;
  right: -64px;
  width: 70%;
}
#about_us .heading-image img {
  height: 430px;
  object-fit: cover;
}
#about_us h2 {
  letter-spacing: clamp(2px, 2vw, 20px);
  font-size: clamp(40px, 9vw, 128px);
}
#about_us .heading-sub {
  font-size: clamp(16px, 3vw, 32px);
}
#about_us .l-contents {
  height: 100%;
  margin-bottom: 192px;
}
#about_us .l-contents:nth-child(1) .swell-block-columns__inner {
  align-items: center;
}
#about_us .section-main-title {
  letter-spacing: 10px;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 100;
}
#about_us .section-sub-title {
  letter-spacing: 2px;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 100;
}
#about_us .section-txt {
  line-height: 1.8;
  font-size: clamp(16px, 2vw, 20px);
}
#about_us .carrier-contents img {
  /* 代表の写真 */
  border-radius: 4px;
}
#about_us .read-txt {
  font-size: clamp(16px, 2vw, 18px);
}

.name-txt p:nth-child(1) {
  font-size: clamp(14px, 2vw, 18px);
}
.name-txt p:nth-child(2) {
  font-size: clamp(18px, 2vw, 24px);
}

/*--------------------------------------------------------------
feature 特徴 2カラム複数行
--------------------------------------------------------------*/
.post_content .feature-section .heading-center {
  margin-bottom: 48px;
}
.post_content .feature-section h2 {
  margin-bottom: 4px !important;
  color: #bf7f75;
  letter-spacing: clamp(1px, 1vw, 6px);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 100;
  font-family: "Roboto", sans-serif;
}
.post_content .feature-section .sub-heading {
  display: inline-block;
  padding: 4px 16px;
  background-color: #bf7f75;
  color: white;
  border-radius: 4px;
  letter-spacing: 1px;
  font-size: clamp(14px, 1vw, 16px);
}
.post_content .feature-section .read-txt {
  margin-bottom: 24px;
}
/*--------------------------------------------------------
philosophy スタッフ
--------------------------------------------------------*/
/* 左スペースに縦文字 */
.left-space-wrap {
  padding-left: 96px;
  padding-bottom: 74px;
}

#philosophy {
  padding-bottom: clamp(32px, 10vw, 128px) !important;
  /* Swiper TOP service限定 */
  /* スライダー横並び カラム調整 */
  /* Swiperボタン 右下に設置 */
}
#philosophy .swell-block-fullWide__inner.l-container {
  padding: 0 0 0 48px;
  z-index: 4;
}
#philosophy h2 {
  color: white;
}
#philosophy .heading-sub {
  color: white;
}
#philosophy .sub-copy {
  font-weight: 100;
}
#philosophy .swiper-1 {
  width: 100%;
}
#philosophy .service-column {
  position: relative;
  margin-left: 96px;
  margin-bottom: 64px !important;
  /* スライダー背景色 */
  /* スライド画像 */
  /* スライダー画像タイトル */
  /* 概要テキスト */
  /* 矢印ボタン */
  /* ホバーアニメーション */
}
#philosophy .service-column::before, #philosophy .service-column::after {
  position: absolute;
  content: "";
  z-index: -1;
}
#philosophy .service-column::before {
  top: 64px;
  left: -96px;
  width: calc(100% + 360px);
  height: 100%;
  background-color: #f9f6ee;
  box-shadow: 0 0 32px rgba(249, 246, 238, 0.9);
  z-index: -2;
}
#philosophy .service-column .column-img {
  position: relative;
  display: flex;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 4px;
  box-shadow: 0 0 32px rgba(191, 127, 117, 0.1);
}
#philosophy .service-column .column-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(190deg, transparent 0, transparent 78%, #777777 50%);
  mix-blend-mode: multiply;
}
#philosophy .service-column .column-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  z-index: -1;
}
#philosophy .service-column .column-heading {
  position: absolute;
  left: 16px;
  bottom: 10px;
  color: white;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
}
#philosophy .service-column .column-heading::first-letter {
  /* タイトル1文字目を大フォント */
  margin-right: 1px;
  line-height: 1.5;
  font-size: clamp(20px, 3vw, 32px);
}
#philosophy .service-column .column-description {
  font-size: clamp(16px, 1vw, 18px);
}
#philosophy .service-column .btn-mark::before {
  background-color: #5a5251;
  mix-blend-mode: screen;
}
#philosophy .service-column .column-item {
  display: block;
}
#philosophy .service-column .column-item:hover .column-img img {
  transform: scale(1.1);
}
#philosophy .swiper-button-group {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
#philosophy .swiper-button-group span {
  position: relative;
}
#philosophy .swiper-button-group .swiper-button-next,
#philosophy .swiper-button-group .swiper-button-prev {
  bottom: 10px;
  /* 矢印を右下に配置 */
  top: auto;
  transform: none;
  width: 44px;
  background-color: rgba(191, 127, 117, 0.8);
  border-radius: 50%;
}
#philosophy .swiper-button-group .swiper-button-next:after,
#philosophy .swiper-button-group .swiper-button-prev:after {
  color: white;
  font-size: 16px;
}
#philosophy .swiper-button-group .swiper-button-next {
  right: 10px;
}
#philosophy .swiper-button-group .swiper-button-prev {
  left: 10px;
}

/*--------------------------------------------------------------
Q&A よくある質問
--------------------------------------------------------------*/
#faq .heading-center .heading-sub {
  color: #bf7f75;
}
#faq .faq_q {
  color: #bf7f75;
}
/*--------------------------------------------------------------
column コラム
--------------------------------------------------------------*/
/*--------------------------------------------------------------
contact area フッター直前のCTAエリア
--------------------------------------------------------------*/
/* 背景フィルター */
.contact-section.swell-block-fullWide.has-bg-img:before {
  mix-blend-mode: multiply;
}

.cta-block {
  position: relative;
  margin-bottom: 0;
  padding: 64px 64px 152px;
}
.cta-block > div {
  display: flex;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
  gap: 48px;
}
.cta-block .cta-card {
  position: relative;
  display: block;
  flex: 1 1 420px;
  width: 100%;
  margin-bottom: 0;
  padding: 36px;
  background-color: #f8f8f8;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.cta-block .cta-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 12px;
  height: 24px;
  background: url("../images/icon/arrow_triangle_normal_pink.svg") no-repeat center/contain;
  pointer-events: none;
  transition: transform 0.3s;
}
.cta-block .cta-card:hover {
  opacity: 0.9;
}
.cta-block .cta-card:hover::after {
  transform: translate(4px, -50%);
}
.cta-block .cta-card .cta-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.cta-block .cta-card h2 {
  /* 見出し H2 */
  padding: 0 0 10px;
  background-color: transparent;
  color: #bf7f75;
  line-height: 1;
  font-weight: 100;
  font-family: "Montserrat", serif;
}
.cta-block .cta-card h2::before, .cta-block .cta-card h2::after {
  content: none;
}
.cta-block .cta-card .cta-title {
  margin-top: 0;
  margin-bottom: 24px;
  padding-bottom: 0;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: clamp(20px, 3vw, 32px) !important;
}
.cta-block .cta-card .cta-text {
  line-height: 1.6;
}

/*--------------------------------------------------------
*
* footer フッター
*
--------------------------------------------------------*/
.l-footer {
  width: 100%;
  margin-top: -64px;
  padding: 0;
  background-color: #f8f8f8;
  border-radius: 24px 24px 0 0;
  z-index: 1;
  /* 2カラム */
  /* フッターメニュー */
}
.l-footer__foot {
  padding: 64px 48px;
}
.l-footer .l-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  /* フッターロゴ・アドレス */
}
.l-footer .l-container .footer-logo {
  margin-bottom: 16px;
}
.l-footer .l-container .footer-logo img {
  width: 300px;
}
.l-footer .footer-nav-wrap {
  display: flex;
  max-width: 673px;
  justify-content: flex-end;
  padding: 0;
}
.l-footer .footer-nav-wrap ul.l-footer__nav {
  justify-content: flex-end;
  gap: 24px 40px;
}
.l-footer .footer-nav-wrap ul.l-footer__nav > li > a {
  position: relative;
  display: inline;
  white-space: nowrap;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 16px;
  transition: 0.3s ease-in-out;
}
.l-footer .footer-nav-wrap ul.l-footer__nav > li > a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}
.l-footer .footer-nav-wrap ul.l-footer__nav > li a, .l-footer .footer-nav-wrap ul.l-footer__nav > li:first-child a {
  padding: 0;
  border: none !important;
}
.l-footer .footer-nav-wrap .l-footer__nav {
  padding: 0;
}
.l-footer .footer-nav-wrap .l-footer__nav .sub-menu .menu-item {
  margin-top: 8px;
  list-style: none;
}
.l-footer .footer-nav-wrap .l-footer__nav .sub-menu .menu-item a {
  font-size: 16px !important;
}
.l-footer .copyright {
  display: flex;
  justify-content: center;
  margin-top: 0;
  padding: 16px;
  line-height: 1;
  font-size: 12px;
}

@keyframes lineAnime {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
}
/* ページトップボタン 前面移動 */
.p-fixBtnWrap {
  position: absolute;
}

/*--------------------------------------------------------------
投稿 ブロックエディタ
--------------------------------------------------------------*/
.p-postList h2.p-postList__title {
  letter-spacing: 0;
  font-size: clamp(16px, 2vw, 18px) !important;
  font-weight: bold;
}

/* 投稿一覧のサムネイル 角丸 */
.-type-card .p-postList__thumb {
  border-radius: 8px;
}

/*--------------------------------------------------------
*
* 共通 CSS
*
--------------------------------------------------------*/
.br-tb {
  display: none;
}

.br-sp {
  display: none;
}

.__pc,
.br-pc {
  display: inherit;
}

.__sp {
  display: none;
}

/* パンくずリスト */
#breadcrumb {
  margin-top: -80px;
  margin-bottom: 16px;
  background-color: transparent;
  box-shadow: none;
  z-index: 2;
}

/* 画像非選択モード（ダウンロード不可） */
img {
  pointer-events: none;
}

.font-yColor {
  color: yellow;
}

/* ボタン お問い合わせ LINEと電話２つ並び */
.btn-contact .swell-block-columns__inner {
  justify-content: center;
}
.btn-contact .swell-block-columns__inner .swell-block-column {
  max-width: 270px;
}
.btn-contact a {
  flex-direction: row-reverse;
  justify-content: center;
  width: 100%;
  padding: 15px;
  border-radius: 4px;
}
.btn-contact a .__icon {
  position: relative;
  left: 10px;
  margin-right: 0;
}

/*--------------------------------------------------------------
top-index ページメニュー 4つ並び
--------------------------------------------------------------*/
.three-column-overall {
  margin-bottom: 0;
  padding: 48px 0;
}
.three-column-overall .swell-block-columns__inner {
  padding: 0;
}
.three-column-overall a {
  position: relative;
  display: block;
  padding: 24px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 0 24px rgba(191, 127, 117, 0.1);
  font-weight: bold;
  transition-duration: 0.6s;
}
.three-column-overall a .heading-txt {
  font-size: clamp(16px, 2vw, 20px);
}
.three-column-overall a:hover {
  opacity: 1;
}

#top-index {
  padding: 96px 0 128px;
}
#top-index a {
  background-color: #bf7f75;
}
#top-index a .count-txt {
  color: white;
}
#top-index a .heading-txt {
  color: white;
}
#top-index a:hover {
  background-color: #ab7067;
}
#top-index a:hover::before {
  opacity: 1;
}

/*--------------------------------------------------------
レスポンシブ 部分的
--------------------------------------------------------*/
@media screen and (max-width: 1199px) {
  /* 最右カラム 非表示 */
  .post_content .cv-wrap .swell-block-columns__inner {
    justify-content: flex-end;
  }
  .column-blank {
    display: none;
  }
}

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