body {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 999;
  /* overflow-x: hidden; */
}
/* =============================================
   common.css - 共通パーツ
   ============================================= */

/* コンテンツ幅 */
.inner {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

/* =============================================
   title_style - セクションタイトル共通
   ============================================= */
.title_style {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 560px;
  height:auto;
  margin: 0 auto 55px;
  padding: 20px 0px 30px;
  background-image: url("../img/title_style_bg.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}

@media screen and (max-width: 640px) {

.title_style {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 10px;
  font-size: 24px;
}

}

/* =============================================
   link_btn - CTAボタン共通
   ============================================= */
.link_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 90%;
  max-width: 419px;
  height: 77px;
  padding: 0 30px;
  border-radius: 38.5px;
  background-color: #b81c25;
  color: #fff;
  text-decoration: none;
  font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.link_btn:hover {
  opacity: 0.92;
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(184, 28, 37, 0.4);
}

.link_btn .btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #fff;
  flex-shrink: 0;
}

.link_btn .btn-arrow svg {
  display: block;
}



/* flexbox */
.row_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pc {
  display: block!important;
}
.sp {
  display: none!important;
}
@media screen and (max-width: 640px) {

	.pc {
		display: none!important;
	}
	.sp {
		display: block!important;
	}	
}

@media screen and (max-width: 640px) {
.link_btn {
  width: auto;
  height: 56px;
  padding: 12px 14px 12px 53px;
  border-radius: 38.5px;
  font-weight: 700;
  font-size: 20px;
}

}
/* =============================================
   header（ベースの記述：PC時は非表示にする）
   ============================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  margin: auto;
  padding: 20px 0 20px 30px;
  align-items: center;
/* ↓↓↓ ここを強化しました ↓↓↓ */
  background-color: rgba(255, 255, 255, 0); /* 最初は完全に透明な白 */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0);   /* 最初は影も透明 */
  
  /* 背景色、余白、影の変化を 0.5秒 かけて心地よく滑らかにする設定 */
  transition: 
    background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
    padding 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
    box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ★スクロールしたときにJSで付与されるクラス */
header.scrolled {
  background-color: #ffffff; /* 背景を白に */
  padding: 20px 0 15px 30px; /* スクロール時に少しヘッダーをスリムにする（お好みで） */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* 画面と馴染むように薄い影をつける */
}

header .hd_logo {
  width: 253px;
  margin: 0;
}

header .hd_logo img {
  display: block;
  width: 100%;
}

header .right_wrap {
  align-items: center;
}

/* ★PCでは非表示にする */
header .btn_container {
  display: none; /* 初期状態は非表示 */
}

/* ★PCでは非表示にする */
header .overlay {
  display: none; /* 初期状態は非表示 */
}


/* =============================================
   Responsive Media Queries
   ============================================= */

/* 中略（1450px, 1200px, 1070px のメディアクエリはそのまま） */


@media screen and (max-width: 840px) {
  header {
    padding: 0 0 0 20px;
    background-color: #ffffff;
  }
header.scrolled {
    padding: 0 0 0 40px;
  }

  header .hd_logo {
    width: 318px;
  }
  header .right_wrap {
    width: auto;
  }
  
  /* -----------------------------------
     ★スマホ（840px以下）になったら表示させる
     ----------------------------------- */
  header .btn_container {
    display: block; /* スマホで表示 */
    position: relative;
    z-index: 1000;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  header .btn_container .btn_wrapper {
    width: 50px;
    height: 40px;
    position: absolute;
    top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
  }
  header .btn_container .btn_wrapper span {
    display: block;
    background: #000;
    width: 100%;
    height: 4px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  header .btn_container .btn_wrapper span.ct {
    bottom: 0;
  }
  header .btn_container .btn_wrapper span.bm {
    top: auto;
    bottom: 0;
  }
  header .btn_container.active .btn_wrapper .tp {
    top: 7px;
    transform: translateY(11px) translateX(0) rotate(45deg);
  }
  header .btn_container.active .btn_wrapper .ct {
    opacity: 0;
  }
  header .btn_container.active .btn_wrapper .bm {
    top: 2px;
    transform: translateY(-1px) translateX(0) rotate(-45deg);
  }
  header .overlay {
    display: block;
    background: #FFFFFF;
    width: 100vw;
    min-height: 100svh;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    transition: opacity 0.3s, visibility 0.3s;
  }
  header .overlay.open {
    opacity: 1;
    visibility: visible;
  }
  header .overlay .overlay_menu {
    width: 90%;
    padding-bottom: 50px;
    margin:0  auto;
    position: relative;
    top: 50px;
    left: 0;
    right: 0;
  }
  header .global_menu {
    background: #f7f7f7;
    padding: 45px 0 50px;
  }
  header .global_menu .spmenu_ttl,
  header .main_menu,
  header .contact_box,
  header .sp_logo_box {
    width: 90%;
  }
  header .global_menu .spmenu_ttl {
    max-width: 217px;
    margin: 0 auto 30px;
  }
  header .global_menu .spmenu_ttl img {
    width: 100%;
  }
  header .main_menu {
    max-width: 320px;
    margin: 0 auto 50px;
    gap: 0;
  }
  header .main_menu li {
    width: 100%;
  }
  header .main_menu li a {
    display: block;
    position: relative;
    width: 100%;
    padding: 20px 30px 20px 0;
    font-size: 26px;
    font-weight: 600;
    border-bottom: 1px solid #ef8100;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
  }
  header .main_menu li a:hover {
    color: #ef8100;
  }
  header .main_menu li a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    background: url("/img/spmenu_arrow.svg") no-repeat center / contain;
  }

  /* ドロワー内問合せ */
  header .contact_box {
    max-width: 320px;
    margin: 0 auto;
  }
  header .contact_box .contact_ttl {
    position: relative;
    z-index: 1;
    max-width: 320px;
    margin: auto;
    padding: 20px 0;
    background: #007451;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    border-radius: 50px;
  }
  header .contact_box .contact_ttl::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    z-index: -1;
    margin: auto;
    width: 30px;
    height: 30px;
    background: #007451;
    transform: rotate(45deg);
  }
  header .contact_box .tel_box {
    width: 100%;
    margin: 40px 0 0;
  }
  header .contact_box .tel_box:first-of-type .store_name::after {
    width: 202px;
  }
  header .contact_box .tel_box:last-child .store_name::after {
    width: 220px;
  }
  header .contact_box .tel_box .store_name {
    position: relative;
    padding-left: 18px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  header .contact_box .tel_box .store_name::before,
  header .contact_box .tel_box .store_name::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  header .contact_box .tel_box .store_name::before {
    left: 0;
    width: 15px;
    height: 15px;
    background: url("/img/spmenu_list.svg") no-repeat center / contain;
  }
  header .contact_box .tel_box .store_name::after {
    right: 0;
    height: 1px;
    background: #007451;
  }
  header .contact_box .tel_box .tel {
    font-size: 34px;
    font-weight: 600;
  }
  header .contact_box .tel_box .tel a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
  }
  header .sp_logo_box {
    max-width: 280px;
    margin: 35px auto 0;
  }
  header .sp_logo_box img {
    width: 100%;
  }
}

@media screen and (max-width: 640px)  {
  header .hd_logo {
    width: 167px;
  }
  header .btn_container .btn_wrapper {
    width: 24px;
    height: 20px;
  }
    header .btn_container {
    width: 55px;
    height: 55px;
  }
    header .btn_container .btn_wrapper span {
    height: 1.5px;
  }
  header .btn_container.active .btn_wrapper .tp {
    top:-1.5px;
  }
header .main_menu li a {
  width: 90%;
  font-size: 24px;
}

}

/*-----------------------------------
  contents / 固定メニュー
-----------------------------------*/
#fixd_menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1001; /* ヘッダー(999)やスマホメニュー(1000)より上に表示 */
  width: 176px;
  height: 176px;
  opacity: 0;                  /* 初期状態は非表示 */
  transform: translateY(20px); /* 少し下に下げておく */
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;        /* 非表示時はクリックやホバーを無効化 */
}

