@charset "utf-8";

html,
body { 
  margin: 0;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  }


.sp_br {
  display: none;
}

@media (max-width: 768px) {
  .sp_br {
    display: block;
  }
}

.pc_none {
  display: none;
}


/* =========================
   スマホTELバー
========================= */

.sp_tel_bar {
  display: none;
}

/* スマホのみ表示 */
@media (max-width: 768px) {

  .sp_tel_bar {
            display: block;
        border-radius: 60px;
        padding: 5px 20px 5px;
        text-align: center;
        max-width: 70%;
        margin: 0 auto;
        margin-top: 20px;
  }

  .sp_tel_bar a {
    text-decoration: none;
    color: #fff;
    display: block;
  }

  /* 上段 */
  .tel_main {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
  }

  .tel_main span {
    font-size: 26px;
    font-weight: 700;
    margin-left: 6px;
  }

  /* 下段 */
  .tel_sub {
    font-size: 16px;
    margin: 6px 0 0;
    padding-top: 6px;
    border-top: 2px solid rgba(255,255,255,0.7);
    display: inline-block;
  }
	
	.pc_none {
    display: block;
  }
	

}


/* ------------------------
   ハンバーガー（全デバイス表示）
------------------------ */

/* デフォルト */
.hamburger,
.globalMenuSp,
.denwa { display: none; }

/* PCでも表示させる（←ここが重要） */
@media (min-width: 769px) {

  /* ハンバーガー表示 */
  .hamburger {
    display: flex !important;
    position: fixed;
    top: 60px;
    right: 50px;
    width: 45px;
    height: 32px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* アニメーション */
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
  }

  /* メニューもPCで使えるように */
  .globalMenuSp {
    display: flex !important;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    align-items: center;
    justify-content: center;
  }

  .globalMenuSp.is-open {
    transform: translateX(0);
  }

  .globalMenuSp ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .globalMenuSp li {
    margin: 25px 0;
  }

  .globalMenuSp a {
    text-decoration: none;
    font-size: 1.6rem;
    color: #6b390c;
    font-weight: 500;
  }


}

/* ------------------------
   スマホ（～768px）
------------------------ */
@media (max-width: 768px) {

  .hamburger {
    display: flex !important;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 30px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.is-active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
  }

  .globalMenuSp {
    display: flex !important;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    align-items: center;
    justify-content: center;
  }

  .globalMenuSp.is-open {
    transform: translateX(0);
  }

  .globalMenuSp ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    margin-bottom: 40px;
	 margin: 0 auto;
	  margin-top: 60px;
  }

  .globalMenuSp li {
    margin: 10px 0;
  }

  .globalMenuSp a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #6b390c;
    font-weight: 500;
  }

  .denwa { display: block !important; }

  .pc_none { display: block !important; }

  .sp_size {
    font-size: 13px;
  }
	
	.h_logo_r {
    display: none;
}
	
	.logos {
	flex-direction: column;
}

	
}

/* 背景スクロール固定 */
body.no-scroll {
  overflow: hidden;
}


.logos {
    display: flex;
    justify-content: space-between;
	    align-items: center;
    max-width: 1470px;
    margin: 0 auto;	
}


.h_logo_l img{
	max-width: 75%;
}

.h_logo_l {
	text-align: left;
}

.h_logo_c img{
	max-width: 80%;
}

.h_logo_c {
	text-align: center;
}

.h_logo_r img{
	max-width: 80%;
}

.h_logo_r {
	text-align: right;
}




/* =========================
   メインビジュアル
========================= */
.mainvisual {
  width: 100%;
  max-width: 1300px;   /* 最大幅を1200pxに制限 */
  margin: 0 auto;      /* 中央寄せ */
  padding: 0 20px;     /* 両端に余白を確保 */
  box-sizing: border-box;
}

.mv_inner {
  position: relative;
  overflow: hidden;
  border-radius: 12px; /* 角丸は不要なら削除OK */
}

.mainvisual img {
  width: 100%;
  height: auto;
  display: block;
}

