@charset "utf-8";

/* --------------------------------------
    news style
 -------------------------------------- */
.page-header .text-right {
  text-align: right;
  position: absolute;
  right: 0;
  top: 0;
}

.page-header .t-tag {
  color: var(--main-color);
}

.page-header .tag-row {
  gap: 1em;
}

.media-index {
  position: relative;
  padding: 26px 36px;
  background-color: rgb(0 181 115 / 10%);
  border-radius: 20px;
}

.media-index .contents {
  position: absolute;
  top: -10px;
  left: 19px;
  color: var(--main-color);
}

.media-index .index .list {
  margin: 10px 0;
  counter-increment: mycounter;
  position: relative;
  padding-left: 1.8em;
}

.media-index .index .list::before {
  content: counter(mycounter, decimal-leading-zero) ".";
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: 85%;
  ;
  color: #00b573;
  position: absolute;
  left: 0;
  top: 0.25em;
}

.media-index .index .list .anchor:hover {
  color: #00b573;
}

.media-index .index .list {
  line-height: 1.5;
}

@media (width <=480px) {
  .page-header .text-right {
    position: relative;
    text-align: left;
    top: 0;
  }

  .media-index {
    padding: 15px 5.5%;
    border-radius: 10px;
  }

  .media-index .index .list {
    margin: 5px 0;
    font-weight: normal
  }

}

/* --------------------------------------
    一覧・詳細 共通
 -------------------------------------- */
.col-news {
  order: 1;
  width: 75%;
  padding-right: 60px;
}

.col-newslist {
  order: 2;
  width: 25%;
}

@media (width <=991px) {
  .col-news {
    order: 1;
    width: 100%;
    padding-right: 0;
  }

  .col-newslist {
    order: 2;
    width: 100%;
  }
}

/* --------------------------------------
    一覧（テキストリスト）
 -------------------------------------- */
.txt-list {
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
}

.txt-list .sbox-news {
  width: 100%;
  border-top: 1px solid rgb(0 0 0 / 10%);
}

.txt-list .sbox-news:last-child {
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.txt-list .sbox-news .cont-box {
  display: block;
  width: 100%;
  transition: all 0.3s ease-out;
}

.txt-list .sbox-news.has-thumb .cont-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.txt-list .sbox-news .cont-box:hover {
  opacity: 0.9;
}

.txt-list .sbox-news .cont-box .thumbnail {
  overflow: hidden;
}

/* サムネイル画像 -------------------- */
.txt-list .sbox-news .cont-box .thumbnail {
  width: 30%;
}

.txt-list .sbox-news .cont-box .thumbnail .photo-wrap {
  display: block;
  transition: all 0.3s ease-out;
}

.txt-list .sbox-news .cont-box .thumbnail .photo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  background-position: center 50%;
  background-size: cover;
}

@media (width <=767px) {
  .txt-list .sbox-news .cont-box .thumbnail {
    width: 100%;
  }
}

/* カテゴリ・日付・タイトル -------------------- */
.txt-list .sbox-news .txt-area {}

.txt-list .sbox-news.has-thumb .txt-area {
  width: 70%;
  padding-right: 5%;
}

.txt-list .sbox-news .txt-area .upper-stage {
  padding-bottom: 10px;
}

.txt-list .sbox-news .txt-area .upper-stage .t-cat {}

.txt-list .sbox-news .txt-area .upper-stage .t-date {
  display: inline-block;
  padding-right: 15px;
  color: #999;
}

@media (width <=767px) {
  .txt-list .sbox-news.has-thumb .txt-area {
    width: 100%;
    padding-right: 0;
  }
}

/* --------------------------------------
    一覧（サムネイルリスト）
 -------------------------------------- */
.col-news .thum-list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 102%;
  margin: 0 -1%;
}

.col-news .thum-list .sbox-news {
  width: calc(100% / 3);
  padding-right: 1%;
  padding-left: 1%;
}

.col-news .thum-list .sbox-news .cont-box {
  display: block;
  width: 100%;
  transition: all 0.28s ease-out;
}

.col-news .thum-list .sbox-news .cont-box:hover {
  opacity: 0.9;
}

@media (width <=1024px) {
  .col-news .thum-list .sbox-news {
    width: 50%;
  }
}

@media (width <=640px) {
  .col-news .thum-list .sbox-news {
    width: 100%;
  }
}

/* サムネイル画像 -------------------- */
.thum-list .cont-box .photo-wrap {
  display: block;
  overflow: hidden;
}

.thum-list .cont-box .photo-wrap img {
  display: block;
  width: 100%;
  transition: all 0.28s ease-out;
}

.thum-list .cont-box:hover .photo-wrap img {
  transform: scale(1.03);
}

/* サムネイル画像がないとき */
.thum-list .cont-box .photo-wrap.no-img {
  background: #ebebeb;
}

