@charset "UTF-8";
/*=============================================*/
/*Font import */
/*=============================================*/
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

table {
  width: 100%;
  background: none;
  border: none;
  box-shadow: none;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
  font-size: var(--fz, 10px); /* 初期値10px */
  overflow: auto;
}

body {
  margin: auto;
  width: auto;
  font-family: "hiragino-mincho-pron", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  letter-spacing: 0.05em;
}

a {
  color: #333333;
}

.pc_only {
  display: block !important;
}
@media (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none !important;
}
@media (max-width: 768px) {
  .sp_only {
    display: block !important;
  }
}

.c-to-l {
  text-align: center;
}
@media (max-width: 768px) {
  .c-to-l {
    text-align: left;
  }
}

/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
.main_width {
  max-width: 108rem;
  width: 96%;
  margin: auto;
}
@media (max-width: 768px) {
  .main_width {
    width: calc(100% - 4rem);
  }
}
.main_width.w1080 {
  max-width: 108rem;
}

/*=============================================*/
/* common                 */
/*=============================================*/
.pagination {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 5rem;
  }
}
.pagination .page_numbers {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #F7F7F7;
  width: 3.3rem;
  aspect-ratio: 1;
  font-size: 1.2rem;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination .page_numbers:hover {
  background-color: #78BD36;
  color: #FFF;
}
.pagination .page_numbers.current {
  background-color: #78BD36;
  color: #FFF;
  pointer-events: none;
}
.pagination .page_numbers.prev, .pagination .page_numbers.next {
  position: relative;
  background-color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination .page_numbers.prev:before, .pagination .page_numbers.next:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  border: none;
  border-top: solid 2px #231815;
  border-right: solid 2px #231815;
  transform: rotate(45deg);
}
.pagination .page_numbers.prev:hover, .pagination .page_numbers.next:hover {
  opacity: 0.7;
}
.pagination .page_numbers.prev {
  transform: rotate(180deg);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #333333;
}
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 1.2rem;
  }
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 0.8rem;
  color: #333333;
}
.breadcrumb a {
  color: #78BD36;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.breadcrumb a:hover {
  opacity: 0.7;
}

