@charset "UTF-8";
@import url(variables.css);
/*============================================
titleArea
=============================================*/
.titleArea {
  padding: 42px 0;
  background: var(--light-gray);
}
.titleArea .wrapper {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.titleArea.center .wrapper {
  justify-content: center;
}
.titleArea .title {
  position: relative;
  font-family: Brandon_bld;
  font-size: 2em;
  letter-spacing: 2px;
  padding-top: 8px;
}
.titleArea.center .title {
  padding-top: 0;
}
.titleArea.center .title::before,
.titleArea.center .title::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  width: 68px;
  height: 1px;
  background-color: var(--text-color);
  transform: translateY(-50%);
}
.titleArea.center .title::before {
  left: -78px;
}
.titleArea.center .title::after {
  right: -78px;
}
.titleArea .lead {
  color: var(--text-color);
  width: 500px;
}
@media (max-width: 768px) {
  .titleArea .wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
  }
  .titleArea .lead {
    width: 100%;
    padding-top: 35px;
  }
}
@media (max-width: 400px) {
  .titleArea .wrapper {
    padding: 0 30px;
  }
  .titleArea.center .title::before,
  .titleArea.center .title::after {
    width: 40px;
  }
  .titleArea.center .title::before {
    left: -50px;
  }
  .titleArea.center .title::after {
    right: -50px;
  }
}
/*============================================
productsList
=============================================*/
.productsList {
  padding: 35px 0 0;
}
.productsList .select {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 35px;
  background-color: #FFF;
}
.productsList .select::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 90%;
  background-color: #000;
  opacity: .16;
  filter: blur(6px);
  z-index: -1;
}
.select--container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 150px 1fr;
  padding-bottom: 14px;
}
.select--container .category {
  padding-left: 40px;
  line-height: 2em;
}
.select--container .selection:not(:first-of-type),
.select--container .category:not(:first-of-type){
  border-top: solid 1px var(--light-gray);
  padding-top: 20px;
}
.select--container .selection dd {
  display: inline-block;
  padding-bottom: 20px;
}
.productsList .select input[type=checkbox] {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  background-color: #E7D3CB;
  border-radius: 3px;
  margin: 0;
  cursor: pointer;
}
.productsList .select input[type=checkbox]:checked {
  background-color: var(--red);
}
.productsList .select input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 6px;
  top: 50%;
  left: 50%;
  border-left: solid 2px #F9F9F9;
  border-bottom: solid 2px #F9F9F9;
  transform: translate(-50%, calc(-50% - 2px)) rotate(315deg);
}
.label--category {
  padding-right: 24px;
  padding-left: 8px;
  vertical-align: middle;
  cursor: pointer;
}
.switch--accordion .accordion {
  position: relative;
}
.switch--accordion .accordion::before,
.switch--accordion .accordion::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
}
.switch--accordion .accordion::before {
  width: 20px;
  height: 20px;
  left: -32px;
  transform: translateY(-50%);
  border: solid 1px var(--text-color);
}
.switch--accordion .accordion::after {
  width: 9px;
  height: 9px;
  left: -26px;
  border-top: solid 1px var(--text-color);
  border-right: solid 1px var(--text-color);
  transform: translateY(calc(-50% + 2px)) rotate(-45deg);
  transition: transform .3s;
}
.accordion + span {
  position: relative;
}
.accordion + span::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 16px;
  width: 23px;
  height: 20px;
  transform: translateY(-50%);
  background: transparent url(../img/icon-filter.svg) center center / contain no-repeat;
}
.switch--accordion.close .accordion::after {
  transform: translateY(calc(-50% - 2px)) rotate(135deg);
}
.productsListCenter {
  text-align: center;
}
.flex-products {
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
}
.products {
  display: inline-block;
  width: 25%;
  margin-bottom: 20px;
  text-align: center;
}
.products .product-tags {
  min-height: 1.5em;
}
.products .photo {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 200px;
  margin: 0 auto 26px;
}
.products .photo::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 160px;
  background-color: var(--light-gray);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.products .photo img {
  max-height: 100%;
  object-fit: contain;
}
.products .name {
  display: inline-block;
  text-align: center;
  font-family: Brandon_bld;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.5em;
}
.products .lead span {
  position: relative;
  display: inline-block;
  padding: 5px 25px 5px;
  color: var(--text-color);
  font-size: 0.8125em;
  line-height: 1.2em;
  white-space: pre-wrap;
  text-align: center;
}
.products .area span {
  display: inline-block;
  line-height: 1.5em;
  font-size: 0.75em;
}
.products .area span:first-child {
  padding: 0 8px;
  border: solid 1px var(--text-color);
}
.products .area span:last-child {
  padding-left: 16px;
}
.products .new,
.products .limited {
  display: inline-block;
}
.products .new {
  color: var(--red);
}
.products .limited {
  color: #2a5b79;
}
.products:hover .photo,
.products:hover .name,
.products:hover .lead:before {
  opacity: .7;
}

