:root {
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --font-wright-thin: 100;
  --font-wright-normal: 400;
  --font-wright-medium: 500;
  --font-wright-semibold: 600;
  --font-wright-bold: 700;
  --font-wright-black: 900;
  --color-white: #fff;
  --color-black: #333;
  --color-green: #00a30c;
  --color-green-main: #00a30c;
  --color-green-sub: #8cbb44;
  --color-green-light: #e9f5e4;
  --color-border: #afafaf;
}
@font-face {
  font-family: 'Ronde B';
  src: url("/files/cont/bunbun/font/Ronde-B_square.woff2") format('woff2'), url("/files/cont/bunbun/font/Ronde-B_square.woff") format('woff');
}
.bunbun_pagination_state {
  text-align: center;
  font-weight: var(--fw-semibold);
  margin-bottom: 10px;
}
.bunbun_pagination_numbers {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.bunbun_pagination_number {
  background-color: #fff;
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.bunbun_pagination_number:hover,
.bunbun_pagination_number.current {
  background-color: var(--color-green-main);
  color: #fff;
}
.bunbun_pagination_number.prev,
.bunbun_pagination_number.next {
  width: 65px;
}
/*
Base
*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}
.page_top {
  opacity: initial;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}
.page_top > i {
  display: none;
}
.page_top::after {
  content: "";
  display: block;
  width: 90px;
  height: 111px;
  background-image: url("/files/cont/bunbun/img/gotop_bunchan.svg");
  background-size: cover;
  background-repeat: none;
}
.footer_section_01 {
  display: none;
}
.ly_container {
  position: relative;
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 20px;
}
.bunbun_body {
  background-color: var(--color-green-light);
}
.bunbun_body.bunbun_body__02 {
  padding-block: 15px 100px;
}
/*
パーツ別スタイル
*/
.bunbun_button_01 {
  display: inline-block;
  background-color: var(--color-green-main);
  color: #fff;
  padding: 10px 20px;
  border-radius: 22px;
  line-height: calc(24 / 16);
  font-weight: var(--fw-semibold);
  font-size: 16px;
  transition: opacity 0.3s ease;
}
.bunbun_button_01:hover {
  color: #fff;
  opacity: 0.8;
}
.bunbun_button_01.bunbun_button_01__sub {
  background-color: var(--color-green-sub);
}
.bunbun_button_02 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  background-color: var(--color-green-main);
  color: #fff;
  padding-block: 10px;
  padding-inline: 45px;
  border-radius: 22px;
  line-height: calc(26 / 18);
  font-weight: var(--fw-semibold);
  font-size: 16px;
  position: relative;
  transition: opacity 0.3s ease;
}
.bunbun_button_02:hover {
  color: #fff;
  opacity: 0.8;
}
.bunbun_button_02::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url("/files/cont/bunbun/img/icons/icon_search.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.bunbun_button_03,
.bunbun_button_04 {
  display: inline-block;
  background-color: #fff;
  color: #333;
  padding-block: 16px;
  border-radius: 30px;
  line-height: calc(26 / 18);
  font-weight: var(--fw-semibold);
  font-size: 18px;
  position: relative;
  width: 350px;
  text-align: center;
  transition: opacity 0.3s ease;
  border: solid 3px var(--color-green-main);
  box-sizing: border-box;
}
.bunbun_button_03:hover,
.bunbun_button_04:hover {
  color: inherit;
  opacity: 0.8;
}
.bunbun_button_03::after,
.bunbun_button_04::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url("/files/cont/bunbun/img/icons/icon_arrow_green.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.bunbun_button_04 {
  border: none;
}
label.bunbun_check_01 {
  font-weight: var(--fw-semibold);
  font-size: 16px;
}
label.bunbun_check_01 > input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: solid 1px #707070;
  border-radius: 4px;
  width: 25px;
  height: 25px;
  position: relative;
  cursor: pointer;
}
label.bunbun_check_01 > input[type="checkbox"]:checked {
  background-color: var(--color-green-main);
}
label.bunbun_check_01 > input[type="checkbox"]:checked::before {
  content: "";
  display: block;
  width: 30%;
  height: 60%;
  border-style: solid;
  border-color: #fff;
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center center;
}
label.bunbun_check_01:has(input[type="checkbox"]) {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
label.bunbun_check_02 {
  font-weight: var(--fw-semibold);
  font-size: 16px;
  border: solid 1px #bfbfbf;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
}
label.bunbun_check_02 > input[type="checkbox"],
label.bunbun_check_02 > input[type="radio"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
label.bunbun_check_02:has(input[type="checkbox"]:checked),
label.bunbun_check_02:has(input[type="radio"]:checked) {
  background-color: var(--color-green-main);
  border: solid 1px #00a30c;
  color: #fff;
}
input[type="text"].bunbun_textfield,
input[type="search"].bunbun_textfield {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: solid 1px #b4b4b4;
  border-radius: 22px;
  font-size: 18px;
  padding: 8px 20px;
}
input[type="text"].bunbun_textfield::-moz-placeholder, input[type="search"].bunbun_textfield::-moz-placeholder {
  color: #a39e9e;
}
input[type="text"].bunbun_textfield::placeholder,
input[type="search"].bunbun_textfield::placeholder {
  color: #a39e9e;
}
.bunbun_badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 13px;
  border-radius: 5px;
}
.bunbun_badge.bunbun_badge__pill {
  border-radius: 13px;
}
.bunbun_badge.bunbun_badge__skelton {
  border: solid 1px var(--color-green-main);
  color: var(--color-green-main);
}
.bunbun_badge.bunbun_badge__01 {
  background-color: #faf394;
}
.bunbun_badge.bunbun_badge__02 {
  background-color: #ffbcd5;
}
.bunbun_badge.bunbun_badge__03 {
  background-color: #ffc382;
}
.bunbun_badge.bunbun_badge__04 {
  background-color: #a6e4f2;
}
.bunbun_badge.bunbun_badge__05 {
  background-color: #b0d7fe;
}
.bunbun_badge.bunbun_badge__06 {
  background-color: #d9c6ff;
}
.bunbun_badge.bunbun_badge__07 {
  background-color: #93f4c5;
}
.bunbun_badge.bunbun_badge__08 {
  background-color: #dbf38d;
}
.bunbun_tag {
  display: inline-block;
  padding: 5px 15px;
  background-color: #fff;
  font-weight: var(--fw-semibold);
  border-radius: 5px;
  font-size: 15px;
}
.bunbun_tag.is_active {
  background-color: var(--color-green-main);
  color: #fff;
}
.bunbun_tag.bunbun_tag__01 {
  border: solid 1px var(--color-green-main);
}
.bunbun_tag.bunbun_tag__02 {
  background-color: var(--color-green-light);
}
.bunbun_line {
  border-bottom: solid 2px var(--color-green-main);
}
.bunbun_card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 1px #999;
  background-color: #fff;
  color: inherit;
  height: 100%;
}
.bunbun_card:hover {
  color: inherit;
}
.bunbun_card_img {
  width: 100%;
  aspect-ratio: 320/214;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #ededed;
}
.bunbun_card_body {
  padding: 20px;
  background-color: #fff;
}
.bunbun_card_bottom {
  background-color: #fff;
  border-top: solid 1px #c7c7c7;
  padding-block: 15px;
  display: flex;
  justify-content: center;
  margin-top: auto;
}
.bunbun_card_bottom_link {
  font-size: 16px;
  color: var(--color-green-main);
  font-weight: var(--fw-semibold);
  transition: opacity 0.3s ease;
}
.bunbun_card_bottom_link:hover {
  color: var(--color-green-main);
  opacity: 0.7;
}
/* パンくずリスト */
.bunbun_breadcrumb > a {
  color: var(--color-green-main);
  text-decoration: underline;
}
/* ページネーション */
.bunbun_pagination_number.prev {
  margin-right: 30px;
}
.bunbun_pagination_number.next {
  margin-left: 30px;
}
.bunbun_mv {
  width: 1280px;
  margin-inline: auto;
  position: relative;
}
.bunbun_mv_txt {
  font-size: 35px;
  max-width: 1040px;
  padding-inline: 20px;
  position: absolute;
  top: 50%;
  left: 140px;
  transform: translateY(-50%);
  color: #fff;
  font-weight: var(--fw-bold);
  line-height: calc(50 / 35);
}
.bunbun_title {
  font-family: 'Ronde B', serif;
  font-weight: 400;
  font-size: 42px;
  padding-block: 38px 30px;
  text-align: center;
  position: relative;
}
.bunbun_title::first-letter {
  color: var(--color-green-main);
}
.bunbun_title::after {
  content: "";
  display: block;
  width: 45px;
  height: 38px;
  background-image: url("/files/cont/bunbun/img/heading_bunchan.svg");
  background-repeat: no-repeat;
  background-cover: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.bunbun_page_title_main {
  font-family: 'Ronde B', sans-serif;
  font-weight: 400;
  font-size: 35px;
  margin-bottom: 5px;
  display: block;
}
.bunbun_page_title_sub {
  text-transform: uppercase;
  color: var(--color-green-main);
  display: block;
}
.bunbun_heading {
  font-weight: var(--fw-semibold);
}
.bunbun_heading.bunbun_heading__01 {
  padding: 15px 25px;
  background-color: var(--color-green-light);
  border-left: solid 5px var(--color-green-main);
  font-size: 20px;
}
.bunbun_heading.bunbun_heading__02 {
  padding: 15px 25px;
  background-color: #fff;
  border-left: solid 5px var(--color-green-main);
  font-size: 20px;
}
.bunbun_heading.bunbun_heading__03 {
  padding-bottom: 20px;
  border-bottom: solid 1px var(--color-border);
  font-size: 20px;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.bunbun_heading.bunbun_heading__03::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--color-green-main);
  border-radius: 50%;
}
.bunbun_box {
  border-radius: 20px;
  overflow: hidden;
}
.bunbun_box_header {
  padding: 15px 30px;
}
.bunbun_box_body {
  padding: 20px 30px;
}
.bunbun_box.bunbun_box__01 {
  font-size: 18px;
}
.bunbun_box.bunbun_box__01 .bunbun_box_header {
  background-color: var(--color-green-sub);
  color: #fff;
  font-weight: var(--fw-bold);
}
.bunbun_box.bunbun_box__01 .bunbun_box_body {
  background-color: #fff;
  font-weight: var(--fw-medium);
}
.bunbun_box.bunbun_box__02 {
  font-size: 18px;
}
.bunbun_box.bunbun_box__02 .bunbun_box_header {
  background-color: var(--color-green-main);
  color: #fff;
  font-weight: var(--fw-bold);
}
.bunbun_box.bunbun_box__02 .bunbun_box_body {
  background-color: #fff;
  font-weight: var(--fw-medium);
}
.bunbun_headline {
  border: solid 3px var(--color-green-main);
  border-radius: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}
.bunbun_headline::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("/files/cont/bunbun/img/icons/icon_arrow_green.svg");
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.bunbun_headline_title {
  background-color: var(--color-green-main);
  color: #fff;
  font-size: 18px;
  padding: 30px;
  font-weight: var(--fw-semibold);
  flex-shrink: 0;
}
.bunbun_headline_date {
  padding-inline: 25px;
  color: var(--color-green-main);
  font-size: 16px;
  font-weight: var(--fw-semibold);
}
.bunbun_headline_content {
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: inherit;
  padding-right: calc(25px + 35px + 30px);
}
.bunbun_headline_content > a {
  color: inherit;
}
.bunbun_slider {
  position: relative;
  margin-bottom: 80px;
  opacity: 0;
  transition: opacity 0.3s;
}
.bunbun_slider:has(.swiper-initialized) {
  opacity: 1;
}
.bunbun_slider .swiper-slide {
  height: auto;
}
.bunbun_slider .swiper-pagination {
  position: relative;
  bottom: -20px !important;
}
.bunbun_slider .swiper-pagination-bullet {
  $size: 10px;
  background-color: #fff;
  height: $size;
  width: $size;
  opacity: 1;
}
.bunbun_slider .swiper-pagination-bullet-active {
  background-color: var(--color-green-main);
  opacity: 1;
}
.bunbun_slider .swiper-button-prev,
.bunbun_slider .swiper-button-next {
  width: 40px;
  height: 40px;
  transition: opacity 0.3s;
}
.bunbun_slider .swiper-button-prev:hover,
.bunbun_slider .swiper-button-next:hover {
  opacity: 0.8;
}
.bunbun_slider .swiper-button-prev::after,
.bunbun_slider .swiper-button-next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/files/cont/bunbun/img/icons/icon_arrow_green.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.bunbun_slider .swiper-button-prev::after {
  transform: rotateZ(180deg);
}
.bunbun_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1160px;
  height: 84px;
  margin-inline: auto;
}
.bunbun_header_nav {
  display: flex;
  -moz-column-gap: 1px;
       column-gap: 1px;
  height: 100%;
}
.bunbun_header_nav_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2px;
  padding-inline: 20px;
  position: relative;
}
.bunbun_header_nav_item::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: var(--color-green-main);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0s ease;
}
.bunbun_header_nav_item > span:nth-of-type(1) {
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: #333;
}
.bunbun_header_nav_item > span:nth-of-type(2) {
  font-size: 10px;
  color: var(--color-green-main);
  font-weight: var(--fw-medium);
}
.bunbun_header_nav_item:hover::after,
.bunbun_header_nav_item.is_active::after {
  transform: scaleX(1);
}
.bunbun_header_nav_item.is_active {
  pointer-events: none;
}
.bunbun_footer {
  padding-top: 40px;
}
.bunbun_footer_heading {
  text-align: center;
}
.bunbun_footer_heading > img {
  margin-bottom: 15px;
}
.bunbun_footer_heading > p {
  font-weight: var(--fw-semibold);
}
.bunbun_footer_nav {
  display: flex;
  justify-content: center;
  -moz-column-gap: 35px;
       column-gap: 35px;
}
.bunbun_footer_nav_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2px;
  margin-block: 40px;
  transition: opacity 0.3s;
}
.bunbun_footer_nav_item:hover {
  opacity: 0.8;
}
.bunbun_footer_nav_item > span:nth-of-type(1) {
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: #333;
}
.bunbun_footer_nav_item > span:nth-of-type(2) {
  font-size: 10px;
  color: var(--color-green-main);
  text-transform: uppercase;
}
.bunbun_footer_bottom {
  background-color: var(--color-green-main);
  padding-block: 20px;
}
.bunbun_footer_bottom > nav {
  display: flex;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.bunbun_footer_bottom > nav > a {
  color: #fff;
}
.bunbun_footer_bottom > nav > a:hover {
  text-decoration: underline;
}
/* アコーディオン */
.bunbun_accordion {
  background-color: var(--color-green-sub);
  font-size: 18px;
}
.bunbun_accordion_body {
  background-color: #fff;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bunbun_accordion_cont {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.bunbun_accordion_summary {
  position: relative;
  background-color: var(--color-green-sub);
  padding: 20px 30px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.bunbun_accordion_summary::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 20px;
  height: 10px;
  background: url("/files/cont/bunbun/img/icons/icon_arrow_under.svg");
}
.is_opened .bunbun_accordion_summary::after {
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center center;
}
/* キーワード検索 */
.bunbun_keyword_search {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(5,92,147,0.102);
}
.bunbun_keyword_search > form {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.bunbun_keyword_search > form > label {
  font-size: 18px;
  color: var(--color-green-main);
  font-weight: bold;
  margin-right: 20px;
}
.bunbun_keyword_search > form > input[type="search"],
.bunbun_keyword_search > form > input[type="text"] {
  flex-grow: 1;
  margin-right: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: solid 1px #b4b4b4;
  border-radius: 1em;
  font-size: 18px;
  padding: 8px 20px;
  flex: 1;
}
.bunbun_keyword_search > form > input[type="search"]::-moz-placeholder, .bunbun_keyword_search > form > input[type="text"]::-moz-placeholder {
  color: #a39e9e;
}
.bunbun_keyword_search > form > input[type="search"]::placeholder,
.bunbun_keyword_search > form > input[type="text"]::placeholder {
  color: #a39e9e;
}
/*
ページ特有
*/
/*
01=HOME
*/
.bunbun_page_home #headline {
  background-color: #e0f8fc;
  padding-block: 50px;
}
.bunbun_page_home #search-keyword {
  background-color: #e0f8fc;
  padding-block: 0 280px;
  background-image: url("/files/cont/bunbun/img/bg_top_area.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
.bunbun_page_home #search-area {
  background-color: #e9f5e4;
  padding-bottom: 280px;
  background-image: url("/files/cont/bunbun/img/bg_top_purpose.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
.bunbun_page_home #search-purpose {
  background-color: #e0f8fc;
  padding-bottom: 280px;
  background-image: url("/files/cont/bunbun/img/bg_top_shop.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
.bunbun_page_home #pickup {
  background-color: #e9f5e4;
  padding-bottom: 80px;
}
.bunbun_page_home #pickup .bunbun_pickup_meta {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 15px;
}
.bunbun_page_home #pickup .bunbun_pickup_name {
  font-size: 16px;
  font-weight: var(--fw-bold);
  margin-bottom: 15px;
}
.bunbun_page_home #news {
  background-color: #e0f8fc;
  padding-block: 100px;
}
.bunbun_page_home #news .bunbun_newslist {
  row-gap: initial;
  padding: 10px 20px 30px;
  background-color: #fff;
  border-radius: 30px;
}
.bunbun_page_home #news .bunbun_newslist_item {
  padding: 20px 0;
  border-bottom: solid 1px #bfbfbf;
  border-radius: 0;
}
/*
02= ぶんぶん加盟店検索
*/
/* 条件指定での検索 */
.search-condition-viewer {
  background-color: var(--color-green-light);
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 10px;
}
.conditional_search_box {
  border-radius: 20px;
  overflow: hidden;
}
.conditional_search_bottom {
  background-color: var(--color-green-sub);
  padding-block: 40px;
  display: flex;
  justify-content: center;
}
/*
03= 加盟店なび一覧
*/
.bunbun_shoplist {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 30px;
}
.bunbun_shoplist_item {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  color: inherit;
}
.bunbun_shoplist_item:hover {
  color: inherit;
}
.bunbun_shoplist .bunbun_shop_img {
  max-width: 320px;
  flex-shrink: 0;
}
.bunbun_shoplist .bunbun_shop_img > img {
  border-radius: 15px;
}
.bunbun_shoplist .bunbun_shop_tags {
  display: flex;
  margin-bottom: 10px;
}
.bunbun_shoplist .bunbun_shop_name {
  text-decoration: underline;
  margin-bottom: 20px;
  font-weight: var(--fw-bold, 700);
  font-size: 24px;
}
.bunbun_shoplist .bunbun_shop_address {
  margin-bottom: 25px;
  font-size: 15px;
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
}
.bunbun_shoplist .bunbun_shop_address::before {
  content: '';
  display: block;
  width: 15px;
  height: 20px;
  background-image: url("/files/cont/bunbun/img/icons/icon_map_pin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 2px;
}
.bunbun_shoplist .bunbun_shop_service {
  background-color: var(--color-green-light);
  padding: 20px;
  border-radius: 15px;
}
.bunbun_shoplist .bunbun_shop_service_heading {
  display: inline-block;
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  color: var(--color-green-main);
  margin-bottom: 15px;
  font-weight: var(--fw-semibold, 600);
}
.bunbun_shoplist .bunbun_shop_service_content {
  line-height: 25/15;
  margin-bottom: 15px;
  font-weight: var(--fw-semibold, 600);
  font-size: 15px;
}
.bunbun_shoplist .bunbun_shop_service_target {
  color: var(--color-green-main);
  font-weight: var(--fw-bold, 700);
  font-size: 15px;
}
/*
04=加盟店なび詳細ページ
*/
.bunbun_shop_detail {
  background-color: #fff;
  padding-block: 50px;
}
.bunbun_shop_detail_tags {
  padding-block: 30px 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bunbun_shop_detail_table {
  font-size: 18px;
  border-collapse: collapse;
}
.bunbun_shop_detail_table > tbody > tr > th,
.bunbun_shop_detail_table > tbody > tr > td {
  padding-block: 25px;
  border-bottom: solid 1px var(--color-border);
}
.bunbun_shop_detail_table > tbody > tr > th {
  color: var(--color-green-main);
  text-align: left;
}
.bunbun_shop_detail .bunbun_shop_badges {
  margin-bottom: 10px;
}
.bunbun_shop_detail .bunbun_shop_badges > .bunbun_badge {
  font-size: 15px;
}
.bunbun_shop_detail .bunbun_shop_name {
  text-decoration: none;
  margin-bottom: 30px;
  font-weight: var(--fw-semibold, 600);
  font-size: 32px;
}
.bunbun_shop_detail .bunbun_shop_lead {
  font-size: 18px;
  line-height: calc(25 / 16);
}
.bunbun_shop_detail .bunbun_shop_img {
  overflow: hidden;
  aspect-ratio: 460/307;
  width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bunbun_shop_detail .bunbun_shop_img > img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 15px;
}
.bunbun_shop_detail .bunbun_shop_service {
  background-color: var(--color-green-light);
  padding: 40px;
  margin-bottom: 60px;
  border-radius: 20px;
}
.bunbun_shop_detail .bunbun_shop_service_heading {
  display: inline-block;
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  color: var(--color-green-main);
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: var(--fw-semibold, 600);
}
.bunbun_shop_detail .bunbun_shop_service_content {
  margin-bottom: 15px;
  line-height: calc(25 / 15);
  font-weight: var(--fw-semibold, 600);
  font-size: 20px;
}
.bunbun_shop_detail .bunbun_shop_service_target {
  color: var(--color-green-main);
  font-weight: var(--fw-bold, 700);
}
.bunbun_shop_detail .bunbun_shop_service_target {
  font-size: 18px;
}
.bunbun_shop_detail .bunbun_shop_map {
  margin-bottom: 40px;
}
.bunbun_shop_detail .bunbun_shop_map > iframe {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 5/2;
}
/*
05= お知らせ（一覧）
*/
.bunbun_newslist {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 30px;
}
.bunbun_newslist_item {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  color: inherit;
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  transition: opacity 0.3s ease;
}
.bunbun_newslist_item:hover {
  color: inherit;
  opacity: 0.8;
}
.bunbun_news_tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.bunbun_news_tags > .bunbun_tag {
  font-size: 16px;
}
.bunbun_news_img {
  overflow: hidden;
  margin-bottom: 20px;
  width: 250px;
  aspect-ratio: 250/167;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.bunbun_news_img > img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 15px;
}
.bunbun_news_meta {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 15px;
}
.bunbun_news_date {
  color: var(--color-green-main);
  font-size: 15px;
  font-weight: var(--fw-semibold);
}
.bunbun_news_tag {
  display: inline-block;
  padding: 5px 15px;
  border: solid 1px var(--color-green-main);
  border-radius: 5px;
  font-size: 15px;
  font-weight: var(--fw-semibold);
}
.bunbun_news_title {
  font-weight: var(--fw-semibold);
  font-size: 18px;
  line-height: calc(25 / 15);
}
/*
06= お知らせ（詳細）
*/
.bunbun_news_detail {
  background-color: #fff;
  padding-block: 50px;
  overflow: hidden;
}
.bunbun_news_detail .bunbun_news_date {
  color: #959595;
}
.bunbun_news_detail .bunbun_news_title {
  font-size: 32px;
  font-weight: var(--fw-bold);
  line-height: 1.56;
  padding-bottom: 40px;
  position: relative;
}
.bunbun_news_detail p {
  font-size: 18px;
  margin-bottom: 1em;
  line-height: 1.66;
  font-weight: var(--fw-medium);
}
/*
07= ぶんぶんクラブとは
*/
.bunbun_fee_table {
  width: 100%;
  background-color: #fff;
  border-collapse: collapse;
  table-layout: fixed;
}
.bunbun_fee_table caption {
  background-color: var(--color-green-sub);
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding-block: 15px;
  font-weight: var(--fw-bold);
}
.bunbun_fee_table thead {
  background-color: #dde4ba;
  font-size: 16px;
}
.bunbun_fee_table tbody {
  font-weight: var(--fw-medium);
}
.bunbun_fee_table th,
.bunbun_fee_table td {
  border-bottom: solid 1px var(--color-border);
  text-align: center;
  padding-block: 15px;
}
.bunbun_fee_table tr > th:not(:last-of-type),
.bunbun_fee_table tr > td:not(:last-of-type) {
  border-right: solid 1px var(--color-border);
}
.bunbun_fee_table tr > td:last-of-type {
  color: var(--color-green-main);
  font-weight: bold;
}
/*
08= 会員規約
*/
.bunbun_page_membership ol:not(:last-of-type) {
  margin-bottom: 50px;
}
.bunbun_page_membership ol > li {
  list-style-type: decimal;
  list-style-position: outside;
  margin-left: 1em;
  font-size: 18px;
  line-height: 1.8;
}
.bunbun_page_membership ol > li:not(:last-of-type) {
  margin-bottom: 20px;
}
/*
09= お問い合わせ
*/
.bunbun_page_contact .bunbun_box_header {
  font-size: 20px;
  text-align: center;
  padding-block: 20px;
}
.bunbun_page_contact .bunbun_box_body {
  padding: 25px 50px 40px;
}
/*
10= 会員証
*/
body:has(.bunbun_page_membership_card) .bunbun_membership_button {
  display: none;
}
.bunbun_membership_card.reflection {
  position: relative;
  overflow: hidden;
}
.bunbun_membership_card.reflection::after {
  content: "";
  display: block;
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 4s ease-in-out infinite;
}
@keyframes reflect {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  50% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  90% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  91% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
