@charset "UTF-8";
/* CSS Document */


/* container
-----------------------------------------------*/
#container {
  max-width: none;
  padding-top: 0
}
.sp-only {
	display: none;
}
main .slider .col.blog a .txt p,
main .slider .col.blog a .txt time,
main .slider .col.fashion a .txt p,
main .slider .col.fashion a .txt time,
main .slider .col.beauty a .txt p,
main .slider .col.beauty a .txt time,
main .slider .col.lifestyle a .txt p,
main .slider .col.lifestyle a .txt time {
  color:#000;
}
/*
main .slider .col.blog a .txt p,
main .slider .col.blog a .txt time {
  color: var(--blog-color);
}
main .slider .col.fashion a .txt p,
main .slider .col.fashion a .txt time {
  color: var(--fashion-color);
}
main .slider .col.beauty a .txt p,
main .slider .col.beauty a .txt time {
  color: var(--beauty-color);
}
main .slider .col.lifestyle a .txt p,
main .slider .col.lifestyle a .txt time {
  color: var(--lifestyle-color);
}
*/
#new .col2 .col.blog .txt .category p,
#new .col2 .col.blog .txt time {
  color: var(--blog-color);
}
#new .col2 .col.fashion .txt .category p,
#new .col2 .col.fashion .txt time {
  color: var(--fashion-color);
}
#new .col2 .col.beauty .txt .category p,
#new .col2 .col.beauty .txt time {
  color: var(--beauty-color);
}
#new .col2 .col.lifestyle .txt .category p,
#new .col2 .col.lifestyle .txt time {
  color: var(--lifestyle-color);
}
#new .col2 .col.news .txt .category p,
#new .col2 .col.news .txt time {
  color: var(--news-color);
}
#new .col2 .col.radio .txt .category p,
#new .col2 .col.radio .txt time {
  color: var(--radio-color);
}
#new .col2 .col.store .txt .category p,
#new .col2 .col.store .txt time {
  color: var(--store-color);
}
#new .col2 .col.channel .txt .category p,
#new .col2 .col.channel .txt time {
  color: var(--channel-color);
}
#ranking .col2 .col.blog .txt .category p,
#ranking .col2 .col.blog .txt time {
  color: var(--blog-color);
}
#ranking .col2 .col.fashion .txt .category p,
#ranking .col2 .col.fashion .txt time {
  color: var(--fashion-color);
}
#ranking .col2 .col.beauty .txt .category p,
#ranking .col2 .col.beauty .txt time {
  color: var(--beauty-color);
}
#ranking .col2 .col.lifestyle .txt .category p,
#ranking .col2 .col.lifestyle .txt time {
  color: var(--lifestyle-color);
}
#ranking .col2 .col.news .txt .category p,
#ranking .col2 .col.news .txt time {
  color: var(--news-color);
}
#ranking .col2 .col.radio .txt .category p,
#ranking .col2 .col.radio .txt time {
  color: var(--radio-color);
}
#ranking .col2 .col.horoscope .txt .category p,
#ranking .col2 .col.horoscope .txt time {
  color: var(--horoscope-color);
}
#ranking .col2 .col.channel .txt .category p,
#ranking .col2 .col.channel .txt time {
  color: var(--channel-color);
}
@media only screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}


