@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ========================================
   Tailwind CSS ビルドファイル読み込み
   ======================================== */
/* @import url('./tailwind_css/style.css'); */

/* フォント
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* サイト全体のフォント設定 
body {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}

/* 見出しのフォント設定 
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}

/* 英語テキスト専用クラス 
.english-text {
  font-family: "Poppins", sans-serif;
}

/* 日本語テキスト専用クラス
.japanese-text {
  font-family: "Noto Sans JP", sans-serif;
}
 */
 
@media (min-width: 960px) {
  .-series .l-header__logo {
    padding: 10px 0;
  }
}
/* フェードインアニメーション */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* 右からスライドインアニメーション */
.slide-right-element {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right-element.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 左からスライドインアニメーション */
.slide-left-element {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left-element.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ヘッダーCTAボタン */
.l-header__cta {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.c-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

.c-cta-button--primary {
  background-color: #368ca4;
  color: #ffffff;
  border-color: #368ca4;
}

.c-cta-button--primary:hover {
  background-color: #005a9e;
  border-color: #005a9e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 122, 204, 0.3);
}


.c-cta-button__text {
  font-size: 14px;
  font-weight: 600;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {

  .c-cta-button {
    padding: 6px 12px;
    font-size: 13px;
  }

  .c-cta-button__text {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .l-header__cta {
    display: none; /* スマホでは非表示 */
  }
}

/* フェードインアニメーション */
.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}
/* フェードインアニメーション */

/* トップページフルワイド */
.home #content {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.home #content .l-content__main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.home #content .l-content {
  padding: 0;
  margin: 0;
}

/* その他のコンテンツブロックも同様に調整 */
.home #content .l-content__main > * {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* トップページフルワイド */

/* ▼▼▼ トップページコンテンツ_タブ ▼▼▼ */

/* swellテーマリセット ▼▼▼ */
.cb_content h2,
.cb_content
  h2:where(
    :not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)
  )::before {
  all: unset;
}

/* swellテーマリセット ▲▲▲ */

.custom-tab-wrap {
  margin: 40px 0;
}

.custom-tab-nav {
  display: flex;
  border-bottom: 2px solid #eee;
}

.custom-tab-nav-item {
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 5px 5px 0 0;
  background: #f7f7f7;
  margin-right: 4px;
  font-weight: bold;
  transition: background 0.2s;
}

.custom-tab-nav-item.active {
  background: #fff;
  border-bottom: 2px solid #fff;
  color: #368ca4;
}

.custom-tab-contents {
  border: 1px solid #eee;
  border-top: none;
  padding: 24px;
  background: #fff;
}

.custom-tab-content-item {
  display: none;
}

.custom-tab-content-item.active {
  display: block;
}

.custom-tab-content-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .custom-tab-nav {
    flex-direction: column;
  }

  .custom-tab-nav-item {
    margin-bottom: 4px;
  }
}

.custom-tab-nav {
  display: flex;
  border-bottom: 3px solid #e0e0e0;
  background: #f7f7f7;
  height: 50px;
  align-items: flex-end;
}

.custom-tab-nav-item {
  cursor: pointer;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  min-width: 150px;
  margin: 0 4px;
  padding: 0 24px;
  border-radius: 5px 5px 0 0;
  background: #eaeaea;
  color: #333;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  border: 1px solid #e0e0e0;
  border-bottom: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.custom-tab-nav-item.active,
.custom-tab-nav-item:hover {
  background: #fff;
  color: #0071a2;
  border-bottom: 3px solid #fff;
  z-index: 2;
}

.custom-tab-contents {
  border: 1px solid #e0e0e0;
  border-top: none;
  padding: 40px 60px;
  background: #fff;
}

@media (max-width: 950px) {
  .custom-tab-nav {
    height: 40px;
  }

  .custom-tab-nav-item {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    min-width: 70px;
    padding: 0 12px;
  }

  .custom-tab-contents {
    padding: 24px 20px;
  }
}

@media (max-width: 600px) {
  .custom-tab-nav {
    flex-direction: column;
    height: auto;
  }

  .custom-tab-nav-item {
    margin-bottom: 4px;
  }
}

/* ▼▼▼ SOLARISタブセクションCSS（統一・整理版）▼▼▼ */
.tab_content_top {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: visible;
  /* 画像を画面幅いっぱいにする場合はvisible推奨 */
}

.tab_content_top .bg_image {
  width: 100vw;
  min-width: 100vw;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background-size: cover;
  background-position: center top;
}

/* 背景画像のオーバーレイ */
.tab_content_top .bg_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  pointer-events: none;
}

.tab_content_top .bg_image.mobile {
  display: none;
}

.tab_content_top_inner {
  color: #fff;
  width: 850px;
  margin: 0 auto;
  z-index: 3;
  position: relative;
  text-align: center;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 0;
}

.tab_content_top .catch {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.tab_content_top .desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
  margin: 18px 0 0;
  letter-spacing: 0.01em;
}

.tab_content_top .tab {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  text-align: center;
}

.tab_content_top .tab .item {
  font-size: 18px;
  height: 60px;
  line-height: 60px;
  min-width: 180px;
  margin: 0 8px;
  padding: 0 32px;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.tab_content_top .tab .item.active,
.tab_content_top .tab .item:hover {
  color: #00729f;
  background: #fff;
}

.tab_content_bottom {
  width: 100%;
  background: #fff;
  padding: 100px 60px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  position: relative;
  box-sizing: border-box;
}

.tab_content_bottom .item {
  display: none;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.4s;
  min-height: 600px;
}

.tab_content_bottom .item.active {
  display: block;
  opacity: 1;
  pointer-events: initial;
  position: relative;
  top: 0;
  left: 0;
}

.tab_content_bottom .item_inner {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.tab_content_bottom .image_area {
  width: 500px;
  margin-right: 60px;
  overflow: hidden;
  position: relative;
}

.tab_content_bottom .image {
  max-width: 100%;
  height: auto;
}

.tab_content_bottom .content {
  width: calc(100% - 560px);
}

.tab_content_bottom .title {
  font-size: 26px;
  font-weight: 600;
  color: #0071a2;
  margin-bottom: 42px;
}

.tab_content_bottom .catch {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 32px;
}

.tab_content_bottom .desc {
  line-height: 2.4;
  overflow: visible;
  max-height: none;
  word-break: break-word;
  white-space: normal;
}

.tab_content_bottom .design_button {
  margin-top: 70px;
  text-align: center;
}

.tab_content_bottom .design_button a {
  display: inline-block;
  min-width: 260px;
  max-width: 100%;
  height: 70px;
  line-height: 70px;
  font-size: 16px;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  z-index: 3;
  box-sizing: border-box;
  transition: all 0.35s ease;
  color: #fff !important;
  background: #00729f;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  margin-top: 24px;
  letter-spacing: 0.05em;
}

.tab_content_bottom .design_button a:hover {
  background: #005a7c;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px) scale(1.03);
}

.cb_tab_content .inview {
  opacity: 1;
  position: relative;
  transition: all 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s,
    opacity 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}

.cb_tab_content .inview.animate {
  opacity: 1;
  top: 0;
}

@media screen and (max-width: 950px) {
  .tab_content_top {
    height: 400px;
  }

  .tab_content_top_inner {
    padding-top: 0;
  }

  .tab_content_bottom .item_inner {
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
  }

  .tab_content_bottom .image_area {
    width: 100%;
    margin: 0 0 32px 0;
    text-align: center;
  }

  .tab_content_bottom .content {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .tab_content_top {
    height: 240px;
  }

  .tab_content_top_inner {
    padding-top: 0;
  }

  .tab_content_top .catch {
    font-size: 16px;
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .tab_content_top .desc {
    font-size: 12px;
    margin: 6px 0 0;
    line-height: 1.6;
  }

  .tab_content_top_inner {
    width: 98vw;
    padding-left: 1vw;
    padding-right: 1vw;
    box-sizing: border-box;
  }

  .tab_content_top .tab .item {
    font-size: 12px;
    max-width: 40vw;
    word-break: break-all;
    white-space: normal;
    text-align: center;
    display: inline-block;
    margin: 0 4px;
    padding: 0 15px;
    border-radius: 5px 5px 0 0;
    height: 40px;
    line-height: 40px;
    min-width: 70px;
  }

  .tab_content_bottom {
    padding: 40px 20px;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateY(20px);
  }
}

.item.active .item_inner {
  animation-name: fadein;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

/* ▲▲▲ トップページコンテンツ_タブ ▲▲▲ */

/* ▼▼▼ トップページコンテンツ_ホバー ▼▼▼ */

/* swellテーマリセット ▼▼▼ */
.cb_service_list
  h3:where(
    :not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)
  )::before {
  all: unset;
}

/* swellテーマリセット ▲▲▲ */
.cb_service_list {
  background: #f6f6f6;
  padding: 0 !important;
  width: 100%;
  overflow: hidden;
}

.cb_service_top {
  text-align: center;
  max-width: 1850px;
  width: 100%;
  margin: 0 auto;
  /* padding: 90px 40px; */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 4em;
}

 .cb_service_top .cb_headline {
  font-size: 38px;
  line-height: 1.4;
}

.cb_service_top .sub_headline {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}

.cb_service_top .cb_desc {
  font-size: 16px;
  line-height: 2.2;
  margin: 25px 0 0;
}

/* PC */
@media (min-width: 1151px) {
  .cb_service_middle {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background: #000;
  }

  .cb_service_middle:before {
    opacity: 1 !important;
    z-index: 1;
    margin: 0 auto;
    content: "";
    display: block;
    width: 100%;
    height: 600px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .cb_service_item_list {
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .cb_service_item_list .item {
    flex: 1;
    height: 100%;
    position: relative;
    border-right: 1px solid #ddd;
  }

  .cb_service_item_list .item:last-of-type {
    border-right: none;
  }

  .cb_service_item_list a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .cb_service_item_list .image_wrap {
    display: none;
  }

  .cb_service_bg_images {
    width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .cb_service_bg_images .bg_image {
    width: 100vw !important;
  }

  .cb_service_item_list .item a:after {
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--overlay-color, rgba(0, 0, 0, 0.5));
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .cb_service_item_list .item:hover a:after {
    opacity: 1;
  }

  .cb_service_item_list .content {
    padding: 40px 25px;
    position: absolute;
    bottom: -200px;
    left: 0;
    width: 100%;

    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: bottom 0.5s ease;
    transition: bottom 0.5s ease;
    z-index: 3;
    color: #fff;
    display: flex;
    flex-direction: column;
  }

  .cb_service_item_list .title {
    line-height: 1.2;
    font-weight: 600;
    word-break: break-all;
    margin-bottom: auto;
  }

  .cb_service_item_list .title span {
    display: block;
  }

  .cb_service_item_list .title .main_title {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .cb_service_item_list .title .sub_title {
    font-size: 14px;
  }

  .cb_service_item_list .desc {
    line-height: 2.4;
    margin: 35px 0;
    font-size: 14px;
  }

  .cb_service_item_list .bottom_title {
    font-weight: 600;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding: 0 20px 0 0;
    margin: 0;
  }

  .cb_service_item_list .bottom_title:after {
    font-family: "design_plus";

    font-size: 14px;
    display: block;
    position: absolute;
    top: 2px;
    right: 0px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .cb_service_item_list .item:hover .content {
    bottom: 0;
  }
}

/* タブレット */
@media screen and (min-width: 751px) and (max-width: 1150px) {
  .cb_service_top {
    width: 100%;
    /* padding: 50px 30px; */
  }

  .cb_service_middle {
    height: auto;
  }

  .cb_service_item_list {
    display: block;
  }

  .cb_service_item_list .item {
    width: 100%;
    height: 400px;
    position: relative;
  }

  .cb_service_item_list a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    color: #fff !important;
  }

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

  .cb_service_item_list .image {
    width: 100%;
    height: 100%;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }

  .cb_service_item_list .item:nth-child(odd) a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--overlay-color, rgba(54, 50, 144, 0.5));
    z-index: 1;
  }

  .cb_service_item_list .item:nth-child(even) a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--overlay-color, rgba(54, 50, 144, 0.5));
    z-index: 1;
  }

  .cb_service_item_list .content {
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 2;
  }

  .cb_service_item_list .item:nth-child(odd) .content {
    left: 0;
  }

  .cb_service_item_list .item:nth-child(even) .content {
    right: 0;
  }

  .cb_service_item_list .title .main_title {
    font-size: 24px;
  }

  .cb_service_item_list .title .sub_title {
    font-size: 14px;
    margin-top: 10px;
  }

  .cb_service_item_list .desc {
    line-height: 2;
    margin: 20px 0 0;
    font-size: 14px;
  }

  .cb_service_item_list .bottom_title {
    font-weight: 600;
    margin: 20px 0 0 0;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding: 0 20px 0 0;
    font-size: 14px;
  }

  .cb_service_item_list .bottom_title:after {
    font-family: "design_plus";

    font-size: 12px;
    display: block;
    position: absolute;
    top: 2px;
    right: 0px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* スマートフォン */
@media screen and (max-width: 750px) {
  .cb_service_top {
    /* padding:30px 15px !important; */
  }

  .cb_service_top .cb_headline {
    font-size: 28px;
  }

  .cb_service_item_list .item {
    height: 300px;
  }

  .cb_service_item_list a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    color: #fff !important;
  }

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

  .cb_service_item_list .image {
    width: 100%;
    height: 100%;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }

  .cb_service_item_list .item:nth-child(odd) a:after,
  .cb_service_item_list .item:nth-child(even) a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color, rgba(54, 50, 144, 0.5));
    z-index: 1;
  }

  .cb_service_item_list .content {
    width: 100%;
    padding: 25px 20px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .cb_service_item_list .title .main_title {
    font-size: 20px;
  }

  .cb_service_item_list .desc {
    line-height: 1.8;
    margin: 15px 0 0;
    font-size: 12px;
  }

  .cb_service_item_list .bottom_title {
    margin: 15px 0 0 0;
    font-size: 12px;
  }

  .cb_service_item_list .bottom_title:after {
    font-size: 10px;
  }
}

/* ▲▲▲ トップページコンテンツ_ホバー ▲▲▲ */

/* ▼▼▼ プラン一覧_デザインヘッダー ▼▼▼ */
/* swellテーマリセット ▼▼▼ */
.design_plan_list_wrap
  .plan_design_header
  h2:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)),
.design_plan_list_wrap
  .plan_design_header
  h2:where(
    :not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)
  )::before {
  all: unset;
}

/* swellテーマリセット ▲▲▲ */

/* Design Header Styles - ホバーコンテンツと統一 */
.design_plan_list_wrap .plan_design_header {
  text-align: center;
  max-width: 1850px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 40px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.design_plan_list_wrap .plan_design_header .plan_headline {
  font-size: 38px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.design_plan_list_wrap .plan_design_header .sub_headline {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}

.design_plan_list_wrap .plan_design_header .plan_desc {
  font-size: 16px;
  line-height: 2.2;
  margin: 25px 0 0;
}

/* レスポンシブ対応 */
@media screen and (min-width: 751px) and (max-width: 1150px) {
  .design_plan_list_wrap .plan_design_header {
    width: 100%;
    padding: 50px 30px;
  }
}

@media screen and (max-width: 750px) {
  .design_plan_list_wrap .plan_design_header {
    padding: 40px 20px;
  }

  .design_plan_list_wrap .plan_design_header .plan_headline {
    font-size: 28px;
  }
}

/* ▼▼▼ トップページコンテンツ_ギャラリー ▼▼▼ */
/* swellテーマリセット ▼▼▼ */
.p-content04
  h2:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)),
.p-content04
  h2:where(
    :not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)
  )::before {
  all: unset;
}

/* swellテーマリセット ▲▲▲ */

.cb_gallery_content {
  padding: 100px 0;
  overflow: hidden;
}

.cb_gallery_content_inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.cb_gallery_content_text {
  width: 50%;
  padding-right: 50px;
}

.cb_gallery_content_headline {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 30px;
}

.cb_gallery_content_desc {
  line-height: 2;
  margin-bottom: 30px;
}

.cb_gallery_content_btn {
  display: inline-block;
  min-width: 200px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  background: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cb_gallery_content_btn:hover {
  background: #333;
}

.cb_gallery_content_slider {
  width: 50%;
  position: relative;
}

.cb_gallery_content_slider_item {
  width: 100%;
  height: 400px;
}

.cb_gallery_content_slider_image {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* レスポンシブ */
@media screen and (max-width: 1151px) {
  .cb_gallery_content {
    padding: 80px 0;
  }

  .cb_gallery_content_inner {
    padding: 0 30px;
  }

  .cb_gallery_content_text {
    padding-right: 30px;
  }

  .cb_gallery_content_slider_item {
    height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .cb_gallery_content {
    padding: 50px 0;
  }

  .cb_gallery_content_inner {
    flex-direction: column;
    padding: 0 20px;
  }

  .cb_gallery_content_text {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .cb_gallery_content_headline {
    margin-bottom: 20px;
  }

  .cb_gallery_content_desc {
    margin-bottom: 20px;
  }

  .cb_gallery_content_slider {
    width: 100%;
  }

  .cb_gallery_content_slider_item {
    height: 300px;
  }
}

.p-content04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 600px;
}

.p-content04__content {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  padding: 0 5.51724%;
  width: 33.33333%;
}

.p-content04__catch {
  font-size: 40px;
  line-height: 2.2;
  margin-bottom: 1.6px;
  text-align: center;
}

.p-content04__desc {
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 31.6px;
}

.p-content04__slider {
  position: relative;
  width: 66.66667%;
}

.p-content04__slider .slick-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  top: auto;
  bottom: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  z-index: 99;
  transition-duration: 0.2s;
  transition-property: background;
  background-color: #000;
}

.p-content04__slider .slick-arrow::before {
  font-family: "design_plus";
  font-size: 18px;
}

.p-content04__slider .slick-prev {
  left: auto;
  right: 50px;
}

.p-content04__slider .slick-prev::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(-135deg);
}

.p-content04__slider .slick-next {
  right: 0;
}

.p-content04__slider .slick-next::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}

.p-content04__slider-item {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 600px;
}

.p-content04__btn {
  align-self: center;
  margin-top: 24px;
}

.p-content04__btn.p-button,
.p-content04__btn {
  display: inline-block;
  background: #004353;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 18px 48px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}

.p-content04__btn.p-button:hover,
.p-content04__btn:hover {
  background: #a91010;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .p-content04 {
    display: block;
    height: auto;
  }

  .p-content04__content {
    width: 100%;
    padding: 52px 11.11111% 64px;
  }

  .p-content04__catch {
    font-size: 30px !important;
    line-height: 1.5;
    margin-bottom: 2px;
  }

  .p-content04__desc {
    line-height: 2;
    margin-bottom: 13px;
  }

  .p-content04__slider {
    width: 100%;
  }

  .p-content04__slider .slick-arrow {
    width: 40px;
    height: 40px;
  }

  .p-content04__slider .slick-arrow::before {
    font-size: 14px;
  }

  .p-content04__slider .slick-prev {
    right: 40px;
  }

  .p-content04__slider-item {
    height: 360px;
  }
}

/* ▲▲▲ トップページコンテンツ_ギャラリー ▲▲▲ */

/* ▼▼▼ トップページコンテンツ_ヴィジュアル ▼▼▼ */
.p-main-image {
  position: relative;
  width: 100%;
  height: 600px;
}

.p-main-image__img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.p-main-image__img--narrow {
  width: 50%;
}

.p-main-image--rev .p-main-image__img--narrow {
  margin-left: 50%;
}

.p-main-image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.p-main-image__content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  width: 50%;
  padding: 15px;
  z-index: 2;
}