.the_content h2, .the_content h3, .the_content h4, .the_content h5, .the_content h6 {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.the_content h2 {
  font-size: 2.1rem;
}
@media (max-width: 768px) {
  .the_content h2 {
    font-size: 2rem;
  }
}
.the_content h3 {
  padding-bottom: 1em;
  font-size: 1.9rem;
  border-bottom: 1px solid #78BD36;
}
.the_content h4 {
  padding-left: 1em;
  font-size: 1.7rem;
  border-left: 5px solid #78BD36;
}
.the_content h5 {
  font-size: 1.6rem;
}
.the_content h6 {
  font-size: 1.5rem;
}
.the_content p {
  margin-bottom: 5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.12em;
}
@media (max-width: 768px) {
  .the_content p {
    margin-bottom: 3.5rem;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.the_content p a {
  font-size: 1em;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.the_content p a:hover {
  opacity: 0.7;
}
.the_content b {
  font-weight: 700;
}
.the_content ul {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .the_content ul {
    margin-bottom: 3.5rem;
  }
}
.the_content ul li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.12em;
}
@media (max-width: 768px) {
  .the_content ul li {
    font-size: 1.4rem;
  }
}
.the_content ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.the_content ul li:before {
  content: "・";
}
.the_content ol {
  padding-left: 1em;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .the_content ol {
    padding-left: 1.5em;
    margin-bottom: 3.5rem;
  }
}
.the_content ol li {
  list-style: decimal;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.12em;
}
@media (max-width: 768px) {
  .the_content ol li {
    font-size: 1.4rem;
  }
}
.the_content ol li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.the_content blockquote {
  padding: 2.5rem;
  background-color: #F3F3F3;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .the_content blockquote {
    padding: 2rem;
    margin-bottom: 3.5rem;
  }
}
.the_content blockquote p {
  margin: 0;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.12em;
}
@media (max-width: 768px) {
  .the_content blockquote p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.the_content blockquote p:not(:last-child) {
  margin-bottom: 1em;
}

/*=============================================*/
/* ココウェル通信 / メディア(統合)                 */
/*=============================================*/
/*-----------*/
/* common */
/*-----------*/
.article_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3.5rem;
}
@media (max-width: 768px) {
  .article_list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.article_link {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .article_link {
    display: grid;
    grid-template-columns: 12rem 1fr;
    gap: 1.4rem;
    align-items: start;
  }
}
.article_link:hover .article_img img {
  transform: scale(1.08);
}

.article_img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.article_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.article_body {
  padding-top: 1.4rem;
}
@media (max-width: 768px) {
  .article_body {
    padding-top: 0;
  }
}

.article_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.article_tag {
  padding: 0.1rem 1rem 0;
  font-size: 1.2rem;
  color: #FFF;
  background-color: #78BD36;
}
@media (max-width: 768px) {
  .article_tag {
    font-size: 0.9rem;
    padding: 0.2rem 0.8rem;
  }
}

.article_date {
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  color: #777;
}
@media (max-width: 768px) {
  .article_date {
    font-size: 1.1rem;
  }
}

.article_card_ttl {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 768px) {
  .article_card_ttl {
    font-size: 1.2rem;
  }
}

/*-----------*/
/* 一覧 */
/*-----------*/
.media_wrapper {
  padding: 5.8rem 0 14.6rem;
}
@media (max-width: 768px) {
  .media_wrapper {
    padding: 3.5rem 0 6rem;
  }
}
.media_wrapper .page_head {
  text-align: center;
}
.media_wrapper .page_head .ttl {
  display: block;
  margin-bottom: 4.2rem;
  color: #78BD36;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .media_wrapper .page_head .ttl {
    margin-bottom: 3.8rem;
    font-size: 2.2rem;
  }
}

/*-----------*/
/* 詳細 */
/*-----------*/
.media_detail_wrapper {
  padding: 2.3rem 0 17.5rem;
}
@media (max-width: 768px) {
  .media_detail_wrapper {
    padding-bottom: 8rem;
  }
}
.media_detail_wrapper .post_content {
  max-width: 700px;
  margin: 7.5rem auto 0;
}
@media (max-width: 768px) {
  .media_detail_wrapper .post_content {
    margin-top: 4rem;
  }
}
.media_detail_wrapper .post_head {
  margin-bottom: 4.6rem;
}
@media (max-width: 768px) {
  .media_detail_wrapper .post_head {
    margin-bottom: 3rem;
  }
}
.media_detail_wrapper .post_head .post_ttl {
  display: block;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
}
.media_detail_wrapper .post_head .img img {
  display: block;
  width: 100%;
}
.media_detail_wrapper #toc_container {
  padding: 2.5rem;
  background-color: #F3F3F3;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .media_detail_wrapper #toc_container {
    margin-bottom: 4rem;
  }
}
.media_detail_wrapper #toc_container .toc_title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.media_detail_wrapper #toc_container .toc_title .toc_toggle {
  font-size: 1rem;
  letter-spacing: 0;
}
.media_detail_wrapper #toc_container .toc_list {
  padding-left: 0.6rem;
}
.media_detail_wrapper #toc_container .toc_list li a {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.media_detail_wrapper #toc_container .toc_list li a:hover {
  opacity: 0.7;
}
.media_detail_wrapper #toc_container .toc_list li a .toc_number {
  position: relative;
  padding-right: 0.5em;
  font-size: 1.7rem;
}
.media_detail_wrapper #toc_container .toc_list li a .toc_number:before {
  content: "";
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 0.3rem;
  background-color: #F3F3F3;
  z-index: 2;
}
.media_detail_wrapper #toc_container .toc_list li a .toc_number:after {
  content: ".";
}
.media_detail_wrapper #toc_container .toc_list li ul {
  padding-left: 1rem;
}
.media_detail_wrapper .share_box {
  padding-top: 5rem;
  margin-bottom: 12rem;
  text-align: center;
}
@media (max-width: 768px) {
  .media_detail_wrapper .share_box {
    margin-bottom: 7rem;
  }
}
.media_detail_wrapper .share_box .txt {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.12em;
}
.media_detail_wrapper .share_box .list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.1rem;
}
.media_detail_wrapper .share_box .list li a {
  width: 3.9rem;
  aspect-ratio: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.media_detail_wrapper .share_box .list li a:hover {
  opacity: 0.7;
}
.media_detail_wrapper .share_box .list li a img {
  display: block;
  width: 100%;
}
.media_detail_wrapper .btn_box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .media_detail_wrapper .btn_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.media_detail_wrapper .btn_box a {
  background-color: #F3F3F3;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.media_detail_wrapper .btn_box a:hover {
  background-color: rgb(230.25, 230.25, 230.25);
}
@media (max-width: 768px) {
  .media_detail_wrapper .btn_box .page_btn {
    grid-row: 1;
  }
}
.media_detail_wrapper .btn_box .page_btn a {
  position: relative;
  display: block;
  width: 11.1rem;
  padding: 2rem;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .media_detail_wrapper .btn_box .page_btn a {
    padding: 1.5rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .media_detail_wrapper .btn_box .page_btn.prev {
    grid-column: 1;
  }
}
.media_detail_wrapper .btn_box .page_btn.prev a {
  padding-left: 3rem;
}
@media (max-width: 768px) {
  .media_detail_wrapper .btn_box .page_btn.prev a {
    padding-left: 2rem;
  }
}
.media_detail_wrapper .btn_box .page_btn.prev a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.3rem;
  bottom: 0;
  display: block;
  margin: auto;
  width: 0.6rem;
  height: 0.6rem;
  border: 0;
  border-top: solid 2px #231815;
  border-left: solid 2px #231815;
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .media_detail_wrapper .btn_box .page_btn.next {
    grid-column: 2;
  }
}
.media_detail_wrapper .btn_box .page_btn.next a {
  padding-right: 3rem;
}
@media (max-width: 768px) {
  .media_detail_wrapper .btn_box .page_btn.next a {
    padding-right: 2rem;
    margin-left: auto;
  }
}
.media_detail_wrapper .btn_box .page_btn.next a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.3rem;
  bottom: 0;
  display: block;
  margin: auto;
  width: 0.6rem;
  height: 0.6rem;
  border: 0;
  border-bottom: solid 2px #231815;
  border-right: solid 2px #231815;
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .media_detail_wrapper .btn_box .back_btn {
    grid-column: 1/3;
    grid-row: 2;
    margin-top: 1rem;
  }
}
.media_detail_wrapper .btn_box .back_btn a {
  display: block;
  padding: 2rem;
  width: 22rem;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media (max-width: 768px) {
  .media_detail_wrapper .btn_box .back_btn a {
    padding: 1.5rem;
    width: 100%;
  }
}
.media_detail_wrapper .related_box {
  margin-top: 13rem;
}
@media (max-width: 768px) {
  .media_detail_wrapper .related_box {
    margin-top: 6rem;
  }
}
.media_detail_wrapper .related_box .ttl {
  display: block;
  margin-bottom: 6rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 768px) {
  .media_detail_wrapper .related_box .ttl {
    margin-bottom: 3rem;
    font-size: 2.1rem;
  }
}

/*=============================================*/
/* 公式EC ‐ お知らせ                 */
/*=============================================*/
/*-----------*/
/* common */
/*-----------*/
.news_head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .news_head {
    margin-bottom: 1rem;
  }
}
.news_head .date {
  display: block;
  color: #78BD36;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.news_head .tab {
  display: inline-block;
  padding: 0.1rem 0.9rem;
  background-color: #78BD36;
  color: #FFF;
  font-size: 1.1rem;
  font-family: "Noto Sans JP", sans-serif;
}