/* main
-----------------------------------------------*/
main {
  position: relative;
  overflow: hidden;
}
main .ttl {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  padding: 0 10px;
  width: 100%;
  text-align: right;
}
main .ttl p {
  position: relative;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 118px;
  font-weight: 100;
  line-height: 1.2;
}
main .ttl p::before {
  content: "";
  position: absolute;
  top: calc(50% + 5px);
  right: calc(100% + 20px);
  width: 100vw;
  height: 2px;
  background: var(--accent-color);
}
main .slider .col {
  margin: 0 10px;
  max-width: 800px;
  width: 100%;
}
main .slider .col a {
  display: block;
  border: 1px solid var(--accent-color);
  color: #0E2C32;
  transition: background .3s;
  position: relative;
}
main .slider .col a:hover {
  background: rgba(0,0,0,.05);
}
main .slider .col a .img {
  overflow: hidden;
  max-width: 800px;
  aspect-ratio: 1 / 1;
  height: 100%;
  max-height: 918px;
  object-position: 50% 50%;
  width: 100%;
}
main .slider .col a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1);
  transition: transform .4s;
}
main .slider .col a:hover .img img {
  transform: scale(1.02);
}
main .slider .col a .txt {
  position: absolute;
  display: flex;
  bottom: 0;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  width: 100%;
  z-index: 10;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
}
main .slider .col a .txt p {
  line-height: 1.2;
  font-size: 14px;
}
main .slider .col a .txt h3 {
  font-size: 16px;
  border-top: 1px solid var(--accent-color);
  padding-top: 12px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
main .slider .col a .txt h3 br {
  display: none;
}
main .slider .col a .txt time {
  font-size: 14px;
}
main .slick-dots li button {
  width: 40px;
  height: 3px;
}
main .slick-dots li button:hover {
  background: rgba(0,0,0,.3);
}
main .slick-dots li.slick-active button {
  width: 40px;
  background: #1C3844;
}
@media only screen and (max-width: 1200px) {
  main .slider .col {
    max-width: 550px;
  }
}
@media only screen and (max-width: 767px) {
  main .ttl {
    padding: 0 5px;
    top: 15px;
  }
  main .ttl p {
    font-size: 40px;
  }
  main .ttl p::before {
    right: calc(100% + 10px);
  }
  main .slider .col {
    margin: 0 5px;
    max-width: 100%;
    overflow: hidden;
  }
  main .slider .col a {
    width: ;
  }
  main .slider .col a .txt {
    gap: 5px;
    padding: 10px;
  }
  main .slider .col a .txt p {
    line-height: 1.2;
    font-size: 14px;
  }
  main .slider .col a .txt h3 {
    font-size: 14px;
    padding-top: 8px;
  }
  main .slider .col a .txt time {
    font-size: 14px;
  }
main .slider .col a {
    height: 480px;
  }
}


/* section
-----------------------------------------------*/
section {
  position: relative;
  margin-top: 120px;
}
@media only screen and (max-width:767px) {
  section {
    margin-top: 120px;
  }
}


/* section ttl
-----------------------------------------------*/
section .ttl {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1;
}
section .ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: calc(100% - 40px);
  height: calc(100% - 230px);
  background-color: #EEEEEE;
}
section .ttl h2 {
  display: flex;
  align-items: flex-start;
}
#new .ttl,
#radio .ttl,
#ranking .ttl,
#store .ttl,
#channel .ttl {
  left: 0;
  padding-left: 60px;
}
#blog .ttl,
#horoscope .ttl,
#feature .ttl,
#message .ttl {
  right: 0;
  padding-right: 60px;
}
#new .ttl::before,
#radio .ttl::before,
#ranking .ttl::before,
#store .ttl::before,
#channel .ttl::before {
  left: 0;
}
#blog .ttl::before,
#horoscope .ttl::before,
#feature .ttl::before,
#message .ttl::before {
  right: 0;
}
#radio .ttl,
#store .ttl,
#channel .ttl {
  padding-left: 0;
}
#horoscope .ttl {
  padding-right: 0;
}
@media only screen and (max-width:767px) {
  section .ttl {
    padding: 0 !important;
  }
  section .ttl::before {
    width: calc(100% - 10px);
    height: calc(100% - 100px);
  }
  section .ttl h2 {
    flex-direction: column-reverse;
    gap: 20px;
  }
  section .ttl h2 img {
    width: 50px;
    height: auto;
  }
}


/* section btn
-----------------------------------------------*/
section .btn {
  text-align: center;
  display: flex;
}
section .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  width: 100%;
  height: 65px;
  box-shadow: 5px 5px 0 var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 500;
  font-size: 20px;
  background-color: #fff;
  cursor: pointer;
  margin: 0 auto;
  transition: box-shadow .2s;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
}
section .btn a:hover {
  box-shadow: 2px 2px 0 var(--accent-color);
}
@media only screen and (max-width:767px) {
  section .btn a {
    max-width: 245px;
    font-size: 16px;
    height: 60px;
  }
}


/* new
-----------------------------------------------*/
#new {
  padding: 60px 60px 0 275px;
  margin-top: 80px;
}
#new .inner {
  max-width: 874px;
  margin: 0 auto;
}
#new .col2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#new .col2 .col {
  width: calc(50% - 10px);
}
#new .col2 .col a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
#new .col2 .col .img {  
  overflow: hidden;
  max-width: 160px;
  aspect-ratio: 1 / 1;
}
#new .col2 .col .img img {
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  transition: transform .4s,opacity .6s;
}
#new .col2 .col a:hover .img img {
  opacity: .7;
  transform: scale(1.02);
}
#new .col2 .col .txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#new .col2 .col .txt .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#new .col2 .col .txt .category p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}
#new .col2 .col .txt h3 {
  font-size: 16px;
  font-weight: normal;
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 3; /* 行数を制限 */
    overflow: hidden;
  }
