@charset "utf-8";
/* CSS Document */

/* ========== sectionの基礎設定 ========== */
section {
  margin: 0 0 4rem 0;
}

/* タイトル */
section h2.section-title,
.holiday_info .title{
  background-color: #136740;
  border-radius: 0.375rem;
  margin: 0 0 1em 0;
  padding: 0.5em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
/* タイトルテキスト */
section h2 .txt,
.holiday_info .title{
  color: #ffffff;
  font-size: 1.125em; /* 18px ÷ 16px = 1.125 */
  font-weight: 700;
  min-width: 4em;
}
/* タイトル補足 */
section h2 .supplement {
  color: #ffffff;
  font-size: 0.875em; /* 14px ÷ 16px = 0.875 */
  font-weight: 400;
}

/*告知*/
.holiday_info{
  background-color: #f6f6f6;
  border-radius: 0.375rem;
}
.holiday_info p{
  font-size: 1.125em;
  padding: 0 1em 2em 1em;
  color: #BA1414;
}

/* ========================================
   収集用メモのダウンロードセクション
======================================== */
.memo-download-section {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.memo-download-container {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* タイトルエリア */
.memo-download-header {
  display: flex;
  align-items: center;
  gap: 0.8em;
  padding: 1em 1.25em;
  background-color: #effff3; /* 薄い緑 */
  border-bottom: 0.2rem solid #136740; /* メインカラー（緑） */
}

.memo-icon {
  font-size: 1.5em; /* 24px ÷ 16px = 1.5em */
  color: #136740;
}

.memo-download-title {
  font-size: 1.125em; /* 18px ÷ 16px = 1.125em */
  font-weight: 700;
  color: #136740;
  margin: 0;
}

/* コンテンツエリア */
.memo-download-content {
  display: flex;
  gap: 2em;
  padding: 2em 2em;
  background-color: #effff3; /* 薄い緑 */
}

/* 説明テキストエリア */
.memo-description {
  flex: 1;
}

.memo-description-text {
  font-size: 1em; /* 16px ÷ 16px = 1em */
  color: #222222;
  margin-bottom: 1em;
  font-weight: 500;
}

.memo-notes-list {
  list-style: none;
  padding-left: 0;
}

.memo-notes-list li {
  font-size: 0.875em; /* 14px ÷ 16px = 0.875em */
  color: #222222;
  margin-bottom: 0.5em;
  padding-left: 1.2em;
  position: relative;
}

.memo-notes-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #136740;
  font-weight: bold;
}

/* ダウンロードボタンエリア */
.memo-download-button-wrapper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.memo-download-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  padding: 1.2em 2.5em;
  background-color: #136740; /* メインカラー（緑） */
  color: #ffffff;
  font-size: 1em; /* 16px ÷ 16px = 1em */
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.5rem;
  border: 0.2rem solid #136740;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 0.2rem 0.4rem rgba(19, 103, 64, 0.2);
}

.memo-download-button:hover {
  color: #ffffff;
  background-color: #177047; /* ダークグリーン */
  border-color: #4dd27c; /* アクセントグリーン */
  box-shadow: 0 0.4rem 0.8rem rgba(19, 103, 64, 0.3);
  transform: translateY(-0.2rem);
}

.memo-download-button:active {
  transform: translateY(0);
  box-shadow: 0 0.1rem 0.2rem rgba(19, 103, 64, 0.2);
}

.memo-download-button .download-icon {
  font-size: 1.5em; /* 24px ÷ 16px = 1.5em */
}

.memo-download-button .button-text {
  font-size: 1em; /* 16px ÷ 16px = 1em */
}

/* モバイル（639px以下） */
@media screen and (max-width: 639px) {
  /* ボタンを改行して表示 */
  .memo-download-content {
    padding: 1.2em;
    flex-direction: column;
  }

  .memo-download-button-wrapper {
    width: 100%;
  }

  .memo-download-button {
    width: 100%;
    justify-content: center;
  }

  .memo-download-header {
    gap: 0.6em;
    padding: 0.8em 1em;
  }

  .memo-icon {
    font-size: 1.25em; /* 20px ÷ 16px = 1.25em */
  }

  .memo-download-title {
    font-size: 0.9375em; /* 15px ÷ 16px = 0.9375em */
  }

  .memo-description-text {
    font-size: 0.9375em; /* 15px ÷ 16px = 0.9375em */
  }

  .memo-download-button {
    padding: 1.2em 1.5em;
    font-size: 0.9375em; /* 15px ÷ 16px = 0.9375em */
  }

  .memo-download-button .download-icon {
    font-size: 1.25em; /* 20px ÷ 16px = 1.25em */
  }

  .memo-download-button .button-text {
    font-size: 0.9375em; /* 15px ÷ 16px = 0.9375em */
  }
}

/* 極小デバイス（480px以下） */
@media screen and (max-width: 480px) {
 .memo-download-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }

  .memo-download-title {
    font-size: 0.875em; /* 14px ÷ 16px = 0.875em */
  }

  .memo-description-text {
    font-size: 0.875em; /* 14px ÷ 16px = 0.875em */
  }

  .memo-download-button {
    padding: 1em 1.2em;
    font-size: 0.875em; /* 14px ÷ 16px = 0.875em */
    gap: 0.6em;
  }

  .memo-download-button .download-icon {
    font-size: 1.125em; /* 18px ÷ 16px = 1.125em */
  }

  .memo-download-button .button-text {
    font-size: 0.875em; /* 14px ÷ 16px = 0.875em */
  }
}

