/****************************************
* main.css :ヘッダー、フッター レイアウトの役割
* ヘッダー、フッターのデザイン、共通適用レイアウト add tamashiro
***************************************/
/* 基本カラー */
:root {
  /* color */

  /* brand */
  --primary-color : #0020C3;
  --secondary-color : #42444C;
  
  /* text */
  --color-text: #222222;
  --color-text-light: #666666;
  --color-text-white: #ffffff;
  --color-text-gray:#42444C;

  /* background */
  --color-bg: #ffffff;
  --color-bg-gray: #f7f7f7;
  --color-bg-dark: #42444C;
  --color-bg-gray1: #EDF4FD;
  --color-bg-contact:#EDF4FD;

  /* gradation */
  --color-grad1: #2e5eb4;
  --color-grad2: #4b8ee4;

  /* dot */
  --dot-color:#ccc;

  /* contact */ 
   /*bg text */
  --contact-bg-text:#a1abea;
  /* line */
  --contact-line:#949DB1;

}

/* トップページ (layout) */
.l-inner{
  max-width: 1030px; /* レイアウト最大値 */
  margin: 80px auto 160px; /* 中央配置（配置ルール） */
}

/* ヘッダー */
/* ロゴは共通で使いまわし */
.l-header {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* 上段 */
.l-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 150px;
    background: #fff;
}

#header_logo img {
    height: 64px;
}

.l-header-top_right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.c-btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: opacity .2s;
}

.c-btn-contact::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 33px;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border-left: 7px solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    transition: border-color 0.5s cubic-bezier(0, 0, 0, 1);
}

.c-btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #06c755;
    color: #fff;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: opacity .2s;
}

.c-btn-line::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 33px;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border-left: 7px solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    transition: border-color 0.5s cubic-bezier(0, 0, 0, 1);
}

.c-btn-line:hover {
    opacity: .8;
}

.l-header-tel {
    width: 220px;
    text-align: right;
}

.l-header-tel_number {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D91534;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    line-height: 1;
}

.l-header-tel_icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #1F4C81;
    border-radius: 50%;
}

.l-header-tel_hours {
    font-size: 12px;
    color: #fff;
    margin-top: 2px;
    background-color: #D91534;
    border-radius: 50px;
    text-align: center;
    padding: 4px;
}

/* 下段ナビ */
.l-header-nav {
    background: #0020C3;
}

.l-header_menu_list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.l-header_menu_list_item {
    position: relative;
}

.l-header_menu_link {
    display: block;
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
    cursor: pointer;
}

.l-header_menu_list_item:hover .l-header_menu_link {
    background: rgba(255, 255, 255, 0.1);
}

.l-header_sub_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.l-header_menu_list_item:hover .l-header_sub_menu {
    display: block;
}

.l-header_sub_menu_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.l-header_sub_menu_list_item {
    border-bottom: 0.5px solid #e2e8f0;
}

.l-header_sub_menu_list_item:last-child {
    border-bottom: none;
}

.l-header_sub_menu_list_item a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    text-decoration: none;
}

.l-header_sub_menu_list_item-title {
    padding: 10px 20px 4px;
    font-size: 15px;
    font-weight: bold;
    color: #999;
}

.l-header_sub_menu_list_item--facility,
.l-header_sub_menu_list_item-title--facility {
    background: #f0f5ff;
}

.l-header_sub_menu_list_item-title--facility,
.l-header_sub_menu_list_item--facility a {
    color: #1e40af;
}

.l-header_sub_menu_list_item--facility a:hover {
    background: #dbeafe;
}

.l-header_sub_menu_list_item--reform-small,
.l-header_sub_menu_list_item-title--reform-small {
    background: #f0fdf9;
}

.l-header_sub_menu_list_item-title--reform-small,
.l-header_sub_menu_list_item--reform-small a {
    color: #0f6e56;
}

.l-header_sub_menu_list_item--reform-small a:hover {
    background: #ccfbf1;
}

