@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/



/***ピンチズームを無効化：ページ全体*****************/
html, body {
  touch-action: manipulation;
}
/***ピンチズームを無効化*****************/

body {
  font-family: sans-serif !important;
  background-color: #fafafa !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

/*header関連設定*/
#header-container {
  background-color: #FAFAFA !important;
}

#navi {
  background-color: #FAFAFA !important;
}

.logo.logo-header.logo-text {
  background-color: #FAFAFA !important;
}

.logo.logo-header.logo-text .site-name-text {
  color: black !important; /*画面トップ：サイト名の文字色*/
}

#content {
  background-color: #FAFAFA;
  margin: 0; /*マージンのリセット*/
}

/*メインコンテナ設定*/
#main {
  background-color: #fafafa !important;/*メインコンテンツの箱*/
  border: 0 !important; /*メインボーダーのリセット*/
  padding: 0 !important; /*パディングのリセット*/
  margin: auto;
}

/*footer設定*/
#footer {
  background-color:#fafafa !important;
  width: 70%;
  margin: auto;
}

.wrap {
  width: auto !important;
}

#id_footer_alltext {
  width: 80%;
  height: 100%;
  margin: auto;
  background-color: #fafafa;
  font-size: 13px;
  margin-top: 20px;
}

#id_footer_detail_block {
  display: flex;
  align-items: center;
  margin: auto;
}

#id_footer_name {
  margin: 20px 0px;
}
#id_footer_detail_left {
  width: 65%;
  height: auto;
  margin: 10px 0px;
}
#id_footer_detail_right {
  width: 35%;
  height: auto;
  margin:10px 0px;
}
#id_footer_copyright {
  text-align: center;
  margin:20px 0px;
  font-weight: bold;
}


.source-org.copyright {
  color: black !important; /*footerのコピーライト文字色*/
}

/* === モーダル全体（背景オーバーレイ） === */
.catalog-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.catalog-modal-overlay.active {
  display: flex;
}

/* === モーダル本体 === */
.catalog-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* === モーダル内フォーム全体 === */
.catalog-modal-content form {
  display: flex;
  flex-direction: column;
}

/* === ボタン共通スタイル === */
.catalog-button {
  padding: 10px 20px;
  margin: 10px 5px 0 0;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background-color: #0073aa;
  color: #fff;
}

/* === 閉じるボタンだけ別色に（グレー） === */
.catalog-button.close {
  background-color: #ccc;
  color: #333;
}

/* === ボタン並び用のラッパー（横並び） === */
.catalog-modal-buttons {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 15px;
}



@media screen and (max-width: 834px) {
  #footer {
    width: 100%;
  }
  #id_footer_alltext {
    display: block;
    width: 70%;
    height: 150%;
    font-size: 11px;
    margin-top: 10px;
  }

  #id_footer_name {
    margin: 0px 0px;
  }
  #id_footer_detail_block {
    display: block;
    width: 100%;
    margin: auto;
  }
  #id_footer_detail_left {
    width: 100%;
    height: auto;
    margin: 10px 0px;
  }
  #id_footer_detail_right {
    width: 100%;
    height: auto;
    margin:10px 0px;
    margin-bottom: 20px;
  }
  #id_footer_copyright {
    height: 80px;
    text-align: center;
    margin:10px 0px;
    font-weight: bold;
  }
}


.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%; /* アイコンとテキストの間隔 */
  text-decoration: none;
  padding: 10px 20px;
  color: #333;
  font-size: 14px;
  transition: background-color 0.3s;
}

/*
.contact-button:hover {
  background-color: #e6b800;
  background-color: none;
}
*/
.icon {
  width: 15%; /* アイコンサイズ */
  height: auto;
}

/*ここまでがグローバル設定*/
/******************************************************************************************************************/


/************************************************/
/*最下層の背景色や子要素の基本を設定*/
/************************************************/
#id_main_body_layer {
  background-color: #FAFAFA;

}

/************************************************/
/*セクションの共通内容設定*/
/************************************************/
/* 全体のセクション設定 */
.cl_main_section_layer {
  width: 70%;
  height: 60vh;
  margin: 0 auto;
  background-color: #fafafa;
  border: 1px solid #f9f9f9;
/*  border-radius: 10px;*/
/*  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
  overflow: hidden;
}

/************************************************/
/*個別セクションの内容設定*/
/************************************************/
/*Section1***************************************/
/* 基本スタイル */
#id_main_section1_layer {
  display: flex;
  flex-direction: row;
  background-color: #fafafa;
  width: 70%;
  height: auto;
  margin: auto;
  gap: 10px;
}

