@charset "UTF-8";
/*
  File Name   : top.css
  Description : Write top content styles
*/
/* TOP 共通パーツ
============================================================ */
.livingyell-top .top-section {
  padding: 90px 0 110px;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .livingyell-top .top-section {
    padding: 60px 0 80px;
  }
}
@media only screen and (max-width: 599px) {
  .livingyell-top .top-section {
    padding: 40px 0 60px;
  }
}
.livingyell-top .top-section.bgSection {
  background-color: #f9f9f7;
}
.livingyell-top .com-postCardsBlock {
  margin: 40px 0 0;
}
@media only screen and (max-width: 1024px) {
  .livingyell-top .com-postCardsBlock {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 599px) {
  .livingyell-top .com-postCardsBlock {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 599px) {
  .livingyell-top .com-postCardsBlock .postCard:first-child {
    grid-column-end: span 2;
    /* 現在の列から2列分の領域を確保 */
    max-width: initial;
  }
  .livingyell-top .com-postCardsBlock .postCard:first-child .postCard-txtBlock {
    gap: clamp(10px, 2.667vw, 16px);
    padding: clamp(12px, 4vw, 18px);
  }
  .livingyell-top .com-postCardsBlock .postCard:first-child .postCard-txtBlock .postCard-hlWrap .postCard-hl {
    font-size: clamp(13px, 3.467vw, 18px);
  }
  .livingyell-top .com-postCardsBlock .postCard:first-child .postCard-txtBlock .postCard-dateCatGroup {
    gap: clamp(10px, 2.667vw, 14px) 1rem;
  }
  .livingyell-top .com-postCardsBlock .postCard:first-child .postCard-txtBlock .postCard-dateCatGroup .postCard-date {
    font-size: clamp(13px, 3.467vw, 18px);
  }
  .livingyell-top .com-postCardsBlock .postCard:first-child .postCard-txtBlock .postCard-dateCatGroup .postCard-categorys {
    gap: clamp(10px, 2.667vw, 14px);
  }
  .livingyell-top .com-postCardsBlock .postCard:first-child .postCard-txtBlock .postCard-dateCatGroup .postCard-categorys .com-postCat {
    font-size: clamp(10px, 2.667vw, 14px);
  }
  .livingyell-top .com-postCardsBlock .postCard:first-child .postCard-txtBlock .postCard-tags {
    gap: clamp(10px, 2.667vw, 14px);
  }
  .livingyell-top .com-postCardsBlock .postCard:first-child .postCard-txtBlock .postCard-tags .com-postTag {
    font-size: clamp(10px, 2.667vw, 14px);
  }
  .livingyell-top .com-postCardsBlock .postCard:nth-child(n+4) {
    display: none;
  }
}
.livingyell-top .com-postCardsBlock__sideBySide {
  margin: 50px 0 0;
}
@media only screen and (max-width: 1024px) {
  .livingyell-top .com-postCardsBlock__sideBySide {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 599px) {
  .livingyell-top .com-postCardsBlock__sideBySide .postCard:nth-child(n+5) {
    display: none;
  }
}
.livingyell-top .com-moreBt {
  margin: 90px auto 0;
}
@media only screen and (max-width: 1024px) {
  .livingyell-top .com-moreBt {
    margin-top: 50px;
  }
}

/* KV
============================================================ */
.top-kv {
  padding: 77px 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-kv {
    padding-top: 45px;
  }
}
.top-kv .top-kv-slider {
  padding: 20px 0 0;
}
.top-kv .top-kv-slider .top-kv-slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-kv .top-kv-slider .top-kv-slider-wrapper .slideItem {
  display: block;
  height: auto;
  width: 634px;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .top-kv .top-kv-slider .top-kv-slider-wrapper .slideItem {
    width: auto;
    max-width: 400px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }
}
.top-kv .top-kv-slider .top-kv-slider-wrapper .slideItem > .slideItem-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 634/444;
}
.top-kv .top-kv-slider .top-kv-slider-wrapper .slideItem > .slideItem-img > img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.top-kv .top-kv-slider .top-kv-slider-wrapper > a.slideItem {
  cursor: pointer;
}
.top-kv .top-kv-slider .top-kv-slider-wrapper > a.slideItem:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .top-kv .top-kv-slider .top-kv-slider-wrapper > a.slideItem:hover > .slideItem-img > img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.top-kv .top-kv-slider .top-kv-slider-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 20px;
  margin: 74px 0 0;
}
@media only screen and (max-width: 599px) {
  .top-kv .top-kv-slider .top-kv-slider-pagination {
    gap: 8px;
    margin-top: 24px;
  }
}
.top-kv .top-kv-slider .top-kv-slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0;
  padding: 0;
  background-color: var(--color_font);
}
@media only screen and (max-width: 599px) {
  .top-kv .top-kv-slider .top-kv-slider-pagination .swiper-pagination-bullet {
    width: 6px;
  }
}
.top-kv .top-kv-slider .top-kv-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color_main);
}