#new .col2 .col .txt h3 br {
  display: none;
}
#new .col2 .col .txt time {
  font-size: 14px;
  line-height: 1;
}
#new .btn {
  margin-top: 70px;
}
#new .btn a {
  box-shadow: 5px 5px 0 var(--new-color);
}
#new .btn a:hover {
  box-shadow: 2px 2px 0 var(--new-color);
}
@media only screen and (max-width:1023px) {
  #new .col2 {
    flex-direction: column; 
  }
  #new .col2 .col {
    width: 100%;
  }
  #new .col2 .col .img {
    max-width: 120px;
  }
}
@media only screen and (max-width:767px) {
  #new {
    padding: 0 20px 0 65px;
    border-top: 1px solid var(--accent-color);
  }
  #new .ttl {
    top: -20px;
    height: calc(100% + 20px);
  }
  #new .col2 {
    position: relative;
    gap: 0;
    padding: 5px 0;
  }
  #new .col2::after {
    content: "";
    position: absolute;
    top: 100%;
    right: -20px;
    width: 100vw;
    border-bottom: 1px solid var(--accent-color);
  }
  #new .col2 .col a {
    padding: 10px 0;
  }
  #new .col2 .col:not(:first-child) a {
    border-top: 1px solid #CDCDCD;
  }
  #new .col2 .col .img {
    width: 90px;
    min-width: 90px;
  }
  #new .col2 .col .txt {
    gap: 7px;
  }
  #new .col2 .col .txt .category p {
    font-size: 13px;
  }
  #new .col2 .col .txt .category .badge {
    width: 70px;
  }
  #new .col2 .col .txt h3 {
    font-size: 15px;
    line-height: 1.2;
  }
  #new .col2 .col .txt time {
    font-size: 13px;
  }
  #new .btn {
    margin-top: 40px;
  }
}


/* blog
-----------------------------------------------*/
#blog {
  padding: 60px 275px 0 60px;
}
#blog .inner {
  max-width: 874px;
  margin: 0 auto;
}
#blog .col3 {
  display: flex;
  gap: 20px;
}
#blog .col3 .col {
  flex: 1;
}
#blog .col3 .col:nth-child(2) {
  margin-top: 74px;
}
#blog .col3 .col:nth-child(3) {
  margin-top: 148px;
}
#blog .col3 .col a {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#blog .col3 .col .img {
  overflow: hidden;
  height: 400px;
}
#blog .col3 .col .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  vertical-align: top;
}
#blog .col3 .col .img img {
  transform: scale(1);
  transition: transform .4s,opacity .6s;
}
#blog .col3 .col a:hover .img img {
  opacity: .7;
  transform: scale(1.02);
}
#blog .col3 .col .txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#blog .col3 .col .txt .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#blog .col3 .txt p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--blog-color);
}
#blog .col3 .txt h3 {
  font-size: 16px;
  font-weight: normal;
}
#blog .col3 .txt time {
  font-size: 14px;
  line-height: 1;
  color: var(--blog-color);
}
#blog .btn {
  margin-top: 40px;
}
#blog .btn a {
  box-shadow: 5px 5px 0 var(--blog-color);
}
#blog .btn a:hover {
  box-shadow: 2px 2px 0 var(--blog-color);
}
@media only screen and (max-width:767px) {
  #blog {
    padding: 0 60px 0 20px;
  }
  #blog .col3 {
    flex-direction: column;
    gap: 30px;
  }
  #blog .col3 .col {
    margin-top: 0 !important;
  }
  #blog .col3 .col a {
    gap: 15px;
  }
  #blog .col3 .col .img {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  #blog .col3 .col .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }
  #blog .col3 .col .txt {
    gap: 5px;
  }
  #blog .col3 .col .txt .category .badge {
    width: 70px;
  }
}


