@charset "UTF-8";
/*************************************************************
事業案内CSS
*************************************************************/
button * {
  pointer-events: none;
}

[v-cloak] {
  display: none;
}

/* タブ選択ボタンリスト ************************************************************/
.businessSelectTabOuter {
  max-width: 1635px;
  width: 100%;
  height: auto;
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .businessSelectTabOuter {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.businessSelectTabLeadTextOuter {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

/* ボタンをクリックすると絞り込みができます */
.businessSelectTabLeadText {
  width: fit-content;
  min-width: 600px;
  height: auto;
  display: block;
  text-align: center;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #475147;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .businessSelectTabLeadText {
    min-width: auto;
    font-size: 0.6875rem;
  }
}
.businessSelectTabLeadText::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  left: 0;
  right: 0;
  bottom: -5px;
  margin-left: auto;
  margin-right: auto;
  background-color: #475147;
  border-radius: 6px;
  transform: rotate(45deg) skew(12deg, 12deg);
  z-index: -1;
}

/* タブ選択ボタンリスト */
.businessSelectTabListOuter {
  margin-top: 37px;
}

.businessSelectTabList {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 20px;
}
@media screen and (max-width: 750px) {
  .businessSelectTabList {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 15px;
  }
}

@media screen and (max-width: 750px) {
  .businessSelectTabListItem {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .businessSelectTabListItem:first-of-type {
    grid-row: 1/2;
    grid-column: 1/3;
  }
}

.businessSelectTabListBtn {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-top: 1em;
  padding-bottom: 1em;
  cursor: pointer;
}
.businessSelectTabListBtn * {
  pointer-events: none;
}

.businessSelectTabListBtn-genre {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .businessSelectTabListBtn-genre {
    font-size: 0.875rem;
  }
}

.businessSelectTabListBtn-subGenre {
  font-size: 0.9375rem;
  color: #429e3c;
  font-weight: bold;
  margin-top: 7px;
}
@media screen and (max-width: 750px) {
  .businessSelectTabListBtn-subGenre {
    font-size: 0.5625rem;
  }
}

/* タブパネル ************************************************************/
.businessTabPanelOuter {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(auto-fill, minmax(100px, 1fr));
  gap: 124px 0px;
  padding-top: 113px;
  padding-bottom: 122px;
}
@media screen and (max-width: 750px) {
  .businessTabPanelOuter {
    gap: 36px 0px;
    padding-top: 35px;
    padding-bottom: 60px;
  }
}

.businessTabPanelWrapper {
  width: 100%;
  height: auto;
  display: none;
}
.businessTabPanelWrapper.active {
  display: block;
  animation: businessTabPanelFadeIn 1s;
}

@keyframes businessTabPanelFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@starting-style {
  .businessTabPanelWrapper.active {
    opacity: 0;
  }
}
/* タブパネルの見出し */
.businessTabPanelTtlHeader {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.businessTabPanelTtlHeader-genre {
  width: 100%;
  height: auto;
  display: block;
  font-size: 2.25rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .businessTabPanelTtlHeader-genre {
    font-size: 1.125rem;
  }
}

.businessTabPanelTtlHeader-subGenre {
  width: 100%;
  height: auto;
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
  color: #429e3c;
  margin-top: 16px;
}
@media screen and (max-width: 750px) {
  .businessTabPanelTtlHeader-subGenre {
    font-size: 0.8125rem;
    margin-top: 8px;
  }
}

/* タブパネルカードレイアウトリスト ************************************************************/
.businessListOuter {
  margin-top: 56px;
}
@media screen and (max-width: 750px) {
  .businessListOuter {
    margin-top: 27px;
  }
}

.businessList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}
@media screen and (max-width: 750px) {
  .businessList {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.businessListBtn {
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 750px) {
  .businessListBtn {
    padding: 10px;
    min-height: auto;
  }
}

.businessListBtnImageOuter {
  width: 100%;
  display: block;
  aspect-ratio: 330/204;
  overflow: hidden;
  border-radius: 15px;
}
@media screen and (max-width: 750px) {
  .businessListBtnImageOuter {
    border-radius: 7px;
  }
}

.businessListBtnImage {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 330/204;
}

.businessListBtnTextOuter {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 16px;
  margin-bottom: 9px;
}
@media screen and (max-width: 750px) {
  .businessListBtnTextOuter {
    margin-top: 5px;
    margin-bottom: 12px;
  }
}

.businessListBtnText {
  width: 100%;
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .businessListBtnText {
    font-size: 0.75rem;
  }
}

.businessListBtnOpenModalTextOuter {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}
@media screen and (max-width: 750px) {
  .businessListBtnOpenModalTextOuter {
    justify-content: center;
  }
}

.businessListBtnOpenModalText {
  width: fit-content;
  background-color: #429e3c;
  color: #ffffff;
  line-height: 1;
  min-height: 48px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  padding-left: 18px;
  padding-right: 42px;
  position: relative;
}
.businessListBtn:hover .businessListBtnOpenModalText, .businessListBtn:focus .businessListBtnOpenModalText {
  background-color: #a1c12f;
}
@media screen and (max-width: 750px) {
  .businessListBtnOpenModalText {
    min-height: 27px;
    font-size: 0.625rem;
  }
}
.businessListBtnOpenModalText::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: 12px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  background: url(/common/images/icon_zoomin.png) no-repeat left top;
  background-size: 20px 20px;
}
@media screen and (max-width: 750px) {
  .businessListBtnOpenModalText::after {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
  }
}

/* モーダルウィンドウ ************************************************************/
.businessModalContentsOuter {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .businessModalContentsOuter {
    flex-direction: column-reverse;
  }
}

.businessModalTextContentsOuter {
  width: 48.6526%;
  display: block;
}
@media screen and (max-width: 750px) {
  .businessModalTextContentsOuter {
    width: 100%;
    margin-top: 15px;
  }
}

.businessModalImageContentsOuter {
  width: 44.9101%;
  display: block;
  position: relative;
}
@media screen and (max-width: 750px) {
  .businessModalImageContentsOuter {
    width: 100%;
  }
}

.businessModalTextContentsTtl {
  font-size: 1.75rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .businessModalTextContentsTtl {
    font-size: 1rem;
  }
}

.businessModalTextContentsText {
  font-size: 1.25rem;
  margin-top: 21px;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .businessModalTextContentsText {
    font-size: 0.75rem;
  }
}

[data-dialogname=businessModal] .swiper {
  border-radius: 15px;
}
[data-dialogname=businessModal] .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}
[data-dialogname=businessModal] .swiper-pagination {
  position: static !important;
  margin-top: 20px !important;
}
@media screen and (max-width: 750px) {
  [data-dialogname=businessModal] .swiper-pagination {
    margin-top: 10px !important;
  }
}
[data-dialogname=businessModal] .swiper-pagination-bullet {
  min-width: 48px !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem !important;
  background-color: #eff4e4 !important;
  color: #475147 !important;
  font-weight: bold;
  opacity: 1 !important;
  margin: 0 10px !important;
}
@media screen and (max-width: 750px) {
  [data-dialogname=businessModal] .swiper-pagination-bullet {
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 0.625rem !important;
  }
}
[data-dialogname=businessModal] .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #429e3c !important;
  color: #ffffff !important;
}

/* 内容を閉じるボタン */
.businessModalCloseBtnOuter {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

.businessModalCloseBtn {
  width: fit-content;
  background-color: #429e3c;
  color: #ffffff;
  line-height: 1;
  min-height: 48px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  padding-left: 18px;
  padding-right: 42px;
  position: relative;
}
@media (any-hover: hover) {
  .businessModalCloseBtn:hover, .businessModalCloseBtn:focus {
    background-color: #a1c12f;
  }
}
@media screen and (max-width: 750px) {
  .businessModalCloseBtn {
    min-height: 27px;
    font-size: 0.625rem;
  }
}
.businessModalCloseBtn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: 12px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  background: url(/common/images/icon_zoomout.png) no-repeat left top;
  background-size: 20px 20px;
}
@media screen and (max-width: 750px) {
  .businessModalCloseBtn::after {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
  }
}
/*# sourceMappingURL=business.css.map */