/* スマホ用調整 */
@media (max-width: 768px) {
  .mainvisual {
    padding: 0 10px;   /* スマホ時は余白を少し狭く */
  }
}

/* 右側追従ボタン（固定表示） */
.follow-side-btn {
  position: fixed;
  top: 77%;
  right: calc(max(-25px, env(safe-area-inset-right, 0px) + -25px));
  transform: translateY(-50%);
  z-index: 2000;
  display: block;
  width: clamp(88px, 16vw, 200px);
  border-radius: 16px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.follow-side-btn:hover {
  transform: translateY(-50%) translateY(-2px) scale(1.02);
}
.follow-side-btn img {
  display: block;
  width: 95%;
  height: auto;
  border-radius: 16px;
}

/* 高さが低い画面で少し小さく */
@media (max-height: 600px) {
  .follow-side-btn { width: clamp(72px, 14vw, 160px); }
}

/* スマホで非表示（必要なければ削除） */
@media (max-width: 768px) {
  .follow-side-btn { display: none; }
}

/* 印刷時は非表示 */
@media print {
  .follow-side-btn { display: none !important; }
}

/* 動きを控えめに（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  .follow-side-btn { transition: none; }
  .follow-side-btn:hover { transform: translateY(-50%); }
}


/* ==========================
   メインビジュアル：キャッチコピー付き（3段・可変幅対応）
========================== */
.mainvisual {
  width: 100%;
  max-width: 1510px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}

.mv_inner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.mainvisual img {
  max-width: 1470px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ▼キャッチコピー */
.mv_copy {
  position: absolute;
  top: 3%;
  left: 0%;
  z-index: 10;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.mv_copy p {
  margin: 0;
  background: #fff;
  display: inline-block;
  padding: 5px 14px;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 28px);
  box-shadow: 10px 10px 0px #FF7800;
  transition: width 0.3s ease;
  letter-spacing: 1.3px;
}

/* ▼各行の背景幅を画面幅に応じて可変化 */
.mv_copy p:nth-child(1) { width: clamp(360px, 42vw, 780px); font-size: clamp(20px, 2.4vw, 44px); margin: 60px 0px;}
.mv_copy p:nth-child(2) { width: clamp(280px, 32vw, 450px); }
.mv_copy p:nth-child(3) { width: clamp(310px, 34vw, 480px); }

.mv_copy p + p {
  margin-top: 20px;
}

.mv_copy_sp {
  background-color: #fbf6f0;
  text-align: center;
  padding-top: 10px;
}

.mv_copy_sp p {
  margin: 0;
  background: #fff;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 10px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #7a4a1b;
}


.mv_bg {
   margin-top: 75px;
}


/* ==========================
   スマホ調整
========================== */
@media (max-width: 768px) {
  .mv_copy {
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
	  display: none;
  }

  .mv_copy p {
    display: inline-block;
    font-size: 15px;
    padding: 5px 12px;
    border-radius: 8px;
    line-height: 1.6;
    width: auto; /* スマホでは自動幅 */
  }
	
}


.rental_section {
  background: #FFE8CB;
  padding: 50px 20px 100px;
  margin-top: 130px;
}

.rental_inner {
  max-width: 1620px;
  margin: 0 auto;
}

.rental_title {
  margin: 0 0 50px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  letter-spacing: 0.05em;
}

.rental_items {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.rental_item {
  width: 250px;
  text-align: center;
}

.rental_item_imgbox {
  width: 250px;
  height: 250px;
  background: #fff;
  border: 4px solid #FF7800;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  box-sizing: border-box;
}

.rental_item_imgbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.rental_item_name {
  margin: 18px 0 0;
  font-size: 22px;
  line-height: 1.4;
  color: #000;
  letter-spacing: 0.05em;
}

.rental_btn_wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.rental_btn {
  width: 100%;
  max-width: 740px;
  min-height: 108px;
  background: #5b903c;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px 40px;
  box-sizing: border-box;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.rental_btn:hover {
  opacity: 0.85;
}

.rental_btn_text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}

.rental_btn_arrow {
  width: 18px;
  height: 18px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 2px;
}

.rental_text {
  max-width: 1180px;
  margin: 0 auto;
}

.rental_text p {
      margin: 0 0 15px;
    font-size: 26px;
    line-height: 1.6;
    font-weight: 500;
    color: #111;
}

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

.accent_red {
  color: #ef3b23;
}

.last_message {
  margin-top: 34px;
}

/* タブレット */
@media (max-width: 1024px) {
  .rental_title {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .rental_items {
    gap: 32px;
    margin-bottom: 55px;
  }

  .rental_item {
    width: calc(50% - 16px);
    max-width: 260px;
  }

  .rental_item_imgbox {
    width: 100%;
    height: 240px;
  }

  .rental_item_name {
    font-size: 20px;
  }

  .rental_btn_wrap {
    margin-bottom: 70px;
  }

  .rental_btn {
    max-width: 680px;
    min-height: 96px;
    padding: 18px 28px;
  }

  .rental_btn_text {
    font-size: 20px;
  }

  .rental_text p {
    font-size: 23px;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .rental_section {
    padding: 30px 15px 60px;
	    margin-top: 50px;
  }

  .rental_title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .rental_items {
    gap: 20px 14px;
    margin-bottom: 40px;
  }

  .rental_item {
    width: calc(50% - 7px);
  }

  .rental_item_imgbox {
    width: 100%;
    height: 160px;
    border-width: 3px;
    border-radius: 22px;
    padding: 14px;
  }

  .rental_item_name {
    margin-top: 10px;
    font-size: 16px;
  }

  .rental_btn_wrap {
    margin-bottom: 45px;
  }

  .rental_btn {
    min-height: 70px;
    padding: 10px 20px;
    gap: 14px;
    border-radius: 999px;
  }

  .rental_btn_text {
    font-size: 14px;
    line-height: 1.5;
  }

  .rental_btn_arrow {
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }

  .rental_text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.9;
  }

  .last_message {
    margin-top: 26px;
  }
}





.naiyou_section {
  background: #fff;
  padding: 80px 20px;
}

.naiyou_inner {
  max-width: 1470px;
  margin: 0 auto;
}

.naiyou_title {
      text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}

/* ===== ここをgrid化（最重要修正） ===== */
.naiyou_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr; /* ←左右完全均等 */
  gap: clamp(40px, 8vw, 150px);  /* ←レスポンシブ余白 */
  align-items: stretch;          /* ←高さも揃える */
  margin-bottom: 70px;
}

/* 左ボックス */
.naiyou_box {
  width: 100%;
  background: #FFFDCB;
  border-radius: 20px;
  padding: 10px 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ←中身の高さ安定 */
}

.naiyou_lists {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.naiyou_list {
  width: 50%;
}

.naiyou_list h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
}

.naiyou_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.naiyou_list li {
  font-size: 18px;
  line-height: 2;
}

/* ボタン */
.naiyou_btn_wrap {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.naiyou_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff7a00;
  color: #fff;
  text-decoration: none;
  padding: 10px 80px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
}

.naiyou_btn:hover {
  opacity: 0.8;
}

.naiyou_btn .arrow {
  font-weight: bold;
}

/* 画像 */
.naiyou_img {
  width: 100%;
  display: flex;
}

.naiyou_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ←高さ揃えのキモ */
  border-radius: 20px;
  display: block;
}


.stay_notice_section {
  padding: 50px 20px 70px;
}

.stay_notice_inner {
  max-width: 980px;
  margin: 0 auto;
}

.stay_notice_top {
  margin: 0 0 50px;
  text-align: center;
  font-size: 28px;
  line-height: 1.7;
  font-weight: 700;
  color: #111;
}

.stay_notice_top span {
  background: linear-gradient(transparent 68%, #ffab00 68%);
  padding: 0 4px;
}

.stay_notice_box {
  border: 2px solid #9f9f9f;
  border-radius: 36px;
  background: #fff;
  padding: 42px 40px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.stay_notice_text {
  width: 46%;
  padding-left: 8px;
}

.stay_notice_catch {
  margin: 0 0 48px;
  font-size: 27px;
  line-height: 1.95;
  font-weight: 700;
  color: #111;
}

.stay_notice_catch span {
  display: inline;
  background: #fff200;
  padding: 0 6px 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.stay_notice_desc {
  margin: 0;
  font-size: 21px;
  line-height: 1.9;
  font-weight: 500;
  color: #222;
}

.stay_notice_img {
  width: 44%;
  text-align: right;
}

.stay_notice_img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
}

/* タブレット */
@media (max-width: 1024px) {
  .stay_notice_top {
    font-size: 20px;
    margin-bottom: 60px;
  }

  .stay_notice_box {
    padding: 34px 28px 30px;
    gap: 20px;
  }

  .stay_notice_catch {
    font-size: 24px;
    margin-bottom: 36px;
  }

  .stay_notice_desc {
    font-size: 18px;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .stay_notice_section {
    padding: 35px 15px 50px;
	padding-bottom: 0;
  }

  .stay_notice_top {
    margin-bottom: 20px;
    text-align: left;
    font-size: 18px;
    line-height: 1.8;
  }

  .stay_notice_box {
    border-radius: 24px;
    padding: 24px 18px 20px;
    display: block;
  }

  .stay_notice_text {
    width: 100%;
    padding-left: 0;
  }

  .stay_notice_catch {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.8;
  }

  .stay_notice_desc {
    font-size: 16px;
    line-height: 1.8;
  }

  .stay_notice_img {
    width: 100%;
    margin-top: 24px;
    text-align: center;
  }

  .stay_notice_img img {
    margin: 0 auto;
    max-width: 82%;
  }
}


/* =====================
   タブレット
===================== */
@media (max-width: 1024px) {

  .naiyou_wrap {
    grid-template-columns: 1fr;
    gap: 40px;
	margin-bottom: 20px;
  }

  .naiyou_box,
  .naiyou_img {
    width: 100%;
  }

  .naiyou_lists {
    gap: 20px;
  }

}

/* =====================
   スマホ
===================== */
@media (max-width: 768px) {

  .naiyou_section {
    padding: 50px 15px;
  }

  .naiyou_title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .naiyou_box {
    padding: 0px 20px;
  }

  .naiyou_lists {
    flex-direction: column;
    gap: 25px;
  }

  .naiyou_list {
    width: 100%;
  }

  .naiyou_list h3 {
    font-size: 16px;
	margin-top: 20px;
  }

  .naiyou_list li {
    font-size: 16px;
  }

  .naiyou_btn {
    padding: 10px 30px;
    font-size: 14px;
  }
	
	.h_logo_l {
    text-align: center;
}
	
	.h_logo_c img {
    max-width: 60%;
}
	
	.mv_bg {
    margin-top: 20px;
}

}



/* =========================
   上セクション
========================= */
/* 親に余白を確保 */
.safety_section {
  background: #FFE8CB;
  padding: 80px 20px 250px;
  position: relative;
}

.safety_inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.safety_title {
  font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.safety_lead {
  font-size: 22px;
  margin-bottom: 30px;
  display: inline-block;
  border-bottom: 3px dotted #ff7a00;
}

.safety_list {
  text-align: left;
  margin: 0 auto;
  max-width: 900px;
  padding: 0;
}

.safety_list li {
      list-style: none;
    font-size: 18px;
    line-height: 2;
    position: relative;
    padding-left: 20px;
}

.safety_list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

/* =========================
   下カード
========================= */
/* カードを重ねる */
.contact_box {
    position: absolute;
    left: 20px;          /* ←これが余白 */
    right: 20px;         /* ←これが余白 */
    bottom: 0;
    transform: translateY(50%); /* ←縦だけ */

    max-width: 1470px;
    margin: 0 auto;      /* ←中央寄せ復活 */

    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.contact_title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 50px;
}

.contact_items {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* 共通ボタン */
.contact_item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #2f8f2f;
  border-radius: 999px;
  padding: 20px 40px;
  text-decoration: none;
  color: #000;
  min-width: 380px;
  background: #fff;
  transition: 0.3s;
}

.contact_item:hover {
  opacity: 0.8;
}

/* 電話 */
.tel_icon {
  font-size: 26px;
  margin-right: 15px;
  color: #2f8f2f;
}

.tel_number {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* FAX */
.fax_text {
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  font-weight: bold;
}

.fax_number {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #2f8f2f;
}

/* =====================
   タブレット
===================== */
@media (max-width: 1024px) {

  .contact_box {
    padding: 40px 25px;
  }

  .contact_item {
    min-width: 300px;
    padding: 16px 25px;
  }

}

/* =====================
   スマホ
===================== */
@media (max-width: 768px) {

   .safety_section {
    padding: 60px 15px 150px;
  }

  .safety_title {
    font-size: 20px;
	 margin-bottom: 0;
  }

  .safety_lead {
    font-size: 18px;
	margin: 10px 0;
  }

  .safety_list li {
    font-size: 16px;
  }

   .contact_box {
    padding: 20px 20px;
    border-radius: 20px;
  }

  .contact_title {
    font-size: 20px;
	     margin-bottom: 20px;
  }

  .contact_items {
    gap: 20px;
  }

  .contact_item {
    width: 100%;
    min-width: auto;
    padding: 10px 20px;
  }

  .tel_number {
    font-size: 20px;
  }

  .fax_number {
    font-size: 18px;
  }

	.news .inner_wrap1 {
		flex-direction: column-reverse;
	}
	
	
	.fax_text {
    font-size: 18px;
}
	
	
}


.news .inner_wrap1 {
  max-width: 1470px;
  margin: 0 auto;
  margin-bottom: 150px;
  padding: 0 20px;
  margin-top: 150px;
}

/* 内側ボックス */
.news .n_waku {
  background: #fff;
  border-radius: 26px;
  padding: 30px 50px 70px;
}

/* 1行全体をクリック可能 */
.news .n_waku a {
  display: block;
  text-decoration: none;
  color: #000;
}

/* 行 */
.news .sp_danraku {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  column-gap: 24px;
  padding: 30px 0;
  border-bottom: 2px solid #FF7800;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.8;
    padding-bottom: 5px;
}

/* 日付 */
.news .n_days {
  color: #000;
  letter-spacing: .02em;
  font-size: clamp(15px, 1.4vw, 18px);
}

/* カテゴリ */
.news .cate_mark {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  margin-right: 10px;
  border-radius: 999px;
  vertical-align: middle;
}

/* hover */
.news .n_waku a:hover {
  opacity: .85;
}


.inner_wrap1 {
  display: flex;
  gap: 0px;
  align-items: center;
}

/* タイトル */
.news_title {
  text-align: center;
  color: #FF7800;
  margin-top: 0;
    font-size: 30px;
}

.kj_btn a {
	    text-decoration: none;
    color: #000;
    border: 2px solid #FF7800;
    padding: 15px 25px;
    border-radius: 40px;
}

/* 記事一覧 */
.n_waku {
  flex: 1;         /* ←最重要 */
  min-width: 0;    /* ←超重要（これないと崩れる） */
}


.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #000000;
}



.office_info_section {
   background: #FFE8CB;
    padding: 70px 20px 60px;
    margin-top: 50px;
}

.office_info_inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 120px;
}

.office_info_left {
  width: 38%;
}

.office_info_right {
  width: 62%;
  padding-top: 78px;
}

.office_info_title {
      margin: 0 0 50px;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.04em;
}

.office_info_address {
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 1.7;
  font-weight: 400;
  color: #222;
  letter-spacing: 0.03em;
}

.office_info_telfax {
  margin-bottom: 34px;
}

.office_info_tel,
.office_info_fax {
  margin: 0;
  line-height: 1.5;
}

.office_info_tel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}

.office_info_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 28px;
  background: #24a83a;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  border-radius: 3px;
  flex-shrink: 0;
}

.office_info_tel_number {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.04em;
}

.office_info_fax {
  display: flex;
  align-items: center;
  gap: 10px;
}

.office_info_fax_label {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  color: #24a83a;
}

.office_info_fax_number {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.04em;
}

.office_info_btn_wrap {
  margin-top: 12px;
}

.office_info_fax_btn {
      display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 10px 60px;
    border: 2px solid #41a93a;
    border-radius: 999px;
    background: #ffffff;
    color: #222;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
}

.office_info_fax_btn:hover {
  opacity: 0.8;
}

.office_info_heading {
  margin: 0 0 15px;
    font-size: 22px;
    font-weight: 400;
    color: #111;
    letter-spacing: 0.03em;
}

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

.office_info_list li {
      position: relative;
    padding-left: 30px;
    font-size: 18px;
    color: #222;
    letter-spacing: 0.02em;
}

.office_info_list li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-size: 20px;
  line-height: 1.7;
}

.office_info_list li:last-child {
  margin-bottom: 0;
}

/* タブレット */
@media (max-width: 1200px) {
  .office_info_inner {
    gap: 60px;
  }

  .office_info_left {
    width: 40%;
  }

  .office_info_right {
    width: 60%;
    padding-top: 58px;
  }

  .office_info_title {
    font-size: 30px;
    margin-bottom: 54px;
  }

  .office_info_address {
    font-size: 22px;
    margin-bottom: 26px;
  }

  .office_info_tel_number,
  .office_info_fax_number {
    font-size: 24px;
  }

  .office_info_fax_label {
    font-size: 22px;
  }

  .office_info_fax_btn {
    min-width: 180px;
    height: 42px;
    font-size: 20px;
  }

  .office_info_heading {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .office_info_list li {
    font-size: 20px;
    padding-left: 26px;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .office_info_section {
    padding: 45px 15px 40px;
  }

  .office_info_inner {
    display: block;
  }

  .office_info_left,
  .office_info_right {
    width: 100%;
  }

  .office_info_right {
    padding-top: 30px;
  }

  .office_info_title {
   margin: 0 0 0px;
        font-size: 24px;
  }

	.office_info_telfax {
    margin-bottom: 20px;
}
	
  .office_info_address {
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.8;
  }

  .office_info_tel {
    gap: 12px;
  }

  .office_info_icon {
    width: 34px;
    height: 24px;
    font-size: 14px;
  }

  .office_info_tel_number,
  .office_info_fax_number {
    font-size: 18px;
  }

  .office_info_fax_label {
    font-size: 18px;
  }

  .office_info_fax_btn {
    min-width: 170px;
    height: 42px;
    font-size: 18px;
    padding: 0 20px;
  }

  .office_info_heading {
    margin: 0 0 18px;
    font-size: 22px;
  }

  .office_info_list li {
    padding-left: 22px;
    font-size: 16px;
    line-height: 1.8;
  }

  .office_info_list li::before {
    font-size: 14px;
    line-height: 2;
  }
	
	
	.footer-links {
    gap: 13px;
}
	
	.news .sp_danraku {
    grid-template-columns: 120px 1fr;
    padding: 20px 0;
    border-bottom: 2px solid #FF7800;
    font-size: clamp(16px, 1.35vw, 18px);
	padding-bottom: 10px;
}
	
	.news .n_waku {
    background: #fff;
    border-radius: 26px;
    padding: 50px 0px 80px;
    width: 100%;
	 padding-top: 0;
		padding: 20px 50px 0px;
    margin-bottom: 50px;
}
	
	.news .inner_wrap1 {
		flex-direction: column-reverse;
		margin-top: 100px;
	}
	
	.news_title {
    display: none;
	margin-top: 80px;
	margin-bottom: 0px;
}
}


.un_p {
	margin-top: 5px;
	
}