.o_back_btn {
  margin-top: 8rem;
  text-align: center;
}
@media (max-width: 768px) {
  .o_back_btn {
    margin-top: 5rem;
  }
}
.o_back_btn a {
  display: block;
  width: 100%;
  max-width: 24rem;
  padding: 0.9rem 1rem;
  margin: auto;
  border-radius: 5rem;
  background-color: #78BD36;
  color: #FFF;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.o_back_btn a:hover {
  opacity: 0.7;
}

/*-----------*/
/* 一覧 */
/*-----------*/
.ec_news_wrapper .main_width {
  max-width: 80rem;
}

.ec_news_wrapper {
  margin: 2rem 0 5rem;
}
.ec_news_wrapper .ec_news_head {
  margin: 8rem 0 4.5rem;
}
@media (max-width: 768px) {
  .ec_news_wrapper .ec_news_head {
    margin: 5rem 0 2.5rem;
  }
}
.ec_news_wrapper .ec_news_head .ttl {
  display: block;
  margin-bottom: 2.6rem;
  font-size: 3.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 768px) {
  .ec_news_wrapper .ec_news_head .ttl {
    margin-bottom: 1.5rem;
    font-size: 2.7rem;
  }
}
.ec_news_wrapper .ec_news_head .tab_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
@media (max-width: 768px) {
  .ec_news_wrapper .ec_news_head .tab_list {
    gap: 1rem;
    padding: 1.5rem 0;
  }
}
.ec_news_wrapper .ec_news_head .tab_list li a {
  display: block;
  padding: 1rem 1.5rem;
  background-color: #F3F3F3;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .ec_news_wrapper .ec_news_head .tab_list li a {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
  }
}
.ec_news_wrapper .ec_news_head .tab_list li a:hover {
  background-color: #78BD36;
  color: #FFF;
}
.ec_news_wrapper .news_article_list .item {
  padding: 2rem 1.2rem;
  border-bottom: 1px solid #9D9D9D;
}
@media (max-width: 768px) {
  .ec_news_wrapper .news_article_list .item {
    padding: 1.5rem 0;
  }
}
.ec_news_wrapper .news_article_list .item a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ec_news_wrapper .news_article_list .item a:hover {
  opacity: 0.7;
}
.ec_news_wrapper .news_article_list .item a .news_ttl {
  display: block;
  color: #78BD36;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .ec_news_wrapper .news_article_list .item a .news_ttl {
    font-size: 1.4rem;
  }
}
.ec_news_wrapper .pagination {
  margin-top: 5rem;
}