/* 表題・セールスポイント共通設定 */
.cl_div_sec1_block {
  width: 50%;
  display: flex;
  flex-direction: column;
}

/* 表題部分の内側ブロック配置 */
#id_div1_sec1_topinnerblock {
  height: auto;
}
#id_div1_sec1_bottominnerblock {
  height: auto;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

/* 表題部ブロックの縦中央寄せ（PC用） */
@media (min-width: 769px) {
  #id_div1_sec1_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* 下ブロックの詳細情報の配置 */
#id_div_sec1_detail_fee, #id_div_sec1_detail_type {
  width: 50%;
  text-align: center;
}

/* セールスポイント内のブロック配置 */
#id_div2_sec1_topinnerblock {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* アイコンを左寄せ */
}

#id_div2_sec1_bottominnerblock {
  height: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* セールスポイント内のアイコンサイズ調整 */
#id_div_sec1_detail_icon img {
  max-width: 50px; /* アイコンの最大幅を50pxに制限 */
  height: auto;
  object-fit: contain;
}

/* セールスポイントのテキストボックス調整 */
#id_div_sec1_detail_salespoint {
  font-size: 13px;
  line-height: 1.5;
  padding: 10px;
  border: 2px solid rgba(200, 200, 200, 0.3);
  border-radius: 10px;
  flex-grow: 1;
}

/* 表題の文字調整 */
#id_div_sec1_detail_name {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

/* レスポンシブ対応 */
@media (max-width: 834px) {
  #id_main_section1_layer {
    flex-direction: column;
    width: 100%;
  }

  .cl_div_sec1_block {
    width: 100%;
  }

  #id_div1_sec1_bottominnerblock {
    flex-direction: row;
    justify-content: space-evenly;
  }

  #id_div2_sec1_bottominnerblock {
    flex-direction: row;
    justify-content: space-evenly;
  }

  #id_div2_sec1_topinnerblock {
    justify-content: flex-start; /* スマホでもアイコンを左寄せ */
  }
  #id_div_sec1_detail_salespoint {
    font-size: 11px;
  }
  .icon {
    width: 10%; /* アイコンサイズ */
  }
}

@media (max-width: 480px) {
  #id_main_section1_layer {
    padding: 10px;
  }

  #id_div_sec1_detail_name {
    font-size: 20px;
  }

  #id_div_sec1_detail_fee, #id_div_sec1_detail_type {
    font-size: 14px;
  }

  #id_div_sec1_detail_salespoint {
    font-size: 14px;
    padding: 5px;
  }
  .icon {
    width: 12%; /* アイコンサイズ */
  }
}



/*Section1***************************************/


/*Section2***************************************/
#id_main_section2_layer {
  display: flex;
  background-color: #FAFAFA;
  margin: auto;
  width: 70%;
  height: 75vh;
}
/*Section2 div各ブロック共通設定*/
.cl_div_sec2_block {
  width: 50%;
  height: 100%;
}

#id_div1_sec2_block {
  margin-right: 3px;
}


/* サムネイルスライダーの設定 */
/* メインスライダーコンテナ */
.swiper-container {
  width: 100%;
  height: 80%;
  margin: 0 auto; /* 中央寄せ */
  overflow: hidden; /* スライダー外のコンテンツを非表示にする */
  position: relative; /* 矢印ボタンの基準位置を設定 */
}
/* サムネイルコンテナ */
.swiper-container-thumb {
  height: 18%;
  margin-top: 0; /* メインスライダーとの間隔 */
  overflow: hidden; /* スクロール部分を隠す */
}


/* メインスライダーのスタイル */
.swiper-container .swiper-wrapper {
  height: 100%; /* メインスライダーの高さ */
  display: flex; /* スライダー要素を横並びにする */
  transition: transform 0.3s ease; /* スライド切り替えのアニメーション */
  margin: 0; /*マージンのリセット*/
  padding: 0; /*パディングのリセット*/
}

.swiper-container .swiper-slide {
  flex-shrink: 0; /* スライダーのサイズを固定 */
  width: 100%; /* 各スライドがコンテナ幅いっぱいになるように */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa; /* 背景色 */
  border: 1px solid #000; /* スライダーの枠線 */
  border-radius: 10px; /* 角丸 */
  overflow: hidden; /* 画像がはみ出ないようにする */
}