.p-main-image--rev .p-main-image__content {
  left: 0;
  right: auto;
}

.p-main-image__title {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
}

.p-main-image__desc {
  line-height: 2.2;
  margin-bottom: 31.6px;
  font-size: 14px;
  text-align: left;
}

.p-main-image__btn {
  background: #222;
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  line-height: 50px;
  text-align: center;
  min-width: 200px;
  height: 50px;
  padding: 0 15px;
  border: none;
  border-radius: 0;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
  align-self: center;
  cursor: pointer;
}

.p-main-image__btn:hover {
  background: #004353;
  color: #fff;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .p-main-image {
    height: auto;
  }

  .p-main-image__img {
    padding-bottom: 100%;
    height: auto;
  }

  .p-main-image__img--narrow {
    width: 100%;
  }

  .p-main-image--rev .p-main-image__img--narrow {
    margin-left: 0;
  }

  .p-main-image__img--narrow + .p-main-image__content {
    position: static;
  }

  .p-main-image__content {
    width: 100%;
    left: 0;
    right: 0;
    position: static;
    padding: 52px 11.11111% 64px;
  }

  /* スマホ時はオーバーレイを画像部分のみに制限 */
  .p-main-image__overlay {
    width: 100%;
    height: 100vw; /* 画像の高さに合わせる */
    max-height: 100vw;
  }

  .p-main-image__title {
    font-size: 30px !important;
    margin-bottom: 2px;
  }

  .p-main-image__desc {
    line-height: 2;
    margin-bottom: 13px;
  }

  .p-main-image__desc:last-child {
    margin-bottom: 0;
  }

  .p-main-image__btn {
    min-width: 160px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    padding: 0 10px;
  }
}