.thum-list .sbox-news .cont-box .photo-wrap.no-img img {
  background-image: url("../img/news/no-img.svg");
  background-repeat: no-repeat;
  background-position: center 50%;
  background-size: 55%;
  opacity: 0.15;
}

/* カテゴリ・日付・タイトル -------------------- */
.thum-list .sbox-news .txt-area {
  padding: 10px 0;
}

.thum-list .sbox-news .txt-area .upper-stage {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 10px;
}

.thum-list .sbox-news .txt-area .upper-stage .t-cat {
  padding: 1px 10px;
  line-height: 1.6;
  vertical-align: middle;
}

.thum-list .sbox-news .txt-area .upper-stage .t-date {
  color: #999;
}

@media (width <=640px) {
  .thum-list .sbox-news .txt-area {
    padding: 10px 0;
  }
}

/* --------------------------------------
   一覧スライダー ※一覧（サムネイルリスト）に追記
 -------------------------------------- */
.sec-newsslider .col-news {
  position: relative;
  width: 100%;
  padding-right: 0;
}

.sec-newsslider .col-news .news-wrap {
  margin: 0;
}

.sec-newsslider .col-news .news-wrap .sbox-news {
  width: auto;
  padding-right: 2%;
  padding-left: 2%;
}

@media (width <=576px) {
  .sec-newsslider .col-news .news-wrap .sbox-news {
    padding-right: 0;
    padding-left: 0;
  }
}

/* 矢印スタイル */
.news-slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -30px;
}

.news-slider-arrows .arrow {
  position: absolute;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background-color: #666;
}

@media (width <=576px) {
  .news-slider-arrows .arrow {
    width: 45px;
    height: 45px;
  }
}

.news-slider-arrows .arrow.slick-disabled {
  display: none !important;
  /* js制御 */
}

.is-left .arrow {
  top: 0;
  left: 0;
}

.is-right .arrow {
  top: 0;
  right: 0;
}

.news-slider-arrows .arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 14px;
  height: 14px;
  content: "";
  transition: left ease 0.28s;
}

.is-left .arrow::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.is-right .arrow::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.is-left:hover .arrow::before {
  left: 40%;
}

.is-right:hover .arrow::before {
  left: 60%;
}

/* --------------------------------------
   詳細
 -------------------------------------- */
.box-newsdetail .ttl-newsdetail {
  border-bottom: 1px solid #dfdfdf;
}

.box-newsdetail .ttl-newsdetail .date-cate {
  position: relative;
  width: 100%;
}

.box-newsdetail .ttl-newsdetail .date-cate .t-cat {
  display: inline-block;
}

.box-newsdetail .ttl-newsdetail .date-cate .t-date {
  display: inline-block;
  padding-right: 10px;
  color: #a2a2a2;
}
.box-mediadetail .sec-mediattl {
  color: #333;
}
.box-mediadetail .media-thumb img {
  width: 100%;
  height: auto;
}

.box-mediadetail .media-ttl .t-cat {
  position: relative;
}

.box-mediadetail .media-ttl .t-cat::before,
.box-mediadetail .media-ttl .t-cat::after {
  content: "";
  position: relative;
  display: inline-block;
  color: rgba(0, 0, 0, 0.6);
}

.box-mediadetail .media-ttl .t-cat::before {
  content: "(";
}

.box-mediadetail .media-ttl .t-cat::after {
  content: ")";
}

.box-mediadetail .media-ttl .ttl-txt {
  line-height: 1.4;
}

.box-mediadetail .media-section {
  font-size: clamp(1.7rem, 1.6336rem + 0.14vw, 1.8rem);
}

.box-postdetail {
  position: relative;
}
.box-postdetail .pager::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  content: "";
  height: 150%;
  z-index: -1;
  background: linear-gradient(rgba(244,247,246,0),rgba(244,247,246,1));
}

.box-postdetail .pager {
  position: sticky;
  bottom: 0;
}