.swiper-container .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover; /* 画像を枠にフィットさせる */
}



.swiper-container-thumb .swiper-wrapper {
  height: 100%; /* サムネイルの高さ */
  margin: 0; /*マージンのリセット*/
  padding: 0; /*パディングのリセット*/
  display: flex; /* サムネイルを横並びにする */
  transition: transform 0.3s ease; /* スライド切り替えのアニメーション */
  align-items: center;
}

.swiper-container-thumb .swiper-slide {
  flex-shrink: 0; /* サムネイルのサイズを固定 */
  width: 20% !important; /* サムネイルの幅 */
  height: auto; /* サムネイルの高さを設定 */
  margin-right: 0px !important; /* サムネイル間のスペース */
  border: 2px solid transparent; /* 選択されていないときの枠線 */
  border-radius: 5px; /* 角丸 */
  overflow: hidden; /* 画像がはみ出ないようにする */
  cursor: pointer; /* クリック可能を示すカーソル */
  transition: border-color 0.3s ease; /* 枠線の色をスムーズに変更 */
  display: flex;
  align-items: center;
}

.swiper-container-thumb .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover; /* サムネイル画像のサイズ調整 */
}

/* 選択中のサムネイルのスタイル */
.swiper-container-thumb .swiper-slide.swiper-slide-thumb-active {
  background-color: #ccc;
  border-color: #f1f1f1; /* 選択時の枠線色 */
}

/* 矢印ボタンのスタイル */
.swiper-button-prev,
.swiper-button-next {
  background: none; /* 背景を削除 */
  border: none; /* 枠線を削除 */
  width: 60px; /* ボタン全体の幅（大きさを調整） */
  height: 60px; /* ボタン全体の高さ（大きさを調整） */
  position: absolute; /* スライダー内で絶対位置を指定 */
  top: 50%; /* 垂直方向の中央 */
  transform: translateY(-50%); /* 矢印を上下中央揃え */
  z-index: 10; /* スライダーより前面に表示 */
  cursor: pointer; /* ポインタ表示 */
  display: flex; /* 矢印を中央揃え */
  align-items: center;
  justify-content: center;
}

/* 左矢印（〈 の形） */
.swiper-button-prev::before {
  content: '';
  display: block;
  width: 20px; /* 矢印の幅を拡大 */
  height: 20px; /* 矢印の高さを拡大 */
  border-left: 4px solid #fff; /* 左側の線（白色に変更） */
  border-top: 4px solid #fff; /* 上側の線（白色に変更） */
  transform: rotate(-45deg); /* 矢印の向きを調整 */
}

/* 右矢印（〉 の形） */
.swiper-button-next::before {
  content: '';
  display: block;
  width: 20px; /* 矢印の幅を拡大 */
  height: 20px; /* 矢印の高さを拡大 */
  border-right: 4px solid #fff; /* 右側の線（白色に変更） */
  border-top: 4px solid #fff; /* 上側の線（白色に変更） */
  transform: rotate(45deg); /* 矢印の向きを調整 */
}

/* 左矢印の位置 */
.swiper-button-prev {
  left: 20px; /* スライダーの左端に配置 */
}

/* 右矢印の位置 */
.swiper-button-next {
  right: 20px; /* スライダーの右端に配置 */
}

/* ホバー時の色変更 */
.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
  border-color: #ffcc00; /* ホバー時に色を黄色に変更 */
}

/* サムネイルの枠線スタイル */
.swiper-container-thumb .swiper-slide.active-thumb {
  border: 5px solid #f1f1f1; /* 枠線の色を設定 */
  border-radius: 5px; /* 角丸 */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* 視覚効果として影を追加 */
  transition: border-color 0.3s ease; /* 枠線の色をスムーズに変更 */
}


/*右：物件概要の設定*/
/*Section2右内の個別ブロック設定*/
#id_div_sec2_detail_tab {
  width: 100%;
  height: 15%;
  display: flex;
  align-items: end;
  justify-content: left;
}
#id_div_sec2_detail_about {
  width: 100%;
  height: 85%;
/*  overflow: scroll;*/
}

/*タブボタン風ブロック*/
#id_div_sec2_detail_tabblock {
  border-left: 5px solid #f1f1f1; /* 左側の枠線 */
  border-top: 5px solid #f1f1f1;  /* 上側の枠線 */
  border-right: 5px solid #f1f1f1; /* 右側の枠線 */
  border-bottom: none; /* 下側は枠線なし */
  border-radius: 7px 7px 0 0;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  width: 25%;
  height: 80%;
  display: none;
}

