@charset "utf-8";
.content {
  padding-bottom: 30px;
}
.button {
  display: grid;
  place-items: center;
  position: relative;
  height: 45px;
  border: 1px solid;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
}
.button::before {
  rotate: 45deg;
  position: absolute;
  right: 15px;
  width: 10px;
  aspect-ratio: 1;
  border-top: 1px solid;
  border-right: 1px solid;
  content: "";
}
/*==============*/
/*** ヘッダー ***/
/*==============*/
.header {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
.h1 span {
  margin-left: auto;
  font-size: 11px;
  font-weight: bold;
}

/*======================*/
/*** コンテンツエリア ***/
/*======================*/
.c-section {
  padding-bottom: 30px;
  border-top: 5px solid #fe77a7;
}
.c-title {
  padding-block: 30px 10px;
  margin-inline: 15px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

.inside_more {
  padding-inline: 15px;
}
.inside_more a {
  position: relative;
  height: 40px;
  border: 1px solid;
  border-radius: 5px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
}
.inside_more a:before {
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  border-top: 1px solid #9a9a9a;
  border-right: 1px solid #9a9a9a;
  content: "";
}

.rank_icon {
  position: absolute;
  left: 5px;
}

/*=====新着情報=====*/
.news {
  margin-block-start: 10px;
}
.news_container {
  padding: 4px 10px 15px;
  border: 1px solid #e5e5e5;
}
.news_heading {
  display: inline-block;
  margin-inline-start: -13px;
  padding: 5px 10px;
  background-color: #ff77a7;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}
.news_items {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-block-start: 10px;
}
.news_item a {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  font-size: 12px;
}
.news_item a::before {
  width: 7px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: radial-gradient(
    circle farthest-side at 0% 0%,
    rgba(231, 227, 227, 1) 15%,
    rgba(204, 200, 200, 1) 32%,
    rgba(151, 147, 147, 1)
  );
  content: "";
}
.news_item a span:not(.news_new) {
  flex: 1;
  overflow: hidden;
  margin-inline-start: 3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news_new {
  display: inline-block;
  margin-inline-start: 10px;
  padding: 3px 10px;
  border-radius: 10px;
  background-color: #fe55a6;
  color: #fff;
  font-size: 11px;
}

/*=====ピックアップガール=====*/
.pickup {
  margin-block: 10px 20px;
}
.pickup_heading::before {
  aspect-ratio: 377/512;
  width: 14px;
  background-image: url("../images/icon/like.svg");
  background-size: cover;
  content: "";
}
.pickup_date {
  margin-left: auto;
  font-size: 12px;
  font-weight: normal;
}
.pickup_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-block-start: 15px;
}
.girlsImg_pict {
  position: relative;
}
.pickup_item {
  aspect-ratio: 3/4;
}
.pickup_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pickup_button {
  margin-top: 10px;
}

.pickup .girlsImg_name {
  font-size: 18px;
}
.pickup .girlsImg_time {
	margin-top: 10px;
	padding-block: 5px;
	border: 1px solid;
	color: #fe77a7;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}
.girlsImg_name {
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
}
.girlsImg_name a {
  display: inline;
}
.girlsImg_size {
  margin-top: 5px;
  font-size: 11px;
}

/*=====おすすめヒメ日記=====*/
.recommendationDiary {
  margin-block: 20px 30px;
}
.recommendationDiary_heading::before {
  aspect-ratio: 27/32;
  width: 15px;
  background-image: url("../images/icon/diary.svg");
  background-size: cover;
  content: "";
}

/*=====お知らせ=====*/
.info_heading::before {
  aspect-ratio: 512/359;
  width: 20px;
  background-image: url("../images/icon/info.svg");
  background-size: cover;
  content: "";
}
.info_items {
  display: grid;
  gap: 10px;
  margin-block-start: 15px;
}
.info_items.--col3 {
  grid-template-columns: repeat(3, 1fr);
}
.info_items.--col3 .info_item a {
  aspect-ratio: 1/1;
}
.info_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*=====本日の出勤=====*/
.schedule__items {
	margin-top: 20px;
}
.schedule_date {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-inline: 15px;
  font-size: 14px;
}
.schedule_date p span {
  color: #ff0000;
  font-weight: bold;
}
.schedule_time {
  display: flex;
  margin-top: 20px;
  padding-inline: 15px;
}
.schedule_time_li {
  display: grid;
  place-content: center;
  flex: 1;
  height: 43px;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}
.schedule_time_li span {
  font-size: 12px;
}
.time-on {
  position: relative;
  background-color: #fe77a7;
  color: #fff;
}
.time-on:after {
  position: absolute;
  bottom: -7px;
  inset-inline: 0;
  width: 16px;
  height: 8px;
  margin-inline: auto;
  background-color: #fe77a7;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
  content: "";
}
.time-off {
  border: 1px solid #fe77a7;
  background-color: #fff;
}
.time-late {
  width: 100%;
}
.schedule .inside_more {
  margin-top: 20px;
}

/*=====ランキング=====*/
.ranking {
	line-height: 1.5;
}
.ranking_category {
  margin-top: 20px;
  padding-inline: 15px;
  font-size: 14px;
}
.ranking__items {
	padding-inline: 15px 35px;
}
.ranking__items .swiper-wrapper {
	display: flex;
	column-gap: 5px;
  margin-top: 20px;
}
.ranking-item {
  position: relative;
  text-align: center;
  width: 90px;
}
.ranking-item__thumbnail {
	position: relative;
	aspect-ratio: 3/4;
}
.ranking-item__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ranking-item .rank_icon {
	bottom: 5px;
}
.ranking-item__sticker {
  position: absolute;
  top: -10px;
  right: -5px;
}
.ranking-item__name {
	display: flex;
	justify-content: center;
	margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
}
.ranking-item__size {
	margin-top: 5px;
	font-size: 11px;
}
.ranking-item__date {
  margin-top: 10px;
  padding-block: 3px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
}
.ranking-item__date.today {
  border: 1px solid;
  color: #fe77a7;
}
.ranking-item__date.tomorrow {
  border: 1px solid;
  color: #7bcbee;
}
.ranking .inside_more {
  margin-top: 20px;
}

/*=====新着写メ日記=====*/
.diary_inside {
  margin-top: 20px;
}
#imageArea {
  box-sizing: border-box;
  width: 100%;
  text-align: center;
}
.diary .inside_more {
  margin-top: 20px;
}

/*=====404=====*/
#notfound {
  background: #fff;
  margin-top: 15px;
  padding-inline: 15px;
  text-align: center;
}
.notfound_text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
#notfound .inside_more {
  margin-top: 20px;
}

/*=====口コミ=====*/
.review_inside {
  overflow: hidden;
  margin-top: 20px;
  padding-inline: 15px;
}

/*=====x=====*/
.twitter_contents {
  overflow: hidden;
  margin-top: 20px;
  padding-inline: 15px;
}

/*=====バナー=====*/
.banner-items {
  display: grid;
  row-gap: 10px;
  margin-top: 15px;
  padding-inline: 15px;
  background: #fff;
}
.banner-item.-external img {
  max-width: 100%;
  height: auto;
}

/*=====外部媒体カスタムバナー=====*/
.custom-bnr {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-block-start: 20px;
}

.external-contents {
  padding-bottom: 30px;
  border-top: 5px solid #fe77a7;
}
.external-contents_title {
  padding: 30px 0 10px;
  margin: 0 15px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}
.external-contents_inner {
  margin-top: 20px;
  padding-inline: 15px;
  text-align: center;
}

/* ----- 年末年始 ----- */
.info-newYear {
  margin-top: 10px;
  padding-inline: 15px;
  padding-bottom: 15px;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
}
.info-newYear__img {
  margin-inline: -15px;
}
.info-newYear__img img {
  margin-bottom: 10px;
}
.info-newYear__table {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: 10px;
}
.info-newYear__table dt,
.info-newYear__table dd {
  padding-block: 0.5em;
  border-bottom: 1px solid #ccc;
}
.info-newYear__table dt {
  padding-right: 15px;
  font-weight: bold;
}
.info-newYear__table .closed {
  color: #f00;
}