/* radio
-----------------------------------------------*/
#radio {
  padding: 60px 60px 60px 275px;
}
#radio .inner {
  max-width: 850px;
  margin: 0 auto;
}
#radio .col-main {
  max-width: 600px;
  margin: 0 auto;
}
#radio .col-main a {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#radio .col-main a .img {
  overflow: hidden;
}
#radio .col-main a .img img {
  transform: scale(1);
  transition: transform .4s,opacity .6s;
  vertical-align: top;
}
#radio .col-main a:hover .img img {
  opacity: .7;
  transform: scale(1.02);
}
#radio .col-main .txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#radio .col-main .txt h3 {
  font-size: 16px;
  font-weight: 400;
}
#radio .col-main .txt p {
  font-size: 14px;
  color: var(--radio-color);
  line-height: 1.2
}
#radio .col-main .txt time {
  font-size: 14px;
  color: var(--radio-color);
  line-height: 1;
}
#radio .btn {
  margin-top: 40px;
}
#radio .btn a {
  box-shadow: 5px 5px 0 var(--radio-color);
}
#radio .btn a:hover {
  box-shadow: 2px 2px 0 var(--radio-color);
}
#radio .box {
  box-shadow: 10px 10px 0 var(--radio-color);
  border: 1px solid var(--accent-color);
  text-align: center;
  margin-top: 80px;
  padding: 30px 40px;
}
#radio .box .col:not(:first-child) {
  border-top: 2px dotted var(--radio-color);
  padding-top: 20px;
  margin-top: 20px;
}
#radio .box .premium {
  width: 85px;
  margin: 0 auto;
}
#radio .box h3 {
  font-size: 36px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 800;
}
#radio .box h4 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
  line-height: 1.8;
}
#radio .box p {
  font-size: 15px;
  line-height: 1.8;
}
#radio .box .btn a {
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 400;
}
@media only screen and (max-width:767px) {
  #radio {
    padding: 0 20px 0 70px;
  }
  #radio .btn {
    margin-top: 20px;
  }
  #radio .box {
    margin-top: 40px;
    padding: 20px 20px 40px;
  }
  #radio .box h3 {
    font-size: 28px;
    margin-top: 5px;
  }
  #radio .box h4 {
    font-size: 16px;
    margin-top: 5px;
  }
#radio .box p {
  font-size: 14px;
}
}


/* horoscope
-----------------------------------------------*/
#horoscope {
  padding: 120px 275px 60px 60px;
}
#horoscope .inner {
  max-width: 874px;
  margin: 0 auto;
}
#horoscope .box {
  border: 1px solid #000;
  box-shadow: 10px 10px 0 var(--horoscope-color);
  padding: 60px 40px;
}
#horoscope .box .col2 {
  display: flex;
  align-items: center;
  gap: 20px;
}
#horoscope .box .col2 .thumb {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 2px dotted #767676;
  padding: 20px 20px 20px 0;
}
#horoscope .box .col2 .thumb .img {
  width: 260px;
  margin: 0 auto;
}
#horoscope .box .col2 .thumb .txt h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1em;
}
#horoscope .box .col2 .thumb .txt p {
  font-size: 14px;
  margin-top: 5px;
}
#horoscope .box .col2 .thumb .txt h4 {
  font-size: 24px;
  line-height: 1em;
  font-weight: bold;
  margin-top: 10px;
}
#horoscope .box .col2 .words {
  flex: 1;
  padding: 20px 0;
}
#horoscope .box .col2 .words h3 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  position: relative;
    padding: 10px 60px;
    width: 220px;
    margin: 0 auto 40px;
}
#horoscope .box .col2 .words h3::before,
#horoscope .box .col2 .words h3::after {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  color: #000;
}
#horoscope .box .col2 .words h3::before {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  top: 0;
  left: 20px;
}
#horoscope .box .col2 .words h3::after {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  right: 20px;
  bottom: 0;
}#horoscope .box .col2 .words p {
  font-size: 16px;
  margin-top: 10px;
}
#horoscope .box .more {
  text-align: center;
  margin-top: 40px;
}
#horoscope .box .more a {
  font-size: 16px;
  text-decoration: underline;
}
#horoscope .box .more a:hover {
  text-decoration: none;
}
#horoscope .btn {
  margin-top: 60px;
}
#horoscope .btn a {
  box-shadow: 5px 5px 0 var(--horoscope-color);
}
#horoscope .btn a:hover {
  box-shadow: 2px 2px 0 var(--horoscope-color);
}
@media only screen and (max-width:1023px) {
  #horoscope .box .col2 {
    flex-direction: column;
  }
  #horoscope .box .col2 .thumb {
    border-right: none;
    padding: 0;
  }
  #horoscope .box .col2 .words {
    border-top: 2px dotted #767676;
    padding: 20px 0 0 0;
  }
}
@media only screen and (max-width:767px) {
  #horoscope {
    padding: 0 70px 0 20px;
  }
  #horoscope .box {
    padding: 30px 20px;
  }
  #horoscope .box .col2 {
    gap: 15px;
  }
  #horoscope .box .col2 .thumb {
    flex-direction: column;
    gap: 15px;
  }
  #horoscope .box .col2 .thumb .img {
    width: 100%;
  }
  #horoscope .box .col2 .words h3 {
    margin: 20px auto 20px;
}
#horoscope .box .col2 .thumb .txt {
    text-align: center;
  }
  #horoscope .box .col2 .words {
    padding: 10px 0 0 0;
  }
  #horoscope .btn {
    margin-top: 40px;
  }
}