#id_div_sec2_detail_tabblock p {
  font-size: 15px;
}

/*CTA用ブロック*/
#id_div_sec2_detail_ctabutton {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

#id_div_sec2_detail_ctabutton a {
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #000;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
  background-color: #ebf6f7;
  width: 80%;
  height: 60%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*概要情報テーブル*/
/* テーブル全体のスタイル */
.custom-table {
  width: 100%;
  height: 95%;
  border-collapse: collapse; /* セルの隙間をなくす */
  border-left: 0.5px solid #f7f7f7 !important;
  border-right: 0.5px solid #f7f7f7 !important;
  border-bottom: 0.5px solid #f7f7f7 !important;
  border-top: 5px solid #f1f1f1 !important;
}

/* 各セルのスタイル */
.custom-table td {
  border: 0.5px solid rgba(0, 0, 0, 0.1) !important; /* 黒の透明度10%の枠線 */
  padding: 10px; /* セル内の余白 */
  text-align: left;
}

/* 1列目の背景色を薄いグレーに設定 */
.custom-table .description {
  width: 40%;
  background-color: #f9f9f9;
  font-weight: bold; /* 太字にする（任意） */
  padding-left: 10px;
  font-size: 15px;
}

/* 2列目の内容のスタイル */
.custom-table .content {
  width: 60%;
  background-color: #fff; /* 白背景（任意） */
  padding-left: 10px;
  font-size: 15px;
}

a {
  text-decoration: none;
}

/*
@media screen and (max-width: 1025px) {
  #id_main_section2_layer {
    height: 30vh;
  }
  .cl_main_section_layer {
    height: 30vh;
  }
}
*/



@media screen and (max-width: 834px) {
  #id_main_section2_layer {
    display: block; /* フレックスを解除して縦並びにする */
    width: 100%; /* コンテンツ幅をスマホ幅に合わせる */
    height: auto; /* 高さを自動調整 */
    padding: 10px; /* スペースを追加して見やすくする */
  }

  /* 各ブロックの設定 */
  .cl_div_sec2_block {
    width: 100%; /* ブロックを幅いっぱいに広げる */
    height: auto; /* 高さを自動調整 */
    margin-bottom: 20px; /* ブロック間のスペースを設定 */
  }

  /* スライドエリアの高さ調整 */
  #id_div1_sec2_block {
    height: auto; /* 自動調整 */
  }

  /* サムネイルスライダーの高さ調整 */
  .swiper-container-thumb {
    height: auto; /* サムネイルをコンパクトに表示 */
  }

  /* 概要エリアの設定 */
  #id_div2_sec2_block {
    padding: 10px; /* 概要エリアに余白を追加 */
    background-color: #fefefe; /* 背景色を設定 */
    border-radius: 10px; /* 角丸にする */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* 軽い影を追加 */
  }

  /* タブ部分の調整 */
  #id_div_sec2_detail_tab {
    flex-direction: column; /* スマホでは縦並びにする */
    align-items: flex-start; /* 左寄せ */
    height: auto; /* 高さ自動調整 */
    margin-bottom: 10px; /* 下に余白を追加 */
  }

  #id_div_sec2_detail_tabblock {
    width: 100%; /* 幅を広げる */
    height: auto; /* 高さ自動調整 */
    font-size: 14px; /* フォントサイズを調整 */
    padding: 5px 10px; /* 内側余白を調整 */
    border: 2px solid #f1f1f1;
    border-radius: 5px;
  }

  #id_div_sec2_detail_ctabutton {
    width: 100%; /* 幅を広げる */
    height: auto; /* 高さ自動調整 */
    text-align: center; /* テキストを中央寄せ */
   }

  #id_div_sec2_detail_ctabutton a {
    font-size: 15px; /* フォントサイズを調整 */
    padding: 10px; /* ボタン内側の余白を調整 */
    width: 90%; /* ボタン幅を調整 */
    height: 40px;
    margin: 10px 0;
  }

  /* 概要情報テーブルの調整 */
  .custom-table {
    font-size: 14px; /* テキストサイズを調整 */
    border-radius: 10px; /* テーブル全体の角丸 */
  }

  .custom-table .description {
    font-size: 12px; /* ラベルのフォントサイズを縮小 */
  }

  .custom-table .content {
    font-size: 12px; /* 内容のフォントサイズを縮小 */
  }
}