/*-----------*/
/* 詳細 */
/*-----------*/
.ec_news_detail_wrapper .main_width {
  max-width: 80rem;
}

.ec_news_detail_wrapper {
  margin: 2rem 0 5rem;
}
.ec_news_detail_wrapper .post_content {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .ec_news_detail_wrapper .post_content {
    margin-top: 5rem;
  }
}
.ec_news_detail_wrapper .post_content .post_head {
  margin-bottom: 4rem;
}
.ec_news_detail_wrapper .post_content .post_head .news_ttl {
  font-size: 2.7rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .ec_news_detail_wrapper .post_content .post_head .news_ttl {
    font-size: 2.3rem;
  }
}
.ec_news_detail_wrapper .post_content .btn_box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  padding-top: 10rem;
}
@media (max-width: 768px) {
  .ec_news_detail_wrapper .post_content .btn_box {
    padding-top: 5rem;
  }
}
.ec_news_detail_wrapper .post_content .btn_box a {
  display: inline-block;
  color: #78BD36;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ec_news_detail_wrapper .post_content .btn_box a:hover {
  opacity: 0.7;
}

/*=============================================*/
/* ココウェルレシピ                 */
/*=============================================*/
/*-----------*/
/* common */
/*-----------*/
.recipe_flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 6rem;
  width: 100%;
  max-width: 120rem;
  margin: 5rem auto 15rem;
}
@media (max-width: 768px) {
  .recipe_flex {
    flex-direction: column-reverse;
    gap: 5.5rem;
    width: calc(100% - 4rem);
    margin: 0 auto 5rem;
  }
}
.recipe_flex .side_bar {
  width: 35rem;
}
@media (max-width: 768px) {
  .recipe_flex .side_bar {
    width: 100%;
  }
}
.recipe_flex .side_bar .r_block {
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .recipe_flex .side_bar .r_block {
    padding: 2.5rem 0;
  }
}
.recipe_flex .side_bar .r_ttl {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1.4rem;
  font-size: 2rem;
  font-weight: 700;
  color: #231815;
  white-space: nowrap;
}
.recipe_flex .side_bar .r_ttl::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #ccc;
}
.recipe_flex .side_bar .r_ttl.border_none:after {
  content: none;
}
.recipe_flex .side_bar .r_search {
  display: flex;
  align-items: center;
  height: 4.8rem;
  padding: 0 1.2rem 0 1.6rem;
  background-color: #FFF;
  border-radius: 0.9rem;
  border: 1px solid #ccc;
}
.recipe_flex .side_bar .r_search_input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 1.4rem;
}
.recipe_flex .side_bar .r_search_input::placeholder {
  color: #bfbfbf;
}
.recipe_flex .side_bar .r_search_input:focus {
  outline: none;
}
.recipe_flex .side_bar .r_search_btn {
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.recipe_flex .side_bar .r_search_btn img {
  display: block;
  width: 2rem;
  height: 2rem;
}
.recipe_flex .side_bar .r_cat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .recipe_flex .side_bar .r_cat {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .recipe_flex .side_bar .r_cat > li {
    width: calc(50% - 0.5rem);
  }
}
.recipe_flex .side_bar .r_cat .r_item img {
  width: 3rem;
  height: 3rem;
}
@media (max-width: 768px) {
  .recipe_flex .side_bar .r_cat .r_item img {
    width: 2rem;
    height: 2rem;
  }
}
.recipe_flex .side_bar .r_product {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.recipe_flex .side_bar .r_product .r_item img {
  width: 3.2rem;
  height: 4.5rem;
}
@media (max-width: 768px) {
  .recipe_flex .side_bar .r_product .r_item img {
    width: 2.9rem;
    height: 4rem;
  }
}
.recipe_flex .side_bar .r_item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5rem;
  padding: 0.8rem 1.4rem;
  background-color: #FFF;
  border: 1px solid #ccc;
  border-radius: 0.9rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.recipe_flex .side_bar .r_item:hover {
  opacity: 0.7;
}
.recipe_flex .side_bar .r_item img {
  flex-shrink: 0;
  object-fit: contain;
}
.recipe_flex .side_bar .r_item span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #231815;
}
@media (max-width: 768px) {
  .recipe_flex .side_bar .r_item span {
    font-size: 1.4rem;
  }
}
.recipe_flex .page_content {
  width: calc(100% - 41rem);
}
@media (max-width: 768px) {
  .recipe_flex .page_content {
    width: 100%;
  }
}

/*-----------*/
/* 一覧 */
/*-----------*/
.recipe_wrapper .page_content .recipe_main_block {
  margin-bottom: 4.8rem;
}
.recipe_wrapper .page_content .recipe_main_block .img img {
  display: block;
  width: 100%;
}
.recipe_wrapper .page_content .recipe_list .item:not(:last-child) {
  margin-bottom: 3.4rem;
}
@media (max-width: 768px) {
  .recipe_wrapper .page_content .recipe_list .item:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.recipe_wrapper .page_content .recipe_list .item a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4.6rem;
}
@media (max-width: 768px) {
  .recipe_wrapper .page_content .recipe_list .item a {
    gap: 1.6rem;
  }
}
.recipe_wrapper .page_content .recipe_list .item a:hover .img img {
  transform: scale(1.08);
}
.recipe_wrapper .page_content .recipe_list .item a .img {
  width: 22rem;
  aspect-ratio: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .recipe_wrapper .page_content .recipe_list .item a .img {
    width: 12.8rem;
  }
}
.recipe_wrapper .page_content .recipe_list .item a .img img {
  display: block;
  width: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.recipe_wrapper .page_content .recipe_list .item a .info {
  flex: 1;
}
.recipe_wrapper .page_content .recipe_list .item a .info .recipe_ttl {
  display: block;
  margin-bottom: 1.5rem;
  color: #78BD36;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .recipe_wrapper .page_content .recipe_list .item a .info .recipe_ttl {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.3;
  }
}
.recipe_wrapper .page_content .recipe_list .item a .info .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
@media (max-width: 768px) {
  .recipe_wrapper .page_content .recipe_list .item a .info .txt {
    font-size: 1rem;
    -webkit-line-clamp: 5;
  }
}

/*-----------*/
/* 詳細 */
/*-----------*/
.recipe_detail_wrapper .page_content .recipe_detail_main {
  margin: 4.5rem 0 8rem;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_main {
    margin-bottom: 5rem;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_main .recipe_ttl {
  display: block;
  margin-bottom: 3rem;
  color: #78BD36;
  font-size: 2.5rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_main .recipe_ttl {
    margin-bottom: 2rem;
    font-size: 2.2rem;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 3.8rem;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_main .flex {
    display: block;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .left {
  width: 50%;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_main .flex .left {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .left .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .left .recipe_detail_slider {
  margin-bottom: 2rem;
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .left .recipe_detail_slider_thumbnail .swiper-wrapper {
  flex-wrap: wrap;
  gap: 1.4rem;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_main .flex .left .recipe_detail_slider_thumbnail .swiper-wrapper {
    flex-wrap: nowrap;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .left .recipe_detail_slider_thumbnail .swiper-slide {
  cursor: pointer;
  width: calc(25% - 1.05rem) !important;
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .right {
  flex: 1;
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .right .timer_box {
  margin-bottom: 2.6rem;
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .right .timer_box .inner {
  padding: 2rem 0.8rem;
  border-top: 1px solid #78BD36;
  border-bottom: 1px solid #78BD36;
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .right .timer_box .inner .dl {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 1rem;
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .right .timer_box .inner .dl:last-child {
  margin-bottom: 0;
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .right .timer_box .inner .dl dt img {
  display: block;
  width: 1.7rem;
  aspect-ratio: 1;
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .right .timer_box .inner .dl dd {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .right .timer_box .inner .dl dd .big {
  padding-left: 0.5em;
  font-size: 1.2em;
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .right .content p {
  display: block;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.12em;
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .right .content p:not(:last-child) {
  margin-bottom: 4.6rem;
}
.recipe_detail_wrapper .page_content .recipe_detail_main .flex .right .content iframe {
  max-width: 100%;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block {
  width: 100%;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block:not(:last-child) {
  margin-bottom: 6.7rem;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .content_block:not(:last-child) {
    margin-bottom: 5rem;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_box:not(:last-child) {
  margin-bottom: 4rem;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_ttl {
  display: block;
  padding: 0 0 1rem 1.3rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #78BD36;
  color: #78BD36;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.12em;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_ttl {
    padding-left: 0;
    font-size: 1.8rem;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_ex {
  padding: 0 1.6rem;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_ex {
    padding: 0;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_ex .content_item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1rem;
  border-bottom: 1px dashed #CCCCCC;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_ex .content_item {
    padding: 1rem 0;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_ex .content_item th, .recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_ex .content_item td {
  display: block;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_ex .content_item th, .recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_ex .content_item td {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_ex .content_item th {
  text-align: left;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_ex .content_item td {
  text-align: right;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_num_list {
  padding: 0 2rem;
  counter-reset: num;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_num_list {
    padding: 0;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_num_list .content_list_item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 2;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_num_list .content_list_item {
    gap: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_num_list .content_list_item:before {
  content: counter(num);
  counter-increment: num;
  color: #78BD36;
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_num_list .content_list_item:before {
    font-size: 2.5rem;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_txt {
  display: block;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 2.3;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_txt {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_product_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_product_list {
    grid-template-columns: 1fr;
    column-gap: 2rem;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_product_list .content_list_item {
  display: grid;
  grid-template-columns: 10rem 1fr;
  grid-template-areas: "img ttl" "img btn";
  column-gap: 2rem;
  padding: 1.5rem 0;
  align-items: center;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_product_list .content_list_item .img {
  grid-area: img;
  width: 10rem;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_product_list .content_list_item .img img {
  display: block;
  width: 100%;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_product_list .content_list_item .product_ttl {
  grid-area: ttl;
  display: block;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.12em;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_product_list .content_list_item .product_btn {
  grid-area: btn;
  justify-self: start;
  width: 100%;
  max-width: 17rem;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_product_list .content_list_item .product_btn a {
  display: block;
  padding: 0.7rem;
  width: 100%;
  border-radius: 5rem;
  background-color: #78BD36;
  color: #FFF;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .content_block .content_product_list .content_list_item .product_btn a:hover {
  opacity: 0.7;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .related_product_list {
  padding-top: 30px;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .related_product_list {
    padding-top: 10px;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_content .related_product_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .related_product_list li {
  width: 23%;
  margin-right: 2.666%;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .related_product_list li {
    width: 49%;
    margin-right: 2%;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_content .related_product_list li:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .related_product_list li:nth-child(4n) {
    margin-right: 2%;
  }
}
@media (max-width: 768px) {
  .recipe_detail_wrapper .page_content .recipe_detail_content .related_product_list li:nth-child(2n) {
    margin-right: 0;
  }
}
.recipe_detail_wrapper .page_content .recipe_detail_content .related_product_list li img {
  display: block;
  margin-bottom: 1rem;
}
.recipe_detail_wrapper .page_content .recipe_detail_content .related_product_list li p.name {
  line-height: 1.4;
  color: #78BD36;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
}/*# sourceMappingURL=style.css.map */