/* 表示状態になったとき */
#fixd_menu.show {
  opacity: 1;
  transform: translateY(0);    /* 元の位置に戻す */
  pointer-events: auto;        /* クリックできるようにする */
}

#fixd_menu a {
  display: block;
  border-radius: 15px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

#fixd_menu img {
  display: block;
  max-width: 176px;
  width: 100%;
  height: auto;
  margin: auto;
}

@media screen and (max-width: 840px){
  #fixd_menu {
    right: 10px;
    width: 126px;
    height: 126px;
    bottom: 10px;
  }
  #fixd_menu img {
    max-width: 126px;
    margin-left: auto;
    margin-right: 10px;
  }
}

/* =============================================
   footer
   ============================================= */
.section-cta {
  padding: 0 !important;
  width: 100%;
  background-color: #fff;
}

.cta-bg {
  background-image: url(../img/cta_img.png);
  background-size: 100% 100%;
  /* 横・縦ともにぴったり引き伸ばす */
  background-repeat: no-repeat;
  background-position: center;
  padding: 90px 0 120px;
}


.section-cta img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.cta_ttl_01 {

  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  padding: 20px 0;
}

.cta_ttl_01 img {
  max-width: 314px;
}

.cta_ttl_02 {
  margin-top: 35px !important;
  max-width: 590px;
}