/*Section2***************************************/


/*Section3***************************************/
/* CSS Styles */



#id_div1_sec3_block {
  width: 100%;
  height: 100%;
  margin: auto;
}

.cl_div_sec3_detail {
  margin: 5px;
}

/* タブ部分の設定 */
#id_div_sec3_detail_tab {
  display: flex;
  height: 20%;
  gap: 2px;
  padding-top: 10px;
  align-items: flex-end;
  background-color: #fafafa;
}

.tab {
  padding: 10px 10px;
  cursor: pointer;
  border-bottom: none;
  background-color: #fafafa;
  transition: background-color 0.3s, color 0.3s;
  border-left: 5px solid #f1f1f1;
  border-top: 5px solid #f1f1f1;
  border-right: 5px solid #f1f1f1;
  border-radius: 7px 7px 0 0;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 10%;
  height: 55%;
  line-height: 14px;
  color: #000;
}

.tab:hover {
  background-color: #f1f1f1;
  color: #000;
}

.tab.active {
  background-color: #f1f1f1;
  color: #000;
  /*box-shadow: none;*/
}

/* 詳細情報部分 */
#id_div_sec3_detail_about {
  height: 80%;
  overflow-y: auto;
  font-size: 13px;
  border-top: 7px solid #f1f1f1;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: flex;
  /*gap: 10px;*/
  padding: 10px;
  /*overflow-y:scroll;*/
}

.cl_tabcontent_detail_left,
.cl_tabcontent_detail_right {
  width: 50%;
}

.cl_tabcontent_detail_left table,
.cl_tabcontent_detail_right table {
  width: 100%;
  border-collapse: collapse;
}

.td_detail_left {
  background-color: #f4f4f4;
  padding: 5px;
  border: 1px solid #f9f9f9;
  width: 30%;
}

.td_detail_right {
  background-color: #fff;
  padding: 5px;
  border: 1px solid #f9f9f9;
  will-change: 70%;
}

table {
  width: 100%; /* テーブルの幅を設定 */
  border-collapse: collapse; /* 枠線の重なり部分を解消 */
  border: 1px solid #ccc; /* テーブル全体の外枠 */
}

#tab_custom_field_table tr {
  background-color: #fbfbfb !important;
}

.field-label {
  width: 15%;
}
.field-value {
  width: 35%;
}

/* テーブルセルのスタイル */
td, th {
  border: 1px solid #f7f7f7 !important; /* 各セルの枠線 */
  padding: 8px; /* セル内の余白 */
  text-align: left; /* 文字の配置 */
  vertical-align: middle; /* 縦方向の配置 */
}

#map,#vr {
width: 90%;
height: 90%;
margin: auto;
}

#tab_map_location {
  width: 100%;
  height: 100%;
}

#googleMapIframe {
  width: 100%;
  height: 100%;
}

/* レスポンシブ対応 */
@media screen and (max-width: 834px) {
  .cl_main_section_layer {
    width: 100%;
    height: auto;
  }
  #id_div1_sec3_block {
    width: 95%;
  }

  /* タブ部分の設定 */
#id_div_sec3_detail_tab {
  display: flex;
  height: 6vh;
  gap: 2px;
  padding-top: 10px;
  align-items: flex-end;
  background-color: #fafafa;
}
  .tab {
    width: 12%;
    height: 80%;
    padding: 4px 3px;
    font-size: 9px;
    line-height: 12px;
    border-bottom: none;
    background-color: #fafafa;
    transition: background-color 0.3s, color 0.3s;
    border-left: 3px solid #f1f1f1;
    border-top: 3px solid #f1f1f1;
    border-right: 3px solid #f1f1f1;
    border-radius: 5px 5px 2px 0;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
    color: #000;
  }

  .tab-content.active {
    flex-direction: column;
    gap: 0;
    padding: 0;
    overflow-y: auto;
  }

  .cl_tabcontent_detail_left,
  .cl_tabcontent_detail_right {
    width: 100%;
    margin-bottom: 0;
  }

  .cl_tabcontent_detail_left table,
  .cl_tabcontent_detail_right table {
    margin-bottom: 0;
    border-spacing: 0;
  }

  #id_div_sec3_detail_about {
    height: auto;
    overflow-y: auto;
    border-top: 7px solid #f1f1f1;
  }
  #map,#vr {
    width: 90%;
    height: 40vh;
    margin: auto;
    }
    #tab_map_location {
      width: 100%;
      height: 100%;
    }
    #googleMapIframe {
      width: 100%;
      height: 100%;
    }
}