/* LINK BANNERS
============================================================ */
.top-linkBanners {
  padding: 98px 0 105px;
}
@media only screen and (max-width: 1024px) {
  .top-linkBanners {
    padding: 37px 0 40px;
  }
}
/* SPECIAL TOPICS
============================================================ */
.top-specialTopics {
  background-color: var(--color_sub);
}
/* WHAT’S NEW
============================================================ */
/* GOURMET
============================================================ */
.top-gourmet .com-section-hl .enTxt::after {
  background-color: var(--color_gourmet_main);
}
.top-gourmet .com-postTag {
  color: var(--color_gourmet_main);
}

/* GOING OUT
============================================================ */
.top-goingOut .com-section-hl .enTxt::after {
  background-color: var(--color_goingOut_main);
}
.top-goingOut .com-postTag {
  color: var(--color_goingOut_main);
}

/* RECIPE
============================================================ */
.top-recipe .com-section-hl .enTxt::after {
  background-color: var(--color_recipe_main);
}
.top-recipe .com-postTag {
  color: var(--color_recipe_main);
}

/* LIFESTYLE
============================================================ */
.top-lifestyle .com-section-hl .enTxt::after {
  background-color: var(--color_lifestyle_main);
}
.top-lifestyle .com-postTag {
  color: var(--color_lifestyle_main);
}

/* FORTUNE
============================================================ */
.top-fortune {
  position: relative;
  border-top: 1px solid #ddddd3;
  padding: 211px 0 248px;
}
@media only screen and (max-width: 599px) {
  .top-fortune {
    padding: 150px 0 180px;
  }
}
@media only screen and (max-width: 599px) {
  .top-fortune {
    padding: 128px 0 156px;
  }
}
.top-fortune::before {
  content: "";
  position: absolute;
  display: block;
  width: auto;
  height: 75.5%;
  aspect-ratio: 1/1;
  background-color: #f3f3f8;
  top: 49%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  border-radius: 50%;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .top-fortune::before {
    width: auto;
    top: 50%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-fortune::before {
    height: 85%;
  }
}
@media only screen and (max-width: 599px) {
  .top-fortune::before {
    height: 79.23%;
  }
}
.top-fortune .top-fortune-hl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 0.15em;
  width: 100%;
  font-size: 104px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .top-fortune .top-fortune-hl {
    gap: 0.15em 0;
    font-size: clamp(52px, 13.866vw, 104px);
  }
}
.top-fortune .top-fortune-hl .enTxt {
  display: block;
  color: var(--color_font);
  font-family: var(--fontFamily_sub);
  font-size: inherit;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
}
.top-fortune .top-fortune-hl .jpTxt {
  color: var(--color_main);
  font-size: max(10px, 0.3em);
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0em;
  text-indent: 0em;
}
.top-fortune .top-fortune-period {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 0 0.4em;
  width: 100%;
  font-size: 19px;
  margin: 1.25em 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-fortune .top-fortune-period {
    font-size: clamp(13px, 3.466vw, 19px);
  }
}
.top-fortune .top-fortune-period::before, .top-fortune .top-fortune-period::after {
  display: block;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0em;
  text-indent: 0em;
}
.top-fortune .top-fortune-period::before {
  content: "【";
}
.top-fortune .top-fortune-period::after {
  content: "】";
}
.top-fortune .top-fortune-period > * {
  display: block;
  font-size: inherit;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.04em;
  text-indent: 0em;
}
.top-fortune .top-fortune-slider {
  padding: 82px 0;
  margin: 0 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-fortune .top-fortune-slider {
    padding-top: 36px;
  }
}
.top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem {
  width: 352px;
  display: block;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}