@media (max-width: 768px) {
  .productsList {
    width: 100%;
    margin: 0 auto;
  }
  .productsListCenter {
    text-align: center;
  }
  .productsList .select {
    padding-left: 40px;
    padding-right: 40px;
  }
  .products {
    width: 33%;
  }
  .products .lead {
    padding: 10px;
  }
  .products .area {
    display: none;
  } 
}
@media (max-width: 700px) {
  .products .photo {
    width: 150px;
    height: 150px;
  }
  .products .photo::after {
    width: 150px;
    height: 110px;
  }
}
@media (max-width: 550px) {
  .productsList .select {
    padding-left: 30px;
    padding-right: 30px;
  }
  .select--container {
    grid-template-columns: 100px 1fr;
  }
  .select--container .category {
    padding-left: 0;
  }
  .products {
    width: 50%;
  }
}
/* Products詳細 */
.product--name-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 35px 0;
}
.product--name {
  font-family: Brandon_lgt;
  font-size: 2.75em;
  color: var(--dark-gray);
  line-height: 63px;
}
.icon-list {
  display: flex;
  cursor: pointer;
}
.icon-list.no-modal {
  cursor: default;
}
.icon-list li {
  width: 78px;
  vertical-align: top;
  margin-left: 18px;
  transition: all .3s;
}
.icon-list li:hover {
  opacity: .5;
}
.icon-list.no-modal li:hover {
  opacity: 1;
}
.product--info {
  background-color: #F3F1EC;
  padding-top: 70px;
  padding-bottom: 70px;
}
.img--carousel .main-img {
  width: 450px;
  height: 450px;
  background-color: #FFF;
  border: solid 1px var(--dark-gray);
}
.img--carousel .main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.img--carousel .caption {
  font-size: 0.875em;
  color: var(--text-color);
  padding: 12px 0 30px;
}
.img--carousel .thumbnail-list li {
  display: inline-block;
  width: 55px;
  height: 55px;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: opacity .3s;
  background-color: #FFF;
  border: solid 1px transparent;
}
.img--carousel .thumbnail-list li:hover {
  opacity: .5;
}
.img--carousel .thumbnail-list li.shown {
  border: solid 1px #707070;
}
.product--info .description {
  width: 100%;
  max-width: 450px;
}
.product--info .description .catch {
  font-size: 1.125em;
  padding-bottom: 20px;
  white-space: pre-wrap;
}
.product--info .description .detail {
  white-space: pre-wrap;
}
.product--data {
  padding: 70px 0;
}
.product--data .product--movie {
  margin: 0 auto 70px;
  width: 640px;
  height: 360px;
}
.product--bannerArea__col2 {
  display: grid;
  width: 100%;
  max-width: 840px;
  grid-template-columns: 250px 1fr;
  align-items: center;
  column-gap: 80px;
  margin: 0 auto 70px;
  background-color: var(--text-color);
  color: #fff;
  padding: 40px;
}
.shadow--gra {
  position: relative;
}
.shadow--gra::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  background-image: linear-gradient(90deg, rgba(220, 255, 242, 1), rgba(111, 211, 205, 1));
  z-index: -1;
}
.data-table {
  display: grid;
  grid-template-columns: calc(50% - 50px) calc(50% - 50px);
  grid-template-rows: min-content 1fr;
  column-gap: 100px;
  row-gap: 30px;
}
.data-table h2 {
  padding-bottom: 30px;
}
.data-table .spec {
  grid-row: 1 / 3;
  grid-column: 1;
}
.data-table .exam-data {
  grid-row: 1;
  grid-column: 2;
}
.data-table .links {
  grid-row: 2;
  grid-column: 2;
}
.data-table .links a {
  transition: all .3s;
}
.data-table .links a:hover {
  opacity: .5;
}
.spec-table {
  width: 100%;
  text-align: left;
  vertical-align: top;
}
.spec-table tr {
  border-top: solid 1px #DDDDDD;
  border-bottom: solid 1px #DDDDDD;
}
.spec-table th,
.spec-table td {
  padding: 10px 0 10px 16px;
  white-space: pre-wrap;
}
.spec-table th {
  background-color: var(--light-gray);
}
.spec .spec-table th,
.exam-data .spec-table th {
  width: 126px;
}
.spec .spec-table.spec-table--pellet th:first-child {
  width: 100px;
}
.spec .spec-table.spec-table--pellet th:nth-child(2) {
  width: 156px;
}
.exam-data .spec-table.spec-table--pellet th:first-child {
  width: 156px;
}
.exam-data .spec-table.spec-table--pellet th:nth-child(2),
.exam-data .spec-table.spec-table--pellet th:first-child:not([rowspan]) {
  width: 100px;
}
/* .exam-data .spec-table th {
  width: 252px;
} */
td.eco-label {
  padding: 0 0 0 16px;
}
.eco-label img {
  height: 22px;
}
.product--data .data-download {
  display: inline-block;
  width: 100%;
  padding: 20px 0;
  margin-bottom: 12px;
  border: solid 1px var(--gray);
}
.product--point {
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: solid 1px var(--dark-gray);
  border-bottom: solid 1px var(--dark-gray);
}
.product--point h2,
.product--point h3 {
  font-size: 1.125em;
}
.product--point h3 {
  padding-top: 20px;
}
.point--wrapper {
  width: calc(100% + 48px);
  display: flex;
  flex-wrap: wrap;
  margin: 0 -24px;
}
.point--content {
  width: 300px;
  margin: 0 24px;
  padding-top: 28px;
}
.point--content .point-img--wrapper {
  width: 100%;
  height: 200px;
  text-align: center;
}
.point--content img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.product--inspiration {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 100px 0 0;
}
.inspiration--content {
  transition: opacity .3s;
  flex-basis: 33%;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 10px;
  max-height: 330px;
}
.inspiration--content:hover {
  opacity: .5;
}
.product--inspiration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-modal {
  position: absolute;
  background-color: #FFF;
  padding: 10px 80px;
  width: calc(100% - 40px);
  max-width: 850px;
  height: calc(100% - 180px);
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
}
.product-modal--img {
  width: 100%;
  height: 100%;
}
.product-modal--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1080px) {
  .img--carousel,
  .product--info .description {
    width: 50%;
    padding: 0 20px;
  }
  .img--carousel .main-img {
    width: 100%;
    height: auto;
  }
  .point--wrapper {
    width: 696px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .product--name-wrapper {
    display: block;
    text-align: center;
  }
  .product--name {
    font-size: 2.25em;
  }
  .product--bannerArea__col2 {
    grid-template-columns: 100%;
    row-gap: 16px;
  }
  .icon-list {
    justify-content: center;
  }
  .icon-list li {
    width: 56px;
    margin: 0 9px;
  }
  .img--carousel .main-img,
  .img--carousel .caption,
  .img--carousel .thumbnail-list {
    max-width: 450px;
    margin: 0 auto;
  }
  .img--carousel {
    width: 100%;
  }
  .product--info .description {
    width: 100%;
    padding-top: 68px;
    max-width: none;
  }
  .data-table {
    display: block;
  }
  .data-table .exam-data,
  .data-table .links {
    padding-top: 30px;
  }
  .data-table .links a {
    display: inline-block;
    padding-bottom: 8px;
  }
  .product--data .product--movie {
    width: 100%;
    max-width: 640px;
    height: auto;
  }
  .product--data a.data-download {
    display: none;
  }
  .point--wrapper {
    width: calc(100% + 48px);
    margin: 0 -24px;
    padding: 0 40px;
  }
  .point--content {
    width: calc(50% - 48px);
  }
  .inspiration--content {
    flex-basis: 50%;
  }
  .product-modal {
    max-width: 600px;
    margin: 0;
    padding: 50px 16px 30px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 650px) {
  .point--wrapper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0;
    display: block;
  }
  .point--content {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 500px) {
  .exam-data .spec-table th {
    width: 200px;
    padding: 10px 16px;
  }
  .product-modal--wrapper {
    overflow: auto;
  }
  .product-modal {
    height: auto;
    max-height: calc(100vh - 110px);
    top: 90px;
    overflow: auto;
  }
}
@media (max-width: 400px) {
  .spec-table td {
    width: 100%;
    display: block;
  }
  .spec .spec-table th,
  .exam-data .spec-table th,
  .spec .spec-table.spec-table--pellet th:first-child,
  .spec .spec-table.spec-table--pellet th:nth-child(2),
  .exam-data .spec-table.spec-table--pellet th:first-child,
  .exam-data .spec-table.spec-table--pellet th:first-child:not([rowspan]),
  .exam-data .spec-table.spec-table--pellet th:nth-child(2) {
    display: block;
    width: 100%;
  }
  .product-modal {
    top: 110px;
  }
  .product-modal--img {
    margin: 0 auto;
  }
}
/*==============================
アイコン説明ポップアップ
==============================*/
.popup--wrapper {
  top: 0;
  left: 0;
  width: 100vw;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity .3s;
  z-index: -999;
}
.popup--wrapper.bg-dark {
  background-color: var(--text-color);
}
.popup--wrapper.show {
  position: fixed;
  overflow-y: scroll;
  height: 100vh;
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}
.icon-description {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1336px;
  max-height: 926px;
}
.icon-description .forPC {
  display: inline-block;
}
.icon-description .forSP {
  display: none;
}
.icon-description img {
  object-fit: cover;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 70px;
  transition: all .3s;
}
.close-btn span {
  position: absolute;
  display: inline-block;
  width: 55px;
  height: 55px;
  cursor: pointer;
}
.close-btn:hover {
  opacity: .5;
}
.close-btn span::before,
.close-btn span::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 0;
  width: 55px;
  height: 3px;
  background-color: var(--text-color);
}
.close-btn span::before {
  transform: rotate(45deg);
}
.close-btn span::after {
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .icon-description {
    width: calc(100% - 20px);
    top: 50px;
    transform: translate(-50%, 0);
  }
  .icon-description .forPC {
    display: none;
  }
  .icon-description .forSP {
    display: inline-block;
  }
  .close-btn span::before,
  .close-btn span::after {
    top: 30%;
    width: 35px;
  }
}
@media (max-width: 400px) {
  .close-btn span::before,
  .close-btn span::after {
    top: 20%;
    width: 25px;
    height: 2px;
  }
}
/*=========================
This is Jotul
=========================*/
.category-list {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, 120px);
  grid-auto-rows: min-content;
  gap: 16px;
  padding-top: 66px;
  padding-bottom: 66px;
  justify-content: space-between;
}
.category-list li {
  position: relative;
  width: 120px;
  height: 30px;
  border: solid 1px #eb3323;
  border-radius: 16px;
  text-align: center;
  letter-spacing: -1px;
  background-color: #fff;
  line-height: 1.65em;
}
.category-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(calc(-50% - 2px)) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: solid 1px #eb3323;
  border-bottom: solid 1px #eb3323;
}
.thisisjotul {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 60px;
  margin-bottom: 60px;
}
.thisisjotul .content {
  transition: opacity .3s;
}
.thisisjotul .content:hover {
  opacity: .5;
}
.thisisjotul .content img {
  float: left;
  width: 170px;
  margin-right: 20px;
}
.thisisjotul .content-category {
  display: inline-block;
  color: var(--red);
  padding-bottom: 2px;
  margin-bottom: 8px;
  border-bottom: solid 3px var(--red);
}
.thisisjotul-article span {
  text-decoration: underline;
  text-decoration-color: red;
}
.page-numbers {
  text-align: center;
}
.page-numbers li {
  display: inline-block;
}
.page-numbers li span,
.page-numbers li a {
  display:  inline-block;
  width: 39px;
  height: 39px;
  background-color: var(--light-gray);
  margin: 0 1.5px;
  line-height: 38px;
  transition: all .3s;
}
.page-numbers .current,
.page-numbers li:hover a {
  background-color: var(--text-color);
  color: #FFF;
  opacity: 1;
}
/* .pagination {
  text-align: center;
}
.pagination li {
  display: inline-block;
}
.pagination li span,
.pagination li a {
  display:  inline-block;
  width: 39px;
  height: 39px;
  background-color: var(--light-gray);
  margin: 0 1.5px;
  line-height: 38px;
  transition: all .3s;
}
.pagination li.current span,
.pagination li:hover a {
  background-color: var(--text-color);
  color: #FFF;
  opacity: 1;
} */
.thisisjotul-aside {
  padding-top: 100px;
  padding-bottom: 20px;
}
.thisisjotul-aside h2 {
  font-size: 1.5em;
  padding-bottom: 40px;
}
.old-columns--container {
  display: grid;
  width: calc(100% - 40px);
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 55px);
  row-gap: 20px;
  column-gap: 20px;
}
.old-columns--container a {
  background-color: var(--text-color);
  color: #FFF;
  padding-left: 20px;
  padding-top: 15px;
}
/*=======================
This is Jotul, NEWSなど
記事ページ
=======================*/
.article--single {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.article--single.news {
  padding-top: 66px;
}
.article-head {
  padding-bottom: 50px;
}
.article-head span {
  display: inline-block;
  color: var(--red);
  padding-right: 8px;
  text-decoration: underline;
}
.article-head h1 {
  padding-top: 16px;
  font-size: 1.5em;
  font-weight: bold;
}
.article-content {
  position: relative;
  padding-bottom: 70px;
}
.article-content img {
  width: 100%;
  margin-bottom: 68px;
}
.article-content p {
  padding-bottom: 32px;
}
.article-content strong {
  font-size: 0.875em;
  line-height: 2em;
}
.article-content h2 {
  position: relative;
  font-size: 1.25em;
  padding-left: 40px;
  padding-bottom: 32px;
}
.article-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 30px;
  height: 3px;
  background-color: var(--red);
}
.btn-black {
  padding-top: 92px;
  text-align: center;
}
.btn-white {
  text-align: center;
}
.btn-black a {
  display: inline-block;
  width: 307px;
  padding: 15px 0;
  background-color: var(--text-color);
  color: #FFF;
}
.btn-white a {
  display: inline-block;
  width: 170px;
  padding: 4px 0;
  margin-top: 16px;
  color: var(--text-color);
  background-color: #FFF;
}
@media (max-width: 1080px) {
  .category-list {
    padding-left: 40px;
  }
  .thisisjotul,
  .thisisjotul-article {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .category-list {
    padding-left: 0;
  }
  .thisisjotul {
    padding: 0;
    column-gap: 20px;
  }
  .thisisjotul-article {
    padding: 0;
  }
  .thisisjotul .content img {
    float: none;
    display: inline-block;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .article-content h2 {
    padding-left: 16px;
  }
  .article-content h2::after {
    width: 12px;
  }
}
@media (max-width: 700px) {
  .old-columns--container {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 55px);
  }
}
@media (max-width: 460px) {
  .old-columns--container {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 55px);
  }
  .pagination li span,
  .pagination li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
/*===============================
INSPIRATION
===============================*/
.para.inspiration #container {
  padding-top: 20px;
  column-count: 3;
  column-gap: 20px;
}
.para.inspiration #container a {
  display: inline-block;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.para.inspiration #container a:hover {
	opacity:0.8;
}
.para.inspiration #container .item img {
  width: 100%;
}
.inspiration-modal--wrapper,
.product-modal--wrapper {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(11, 11, 11, .8);
  z-index: 1000;
}
.inspiration-modal {
  position: absolute;
  display: grid;
  grid-template-columns: 500px 1fr;
  grid-template-rows: 300px 1fr;
  column-gap: 24px;
  background-color: #FFF;
  padding: 60px 30px 50px;
  width: 100%;
  max-width: 850px;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
}
.inspiration-modal--img {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.inspiration-modal--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.inspiration-modal--info {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  text-align: center;
}
.inspiration-modal--info p {
  text-align: center;
}
.inspiration-modal--info h3 {
  font-size: 1.25em;
  font-weight: bold;
  font-family: Brandon_bld;
  padding-bottom: 5px;
}
.inspiration-modal--thumbnail {
  width: 150px;
  height: 200px;
  margin: 20px auto 15px;
  padding: 25px 0;
  background-color: #F3F3F3;
}
.inspiration-modal--link {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.btn-black.inspiration-modal--link {
  padding-top: 0;
}
.btn-black.inspiration-modal--link a {
  width: 100%;
}
.inspiration-modal .close-btn {
  top: 12px;
  right: 50px;
}
.inspiration-modal .close-btn span {
  width: 35px;
  height: 35px;
}
.inspiration-modal .close-btn span::before,
.inspiration-modal .close-btn span::after {
  width: 35px;
  height: 3px;
}
@media all and (max-width: 850px) {
  .inspiration-modal {
    width: calc(100% - 40px);
    margin: 0 20px;
    grid-template-rows: 330px 1fr;
    left: auto;
    transform: translateX(0);
  }
}
@media all and (max-width: 768px) {
  .inspiration-modal--wrapper {
    overflow-y: auto;
  }
  .inspiration-modal {
    max-width: 600px;
    margin: 0;
    padding: 75px 30px 50px;
    grid-template-columns: minmax(auto, 300px) minmax(120px, auto
    );
    grid-template-rows: 1fr max-content;
    column-gap: 24px;
    row-gap: 24px;
    left: 50%;
    transform: translateX(-50%);
  }
  .inspiration-modal--img {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    margin: 0 auto;
  }
  .inspiration-modal--info {
    text-align: left;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .inspiration-modal--info  p {
    text-align: left;
  }
  .inspiration-modal--thumbnail {
    width: 100%;
    max-width: 150px;
    height: auto;
    max-height: 200px;
    margin: 20px auto 15px 0;
  }
  .inspiration-modal--link {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .inspiration-modal .close-btn {
    top: 24px;
    right: 45px;
  }
}
@media all and (max-width: 600px) {
  .inspiration-modal {
    margin: 0 20px;
    left: auto;
    transform: translateX(0);
  }
}
@media all and (max-width: 400px) {
  .para.inspiration #container {
    column-count: 2;
  }
  .inspiration-modal {
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, min-content);
    column-gap: 0;
    row-gap: 24px;
    top: 110px;
  }
  .inspiration-modal--img {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    margin: 0 auto;
  }
  .inspiration-modal--info {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .inspiration-modal--link {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
}
/*===============================
GUIDE
===============================*/
section.guide .inner {
  max-width: 800px;
  padding-top: 45px;
}
.section-title {
  font-size: 1.5em;
  padding-bottom: 45px;
}
.placement-guide {
  width: 100%;
  max-height: 230px;
  padding: 40px 100px 0;
  margin-bottom: 10px;
  background-color: #FFF;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
}
.placement-guide:last-of-type {
  margin-bottom: 110px;
}
.placement-guide h3 {
  font-size: 1.125em;
  color: #eb3323;
  text-align: center;
}
.placement-guide p {
  padding: 30px 0 60px;
}
.caution {
  color: var(--red);
}
.caution--ul {
  text-decoration: underline;
}
@media all and (max-width: 768px) {
  .placement-guide {
    padding: 40px 60px 0;
    max-height: none;
  }
}
@media all and (max-width: 400px) {
  .placement-guide {
    padding: 30px 30px 0;
  }
}
@media screen and (max-width: 480px){
	.contentArea{
		width:100%;
	}
	
	.titleArea .lead{
		width:80%;
		text-align:left;
	}
}
/*================================
DEALERS
================================*/
section.dealers .inner {
  max-width: 800px;
  padding-bottom: 100px;
  padding-top: 35px;
}
section.dealers h2 {
  font-size: 1.5em;
  color: var(--red);
  padding-bottom: 24px;
}
.dealers--container {
  display: none;
}
.dealers--container.show {
  display: block;
}
.dealers-list {
  display: grid;
  width: 100%;
  grid-template-columns: 300px 1fr;
  row-gap: 8px;
  margin-bottom: 45px;
}
.dealers-list dt {
  position: relative;
  padding-left: 24px;
}
.dealers-list dt::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: transparent url(../img/external-link-alt.svg) center center / contain no-repeat;
}
.dealers--pellet__text {
  text-align: center;
}
.dealers--pellet__text a {
  color: var(--red);
}
@media all and (max-width:768px) {
  .dealers-list {
    grid-template-columns: 1fr;
  }
  .dealers-list dd {
    padding-left: 24px;
  }
}
/* DEALERS 詳細 */
main.dealers {
  background-color: var(--light-gray);
}
.dealer-container {
  display: grid;
  width: 100%;
  grid-template-columns: 300px 1fr 220px;
  grid-template-rows: 24px minmax(250px, auto) 70px minmax(110px, auto);
  column-gap: 40px;
  row-gap: 30px;
  border-bottom: solid 1px var(--gray);
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.dealer-img {
  grid-column: 1 / 2;
  grid-row: 1 / 4;
}
.dealer-img img:last-child {
  margin-top: 15px;
}
.dealer-links {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
  text-align: center;
}
.dealer-links a {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  height: 40px;
  background-color: #eb3323;
  color: #fff;
  border-radius: 20px;
  line-height: 36px;
}
.dealer-links a:last-child {
  margin-top: 18px;
}
.dealer-links a::after {
  content: "";
  position: absolute;
  color: #fff;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translateY(-50%) rotate(45deg);
}
.dealer-name {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  color: var(--red);
  font-size: 1.125em;
}
.dealer-info {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.dealer-info dt {
  font-weight: bold;
}
.dealer-info dd {
  white-space: pre-wrap;
}
.dealer-logo {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}
.dealer-text {
  position: relative;
  grid-column: 2 / 4;
  grid-row: 3 / 5;
  background-color: #fff;
}
.dealer-text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 26px;
  bottom: 0;
  background: transparent url(../img/dealers-text-bg.svg) right center / cover no-repeat;
}
.dealer-text p {
  padding: 26px 30px;
  white-space: pre-wrap;
}
@media all and (max-width: 1080px) {
  .dealer-container {
    margin: 0 40px 60px;
    width: calc(100% - 80px);
  }
}
@media all and (max-width: 870px) {
  .dealer-img {
    grid-row: 1 / 3;
  }
  .dealer-links {
    grid-row: 3 / 5;
  }
  }

@media all and (max-width: 768px) {
  .dealer-container {
    margin: 0 auto 60px;
    width: 100%;
    display: block;
  }
  .dealer-name {
    padding-bottom: 20px;
  }
  .dealer-logo,
  .dealer-info,
  .dealer-text {
    margin-bottom: 32px;
  }
  .dealer-logo {
    max-width: 220px;
  }
  .dealer-img,
  .dealer-links {
    max-width: 300px;
    margin: 0 auto;
  }
  .dealer-img {
    margin-bottom: 20px;
  }
}
/*========================================
contentArea
========================================*/
.para {
  margin-top: 68px;
  text-align: left;
}
.sectContent {
  margin-top: 26px;
}
.para .map {
  display: grid;
  width: 100%;
  max-width: 1000px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 271px;
  column-gap: 30px;
  margin-bottom: 33px;
}
.para .mapPhoto {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}
.para .mapPhoto img {
  width: 100%;
}
.para .mapGoogle iframe {
  width: 100%;
  height: 100%;
}
.para .toGoogleMap {
  margin-top: 10px;
  text-align: right;
}
.para .text {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.showroom-table {
  width: 100%;
  max-width: 800px;
  margin: 26px auto 0;
}
.showroom-table th {
  width: 15%;
  padding: 10px;
  font-weight: normal;
  white-space: nowrap;
  vertical-align: top;
}
.showroom-table td {
  padding: 10px;
  font-size: 0.875em;
}
.showroom-table tr:not(:last-child) {
  border-bottom: 1px solid var(--light-gray);
}
.showroom-table p {
  padding-bottom: 24px;
}
/*ショールームカレンダー*/
.showroom-calender {
  width: 100%;
  max-width: 800px;
	margin: 30px auto 0;
}
.showroom-calender iframe {
  width: 100%;
  height: 380px;
  border-style: none;
}
.showroom-calender h3 {
  font-size: 1.125em;
	margin-bottom:16px;
}
@media all and (max-width: 768px) {
  .para .map {
    grid-template-columns: 100%;
    grid-template-rows: min-content calc(56.25vw - 40px);
    row-gap: 30px;
  }
}
@media all and (max-width: 400px) {
  .para .map {
    grid-template-rows: min-content calc(56.25vw - 30px);
  }
  .showroom-table th,
  .showroom-table td {
    display: block;
  }
  .showroom-table th {
    padding: 10px 0 0;
  }
  .showroom-table td {
    padding: 10px 0;
  }
}
/*========================================
SUPPORT
========================================*/
section.support {
  padding-top: 54px;
}
section.support .inner {
  max-width: 600px;
}
.jssystem {
	width: 100%;
	margin: 35px auto 0;
}
.jssystem img {
  width: 100%;
}
.support-caution {
  padding: 26px;
  border-top: solid 1px #eb3323;
  border-bottom: solid 1px #eb3323;
}
.caution-red {
  position: relative;
  color: #eb3323;
  font-size: 1.125em;
  margin-bottom: 24px;
  padding-left: 42px;
}
.caution-red::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background: transparent url(../img/icon-caution.svg) center center / contain no-repeat;
}
.caution-img {
  text-align: center;
  margin-top: 45px;
}
/*========================================
DOWNLOAD
========================================*/
section.download {
  padding-bottom: 60px;
}
.download-list {
  display: grid;
  width: 100%;
  max-width: 800px;
  grid-template-columns: 1fr max-content;
  margin: 60px auto 0;
}
.download-list dt,
.download-list dd {
  border-bottom: solid 1px var(--light-gray);
  padding: 20px 0;
}
.download-list dt {
  font-family: Brandon_bld;
  font-size: 1.25em;
  font-weight: bold;
}
.download-list dd a {
  display: inline-block;
  text-align: center;
  line-height: 1.5em;
  width: 153px;
  padding: 0 6px;
  border: solid 1px var(--dark-gray);
  transition: all .3s;
}
.download-list dd a:hover {
  opacity: .5;
}
.download-agreement {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  padding: 62px 72px;
  border-top: solid 1px var(--dark-gray);
  border-bottom: solid 1px var(--dark-gray);
}
.agreement--checkbox {
  padding-top: 90px;
  text-align: center;
}
.agreement--checkbox input[type=checkbox] {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  margin: 0;
  border: solid 1px var(--dark-gray);
  cursor: pointer;
}
.agreement--checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 6px;
  top: 50%;
  left: 50%;
  border-left: solid 2px var(--text-color);
  border-bottom: solid 2px var(--text-color);
  transform: translate(-50%, calc(-50% - 2px)) rotate(315deg);
}
.agreement--checkbox label {
  font-size: 1.125em;
  padding-left: 8px;
  letter-spacing: -2px;
  vertical-align: middle;
  cursor: pointer;
}
@media all and (max-width: 768px) {
  .download-list {
    grid-template-columns: 1fr 100px;
  }
  .download-list dd a {
    width: 100%;
  }
  .download-list dd a + a {
    margin-top: 1em;
  }
  .download-agreement {
    position: absolute;
    top: 0;
    transform: translate(-50%, 30px);
    width: calc(100vw - 60px);
    padding: 62px 20px;
  }
  .agreement--checkbox label {
    font-size: 0.875em;
  }
}
/*=================================
フォーム
=================================*/
.mail-form {
  padding-top: 70px;
  text-align: center;
}
.request-form,
.contact-form {
  width: 100%;
  max-width: 900px;
  border-style: none;
}
.request-form {
  height: 1850px;
}
.contact-form {
  height: 900px;
}
@media all and (max-width: 768px) {
  .request-form {
    height: 3200px;
  }
  .contact-form {
    height: 1400px;
  }
}
/* products,dealerページ上部薪/ペレット */
.fuel--container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 8px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 35px;
}
.fuel--input {
  display: none;
}
.fuel--listItem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  text-align: center;
  border:solid 1px #dddddd;
  cursor: pointer;
}
.fuel--input:checked + .fuel--listItem {
  background-color: #E7D3CB;
}
@media all and (max-width: 768px) {
  .fuel--container {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}
/* Zensoric */
.hp_txtSmall {
  font-size: 13px;
}
.hp_p20 {
  padding: 20px;
}
.hp_p30 {
  padding: 30px;
}
.hp_mb0 {
  margin-bottom: 0;
}
.hp_mb20 {
  margin-bottom: 20px;
}
.hp_mb30 {
  margin-bottom: 30px;
}
.hp_mb50 {
  margin-bottom: 50px;
}
.hp_mb70 {
  margin-bottom: 70px;
}
.hp_segmentBottom {
  margin-bottom: 60px;
}
.hp_txtWhite {
  color: #fff;
}
.hp_bgDarkGray {
  background-color: #3C3C3C;
}
.hp_bgLightGray {
  background-color: #F3F1EC;
}
.hp_fWrap__warp {
  flex-wrap: wrap;
}
.hp_maLRauto {
  margin-left: auto;
  margin-right: auto;
}
.ly_cont {
  padding: 0 5vw;
}
.ly_cont__col {
  display: flex;
}
.ly_cont__col .ly_cont_main {
  flex: 1;
  order: 2;
  width: 70%;
}
.ly_cont__col .ly_cont_side {
  width: 30%;
}
@media (min-width: 768px) {
  .hp_w780_pc {
    max-width: 780px;
  }
  .hp_txtSmall {
    font-size: 12px;
  }  
}
@media (max-width: 767px) {
  .ly_cont__col {
    flex-direction: column;
  }
  .ly_cont__col .ly_cont_main,
  .ly_cont__col .ly_cont_side {
    width: 100%;
  }
  .hp_p20_sp {
    padding: 20px;
  }
  .hp_mb20_sp {
    margin-bottom: 20px;
  }  
  .hp_mb40_sp {
    margin-bottom: 40px;
  }  
}
.bl_sect {
  margin-bottom: 120px;
}
.bl_sect:not(.hp_fullWidth) {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
.bl_sect {
  margin-bottom: 120px;
}
.bl_sect:not(.hp_fullWidth) {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .bl_sect {
    margin-bottom: 60px;
    font-size: 0.875em;
  }
  .bl_sect.hp_mb0 {
    margin-bottom: 0;
  }
}
.bl_pageTtl {
  margin-top: 50px;
  font-size: 3.75rem;
  font-family: var(--en-title-font);
  line-height: 1.25em;
  text-align: center;
}
@media (max-width: 767px) {
  .bl_pageTtl {
    margin-top: calc(var(--hader-h_sp) + 30px);
    font-size: 1.875rem;
  }
}

.bl_logoImg__zensoric {
  max-width: 250px;
}
@media (max-width: 767px) {
  .bl_logoImg__zensoric {
    width: 40vw;
  }
}
.bl_sideSticky {
  position: sticky;
  top: 0; 
  order: 1;
  max-height: 100svh;
}
@media (min-width: 768px) {
  .bl_sideSticky__headerSpace {
    margin-top: -160px;
    padding-top: 160px;
  }
}

@media (max-width: 767px) {
  .bl_sideSticky {
    position: relative;
  }
}
.bl_numbCont_wrapper {
  counter-reset: number 0;
}
.bl_numbCont_countTtl {
  position: relative;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--text-color);
  font-size: 1.25rem;
  margin-bottom: 1.625rem;
}
.bl_numbCont_countTtl::before {
  counter-increment: number 1;
  content: counter(number);
  display: flex;
  width: 60px;
  height: calc(60px - 5px);
  justify-content: center;
  align-items: center;
  background-color: var(--text-color);
  padding-bottom: 5px;
  color: #fff;
  font-size: 1.75rem;
}
.bl_numbCont_wrapper.bl_numbCont__step .bl_numbCont_countTtl::before {
  align-items: flex-end;
}
.bl_numbCont_wrapper.bl_numbCont__step .bl_numbCont_countTtl::after {
  position: absolute;
  bottom: 33px;
  left: 0;
  width: 60px;
  content: 'Step';
  text-align: center;
  font-size: 1.25rem;
  color: #fff;
}
.bl_numbCont_countTtl.hp_border__none {
  border-style: none;
}
.bl_numbCont_countTtl span {
  padding-left: 2.25rem;
  padding-bottom: 0.625rem;
  color: var(--main-color);
  font-weight: bold;
}
.bl_contIndex_contList li:not(:last-of-type) {
  margin-bottom: 30px;
}
.bl_contIndex_contList_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 30px;
  background-color: var(--text-color);
  color: #fff;
}
.bl_contIndex_contList__hAutoVer .bl_contIndex_contList_link {
  height: auto;
  font-size: 14px;
  line-height: 1.5em;
  text-align: center;
  padding: 5px 0;
}
.bl_contIndex_contList_link.hp_bgUniqueGray {
  color: var(--beige);
}
.bl_contIndex_contList_link:hover {
  background-color: #F19600;
}
@media (max-width: 767px) {
  .bl_contIndex_contList{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }  
  .bl_contIndex_contList__hAutoVer {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .bl_contIndex_contList__hAutoVer li {
    width: 100%;
  }
  .bl_contIndex_contList__hAutoVer .bl_contIndex_contList_link {
    width: 100%;
    max-width: none;
    padding: 5px 10px;
  }
  .bl_numbCont_countTtl {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  .bl_numbCont_countTtl.hp_txt13px_sp.hp_border__none {
    font-size: 13px;
    margin-bottom: 0.5rem;
  }
  .bl_numbCont_countTtl::before {
    width: 35px;
    height: 35px;
    padding-bottom: 0;
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .bl_numbCont_wrapper.bl_numbCont__step .bl_numbCont_countTtl::before {
    line-height: 1.25rem;
  }
  .bl_numbCont_wrapper.bl_numbCont__step .bl_numbCont_countTtl::after {
    width: 35px;
    bottom: 19px;
    font-size: 12px;
    line-height: 1rem;
  }
  .bl_numbCont_countTtl span {
    padding-left: 1.25rem;
  }
  .bl_numbCont_countTtl.hp_txt13px_sp.hp_border__none span {
    padding-left: 0.75em;
    padding-bottom: 0;
    height: 35px;
    display: flex;
    align-items: center;
  }
  .bl_contIndex_contList li:not(:last-of-type) {
    margin-bottom: 1rem;
  }
  .bl_contIndex_contList_link {
    width: 22vw;
    min-width: 120px;
  }
}
.bl_squareDecorationTtl {
  position: relative;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--text-color);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.625rem;
  color: var(--text-color);
}
.bl_squareDecorationTtl::before {
  content: "";
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  background-color: var(--text-color);
  color: #fff;
  margin-right: 20px;
}
.bl_squareDecorationTtl span {
  padding-bottom: 2px;
}
@media (max-width: 767px) {
  .bl_squareDecorationTtl {
    font-size: 14px;
  }
  .bl_squareDecorationTtl::before {
    margin-right: 1em;
  }
  .bl_squareDecorationTtl span {
    display: flex;
    height: 30px;
    align-items: center;
    padding: 0;
    line-height: 1;
  }
}
.bl_moveCard_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.bl_moveCard_wrapper.bl_moveCard__col2 {
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.bl_moveWrapper {
  margin-bottom: 1.5rem;
}
.bl_moveWrapper > * {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
}
.bl_moveCard_desc {
  font-size: 1rem;
}
.bl_pageTtl_img__zensoric {
  width: 100%;
  max-width: 400px;
}
@media (max-width: 767px) {
  .bl_moveCard_wrapper,
  .bl_moveCard_wrapper.bl_moveCard__col2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
  .bl_moveCard {
    margin-bottom: 0;
  }
  .bl_moveWrapper {
    margin-bottom: 0.875rem;
  }
  .bl_moveCard_desc {
    font-size: 13px;
  }
}
.bl_commonCard_wrapper {
  display: flex;
}
.bl_commonCard_wrapper.bl_commonCard__col3 > * {
  width: calc(100% / 3);
}
.bl_commonCard_wrapper.bl_commonCard__hasBorder > * {
  border-right: #9C9180 1px solid;
  padding: 20px;
}
.bl_commonCard_wrapper.bl_commonCard__col3.bl_commonCard__hasBorder > *:nth-of-type(3n) {
  border-right: none;
}
.bl_commonCard_wrapper .bl_commonCard_ttl {
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.bl_commonCard_wrapper .bl_commonCard_imgWrapper {
  text-align: center;
  margin-bottom: 30px;
}
.bl_commonCard_wrapper.bl_commonCard__w50per .bl_commonCard_img {
  width: 50%;
}
@media (max-width: 767px) {
  .bl_commonCard_wrapper.bl_commonCard__spCol2 > * {
    width: calc(100% / 2);
  }
  .bl_commonCard_wrapper .bl_commonCard_ttl,
  .bl_commonCard_wrapper .bl_commonCard_imgWrapper {
    margin-bottom: 20px;
  }
  .bl_commonCard_wrapper.bl_commonCard__hasBorder > * {
    border-bottom: #9C9180 1px solid;
  }
  .bl_commonCard_wrapper.bl_commonCard__hasBorder > *:nth-last-child(1) {
    border-bottom: none;
  }
  .bl_commonCard_wrapper.bl_commonCard__spCol2.bl_commonCard__hasBorder > *:nth-of-type(even) {
    border-right: none;
  }
  .bl_commonCard_wrapper.bl_commonCard__spCol2.bl_commonCard__hasBorder > *:nth-of-type(odd) {
    border-right: #9C9180 1px solid;
    padding: 1em;
  }
}
.bl_itemDesc.hp_bgMainColor {
  background-color: var(--text-color);
  color: #fff;
  padding: 30px;
}
.bl_itemDesc_imgWrap {
  width: 30%;
} 
.bl_itemDesc_info {
  width: 70%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.bl_itemDesc_info_ttl {
  color: var(--sec-color);
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .bl_itemDesc.hp_bgMainColor {
    padding: 20px;
  }
  .bl_itemDesc_imgWrap {
    width: 40%;
  } 
  .bl_itemDesc_info {
    width: 60%;
  }
}
.bl_mediaImgTxt{
  display: flex;
}
.bl_mediaImgTxt_imgLetf > * {
  order: 2;
}
.bl_mediaImgTxt_imgLetf .bl_mediaImgTxt_imgWrap {
  order: 1;
}
.bl_mediaImgTxt_imgWrap__w170 {
  width: 170px;
}
.bl_mediaImgTxt_imgWrap__w170 + .bl_mediaImgTxt_info {
  width: calc(100% - 170px);
}
.bl_mediaImgTxt_imgWrap__w150 {
  width: 150px;
}
.bl_mediaImgTxt_imgWrap__w150 + .bl_mediaImgTxt_info {
  width: calc(100% - 150px);
}
.bl_mediaImgTxt_imgLetf .bl_mediaImgTxt_info {
  padding-left: 30px;
}
@media (max-width: 767px) {
  .bl_mediaImgTxt_imgLetf .bl_mediaImgTxt_info {
    padding-left: 20px;
  }
  .bl_mediaImgTxt_imgWrap__w170,
  .bl_mediaImgTxt_imgWrap__w150 {
    width: 100px;
  }
  .bl_mediaImgTxt_imgWrap__w170 + .bl_mediaImgTxt_info,
  .bl_mediaImgTxt_imgWrap__w150 + .bl_mediaImgTxt_info {
    width: calc(100% - 100px);
  }
}
.bl_bgColorArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .bl_bgColorArea {
    padding: 30px 5vw;
  }
}
.el_smallTtl {
  font-weight: bold;
  color: var(--text-color);
}
.el_smallTtl_subColor {
  color: var(--red);
}
.el_smallTtl--line {
  position: relative;
  font-size: 1.25em;
  padding-left: 40px;
}
.el_smallTtl--line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 30px;
  height: 3px;
  background-color: var(--red);
}
.el_smallTtl--line strong {
  font-size: 0.875em;
  line-height: 2em;
}

.el_catchTxt {
  font-size: 1.25em;
  color: #5F4934;
  text-align: center;
}
.el_linkBtn {
  display: flex;
  justify-content: center;
}
.el_linkBtn a {
  display: inline-block;
  width: 170px;
  padding: 0.5rem 25px;
  text-align: center;
  line-height: 1em;
  border: var(--gray) 1px solid;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .el_linkBtn a {
    width: auto;
    height: 20px;
    padding: 3px 20px 4px;
    height: auto;
    font-size: 16px;
  }
}
.bl_btn2col {
  display: flex;
  justify-content: space-between;
}
.bl_btn2col .el_linkBtn {
  width: calc(50% - 25px);
  height: 107px;
}
.bl_btn2col .el_linkBtn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #796E65;
}
.el_linkBtn a:hover {
  color: #fff;
  background-color: var(--gray);
  border-color: var(--gray);
}
@media (max-width: 767px) {
  .bl_btn2col {
    flex-direction: column;
    align-items: center;
  }
  .bl_btn2col .el_linkBtn {
    width: 70vw;
    min-width: 280px;
    height: 85px;
    margin-bottom: 20px;
  }
  .bl_btn2col .el_linkBtn:nth-last-child() {
    margin-bottom: 0;
  }
  .bl_btn2col .el_linkBtn a {
    font-size: 16px;
  }
}
.bl_mediaImgTxt{
  display: flex;
}
.bl_mediaImgTxt_imgLetf > * {
  order: 2;
}
.bl_mediaImgTxt_imgLetf .bl_mediaImgTxt_imgWrap {
  order: 1;
}
.bl_mediaImgTxt_imgWrap__w170 {
  width: 170px;
}
.bl_mediaImgTxt_imgWrap__w170 + .bl_mediaImgTxt_info {
  width: calc(100% - 170px);
}
.bl_mediaImgTxt_imgWrap__w150 {
  width: 150px;
}
.bl_mediaImgTxt_imgWrap__w150 + .bl_mediaImgTxt_info {
  width: calc(100% - 150px);
}
.bl_mediaImgTxt_imgLetf .bl_mediaImgTxt_info {
  padding-left: 30px;
}
@media (max-width: 767px) {
  .bl_mediaImgTxt_imgLetf .bl_mediaImgTxt_info {
    padding-left: 20px;
  }
  .bl_mediaImgTxt_imgWrap__w170,
  .bl_mediaImgTxt_imgWrap__w150 {
    width: 100px;
  }
  .bl_mediaImgTxt_imgWrap__w170 + .bl_mediaImgTxt_info,
  .bl_mediaImgTxt_imgWrap__w150 + .bl_mediaImgTxt_info {
    width: calc(100% - 100px);
  }
}