/* ========== 確認メニュー ========== */

/*「確認メニュー」エリア*/
.check-area {
  /**/
}

.check-area ul li{
  font-size: 1em;
  color: #222;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
}

/* アイコン */
.menu-icon {
  color: #666;
  font-size: 2em;
}

.check-icon {
  color: #fff;
  font-size: 2em;
}

/*ボタン枠*/
.check-area-button-wrap {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  align-items: stretch;
}
/* タブレット以下は縦並び */
@media (max-width: 768px) {
  .check-area-button-wrap {
    flex-direction: column;
  }
}

/*排出品目一覧ボタン＆最短収集日の確認ボタン 共通*/
.check-area-button {
  background-color: #f2f2f2;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  height: 100%;
  min-width: 300px;
  cursor: pointer;
}
.check-area-button a{
  display: block;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
}
/*マウスオーバー*/
.check-area-button:hover {
  background-color: #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.check-area-button a{
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  text-decoration: none;
  width: 100%;
  padding: 1rem;
}
/*アイコン基礎*/
.check-area-button .button-icon {
  width: 5rem;
  height: 5rem;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* アイコンが縮まないように */
}

/*文字エリア基礎*/
.check-area-button .button-text {
  flex: 1;
}
/*タイトル基礎*/
.check-area-button .title {
  color: #595959;
  font-weight: 700;
  text-align: left;
}
/*補足基礎*/
.check-area-button .supplement {
  color: #595959;
  text-align: left;
  font-size: 0.875em; /* 14px ÷ 16px = 0.875 */
}

/*排出品目一覧ボタン*/
.check-area-button .trash-list {
  /**/
}

/*最短収集日の確認ボタン*/
.check-area-button .collection-day {
  /**/
}

/*ショートカット */
.short_cut {
  display: flex;
  justify-content: center;
}

.short_cut a {
  padding: 1rem;
  text-align: center;
  height: 100%;
  /* max-width: 300px; */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-direction: column;
}
.short_cut a .button-icon {
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.short_cut a:hover {
  opacity: 0.75;
}

/*アイコン基礎*/
.short_cut .button-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* アイコンが縮まないように */
  background-color: #BA1414;
  padding: 10px;
  border-radius: 50%;
  /* width: 52px; */
  /* height: 52px; */
 }

/* アイコン詳細 */
.expand_circle_down {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24 !important;
  color: #ffffff;
  font-size: 36px;
}

/*文字エリア基礎*/
.short_cut .button-text {
  flex: 1;
}
/*タイトル基礎*/
.short_cut .title {
  color: #BA1414;
  font-weight: 700;
  text-align: left;
  /* font-size: 1.5em; */
  line-height: 2em;
}

/* ========== お知らせ ========== */

/*「お知らせ」エリア*/
.information-area {
  margin: 0;
}

/*「タブ切り替え」エリア*/
.notice-tab-wrap {
  display: flex;
  gap: 0;
  margin-bottom: 1em;
}