@media print, screen and (min-width: 1025px) {
  .top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem {
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
}
@media only screen and (max-width: 1024px) {
  .top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem {
    width: 130px;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem {
    border-radius: 8px;
  }
}
@media only screen and (max-width: 599px) {
  .top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem {
    border-radius: 6px;
  }
}
.top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItemInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 7% 0;
  width: 100%;
  height: 100%;
  color: var(--color_font);
  text-decoration: none;
  padding: 9.5% 8%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem .slideItem-img {
  position: relative;
  display: block;
  width: 49%;
  height: auto;
  aspect-ratio: 412/700;
}
.top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem .slideItem-img > img {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem .slideItem-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-line-pack: baseline;
      align-content: baseline;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0 0.25em;
  width: 100%;
  font-family: var(--fontFamily_sub);
  font-size: 24px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0em;
  text-indent: 0em;
  text-align: center;
  padding: 7% 0 0;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem .slideItem-title {
    font-size: clamp(10px, 2.0vw, 24px);
  }
}
@media only screen and (max-width: 599px) {
  .top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem .slideItem-title {
    font-size: 10px;
  }
}
.top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem .slideItem-title > * {
  display: block;
}
.top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem .slideItem-title > span {
  font-size: inherit;
}
.top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem .slideItem-title > em {
  font-size: 1.35em;
}
.top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem:hover .slideItemInner {
  opacity: 1;
}
@media print, screen and (min-width: 1025px) {
  .top-fortune .top-fortune-slider .top-fortune-slider-wrapper .slideItem:hover {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
.top-fortune .com-moreBtn {
  margin-top: 56px;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-fortune .com-moreBtn {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 599px) {
  .top-fortune .com-moreBtn {
    margin-top: 21px;
  }
}

/* COLUMN
============================================================ */
.top-column {
  background-color: var(--color_sub);
}
.top-column .com-banners-list {
  margin: 80px 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-column .com-banners-list {
    margin-top: 50px;
  }
}

/* READ IT
============================================================ */
.top-readIt {
  padding: 130px 0 115px;
  background-color: var(--color_main);
}
.top-readIt .links-catch-copy-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-readIt .links-catch-copy-wrap .catch-copy {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(125px, 12.5vw, 155px);
  white-space: nowrap;
  line-height: 1em;
  letter-spacing: 0.03em;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-readIt .links-catch-copy-wrap .catch-copy {
    font-size: clamp(75px, 12.2vw, 125px);
  }
}
@media only screen and (max-width: 599px) {
  .top-readIt .links-catch-copy-wrap .catch-copy {
    font-size: clamp(47px, 12.5vw, 75px);
  }
}
.top-readIt .links-catch-copy-wrap .catch-copy-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  color: #fff;
  padding-top: 1.5em;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.22em;
}
@media only screen and (max-width: 1024px) {
  .top-readIt .links-catch-copy-wrap .catch-copy-description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.top-readIt .links-catch-copy-wrap .catch-copy-description > span {
  font-size: clamp(30px, 2.82vw, 35px);
}
@media only screen and (max-width: 1024px) {
  .top-readIt .links-catch-copy-wrap .catch-copy-description > span {
    font-size: clamp(17px, 2.73vw, 28px);
    line-height: 2em;
  }
}
.top-readIt .links-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 426px;
  margin: 50px auto 0;
}
@media only screen and (max-width: 1024px) {
  .top-readIt .links-img-wrap {
    width: max(70%, 260px);
    margin-top: 20px;
  }
}
.top-readIt .links-button-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  padding: 30px 75px;
  gap: 0 60px;
  margin: 30px 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-readIt .links-button-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
    padding: 0;
    margin: 30px 0 0;
  }
}
.top-readIt .links-button-wrap .links-button {
  border-radius: 10px;
  background-color: #fff;
  min-height: 120px;
  max-width: 490px;
}
@media only screen and (max-width: 1024px) {
  .top-readIt .links-button-wrap .links-button {
    width: 70vw;
    width: 70dvw;
    height: 65px;
    min-height: 65px;
  }
}
.top-readIt .links-button-wrap .links-button > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
  width: 100%;
  padding: 15px 45px 15px 20px;
  color: var(--color_font);
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  .top-readIt .links-button-wrap .links-button > a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-readIt .links-button-wrap .links-button > a {
    font-size: 21px;
  }
}
@media only screen and (max-width: 599px) {
  .top-readIt .links-button-wrap .links-button > a {
    font-size: 16px;
  }
}
.top-readIt .links-button-wrap .links-button > a::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 11px solid var(--color_main);
  -webkit-transition: right 0.2s ease-in, left 0.2s ease-in;
  transition: right 0.2s ease-in, left 0.2s ease-in;
}
.top-readIt .links-button-wrap .links-button > a:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .top-readIt .links-button-wrap .links-button > a:hover::after {
    right: 5%;
  }
}