/* ▲▲▲ トップページコンテンツ_ヴィジュアル ▲▲▲ */

/* swell-block-simple-block
---------------------------------------------------------- */
.wp-block-swell-child-simple-block .p-main-image__title {
  background: none;
  padding: 0;
  margin: 0 0 15px;
  line-height: 1.3;
}

.wp-block-swell-child-simple-block .p-main-image__title::before {
  display: none;
}

/* ▲▲▲ トップページコンテンツデザイン ▲▲▲ */

/* swellテーマリセット ▼▼▼ */
.design_header
  h2:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)),
.design_header
  h2:where(
    :not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)
  )::before {
  all: unset;
}

/* swellテーマリセット ▲▲▲ */

/* Design Content Block Frontend Styles */
.design-content {
  padding: 150px 0;
  position: relative;
}

.design-content:nth-child(even) {
  background: #f6f6f6;
}

/* Design Header */
.design-content .design_header,
.design-content .cb_design_header {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  margin-top: 90px;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 100px;
}

.design-content .design_header .title_area {
  width: 50%;
  padding-right: 50px;
}

.design-content .design_header .title_area.no_desc {
  width: auto;
  padding-right: 0;
}

.design-content .design_header .desc {
  width: 50%;
  line-height: 2.6;
  padding-left: 50px;
}