@media (width <=767px) {

  .box-newsdetail .sbox-newsdetail,
  .ttl-newsdetail {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (width <=480px) {
  .ttl-newsdetail {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

/* リッチテキストエディタ用 -------------------- */
.wysiwyg h3 {
  position: relative;
  margin-top: clamp(2.25rem, 1.7504rem + 1.04vw, 3rem);
  margin-bottom: clamp(1.5rem, 1.1664rem + 0.69vw, 2rem);
  overflow: hidden;
  font-size: clamp(1.8rem, 1.6672rem + 0.28vw, 2rem);
  font-weight: bold;
  vertical-align: middle;
  color: var(--main-color);
  line-height: 1.5;
}

.wysiwyg h3::after {
  display: inline-block;
  width: min(6vw, 100px);
  height: 1px;
  margin-left: min(30px, 2vw);
  content: "";
  background-color: var(--main-color);
}

.wysiwyg h3:nth-of-type(n+2) {
  margin-top: clamp(3.75rem, 2.9168rem + 1.74vw, 5rem);
}

.wysiwyg img {
  box-sizing: border-box;
  width: inherit;
  max-width: 100%;
  height: auto !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  font-weight: bold;
}

.wysiwyg h4 {
  margin-bottom: 5px;
  font-size: 108%;
}

.wysiwyg p,
.wysiwyg ul,
.wysiwyg ol {
  margin-bottom: clamp(2.25rem, 1.7504rem + 1.04vw, 3rem);
}

.wysiwyg p {
  line-height: 1.9;
}

.wysiwyg p:nth-last-child(1) {
  margin-bottom: 0;
}

.wysiwyg b,
.wysiwyg strong {
  font-weight: bold;
}

.wysiwyg em {
  font-style: italic;
}

.wysiwyg a {
  color: #00b573;
  text-decoration: underline;
}

.wysiwyg a:hover {
  text-decoration: none;
}

.wysiwyg ul {
  padding-left: 0;
}

.wysiwyg ol {
  padding-left: 0;
}

.wysiwyg ol li {
  margin: 10px 0;
  counter-increment: mycounter;
  position: relative;
  padding-left: 1.8em;
}

.wysiwyg ol li::before {
  content: counter(mycounter, decimal-leading-zero) ".";
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: 95%;
  position: absolute;
  left: 0;
  top: 0.1em;
  line-height: 1.6;
}

.wysiwyg ul li {
  list-style-type: inherit;
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  line-height: 1.6;
}

.wysiwyg ul li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  display: inline-block;
  width: 13px;
  height: 13px;
  content: "";
  border: 2px solid var(--main-color);
  border-radius: 50%;
}

.wysiwyg sup {
  font-size: smaller;
  vertical-align: super;
}

.wysiwyg sub {
  font-size: smaller;
  vertical-align: sub;
}

.wysiwyg blockquote {
  font-style: normal;
  background-color: rgba(0, 0, 0, 0.06);
  padding: 20px 3% 15px;
}

.wysiwyg blockquote p {
  padding-left: 35px;
  position: relative;
  margin-bottom: 5px;
}

.wysiwyg blockquote p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.37em;
  width: 22px;
  height: 22px;
  background: url("../img/common/i-comment.svg") no-repeat center center / contain;
}

.wysiwyg table {
  width: 100%;
  border-collapse: collapse;
  border: 3px solid rgba(0, 0, 0, 0.2);
}

.wysiwyg th,
.wysiwyg td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.wysiwyg video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  background-color: #f0f0f0;
}

.wysiwyg .player {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.wysiwyg .player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wysiwyg a[target="_blank"]::after {
  position: relative;
  content: "";
  display: inline-block;
  background: url("../img/common/i-blank.svg") no-repeat left center / contain;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  margin-right: 7px;
}

.wysiwyg a.link-cart {
  padding-left: 55px;
  display: inline-block;
  line-height: 1.5;
  position: relative;
  color: #F0876C;
}

.wysiwyg a.link-cart::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(../img/common/i-cart_wh.svg) no-repeat left center / contain;
  width: 45px;
  height: 45px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.wysiwyg a[target="_blank"].link-cart::after {
  background: url("../img/common/i-blank_pink.svg") no-repeat left center / contain;
}





@media (width <=480px) {}

/* --------------------------------------
   side
 -------------------------------------- */

/* side 共通 -------------------- */
.snav-box {
  width: 100%;
}

.snav-box .rside-title {
  color: #333;
  text-align: left;
  border-bottom: 1px solid #dfdfdf;
}

.snav-box .nav-list>li {
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.snav-box .nav-list>li a {
  position: relative;
  display: block;
  padding: 10px 30px 10px 0;
}

.snav-box .nav-list>li a::before {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease-out;
}

.snav-box .nav-list>li a:hover {
  opacity: 0.7;
}

.snav-box .nav-list>li a:hover::before {
  right: 2px;
}

.snav-box .nav-list>li a>span {
  transition: all 0.3s ease-out;
}

/* side_新着情報 -------------------- */
#r-latest .nav-list .r-latestpost a .t-date {
  display: inline-block;
  padding-right: 10px;
  color: #999;
}

#r-latest .nav-list .r-latestpost a .t-cat {
  display: inline-block;
}

#r-latest .nav-list .r-latestpost a .rtxt-latestpost {
  transition: all 0.3s ease-out;
}

/* side_アーカイブ -------------------- */
.list-archive>.acv_Y,
.list-archive .arc_month .acv_M {
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.list-archive>.acv_Y>a {
  position: relative;
  display: block;
  padding: 10px 30px 10px 0;
}

.list-archive>.acv_Y>a::before {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 1px;
  height: 11px;
  content: "";
  background-color: #999;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
}

.list-archive>.acv_Y>a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  width: 11px;
  height: 1px;
  content: "";
  background-color: #999;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
}

.list-archive>.acv_Y>a.open::before {
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
}

.list-archive .arc_month .acv_M>a {
  padding-left: 1.3em;
}