.cta_txt {
  margin-top: 65px;
  text-align: center;
}

.cta_txt .cta-heading {
  font-size: 38px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  color: #007451;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.cta_txt .cta-sub {
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
}

.cta_txt .link_btn {
  margin-top: 40px;
}


.cta_tel {
  margin-top: 80px;
}

.cta_tel_ttl {
  width: 100%;
  text-align: center;
  background-color: #007451;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 20px 0;
  border-radius: 15px;
}

.cta_tel .company {
  margin-top: 35px;
}

.cta_tel .company_name {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.address_wrap {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.ad_name {
  font-size: 16px;
  font-weight: 700;
}

.ad_add {
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}

.ad_tel {
  font-family: "Barlow", sans-serif;
  font-size: 23px;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.045em;
}

.ad_fax {
  font-size: 14px;
  margin-top: 5px;
}

.logo {
  max-width: 283px;
  margin: 0 auto;
  padding: 80px 0 72px;
}
/* =============================================
   住所・電話番号ブロックのリンク色リセット
   ============================================= */
/* =============================================
   住所・電話番号リンクの文字色を強制リセット
   ============================================= */
.address_wrap a,
.address_wrap .ad_tel a,
.cta_tel a {
  color: #221714 !important;        /* ★リンクの色を強制的に濃いグレー（または#000などの黒）にします */
  text-decoration: none !important; /* ★下線を強制的に消します */
}

/* タップした時や、一度クリックした後の色変わりも完全にガード */
.address_wrap a:hover,
.address_wrap a:visited,
.cta_tel a:hover,
.cta_tel a:visited {
  color: #221714 !important;
  text-decoration: none !important;
}

@media (max-width: 840px) {
  .cta_ttl_01 img {
    max-width: 300px;
  }
  .cta_ttl_02 {
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .cta_ttl_01 img {
    max-width: 157px;
  }
  .cta_ttl_02 {
      margin-top: 20px !important;
    max-width: 247px;
  }
  .cta-bg {
    padding: 35px 0 57px;
      background-image: url(../img/sp/cta_img.png);
  }
  .cta_ttl_01 {
    padding: 10px 0;
  }
  .cta_txt {
    margin-top: 20px;
  }
  .cta_txt .cta-heading {
    font-size: 24px;
  }
  .cta_txt .cta-sub {
    margin-top: 20px;
    font-size: 12px;
  }
  .cta_txt .link_btn {
    margin-top: 15px;
  }
  .cta_tel {
    margin-top: 50px;
  }
  .cta_tel_ttl {
    font-size: 14px;
    padding: 15px 0;
  }
  .cta_tel .company {
    margin-top: 20px;
  }
  .cta_tel .company_name {
    font-size: 18px;
  }
  .address_wrap {
    flex-direction: column;
    gap: 15px;
  }
  .ad_name {
    font-size: 14px;
  }
  .ad_add {
    font-size: 10px;
    margin-top: 5px;
  }
  .ad_tel {
    font-size: 18px;
    margin-top: 5px;
  }
.logo {
  padding: 21px 0 40px;
  max-width:258px;
}


}