/* Typography */
.design-content .large_headline {
  font-size: 70px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  text-align: left;
}

.design-content .sub_title {
  overflow: hidden;
  padding: 0;
  font-size: 18px;
  line-height: 1.4;
}

.design-content .sub_title.colored {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: -5px;
}

/* Item List Layout */
.design-content .item_list {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  flex-wrap: wrap;
}

.design-content .shutter_image {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 50px;
}

.design-content .shutter_image .item {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.design-content .shutter_image.col2 .item {
  width: calc(50% - 3px);
  aspect-ratio: 620 / 450;
}

.design-content .shutter_image .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  margin: 0;
  max-width: inherit !important;
  z-index: 1;
}

/* Shutter Animation */
.design-content .shutter_image .item:before {
  content: "";
  display: block;
  width: 101%;
  height: 101%;
  background: #fff;
  position: absolute;
  top: 0;
  left: -1px;
  transform: translate3d(0, 0, 0);
  z-index: 50;
  pointer-events: none;
}

.design-content .shutter_image .item.animate:before {
  transform: translate3d(100%, 0, 0);
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Link Version Styles */
.design-content .shutter_image.link_ver .headline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  color: #fff;
  padding: 35px 40px;
  font-size: 22px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.design-content .shutter_image.link_ver .item:hover .headline {
  opacity: 1;
}

.design-content .shutter_image.link_ver .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.design-content .shutter_image.link_ver .item:hover .overlay {
  opacity: 1;
}

.design-content .shutter_image.link_ver .post_list {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0s;
}

.design-content .shutter_image.link_ver .item:hover .post_list {
  transform: translate3d(0, 0, 0);
}

.design-content .shutter_image.link_ver .post_list a {
  font-size: 18px;
  color: #fff;
  height: 60px;
  line-height: 60px;
  padding: 0 70px 0 30px;
  display: block;
  text-decoration: none;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
}

.design-content .shutter_image.link_ver .post_list a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}