/*タブボタン基礎*/
.notice-tab {
  flex: 1;
  padding: 1.5rem 2rem;
  font-size: 1em; /* 16px ÷ 16px = 1 */
  font-weight: 600;
  border: 1px solid #e0e0e0;
  background-color: white;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}
/*新着情報*/
.notice-tab:first-child {
  border-radius: 1rem;
}
/*過去のお知らせ*/
.notice-tab:last-child {
  border-radius: 1rem;
  border-left: none;
}

/*タブボタン アクティブ状態*/
.notice-tab.active {
  background-color: #ecf9d9;
  color: #222;
  font-weight: 700;
}
/*タブボタン アクティブではない状態*/
.notice-tab:hover:not(.active) {
  background-color: #f5f5f5;
  color: #666;
}

/*「タブ切り替え」の「メイン」エリア*/
.notice-content {
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  background-color: #ffffff;
  padding: 2rem;
}

/* タブコンテンツの表示切り替え */
.notice-tab-content {
  display: none;
}
.notice-tab-content.active {
  display: block;
}

/*「お知らせ」内容*/
.notice-item {
  padding: 2rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.notice-item:first-child {
  padding-top: 0;
}

.notice-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* 「お知らせ」日付 */
.notice-date {
  font-size: 0.875em; /* 14px ÷ 16px = 0.875 */
  color: #666;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

/* 「お知らせ」タイトル */
.notice-item-title {
  font-size: 1em; /* 16px ÷ 16px = 1 */
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* 「お知らせ」本文 */
.notice-item-text {
  font-size: 0.875em; /* 14px ÷ 16px = 0.875 */
  color: #555;
  line-height: 1.8;
}

/* ========== 注意事項エリア ========== */
.notes-area {
  margin: 0 auto 2.5rem;
}

/* 注意事項カテゴリ */
.notes-category {
  margin-bottom: 2em;
}
.notes-category:last-child {
  margin-bottom: 0;
}

/* 注意事項カテゴリのタイトル*/
.notes-category-title {
  font-size: 1em; /* 16px ÷ 16px = 1 */
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 注意事項カテゴリのアイコン*/
.category-icon {
  font-size: 0.75em; /* 12px ÷ 16px = 0.75 */
  color: #666;
}

/* アコーディオン「ボタン」 */
.notes-accordion {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background-color: #ecf9d9;
  border: none;
  border: 1px solid #e0e0e0;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 1rem;
  text-align: left;
}
/*マウスオーバー*/
.notes-accordion:hover {
  background-color: #f5fde8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}
/*アクティブ*/
.notes-accordion.active {
  background-color: #f5fde8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* アコーディオン「アイコン」 */
.accordion-icon {
  font-size: 1.5em; /* 24px ÷ 16px = 1.5 */
  color: #666;
  transition: transform 0.3s;
  flex-shrink: 0;
}
/* アクティブ時のアコーディオン「アイコン」 */
.notes-accordion.active .accordion-icon {
  transform: rotate(270deg);
}

/* アコーディオン「タイトル」 */
.accordion-title {
  font-size: 1em; /* 16px ÷ 16px = 1 */
  font-weight: 700;
  color: #222;
  flex: 1;
  min-width: 0; /* 重要: flexアイテムの収縮を許可 */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ========== アコーディオンコンテンツ ========== */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  /*transition: max-height 0.3s ease-out;*/
  background-color: #ffffff;
  border-top: none;
  border-radius: 0 0 0.8em 0.8em;
  margin-top: -1em;
  margin-bottom: 1em;
}

.accordion-content.active {
  max-height: 2000px; /* 必要に応じて調整 */
  padding: 2em;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* モバイル */
@media (max-width: 639px) {
  .accordion-content.active {
    padding: 1.5rem;
  }
}

.accordion-content li.no-indent{
  text-indent:initial;
  margin-left: 0;
}

/*=========================*/
/* 文章 */
/*<ul class="text-block"><li> */
/*=========================*/
.accordion-content .text-block li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
  margin-left: 1em;
  text-indent: -1em;
}
.accordion-content .text-block li.color_red{
  color: #BA1414;
}

.accordion-content .text-block li.no-indent{
  margin-left: 0;
  text-indent: initial;
}
.accordion-content .text-block li:last-child {
  margin-bottom: 0;
}

.accordion-content .text-block .midashi{
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.125em; /*18px*/
  color: #136740;
  border-bottom: solid 1px #136740;
  margin-bottom: 1em;
}
.accordion-content .text-block .midashi:before{
  display: inline-block;
  content: " ";
  background-color: #136740;
  width: 3px;
  height: 1em;
  margin-right: 0.25em;
}
.accordion-content .text-block li img{
  display: block;
  width: auto;
  height: auto;
  max-width: 500px;
}
/* モバイル */
@media (max-width: 639px) {
  .accordion-content .text-block li img{
    width: 100%;
    height: auto;
    max-width: 75vw;
    margin: 0 auto;
  }
}

/*=========================*/
/* <li class="center_info"> 特化 */
/*=========================*/
.accordion-content .text-block li.center_info{
  margin-left: auto;
  text-indent: initial;
  padding: 0 2em;
  display: flex;
  flex-direction: column; /* 縦並び */
}
.accordion-content .text-block li.center_info .row {
  display: flex; /* 内側のspanを横に並べる */
  white-space: nowrap;
}
.accordion-content .text-block li.center_info .row span:first-child{
  padding-right: 1em;
}

/* モバイル */
@media (max-width: 639px) {
  .accordion-content .text-block li.center_info .row {
    flex-direction: column; /* 内側のspanも縦に並べる */
    white-space: normal;
  }
  .accordion-content .text-block li.center_info .row span:first-child{
    padding-right: 0;
  }
  .accordion-content .text-block li.center_info .row span:nth-child(2n){
    padding-left: 1em;
  }
}

/*=========================*/
/* 入れ子リスト */
/* <ul class="text-block">
 *   <li>
 *      <ul class="inner-text-block"> */
/*=========================*/
.accordion-content .inner-text-block li {
  /*font-size: 0.875em;*/ /* 14px ÷ 16px = 0.875 */
  margin-left: 1em;
  text-indent: -1em;
}
.accordion-content .inner-text-block li.midashi {
  margin-left: 0;
  text-indent: initial;
  margin-bottom: 0.25em;
  font-weight: 700;
}


/* モバイル */
@media (max-width: 639px) {
  .accordion-content .inner-text-block li {
    font-size: 0.875em; /* 14px ÷ 16px = 0.875 */
  }
}


.accordion-content li.no-indent{
  text-indent:initial;
  margin-left: 0;
}

.accordion-content .text-block .midashi{
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.125em; /*18px*/
  color: #136740;
  border-bottom: solid 1px #136740;
  margin-bottom: 1em;
}
.accordion-content .text-block .midashi:before{
  display: inline-block;
  content: " ";
  background-color: #136740;
  width: 3px;
  height: 1em;
  margin-right: 0.25em;
}

/* クレカ決済 */
/* <ul class="text-block ">
 *   <li>
 *      <ul class="inner-text-block credit-card"> */
/*=========================*/
.accordion-content .inner-text-block.credit-card{
  border: solid 1px;
  padding: 1em;
  height: 40vh;     /* フォールバック */
  height: 40dvh;    /* スマホ対応 */
  overflow-y: auto;
}
.accordion-content .inner-text-block.credit-card p{
  font-weight: 700;
}

/* ========== 市と協定を締結している各事業者のサービス ========== */

.jmty_link{
  display: inline-block;
}
.jmty_link img{
  max-width: 650px;
  width: 100%;
  height: auto;
}

.flex_reuse_wrap{
  display: flex;
  flex-wrap: wrap;
  margin: 1em 0 1em 0;
}

.flex_reuse_wrap{
  display: flex;
  flex-wrap: wrap;
  margin: 1em 0 1em 0;
}

/*グループ*/
.flex_reuse{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
  align-content: stretch;
  width:calc(100% / 2); /*2列横並び*/
  background-color: #fff;
  box-shadow : 0 0 0 1px #e0e0e0; /*border 1px の代替。（注意）背景色を透明はNG*/
  justify-content: space-around;
  padding: 1em;
}
@media screen and (max-width: 660px){
  .flex_reuse{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    align-content: stretch;
    width:100%; /*2列横並び*/
  }
}

/*ロゴとテキスト*/
div.logo_txt{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 0 0.5em 0;
  gap: 1em;
}
@media screen and (max-width: 450px){
  div.logo_txt{
    flex-direction: column;
  }
}
/*ロゴ*/
.flex_reuse .logo{
  width: auto;
  max-width: 160px;
  padding: 0;
}
/*ロゴ画像（高さを固定に幅を成り行き）*/
.accordion-content .text-block li .flex_reuse .logo img{
  width: 100%;
  height: auto;
  max-height: 70px;
}

/*説明*/
.flex_reuse .txt{
  text-align: justify;
  padding: 0 0 0 0;
}
@media screen and (max-width: 450px){
  .flex_reuse .txt{
    padding: 0.5em 0 0 0;
  }
}

/*申し込みとサービス内容*/
div.entry_service{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
}

/*申し込み*/
.flex_reuse .entry{
  
}
/*サービス内容*/
.flex_reuse .service{
  text-align: left;
  margin: 0 0 0 1em;
}
.flex_reuse .entry a,
.flex_reuse .service a{
  font-size: 0.875em;
}


/* 備考エリア */
.notes-remark {
  padding: 0;
}
.notes-remark p {
  font-size: 0.875em; /* 14px ÷ 16px = 0.875 */
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ========== 手続き一覧エリア ========== */
.process-area {
  /**/
}


/*SSL3.0の脆弱性について*/
.security{
  background-color: #FCECEC;
  padding: 1em;
  color: #BA1414;
  border-radius: 0.5em;
  margin-bottom: 2em;
  border-left: solid 4px #BA1414;
}

/* 
手続き一覧の「タイトル」※共通
（お申し込みメニュー、申込み後の変更・キャンセルメニュー）
*/
.menu-category-title {
  font-size: 1em; /* 16px ÷ 16px = 1 */
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 
手続き一覧の「タイトル」のアイコン※共通
（お申し込みメニュー、申込み後の変更・キャンセルメニュー）
*/
.category-icon {
  font-size: 0.75em; /* 12px ÷ 16px = 0.75 */
  color: #666;
}
.color_red .category-icon{
  color: #BA1414;
}
/* リスト内で利用する場合（注意文等）は余白を追加する */
ul.text-block .category-icon {
  padding-right: 0.5em;
}

/* メニュー */
.menu-list-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

/* メニューカード */
.menu-card {
  flex: 1;
  min-width: calc(50% - 0.75rem); /* 2カラムを維持 */
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* モバイル：1カラムに */
@media (max-width: 639px) {
  .menu-card {
    min-width: 100%;
    padding: 1.5rem;
    gap: 1.2rem;
  }
}

/*オレンジ*/
.card_color_or {
  background-color: #FBFBDF;
}
.menu-card.card_color_or:hover {
  background-color: #ffffe8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
/*ブルー*/
.menu-card.card_color_bl {
  background-color: #EBF9FC;
}
.menu-card.card_color_bl:hover {
  background-color: #f6fcfd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
/*グレー*/
.menu-card.card_color_gr {
  background-color: #f2f2f2;
}
.menu-card.card_color_gr:hover {
  background-color: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* メニューカードアイコン */
.menu-card-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #ffffff;
}
.menu-card-icon svg {
  width: 2.8rem;
  height: 2.8rem;
}

.menu-card-icon .material-symbols-outlined{
  font-size: 3.2rem;
}

/* アイコン背景色 */
.orange-bg svg,
.orange-bg{
  color: #ff9966;
}
.blue-bg svg,
.blue-bg{
  color: #6699cc;
}
.gray-bg svg,
.gray-bg{
  color: #cc9966;
}
.lightblue-bg svg,
.lightblue-bg{
  color: #66b3cc;
}

/* メニューカードテキスト */
.menu-card-text {
  flex: 1;
}
/* タイトル */
.menu-card-title {
  font-size: 1em; /* 16px ÷ 16px = 1 */
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
/* 補足 */
.menu-card-description {
  font-size: 0.8125em; /* 13px ÷ 16px = 0.8125 */
  color: #666;
  line-height: 1.5;
}

/* メニュー注記 */
.menu-note {
  font-size: 0.8125em; /* 13px ÷ 16px = 0.8125 */
  color: #666;
  line-height: 1.6;
  margin-top: 1rem;
}

/* お申し込みメニューの枠 */
.request-wrap {
  margin-bottom: 3rem;
}





/*粗大ごみ券の位置画像*/
@media screen and (max-width: 500px){
  img.sodaigomi{
    width: 100%;
  }
}