.l-header_sub_menu_list_item--reform,
.l-header_sub_menu_list_item-title--reform {
    background: #fbcfe8;
}

.l-header_sub_menu_list_item-title--reform,
.l-header_sub_menu_list_item--reform a {
    color: #9d174d;
}

.l-header_sub_menu_list_item--reform a:hover {
    background: #f9a8d4;
}

.l-header_sub_menu.l-header_sub_menu--company {
    background: #f0f5ff;
}

.l-header_sub_menu.l-header_sub_menu--company .l-header_sub_menu_list_item a {
    color: #1e40af;
}

.l-header_sub_menu.l-header_sub_menu--company .l-header_sub_menu_list_item a:hover {
    background: #bfdbfe;
}

/* menu は commonとしてパーツ化、commonへ移植  tamashiro */

/* トップページ---header */
/* 一旦すべてにl-の接頭辞を追加しています。
 * projectへ移植か迷いましたが、ここもヘッダーとして一旦残してます。tamashiro */
.l-mv_wrapper {
  width: 100%;
  height: 100vh;
}

/* トップページ---MV */
.l-header_contents_inner {
  padding: 0;
}

.l-header-contents_side_slider_wrapper {
  width: 100%;
  height: 77vh;
  position: relative;
  overflow: hidden;
}

.l-header-contents_side_slider {
  height: 100%;
}

.slick-slider {
  position: relative;
  margin: 0;
  height: 100%;
}

.slick-list {
  height: 100%;
}

.slick-track {
  height: 100%;
}

.slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-header_contents_list {
  position: absolute;
  top: 30%;
  left: 32%;
  transform: translateX(-50%);
  display: flex;
}

.l-header_contents_item_phrase {
  width: 85%;
}