/* Text Animations */
.design-content .design_header .large_headline span,
.design-content .design_header .sub_title span {
  transform: translate3d(0, 100%, 0);
  opacity: 0;
  display: inline-block;
  transition: transform 0.7s ease, opacity 0.9s ease;
}

.design-content .design_header .sub_title span {
  transition: transform 0.7s ease 0.3s, opacity 0.9s ease 0.3s;
}

.design-content .design_header.animate .large_headline span,
.design-content .design_header.animate .sub_title span {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.design-content .design_header .desc {
  opacity: 0;
  transition: opacity 1s ease 0.2s;
}

.design-content .design_header.animate .desc {
  opacity: 1;
}

/* Arrow Button */
.design-content .design_arrow_button,
.design-content .cb_design_arrow_button {
  text-align: right;
  margin-bottom: 50px;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 100px;
  margin-top: 60px;
}

.design-content .design_arrow_button a {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 18px;
  color: #000;
  text-decoration: none !important;
}

.design-content .design_arrow_button a .label {
  margin-right: 20px;
}

.design-content .arrow_button {
  display: block;
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.design-content .arrow_button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.design-content .design_arrow_button a:hover .arrow_button {
  transform: scale(1.1);
}

/* Responsive Styles */
@media screen and (max-width: 1100px) {
  .design-content .design_header,
  .design-content .cb_design_header {
    display: block;
    padding: 0 40px;
  }

  .design-content .design_header .title_area {
    width: auto;
    padding-right: 0;
  }

  .design-content .design_header .desc {
    width: auto;
    padding-left: 0;
    margin-top: 50px;
  }

  .design-content .item_list {
    padding: 0 40px;
  }

  .design-content .design_arrow_button,
  .design-content .cb_design_arrow_button {
    padding: 0 40px;
  }
}

@media screen and (max-width: 800px) {
  .design-content {
    padding: 40px 0;
  }

  .design-content .design_header,
  .design-content .cb_design_header {
    margin-bottom: 35px;
    margin-top: 0;
    padding: 0 20px;
  }

  .design-content .large_headline {
    font-size: 2.5rem;
  }

  .design-content .sub_title.colored {
    font-size: 16px;
    margin-top: 7px;
    margin-bottom: 0;
  }

  .design-content .design_header .desc {
    margin-top: 30px;
    line-height: 2;
  }

  .design-content .design_header .desc.mobile {
    display: block;
  }

  .design-content .design_header .desc.pc {
    display: none;
  }

  .design-content .item_list {
    padding: 0 20px;
  }

  .design-content .shutter_image {
    margin-bottom: 35px !important;
    margin-left: -20px;
    margin-right: -20px;
  }

  .design-content .shutter_image.vertical {
    display: block;
    margin-right: 0;
    margin-left: 0;
  }

  .design-content .shutter_image.vertical .item {
    width: 100% !important;
    margin: 0 0 3px 0;
  }

  .design-content .design_arrow_button,
  .design-content .cb_design_arrow_button {
    padding: 0 20px;
    margin-top: 40px;
  }

  .design-content .design_arrow_button a {
    font-size: 16px;
    width: 100%;
    justify-content: flex-end;
  }

  .design-content .design_arrow_button a .label {
    margin-right: 20px;
    max-width: calc(100% - 70px);
    line-height: 1.4;
  }

  .design-content .shutter_image.link_ver .headline {
    padding: 20px 25px;
    font-size: 18px;
  }

  .design-content .shutter_image.link_ver .post_list a {
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    padding: 0 50px 0 20px;
  }

  .design-content .shutter_image.link_ver .post_list a:after {
    right: 20px;
  }
}

/* ▲▲▲ プラン一覧_デザインヘッダー ▲▲▲ */

/* ▼▼▼ プラン一覧_メインスタイル ▼▼▼ */
/* swellテーマリセット ▼▼▼ */
.design_plan_list_wrap
  h2:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)),