/*Section3***************************************/

/*Section4***************************************/
/* 親要素のスタイル */
/* 親要素のスタイル */
#id_main_section4_layer {
  height: 10vh;
  margin: 20px auto;
  display: flex;
  align-items: center;
}

.cl_div1_sec4_block {
  width: 80%; /* PC用: 親要素の80% */
  height: 70%;
  display: flex;
  justify-content: space-between; /* 子要素を横方向に配置（PC用） */
  align-items: center;
  overflow: hidden; /* 子要素がはみ出さないように */
  margin: 0 auto; /* 中央寄せ */
  gap: 30%;
}

/* 子要素のスタイル */
.cl_div_sec4_block {
  width: 100%; /* PC用: 子要素の幅をgapに合わせ調整 */
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px; /* テキストサイズ */
  font-weight: bold;
  color: #333; /* 文字色 */
  cursor: pointer;
  transition: background-color 0.3s;
  border: 2px solid #000; /* 子要素の個別枠線 */
  border-radius: 5px;
  /*box-shadow: 3px 3px 3px rgba(0,0,0,0.5);*/
  
}
#id_div_sec4_formsend {
  background-color:#ebf6f7;
  padding: 5px 5px;
}
#id_div_sec4_telcall {
  background-color: #f8f4e6;
}

/*
.cl_div_sec4_block:hover {
  background-color: #f0f0f0;
}
*/

@media screen and (max-width:1025px) {
  .cl_div1_sec4_block {
    width: 90%; /* PC用: 親要素の80% */
    height: 60%;
    
  }
  #id_div_sec2_detail_ctabutton a {
    font-size: 16px;
  }
  .contact-button {
    font-size: 12px;
  }
}

/* 縦が長いディスプレイ（1280px以上）なら短くする */
@media screen and (min-height: 1280px) {
  #id_main_section2_layer {
    height: 30vh;
  }
  .cl_main_section_layer {
    height: 30vh;
  }
  .cl_div1_sec4_block {
    height: 40%;
    
  }
}

/* スマホ用スタイル */
@media screen and (max-width: 834px) {
  #id_main_section4_layer {
    height: 15vh;
  }
  .cl_div1_sec4_block {
      width: 95%; /* スマホ用: 親要素の95% */
      flex-direction: column; /* 子要素を縦方向に配置 */
      height: auto; /* 高さを自動調整 */
      gap: 20px; /* 縦の隙間を10pxに設定 */
      padding: 5px;
      margin: 10px;
    
  }

  .cl_div_sec4_block {
      width: 100%; /* スマホ用: 子要素を100%幅 */
      height: 40px; /* 固定高さ */
      font-size: 16px;
  }

  .cl_div_sec4_block p {
      font-size: 16px; /* スマホ用: 小さめの文字サイズ */
  }
}








@font-face {
  font-family: 'sans-serif'; /* 日本語用フォント */
  src: url('https://sumaizero.com/wp-content/themes/cocoon-child-master/fonts/Carat001.eot');
  src: url('https://sumaizero.com/wp-content/themes/cocoon-child-master/fonts/Carat001.eot?#iefix') format('embedded-opentype'),
       url('https://sumaizero.com/wp-content/themes/cocoon-child-master/fonts/Carat001.ttf') format('truetype');
       font-weight: bold; /* 太字 */
       font-style: normal; /* 通常のスタイル */
  unicode-range: U+3040-309F, U+30A0-30FF, U+4E00-9FFF; /* ひらがな、カタカナ、漢字 */
}

@font-face {
  font-family: 'sans-serif'; /* アルファベット・数字用フォント */
  src: url('https://sumaizero.com/wp-content/themes/cocoon-child-master/fonts/ContrailOne-Regular001.eot');
  src: url('https://sumaizero.com/wp-content/themes/cocoon-child-master/fonts/ContrailOne-Regular001.eot?#iefix') format('embedded-opentype'),
       url('https://sumaizero.com/wp-content/themes/cocoon-child-master/fonts/ContrailOne-Regular001.ttf') format('truetype');
       font-weight: bold; /* 太字 */
    font-style: normal; /* 通常のスタイル */
  unicode-range: U+0020-007F; /* 基本ラテン文字（英数字） */
}