.l-header_contents_phrase_text {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0.1rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.l-header_contents_phrase_text_space {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.l-header_contents_sub_text{
  color: var(--color-text);
  width: 70%;
}

.l-header_contents_phrase_text:last-child {
  margin-bottom: 3rem;
}

.l-header_contents_img01{
  width: 50vw;
  position: absolute;
  bottom: -80px;
  right: -300px;
  display: flex;
}


.l-header_contents_char-2_1 {
  position: absolute;
  bottom: -3vh;
  left: 9%;
  width: 140px;
}

.l-header_contents_btn_list {
  display: flex;
  justify-content: end;
  gap: 2.5rem;
  position: absolute;
  bottom: 10%;
  right: calc((100% - 1080px) / 2);
}

.c-btn-header {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-grad-tmplate);
  border-radius: 50%;
  width: 180px;
  height: 180px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  z-index: 101;
  transition: background 0.3s, border-radius 0.3s, width 0.3s, 
              height 0.3s, transform 0.3s, padding 0.3s;
}

.c-btn-header:hover {
  background: var(--color-bg);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.l-header.scrolled .c-btn-header {
  position: static;
  transform: none;
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 31px 20px;
}

.l-header.scrolled .c-btn-header:hover {
  background: var(--color-bg);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

body:not(.home) .c-btn-header {
  position: static;
  transform: none;
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 31px 20px;
}

/* menu は commonとしてパーツ化、commonへ移植  tamashiro */

/* トップページ---header */
/* 一旦すべてにl-の接頭辞を追加しています。
 * projectへ移植か迷いましたが、ここもヘッダーとして一旦残してます。tamashiro */
.l-mv_wrapper {
  width: 100%;
  height: 100vh;
}

/* トップページ---MV */
.l-header_contents_inner {
  padding: 0;
}

.l-header-contents_side_slider_wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.l-header-contents_side_slider {
  height: 100%;
  padding-top: 90px;
}

/* slickは野口建設では利用していないが、commonへ移植 tamashiro */
.slick-slider {
  position: relative;
  margin: 0;
  height: 100%;
}

.slick-list {
  height: 100%;
}

.slick-track {
  height: 100%;
}

.slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-header_contents_list {
  position: absolute;
  top: 30%;
  left: 32%;
  transform: translateX(-50%);
  display: flex;
}

.l-header_contents_item_phrase {
  width: 85%;
}

.l-header_contents_phrase_text {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0.1rem;
  color: var(--primary-color);
  /* font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif; */
  margin-bottom: 3rem;
}

.l-header_contents_phrase_text_space {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.l-header_contents_sub_text{
  color: var(--color-text);
  width: 70%;
}

/* .l-header_contents_phrase_text-red {
  font-size: 64px;
  color: #E6001F;
} */

.l-header_contents_phrase_text:last-child {
  margin-bottom: 3rem;
}

.l-header_contents_img01{
  width: 50vw;
  position: absolute;
  bottom: -80px;
  right: -300px;
  display: flex;
}

.l-header_contents_img02{
  width: 700px;
  max-width: 100%;
  position: absolute;
  top: -70px;
  right: -520px;
}


.l-header_contents_char-2_1 {
  position: absolute;
  bottom: -3vh;
  left: 9%;
  width: 140px;
}

.l-header_contents_btn_list {
  display: flex;
  justify-content: end;
  gap: 2.5rem;
  position: absolute;
  bottom: 10%;
  right: calc((100% - 1080px) / 2);
}

/* フッター */
.l-footer{
  position: relative;
}

.l-footer__inner {
  padding: 4rem clamp(3rem, 5vw, 10rem) 2rem clamp(3rem, 5vw, 10rem);
  background-color: var(--color-bg);
}

.l-footer__info {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(2rem, 3vw, 6rem);
  -moz-column-gap: clamp(2rem, 3vw, 6rem);;
  column-gap: 6rem;
}

.l-footer__info-logo{
  grid-row: 1;
  grid-column: 1 / 2;
  padding: 0;
}

.l-footer__info-logo-link{
  width: 16rem;
  margin: 0 auto;
}

.l-footer__info-logo-link img{
  width: 100%;
}

.l-footer__info-nav {
  grid-column: 2 / 3;
}

.l-footer__info-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 4rem);
  width: 100%;
}

/* 左グループ（列1〜3）*/
.l-footer__info-nav-group-left {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: clamp(0rem, 1vw, 2rem);
}

/* 左グループ内のグリッド */
.l-footer__info-nav-subgrid {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: minmax(80px, auto) minmax(90px, auto) minmax(140px, auto);
  row-gap: 2rem;
  column-gap: clamp(1rem, 2vw, 4rem);
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: start;
}

.l-footer__info-nav-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.3rem;
}

.l-footer__info-nav-item-sub {
  display: flex;
  flex-direction: column;
  align-items: end;
  padding: 0.3rem;
  padding-left: 3rem;
}

/* 列1：トップページ */
.l-footer__info-nav-item-home {
  grid-row: 1 / span 1;
  grid-column: 1 / span 1;
}

/* 列2：会社案内（行1） */
.l-footer__info-nav-item[data-col="1"] {
  grid-row: 1 / 2;
  grid-column: 2 / span 1;
}

/* 列2：サービス（行2） */
.l-footer__info-nav-item[data-col="2"] {
  grid-row: 2 / 3;
  grid-column: 2 / span 1;
}

/* 列3：施工実績 */
.l-footer__info-nav-item[data-col="3"] {
  grid-row: 1 / -1;
  grid-column: 3 / span 1;
}

/* 右グループ：施工の流れ〜採用フォーム */
.l-footer__info-nav-item-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.3rem;
  list-style: none;
}

/* .l-footer__info-nav-item-partner{
  grid-row: 1 / span 1;
  grid-column: 4 / span 1;
}

.l-footer__info-nav-item-faq{
  grid-row: 2 / span 1;
  grid-column: 4 / span 1;
}

.l-footer__info-nav-item-news{
  grid-row: 3 / span 1;
  grid-column: 4 / span 1;
}

.l-footer__info-nav-item-contact{
  grid-row: 4 / span 1;
  grid-column: 4 / span 1;
}

.l-footer__info-nav-item-works{
  grid-row: 5 / span 1;
  grid-column: 4 / span 1;
} */