/* ranking
-----------------------------------------------*/
#ranking {
  padding: 120px 60px 0 275px;
}
#ranking .inner {
  max-width: 874px;
  margin: 0 auto;
}
#ranking .tab-area {
  display: flex;
  cursor: pointer;
  width: 100%;
  overflow: hidden;
}
#ranking .tab {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 18px 10px;
  background: var(--ranking-color);
  border: 1px solid var(--accent-color);
  box-sizing: content-box;
  font-size: 20px;
  font-weight: bold;
  font-family: "Cormorant Garamond", serif;
  transition: background .2s;
}
#ranking .tab:hover {
  background: #FFA36B;
}
#ranking .tab:nth-child(2),
#ranking .tab:nth-child(3) {
  border-left: none;
}
#ranking .tab.active {
  background: #fff;
  border-bottom: 1px solid #fff;
  transition: background .1s;
}
#ranking .panel {
  display: none;
  max-width: 874px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 60px;
}
#ranking .panel.active {
  display: block;
}
#ranking .panel-ul {
  margin: 0 auto;
  max-width: 150px;
  list-style-type: disc;
  line-height: 1.8;
}
#ranking .col2 {
  gap: 20px;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
}
#ranking .col2 .col {
  width: 100%;
  max-width: 428px;
  counter-increment: number 1;
}
#ranking .col2 .col a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  z-index: 2;
}
#ranking .col2 .col .img {
  overflow: hidden;
  max-width: 160px;
  aspect-ratio: 1 / 1;
}
#ranking .col2 .col .img img {
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  transition: transform .4s,opacity .6s;
}
#ranking .col2 .col a:hover .img img {
  opacity: .7;
  transform: scale(1.02);
}
#ranking .col2 .col .txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#ranking .col2 .col .txt::after {
  position: absolute;
  color: #E2E2E2;
  bottom: -15px;
  right: 0;
  font-size: 110px;
  line-height: 1;
  z-index: -1;
  font-family: "EB Garamond", serif;
  font-style: italic;
  content: counter(number) ""; 
}
#ranking .col2 .col .txt .category {
  display: flex;
  justify-content: space-between;
}
#ranking .col2 .col .txt .category p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}
#ranking .col2 .col .txt h3 {
  font-size: 16px;
  font-weight: normal;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
#ranking .col2 .col .txt h3 br {
  display: none;
}
#ranking .col2 .col .txt time {
  font-size: 14px;
  line-height: 1;
}
@media only screen and (max-width:900px) {
  #ranking .tab {
    padding: 12px 10px;
    font-size: 16px;
  }
  #ranking .panel {
    padding: 20px 0 0;
  }
  #ranking .col2 {
    gap: 10px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
  }
  #ranking .col2 .col {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #CDCDCD;
    padding-bottom: 10px;
  }
  #ranking .col2 .col:last-child {
    border-bottom: none;
  }
  #ranking .col2 .col .img {
    width: 90px;
    min-width: 90px;
  }
  #ranking .col2 .col .txt::after {
    font-size: 80px;
    bottom: -10px;
  }
  #ranking .col2 .col .txt .category .badge {
    width: 70px;
  }
}
@media only screen and (max-width:767px) {
  #ranking {
    padding: 0 20px 0 70px;
  }
#ranking .col2 .col .txt .category p {
  font-size: 13px;
}
#ranking .col2 .col .txt h3 {
  font-size: 15px;
}
#ranking .col2 .col .txt time {
  font-size: 13px;
}
}


/* feature
-----------------------------------------------*/
#feature {
  overflow: hidden;
  padding: 60px 275px 20px 60px;
}
#feature .slider .col {
  margin: 0 10px;
}
#feature .slider .col a {
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  border: 1px solid var(--accent-color);
  transition: background .3s;
  position: relative;
  display: block;
}
#feature .slider .col a:hover{
  background: rgba(0,0,0,.05);
}
#feature .slider .col a .img {
  overflow: hidden;
  aspect-ratio: 1024 / 1024;
  height: 100%;
  object-position: 50% 50%;
  width: 100%;
}
#feature .slider .col a .img img {
  transform: scale(1);
  transition: transform .4s;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#feature .slider .col a:hover .img img {
  transform: scale(1.02);
}
#feature .slider .col a .txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
#feature .slider .col a .txt p {
  font-size: 14px;
  line-height: 1.2;
  color: var(--future-color);
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}
#feature .slider .col a .txt h3 {
  font-size: 16px;
  line-height: 1.2;
  font-weight: normal;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