.design_plan_list_wrap
  h2:where(
    :not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)
  )::before,
.design_plan_list_wrap
  h3:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)),
.design_plan_list_wrap
  h3:where(
    :not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)
  )::before {
  all: unset;
}

/* swellテーマリセット ▲▲▲ */

/* プラン一覧メインスタイル */
.design_plan_list_wrap {
  margin: 0 0 70px 0;
  position: relative;
  padding: 40px 0;
  background-color: var(--plan-bg-color, #ffffff);
  color: var(--plan-text-color, #222222);
}

.design_plan_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.design_plan_list .list {
  margin: 0;
  z-index: 1;
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.design_plan_list .list.active:before {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
  border: 4px solid var(--plan-active-color, #007cba);
  z-index: 5;
  pointer-events: none;
  border-radius: 10px;
}

.design_plan_list .list.active {
  background: var(--plan-active-color, #007cba);
  z-index: 2;
}

.design_plan_list .list.active + .list.active {
  margin-left: -3px;
  width: calc(100% / 3 + 2px);
}

.design_plan_list .col {
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 40px;
}

.design_plan_list .col:first-child {
  border-top: 1px solid #ddd;
}

.design_plan_list .list:first-of-type .col {
  border-left: 1px solid #ddd;
}

.design_plan_list .top {
  background: #fff;
  color: var(--plan-text-color, #222222);
}

.design_plan_list .top.active {
  background: var(--plan-active-color, #007cba);
  color: var(--plan-active-text-color, #ffffff);
}

.design_plan_list .top .headline {
  text-align: center;
  font-size: 20px;
  line-height: 1;
  margin: -2px 0 23px 0;
  padding: 0;
  font-weight: 600;
}

.design_plan_list .top .price {
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

.design_plan_list .top .price .num {
  font-family: "Arial";
  font-size: 50px;
}

.design_plan_list .top .price .unit {
  font-size: 20px;
  margin: 0 0 0 5px;
}

.design_plan_list .top .desc {
  margin: 25px 0 0 0;
  padding: 0;
  line-height: 2;
}

.design_plan_list .top .button {
  height: 70px;
  line-height: 1.4;
  color: #fff;
  background: var(--plan-active-color, #007cba);
  display: table;
  border-radius: 70px;
  margin: 30px auto 0;
  text-decoration: none;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: background-color 0.25s ease;
}

.design_plan_list .top .button:hover {
  background: var(--plan-active-color, #007cba);
  opacity: 0.8;
}

.design_plan_list .col:not(.top) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px 40px;
  align-items: center;
}

.design_plan_list .col:not(.top) p {
  margin: 0;
  line-height: 1.9;
}

.design_plan_list .col:not(.top) .label {
  font-weight: 500;
}

.design_plan_list .col:not(.top) .num {
  font-weight: 600;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1200px) {
  .design_plan_list .col {
    padding: 30px;
  }

  .design_plan_list .top .headline {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .design_plan_list .top .price .num {
    font-size: 42px;
  }

  .design_plan_list .top .price .unit {
    font-size: 18px;
    margin: 0px;
  }

  .design_plan_list .top .desc {
    font-size: 14px;
    margin: 20px 0 0 0;
  }

  .design_plan_list .top .button {
    height: 50px;
    font-size: 14px;
    border-radius: 50px;
    margin-top: 25px;
  }

  .design_plan_list .col:not(.top) {
    padding: 15px 30px;
    font-size: 14px;
  }
}

@media screen and (max-width: 1000px) {
  .design_plan_list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
  }
}

@media screen and (max-width: 800px) {
  .design_plan_list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 20px;
  }

  .design_plan_list .col:not(.top) {
    padding: 11px 30px;
    min-height: 51px;
  }
}

/* ▲▲▲ プラン一覧_メインスタイル ▲▲▲ */


.custom-section h2 {
    font-weight: 800 !important;
	position: relative;
}

.custom-section h2 { position: relative; }

.custom-section h2.headline::before{
  content: "" !important; /* これが無いと描画されない */
  display: block !important;
  position: absolute !important;
  top: 40% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 10 !important;
  font-size: 16px !important;
  color: /*#98B9C1*/ #000 !important;
  letter-spacing: 0.9rem !important;
  mix-blend-mode: difference;
  width: 100px;
  height: 20px;
}
.swell-block-fullWide:nth-child(1 of .swell-block-fullWide:has(.custom-section .headline))
 .custom-section h2::before{
  content: "選ばれる理由" !important;
}
.swell-block-fullWide:nth-child(2 of .swell-block-fullWide:has(.custom-section .headline))
 .custom-section h2::before{
  content: "サービス" !important;
}
.swell-block-fullWide:nth-child(3 of .swell-block-fullWide:has(.custom-section .headline))
 .custom-section h2::before{
  content: "制作実績" !important;
}
.swell-block-fullWide:nth-child(4 of .swell-block-fullWide:has(.custom-section .headline))
 .custom-section h2::before{
  content: "料　金" !important;
}
.swell-block-fullWide:nth-child(5 of .swell-block-fullWide:has(.custom-section .headline))
 .custom-section h2::before{
  content: "お客様の声" !important;
}
.swell-block-fullWide:nth-child(6 of .swell-block-fullWide:has(.custom-section .headline))
 .custom-section h2::before{
  content: "ニュース" !important;
}