.l-footer__info-nav-item-link {
  position: relative;
  display: inline-block;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.l-footer__info-nav-item-link:hover {
  color: var(--color-grad2);
  transition: all .5s cubic-bezier(0, 0, 0, 1);
}

.l-footer__info-nav-item-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.4;
  color: var(--primary-color);
  font-weight: bold;
}

.l-footer__info-nav-item-text-cat {
    margin-top: 12px;
    padding-left: 11px;
}

.l-footer__info-nav-item-text:hover{
  color: var(--color-grad2);
  transition: all .5s cubic-bezier(0, 0, 0, 1);
}

.l-footer__info-nav-item-sublist {
  position: relative;
  display: grid;
  padding-left: 1rem;
  margin-top: 1rem;
}

.l-footer__info-nav-item-sublist::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  content: "";
  background-color: var(--contact-line);
}

.l-footer__info-nav-item-sublist-sub {
  position: relative;
  display: grid;
  margin-top: 1rem;
  padding-left: 24px;
}

.l-footer__info-nav-item-sublist-sub::before {
  position: absolute;
  top: 0;
  left: 12px;
  width: 1px;
  height: 100%;
  content: "";
  background-color: var(--contact-line);
}

.l-footer__address {
  position: relative;
  z-index: 1;
  grid-row: 1;
  grid-column: 1 / 2;
  margin-top: 77px;
}

.l-footer__address_text {
  font-size: clamp(12px, 1vw, 14px);
  /* font-weight: bold; */
  line-height: 1.4;
  color: var(--primary-color);
}

.l-footer__info-bottom {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  grid-row: 2;
  grid-column: 1 / 3;
  align-items: center;
  justify-content: left;
  padding-top: 2rem;
  margin-top: 8rem;
}

.l-footer__info-bottom::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--color-text);
}

.l-footer__info-bottom-copyright{
  font-size: 8px;
  color: var(--color-text);
  text-align: left;
}

.l-footer__top{
  flex-direction: row;
  right: 95px;
  bottom: 8rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.l_footer_pagetop_txt::after {
    position: absolute;
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    bottom: -13px;
    right: -60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    background-image: url('../img/common/top_toggle.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px auto;
}

.l_footer_pagetop_txt{
  position: relative;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1rem;
}

.l-footer__privacypolicy{
  font-size: clamp(12px, 1vw, 14px);
  /* font-weight: bold; */
  line-height: 1.4;
  margin-top: 0.5rem;
  color: var(--primary-color);
}

/* include-footer-contact */
/* コンタクトフォームは、layoutにて記載しておくことにする */
.include-footer-contact {
  width: 100%;
  background-color: var(--color-bg-contact);
  padding-bottom: 8rem;
  margin-top: 8rem;
  box-sizing: border-box;
}

/* Contactの大見出し */
.include-footer-contact-head-en {
  font-size: 160px;
  font-weight: bold;
  color: var(--contact-bg-text);
  text-align: center;
  margin-bottom: -3rem;          /* 白いボックスと重ねる */
  position: relative;
  z-index: 0;
  opacity: 0.15;
}

/* 白いボックス */
.include-footer-contact-inner {
  max-width: 960px;
  margin: 0 auto;
  background: var(--color-bg);
  border-radius: 12px;
  padding: 40px 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

/* ボックス内の見出し */
.include-footer-contact-head {
  text-align: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 48px;
}

/* コンテンツの横並び */
.include-footer-contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.include-footer-contactwrap-inner{
  margin: 0 auto;
}

/* 電話エリア */
.include-footer-contact-tel {
  flex: 1;
  text-align: center;
  position: relative;
  padding-right: 40px;
}

.include-footer-contact-tel  .p-top_text{
  font-weight: 600;
  line-height: 1 !important;
}

.include-footer-contact-tel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  border-right: 5px dotted #ccc;
}

.tel-number {
  /* font-size: 2.2rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; */
  font-size: 45px;
  font-weight: bold;
}

.tel-icon{
  width: 8%;
}

.contact-time {
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}

/* ボタンエリア */
.include-footer-contact-btns {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 4rem;
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  padding: 15px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}

.c-btn--mail { 
  width: 300px;
  background-color: var(--primary-color);
}
.c-btn--line { 
  background-color: #39b54a;
  width: 300px;
}

/* サブページ共通 */

.kv-title {
  font-size: 62px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.kv-sub_title {
  font-size: 16px;
  margin-bottom: -1rem;
  font-weight: bold;
  color: var(--secondary-color);
}

/* ヘッダー */

#page_header {
  background: #fff;
  height: calc(90vh + 70px);
  padding-top: 70px;
}

#page_header .bg_image {
  width: 75%;
  height: 50%;
  position: absolute;
  top: 391px;
  right: 0px;
  left: auto;
  border-radius: 10px 0px 0px 10px;
}

#page_header_inner{
  width: 1030px;
  margin: 0 auto;
  z-index: 3;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  top: calc(32% + 70px);
}