#feature .slider .col a .txt h3 br {
  display: none;
}
#feature .slider .col a .txt time {
  font-size: 14px;
  line-height: 1;
  color: var(--future-color);
}
#feature .slider .col.blog a .txt p,
#feature .slider .col.blog a .txt time {
  color: var(--blog-color);
}
#feature .slider .col.fashion a .txt p,
#feature .slider .col.fashion a .txt time {
  color: var(--fashion-color);
}
#feature .slider .col.beauty a .txt p,
#feature .slider .col.beauty a .txt time {
  color: var(--beauty-color);
}
#feature .slider .col.lifestyle a .txt p,
#feature .slider .col.lifestyle a .txt time {
  color: var(--lifestyle-color);
}
#feature .slider .col.news a .txt p,
#feature .slider .col.news a .txt time {
  color: var(--lifestyle-color);
}
#feature .slider .col.store a .txt p,
#feature .slider .col.store a .txt time {
  color: var(--store-color);
}
#feature .btn {
  margin-top: 40px;
}
#feature .btn a {
  box-shadow: 5px 5px 0 var(--future-color);
}
#feature .btn a:hover {
  box-shadow: 2px 2px 0 var(--future-color);
}
@media only screen and (max-width:767px) {
  #feature {
    padding: 10px 60px 20px 20px;
  }
  #feature .slider .col {
    margin: 0 5px;
  }
 #feature .slider .col a .txt p {
  font-size: 13px;
}
#feature .slider .col a .txt h3 {
  font-size: 15px;
}
#feature .slider .col a .txt time {
  font-size: 13px;
}
#feature .slider .col a .img {
    height: 400px;
  }
  #feature .slider .col a .txt {
  gap: 5px;
  padding: 10px;
}
#feature .btn {
    margin-top: 20px;
  }
}


/* store
-----------------------------------------------*/
#store {
  padding: 120px 60px 0 275px;
}
#store .inner {
  max-width: 885px;
  margin: 0 auto;
}
#store .box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
#store .col-main {
  width: 50%;
}
#store .col-main a {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#store .col-main a .img {
  overflow: hidden;
}
#store .col-main a .img img {
  transform: scale(1);
  transition: transform .4s,opacity .6s;
  vertical-align: top;
}
#store .col-main a:hover .img img {
  opacity: .7;
  transform: scale(1.02);
}
#store .col-main .txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#store .col-main .txt p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--store-color);
}
#store .col-main .txt h3 {
  font-size: 16px;
  font-weight: normal;
}
#store .col-main .txt time {
  font-size: 14px;
  line-height: 1;
  color: var(--store-color);
}
#store .col-sub {
  width: 50%;
}
#store .slider .slick-list {
  overflow: hidden;
}
#store .slider .slick-dots {
  margin-top: 10px;
}
#store .slider .col {
  padding: 0 5px 10px 5px;
}
#store .slider .col a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  border: 1px solid var(--accent-color);
  padding: 10px;
  transition: background .3s;
}
#store .slider .col a:hover{
  background: rgba(0,0,0,.05);
}
#store .col-sub a .img {
  max-width: 198px;
}
#store .slider .col a h4 {
  font-size: 16px;
  font-weight: normal;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
#store .slider .col a p {
  font-size: 16px;
}
#store .btn {
  margin-top: 20px;
}
#store .btn a {
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  box-shadow: 5px 5px 0 var(--store-color);
}
#store .btn a::after{
position: relative;
content: "";
background-image: url("/img/common/icon-blank-black.svg");
background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    top: 2px;
    right: -8px;
}
#store .btn a:hover {
  box-shadow: 2px 2px 0 var(--store-color);
}
@media only screen and (max-width:1023px) {
  #store .box {
    flex-direction: column;
    gap: 60px;
    max-width: 415px;
    margin: 0 auto;
  }
  #store .col-main {
    width: 100%;
  }
  #store .col-sub {
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  #store {
    overflow: hidden;
    padding: 0 20px 20px 60px;
  }
  #store .col-sub .slick-track {
    float: none;
    display: flex;
  }
  #store .col-sub .slick-track {
    display: flex;
  }
  #store .col-sub a .img {
    max-width: 230px;
  }
  #store .col-sub a .img img {
    width: 100%;
    max-width: none;
  }
  #store .slider .slick-list {
    overflow: visible;
  }
  #store .slider .col {
    max-width: 250px;
    padding: 0;
    margin: 0 5px;
    float: none;
    height: auto;
  }
  #store .slider .slick-dots {
    margin-top: 20px;
  }
#store .btn {
}
}


