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

/* リセット定義 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	color: #242424;
	font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
    font-feature-settings: "pkna" 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	display: block;
}
*{ 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* リセット定義ここまで */

/* 改行の切り替え */
.br-pc {
	display: none;
}
	
.br-sp {
	display: block;
}

/* パソコン表示 */
@media screen and (min-width:750px) {

/* 改行の切り替え */
.br-pc {
	display: block;
}
	
.br-sp {
	display: none;
}
}
	
/*-------------------------- トップページ --------------------------*/

/* トップ ビジュアル */
#top {
	width: 100%;
	margin: 0 auto;
}

#top h1 img {
	width: 100%;
	margin: 0 auto;
}

/* ボタン */
#btn_age {
	width: 100%;
	margin: 0 auto;
}

#btn_age ul {
	width: 90%;
	margin: 0 auto;
	text-align: center;
}

#btn_age ul li {
	margin: 20px auto;
}

#btn_age ul li a {
	text-decoration: none;
	display: block;
}

/* ボタン 18歳以上 */
.enter a {
	width: 100%;
	padding: 20px 0;
	border: 2px solid #ED5687;
	border-radius: 8px;
	background-color: #ED5687;
	color: #fff;
}

/* ボタン 18歳未満 */
.exit a {
	width: 100%;
	padding: 20px 0;
	font-size: 0.8em;
	border: 2px solid #ED5687;
	border-radius: 8px;
	color: #ED5687;
}

/* コピーライト */
.cp {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	font-size: 0.7em;
}

/* パソコン表示 */
@media screen and (min-width:750px) {

/* トップ ビジュアル */
#top {
	max-width: 750px;
}
	
/* ボタン */
#btn_age {
	width: 750px;
	margin: 0 auto;
}
}

/*-------------------- サービス（番組一覧）ページ --------------------*/

/* ヘッダー */
.head {
	width: 100%;
	height: 65px;
	background-color: #fff;
	z-index: 2;
	position: fixed;
}

/* ドロワーメニュー */
.drawer {
	width: 100%;
	z-index:3;
}

.drawer-menu li a {
	padding: 10px 0 10px 10px;
	font-size: 0.85em;
	line-height: 2em;
}

/* ロゴ */
.logo {
	height: 65px;
}

.logo h1 img {
	height: 60px;
	margin: 5px 0 10px 10px;
}

/* ヘッド画像 */
.head_img {
	width: 100%;
	margin: 0 auto 10px auto;
	padding-top: 65px;
}

.head_img img {
	width: 100%;
	margin: 0 auto;
}

/* ヘッドテキスト */
.head_txt {
	width: 92%;
	margin: 0 auto;
}

/* 見出し */
.head_txt h2 {
	margin: 15px auto 10px auto;
	font-size: 1.07em;
	line-height: 1.6em;
	color: #B3CC47;
}

/* 本文 */
.head_txt p {
	font-size: 0.9em;
	line-height: 1.7em;
	letter-spacing: 0.35px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings:palt;
}

/* 各番組エリア */
.container {
	width: 92%;
	margin: 15px auto;
	padding: 12.5px;
	border: 2px solid #B3CC47;
	border-radius: 8px;
}

/* 各番組画像＆概要 */
.item {
	width: 100%;
	margin: 0 auto;
	display: flex;
}

/* 各番組画像 */
.img_area {
	width: 45%;
	margin-right: 5%;
}

.img_area img {
	width: 100%;
}

/* 概要 */
.overview_area {
	width: 50%;
}

/* 無料体験額 */
.trial_price {
	font-size: 0.85em;
	margin: 0 auto 8.5px auto;
}

/* コード */
.code {
	font-size: 0.85em;
	margin: 0 auto;
}

/* 赤色 */
.red {
	color: #EC008C;
}

/* 女性 層 */
.layer {
	display: flex;
	justify-content: flex-start;
}

.layer p {
	width: 32%;
	margin: 10px auto 10px 0;
	padding: 5px 2.5px;
	font-size: 0.7em;
	text-align: center;
	border-radius: 4px;
	color: #fff;
}

/* 女性 層 赤色 */
.layer_red {
	background-color: #EC008C;
}