.breadcrumbsWrap{
  width: 1030px;
  margin: 0 auto;
  z-index: 3;
  position: absolute;
  left: 50%;
  top: calc(20% + 70px);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: var(--primary-color);
  font-weight: bold;
  letter-spacing: 0.2em;
}

.breadcrumbs{
  display: flex;
  vertical-align: middle;
  line-height: 1.3;
}

.breadcrumbsWrap span {
  line-height: 1.3;
}

.breadcrumbsWrap a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1.2;
}

.breadcrumbsWrap a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.header_contents_img-sub{
  width: 33%;
  max-width: calc(100% - 32px);
  position: absolute;
  top: 145px;
  right: 0;
  display: flex;
  z-index: 200;
}

.header_contents_img-sub img{
  width: 100%;
  object-fit: cover;
}

#page_content {
    width: 1030px;
    margin: 0 auto;
    padding: 140px 0 150px;
}

.l-follow-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background:  var(--primary-color);
    z-index: 900;
}

.l-follow-bar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1150px;
    margin: 0 auto;
    padding: 6px 0;
    gap: 24px;
}

/* --- 電話情報ブロック（PC） --- */
.l-follow-bar_tel {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.l-follow-bar_tel_label {
    font-size: 13px;
    line-height: 1.3;
    flex-shrink: 0;
}

.l-follow-bar_tel_number {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
}

.l-follow-bar_tel_icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.l-follow-bar_tel_sub {
    font-size: 13px;
    line-height: 1.5;
    white-space: nowrap;
}

.l-follow-bar_tel_note {
    margin: 0;
}

.l-follow-bar_tel_hours {
    margin: 0;
    color: #cfd9e8;
    font-size: 12px;
}

/* --- ボタンエリア --- */
.l-follow-bar_btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.c-btn-followbar {
    width: 230px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    transition: opacity .2s;
}

.c-btn-followbar:hover {
    opacity: .8;
}

.c-btn-followbar--outline {
    background: #fff;
    color: var(--primary-color);
}

.c-btn-followbar--line {
    background: #06c755;
    color: #fff;
}

/* スマホ専用の電話ボタン（PCでは非表示） */
.c-btn-followbar--tel {
    display: none;
    background:  var(--primary-color);
    color: #fff;
    border: 1px solid #fff;
}

.c-btn-followbar_icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
}

/* --- スマホ表示：ボタンのみのシンプル構成 --- */
@media (max-width: 768px) {
    .l-follow-bar_tel {
        display: none;
    }

    .l-follow-bar_inner {
        padding: 8px 12px;
        gap: 0;
    }

    .l-follow-bar_btns {
        width: 100%;
        gap: 4px;
    }

    .c-btn-followbar {
        flex: 1;
        padding: 12px 4px;
        font-size: 12px;
        white-space: normal;
    }

    .c-btn-followbar--tel {
        display: inline-flex;
    }
}