/* message
-----------------------------------------------*/
#message {
  padding: 60px 275px 0 60px;
}
#message .inner {
  max-width: 874px;
  margin: 0 auto;
}
#message .col2 {
  display: flex;
  gap: 20px;
  max-width: 920px;
  align-items: flex-start;
}
#message .comment {
  border: 1px solid var(--accent-color);
  padding: 40px 40px 60px 40px;
  width: 50%;
  text-align: center;
}
#message .comment h2 {
  margin: 40px 0;
  font-size: 20px;
}
#message .comment p {
  font-size: 16px;
  line-height: 2.2;
  font-weight: bold;
  margin-bottom: 40px;
}
#message .comment p span {
  display: block;
  margin-top: 40px;
}
#message .comment .btn {
  margin: 10px auto 0;
}
#message .member {
  border: 1px solid #000;
  background-color: #EDEFE6;
  padding: 60px 40px;
  width: 50%;
  margin-top: 60px;
  text-align: center;
}
#message .member .img {
  margin-top: 20px;
}
#message .member .img img {
  max-width: 200px;
  margin: 0 auto;
}
#message .member > h3 {
  font-weight: normal;
}
#message .member > h4 {
  font-size: 16px;
  display: block;
  text-align: center;
  margin-top: 20px;
}
#message .member > p {
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  margin-top: 10px;
}
#message .member .box {
  margin-top: 40px;
}
#message .member .box h3 {
  font-size: 46px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 100;
  border-bottom: 1px solid #000;
  height: 50px;
}
#message .member .box h4 {
  margin: 10px 0;
}
#message .member .box p {
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}
#message .member .btn a {
  box-shadow: 5px 5px 0 var(--message-color);
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 400;
}
#message .member .btn a:hover {
  box-shadow: 2px 2px 0 var(--message-color);
}
@media only screen and (max-width:1023px) {
  #message .col2 {
    flex-direction: column;
  }
  #message .comment {
    width: 100%;
  }
  #message .member {
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  #message {
    padding: 0 70px 0 20px;
  }
  #message .comment {
    padding: 0 0 40px;
  }
  #message .comment h2 {
    font-size: 16px;
    margin: 30px 10px;
  }
  #message .comment p {
    margin: 0 10px 30px;
    font-size: 16px;
  }
  #message .comment p span {
    text-align: right;
    margin-top: 30px;
    margin-right: 20px;
  }
  #message .member {
    padding: 40px 20px;
    margin-top: 0;
  }
  #message .comment .btn-simple {
    max-width: 245px;
    font-size: 16px;
    height: 60px;
  }
#message .member h3 {
  font-size: 14px;
}
#message .member p {
  font-size: 14px;
}
#message .member .box p {
  font-size: 14px;
}
}
@media only screen and (max-width:390px) {
  #message .comment p {
    font-size: 13px;
  }
#message .member h3 {
  font-size: 13px;
}
#message .member p {
  font-size: 13px;
}
#message .member .box p {
  font-size: 13px;
}
}


/* channel
-----------------------------------------------*/
#channel {
  overflow: hidden;
  padding: 120px 60px 100px 275px;
}
#channel .ttl {
  background: #fff;
  padding-right: 10px;
}
#channel .slider .col {
  margin: 0 10px;
}
#channel .slider .col a {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 580px;
  border: 1px solid var(--accent-color);
  padding: 20px;
  transition: background .3s;
}
#channel .slider .col a:hover{
  background: rgba(0,0,0,.05);
}
#channel .slider .col a .img {  
  overflow: hidden;
}
#channel .slider .col a .img img {
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
#channel .slider .col a .txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#channel .slider .col a .txt time {
  font-size: 14px;
  line-height: 1;
  color: var(--channel-color);
}
#channel .slider .col a .txt h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: normal;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#channel .btn {
  margin-top: 40px;
}
#channel .btn a {
  box-shadow: 5px 5px 0 var(--channel-color);
}
#channel .btn a:hover {
  box-shadow: 2px 2px 0 var(--channel-color);
}
@media only screen and (max-width:767px) {
  #channel {
    padding: 10px 20px 60px 20px;
  }
  #channel .ttl h2 img {
    width: 35px;
  }
  #channel .slider .col {
    margin: 0 5px;
  }
  #channel .slider .col a {
    padding: 10px;
  }
  #channel .slider .col a .txt h3 {
    font-size: 16px;
  }
  #channel .btn {
    margin-top: 20px;
  }
}