/* 女性 層 グレー */
.layer_gray {
	background-color: #DADADA;
}

/* 〇〇度 */
.level {
	font-size: 0.9em;
	line-height: 1.6em;
}

.star {
	color: #F7E000;
}

/* 星 グレー */
.gray {
	color: #DADADA;
}

/* 番組名 */
.program_name {
	margin: 15px auto 0 auto;
	padding-bottom: 15px;
	font-size: 1.4em;
	color: #EC008C;
	border-bottom: 1px dotted #242424;
}

/* 番組見出し */
.text_heading {
	margin: 15px auto;
	display: flex;
	align-items: center;
}

/* gif */
.text_heading p {
	width: 15%;
	margin: -5px 0 0 0;
}

.text_heading p img {
	width: 80%;
	margin: 0;
}

/* 見出し */
.text_heading h3 {
	width: 82.5%;
	margin: 0;
	font-size: 1em;
	line-height: 1.4em;
	color: #EC008C;
}

/* 本文 */
.program_text {
	font-size: 0.9em;
	line-height: 1.7em;
	letter-spacing: 0.35px;
}

/* リンクボタン */
.item_btn_area {
	width: 100%;
	margin: 35px auto 5px auto;
	text-align: center;
}

.item_btn {	
	margin: 0 auto;
}

.heart-button {
  /* ボタン要素の大きさや色 */
  position: relative;
  display: inline-block;
  background-color: #EC008C;
  padding: 0.8em 2.4em;
  border-radius: 5px;
  border: 2px solid transparent;

  /* ボタンの文字の設定 */
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.1em;

  /* その他必要なスタイル */
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

/* ハートの共通スタイル */
.heart-button::before,
.heart-button::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  opacity: 0;
}

/* 左上のハートのスタイル */
.heart-button::before {
  background-image: url('../img/heart.svg');
  top: 0;
  left: -12px;
}

/* 右下のハートのスタイル */
.heart-button::after {
  background-image: url('../img/heart-reverse.svg');
  bottom: -6px;
  right: -14px;
}

  /* ボタン本体のスタイル */
  .heart-button {
    background-color: #fff;
    border-color: #EC008C;
    color: #EC008C;
  }
  
  /* 左上のハートのスタイル */
  .heart-button::before {
    animation: heart 1.5s infinite ease-out;
  }

  /* 右下のハートのスタイル */
  .heart-button::after {
    animation: heart 1.5s 0.2s infinite ease-out;
  }

/* ========= アニメーションの設定 ======== */
@keyframes heart {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20px) scale(1.4);
    opacity: 0;
  }
}

/* フッター*/
footer {
	width: 100%;
	margin: 20px auto 0 auto;
	background-color: #B3CC47;
}

.footer_area {
	position: relative;
	width: 92%;
	margin: 0 auto;
	padding: 30px 0;
	display: flex;
	align-items: center;
}

.footer_txt {
	margin: 0 auto 0 auto;
	text-align: center;
}

/* コピーライト */
.footer_cp {
	margin: 0 auto;
	text-align: center;
	font-size: 0.7em;
	line-height: 2em;
	color: #fff;
}

/* 運営者情報 */
.management {
	font-size: 0.7em;
	line-height: 2em;
}

.management a {
	text-decoration: underline;
	display: block;
	color: #fff;
}

/* ページトップ */
#pagetop{
	position: absolute;
    cursor:pointer;
	right: 0;
}

#pagetop img {
	width: 50px;
	margin: 0;
}

/* パソコン表示 */
@media screen and (min-width:750px) {

body {
	max-width: 750px;
	margin: 0 auto;
	position: relative;
}

/* ヘッダー */
.head {
	max-width: 750px;
}

/* ドロワーメニュー */
.drawer {
	max-width: 750px;
	margin: 0 auto;
}
	
.drawer-toggle,.drawer-hamburger {
	position: absolute;
}
	
/* ロゴ */
.logo {
	max-width: 750px;
	margin: 0 auto;
}

/* ヘッド画像 */
.head_img {
	max-width: 750px;
}
	
/* gif */
.text_heading p {
	width: 10%;
}
}