/* slick
-----------------------------------------------*/
.slick-slider{
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list{
	position: relative;
	display: block;
	margin: 0;
	height: 100%;
}
.slick-list.dragging{
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track{
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
}
.slick-track:before,
.slick-track:after{
	display: table;
	content: '';
}
.slick-track:after{
	clear: both;
}
.slick-loading .slick-track{
  visibility: hidden;
}
.slick-slide{
	float: left;
	height: 100%;
	min-height: 1px;
}
.slick-slide:focus{
	outline: none;
}
[dir='rtl'] .slick-slide{
	float: right;
}
.slick-initialized .slick-slide{
	display: block;
}
.slick-loading .slick-slide{
	visibility: hidden;
}
.slick-vertical .slick-slide{
	display: block;
	height: auto;
}
.slick-slider {
  padding-bottom: 92px;
}
.slick-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}
.slick-dots li button {
  display: block;
  border: none;
  font-size: 0;
  background: rgba(0,0,0,.2);
  width: 8px;
  height: 8px;
  border-radius: 4px;
  transition: width .4s ,background .2s;
  cursor: pointer;
}
.slick-dots li button:hover {
  background: rgba(0,0,0,.3);
}
.slick-dots li.slick-active button {
  width: 140px;
}
.slick-prev,
.slick-next {
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 50px;
  background: url("/img/index/item-slider-arrow.svg") no-repeat center;
  background-size: 50px;
  border: none;
  font-size: 0;
  cursor: pointer;
}
.slick-prev {
  left: calc(50% - 65px);
}
.slick-next {
  right: calc(50% - 65px);
  transform: scale(-1, 1);
}
.slick-prev::before,
.slick-next::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: rgba(0,0,0,.05);
  opacity: 0;
  transition: opacity .2s;
}
.slick-prev:hover::before,
.slick-next:hover::before {
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .slick-slider {
    padding-bottom: 46px;
  }
  .slick-dots li button {
    width: 4px;
    height: 4px;
    border-radius: 2px;
  }
  .slick-dots li.slick-active button {
    width: 70px;
  }
  .slick-prev,
  .slick-next {
    width: 35px;
    height: 35px;
    background-size: 35px;
  }
  .slick-prev {
    left: calc(50% - 45px);
  }
  .slick-next {
    right: calc(50% - 45px);
  }
}


/* fade
-----------------------------------------------*/

main .slider {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.0s,transform 1.0s;
}
main.fade .slider {
  opacity: 1;
  transform: translateY(0);
}


section .ttl h2 {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.0s;
}
section .ttl.fade h2 {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (min-width:766px) {
  section .ttl::before {
    opacity: 0;
    transition: all .8s;
    width: 0;
  }
  section .ttl.fade::before {
    opacity: 1;
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width:767px) {
}

section .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.0s,transform 1.0s;
}
section .btn.fade {
  opacity: 1;
  transform: translateY(0);
}

#new .col2 .col {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.0s,transform 1.0s;
}
#new .col2.fade .col {
  opacity: 1;
  transform: translateY(0);
}
#new .col2.fade .col:nth-child(3),
#new .col2.fade .col:nth-child(4) {
  transition-delay: .2s;
}
#new .col2.fade .col:nth-child(5),
#new .col2.fade .col:nth-child(6) {
  transition-delay: .4s;
}

#blog .col3 .col {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s,transform 1.0s;
}
#blog .col3.fade .col {
  opacity: 1;
  transform: translateY(0);
}
#blog .col3.fade .col:nth-child(2) {
  transition-delay: .2s;
}
#blog .col3.fade .col:nth-child(3) {
  transition-delay: .4s;
}

#radio .col-main {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.0s;
}
#radio .col-main.fade {
  opacity: 1;
  transform: translateY(0);
}
#radio .box {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s,transform 1.0s;
}
#radio .box.fade {
  opacity: 1;
  transform: translateY(0);
}

#horoscope .box {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s,transform 1.0s;
}
#horoscope .box.fade {
  opacity: 1;
  transform: translateY(0);
}

#ranking .cover {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s,transform 1.0s;
}
#ranking .cover.fade {
  opacity: 1;
  transform: translateY(0);
}

#feature .slider {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s,transform 1.0s;
}
#feature .slider.fade {
  opacity: 1;
  transform: translateY(0);
}

#store .box .col-main,
#store .box .col-sub {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s,transform 1.0s;
}
#store .box.fade .col-main,
#store .box.fade .col-sub {
  opacity: 1;
  transform: translateY(0);
}

#message .col2 .comment,
#message .col2 .member {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s,transform 1.0s;
}
#message .col2.fade .comment,
#message .col2.fade .member {
  opacity: 1;
  transform: translateY(0);
}

#channel .slider {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s,transform 1.0s;
}
#channel .slider.fade {
  opacity: 1;
  transform: translateY(0);
}


