@charset "utf-8";
/*
基本的に弄らない記述　↓↓
---------------------------------------------------------------------------*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: sans-serif;
	font-display: swap;
	line-height: 1.6;
	color: #333;
	background: #FBF5E9;
}

img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 1.6rem;
}

a {
	text-decoration: none;
	color: inherit;
}

footer{
	background: #c98f2a;
	max-width: 1200px;
	margin: 0 auto;
	padding:1rem;
	text-align: center;
	color: #fff;
}

footer ul li{
	list-style: none;
	display: inline-block;
	border-right: 1px solid #fff;
	padding: 0px 5px;
}
footer ul li:last-child{
	border-right: none;
}

.pad10_color{
	padding: 16px;
	background:#f9f5f2;
}

ul{
	padding-left: 26px;
}

table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	text-align: center;
}
table th,table td{
	border: 1px solid #eee;
	padding:5px;
}
/********文字*******************************/
p {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 18px;
	color: #333333;
}

@media (max-width: 768px){
	p{font-size: 16px;}
}

h2 {
	font-size: 22px;
	line-height: 1.5;
	margin-top: 24px;
	margin-bottom: 12px;
}


.kome{
	font-size: 0.6em;
	color: #a9a9a9;
	text-align: right;
}
.right01{
	text-align: right;
}
sup{
	font-size: 0.6em;
	color: #a9a9a9;
}
/********サイズなど*******************************/
.b{font-weight: bold;}
.noclick{pointer-events: none;}
.w100{width: 100%; height: auto;}
.w90{width: 90%; height: auto; display: block; margin: 0 auto;}
.w80{width: 80%; height: auto; display: block; margin: 0 auto;}
.w30{width: 30%; height: auto; display: block; margin: 0 auto;}

.mt0{margin-top:0px!important;}
.m0{margin-bottom:0px!important;}
.m5{margin-bottom:5px!important;}
.m1rem{margin-bottom:1rem!important;}
.x0-6em{font-size: 0.6em;}
.x0-8em{font-size: 0.8em;}
.x1-2em{font-size: 1.2em;}
.x1-5em{font-size: 1.5em;}
.x2em{font-size: 2em;}


/****筆者プロフ****************/
.author {
  display: flex;
  margin-bottom: 20px;
  padding: 0.8em;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0 0 5px #999;
}
.author figure {
    margin-right: 20px;
    width: 100px;
    height: 100px;
	pointer-events: none;
  }
.author figure img {
      min-width: 100px;
      max-width: 100%;
      vertical-align: top;
    }
.author p{
	font-size: 0.8em;
	margin-bottom: 0em;
}

/****見出し：ふきだし****************/
.hukidashi{
    font-size: 1.5em;
    font-weight: bold;
    position: relative;
    padding: 0.6em;
    background: #ff8c00;
    color: #fff;
	margin-bottom: 1.5rem;
}

.hukidashi:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #ff8c00;
    width: 0;
    height: 0;
}

/****宅配食の選び方の枠****************/
.box{
	border: 2px solid #544840;
	border-radius: 10px;
	margin-bottom: 1.5em;
	background:#fff;
}
.box h3{
  background: #544840;
  color: #FFF;
  text-align: center;
  margin: 0;
	font-size: 1.3rem;
	border: none;
	border-radius: 5px 5px 0px 0px;
	padding:0.5rem 0rem;
}
.box .inner{
	padding: 1.5rem;
}

/****宅配食の選び方内：コスパの表****************/
.table_intro table th{
	font-size: 1.3rem;
	font-weight: bold;
	background: #F5F5F5;
}
.table_intro table td{
	font-size: 1.3rem;
	font-weight: bold;
}

.table_intro table th:nth-child(2) {
	background: #FFECA8;
	border-left:5px solid #fffacd;
	border-right:5px solid #fffacd;
	border-top:5px solid #fffacd;
}

.table_intro table td:nth-child(2) {
	border-left:5px solid #fffacd;
	border-right:5px solid #fffacd;
	border-bottom:5px solid #fffacd;
	color:  #ff6347;
}

/****背景：方眼****************/
.back_hogan{
	position: relative;
	margin: 2rem auto;
	padding:2.5rem 2rem 2rem 2rem;
	background-image: linear-gradient(0deg, transparent 19px, #ccc 20px),linear-gradient(90deg,  transparent 19px, #ccc 20px);
	background-size: 20px 20px;
}

.tilt{
	position: absolute;
	top: 0;
	left: 10px;
	font-size: 1rem;
	transform: rotate(-5deg);
	color: #fff;
	font-weight: bold;
	background-color: #544840;
	padding:0px 15px
}


/****背景と枠がズレた小見出し****************/
h1.zure {
	font-size:1.5em;
	font-weight:bold;
	color:#fff;
	position: relative;
	padding: 1rem 2rem calc(1rem + 10px);
	background: #ff8c00;
	text-align:center;
	margin-bottom: 1.8rem;
}

h1.zure:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 3px solid #3d3f3e;
}


/****タブ切り替えBOX****************/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #FF8C00;
  display: block;
  order: -1;
}
.tab-label {
  color: #fff;
  background: #D3D3D3;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: #FF8C00;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
	padding: 0.2rem;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

/*****比較表************************************************************************/
/**********************************************************************************/
.scroll_table {
  position: relative;
  overflow-x: auto;
}

.scroll_table table td{
	background: #FAFBFC;
	width:150px;
}

.scroll_table table tr:nth-child(odd) td {
  background: #fff;
}

.scroll_table table tr:first-child td {
  font-weight: bold;
}

/* 1位 */
.scroll_table td:nth-child(2) {
	background: #fff5db;
	border-left:5px solid #fffacd;
	border-right:5px solid #fffacd;
	font-weight: bold;
}
.scroll_table tr:first-child td:nth-child(2) {border-top:5px solid #fffacd;}
.scroll_table tr:last-child td:nth-child(2) {border-bottom:5px solid #fffacd;}
.scroll_table tr:nth-child(odd) td:nth-child(2) {background: #FFF9EE;}
.scroll_table tr:first-child a{text-decoration: underline;color: #1967d2;}

.scroll_table table img{
	margin-bottom: 0px;
	border:2px solid #eee;
}

.scroll_table .title_img{
	justify-content: center;
}

.scroll_table .title_img img{
	border: none;
}

.table__header {
	font-weight:bold;
	font-size:0.8em;
	background:#FFB006;
	width: 60px;
	position: sticky;
	left: 0;
	color: #fff;
	border: 1px solid #fff;
	z-index: 1;
}

.scroll-hint {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  display: none;
  animation: scroll-hint-animation 2s infinite ease;
	width:60%;
	text-align: center;
}

@keyframes scroll-hint-animation {
  0% {transform: translate(-50%, -50%);}
  50% {transform: translate(-40%, -50%);}
  100% {transform: translate(-50%, -50%);}
}
.scroll-hint--show {display: block;}


@media only screen and (max-width: 749px) {
	.table__cell{width:130px;}
	.scroll_table{font-size: 0.8rem;}
}

.tag_genre{
	display: block;
	border: 1px solid #544840;
	color: #544840;
	font-weight: bold;
	background:#fff;
}

a.moreinfo{
	color: #1967d2;
	text-decoration: underline;
	font-size: 0.8em;
	justify-content: center;
}

/*アイコン類*/
.icon {
  display: inline-block;
  width: 2em;
  height: 2em;
  position: relative;
  margin: 0.5em;
  vertical-align: middle;
}

.double-circle {
  border: 5px solid #dc143c;
  border-radius: 50%;
}
.double-circle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 5px solid #dc143c;
  border-radius: 50%;
}

.circle {
  border: 5px solid #ff6347;
  border-radius: 50%;
}

.triangle::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1em solid transparent;
  border-right: 1em solid transparent;
  border-bottom: 1.7em solid #778899;
}

/****マウスホバーで凹むボタン****************/
.btn1 {
    display: block;
    position: relative;
    width: 100%;
    padding: 10px 5px;
    background-color: #32cd32;
    box-shadow: 0 3px 0 0 rgba(30, 122, 30, 1);
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
}
.btn1:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
.btn1:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
}

@media (max-width: 768px) {
	.w90{width: 100%;}
	.icon{font-size: 1rem;}
}


/*****案件部************************************************************************/
/**********************************************************************************/

/*****枠*********************/
.rank{
	background: #F6E9CA;
	padding:0.3rem;
	margin-bottom:0px;
}

.rank .waku_round{
	background:#fff;
	padding: 0.3rem 0.8rem 1rem;
    border-radius: 15px;
    margin: 0px 0px 50px 0px;
}

/*案件名＋アイコン*/
.rank .waku_round h3 {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: bold;
	padding:10px 5px 10px 15px;
	margin-bottom: 0px;
}
.rank .waku_round h3 img {
	display: inline-block;
	height: 2em; 
	width: auto;
	vertical-align: middle;
	margin:0em 0.3em 0em 0em;
}
.rank .waku_round h3.pick{
	display: block;
	text-align: center;
}

.pr{
	font-size: 0.6em;
	color: #CACACB;
	border: 1px solid #CACACB;
	padding:0px 10px;
	margin-left: 10px;
	font-weight: normal;
}

.waku_round .btn1{
	border-radius: 100px;
	margin:10px auto;
}

/*****小見出し：span内が英文字*********************/
h4{
    border-bottom: solid 2px #ffb007;
    padding: 8px 0 0px;
    font-size: 1.3rem;
    font-weight: bold;
	margin-bottom: 1rem;
}

h4 span {
    display: block;
    font-size: 1rem;
    color: #ffb007;
    font-weight: bold;
}

.obi{
	background: #4CADEC;
	color: #fff;
	text-align: center;
	font-weight: bold;
	padding:5px;
}

.komidashi{
	color: #4CADEC;
	font-weight: bold;
	border-bottom: 1px dashed #4CADEC;
}

/*****スライダ*********************/
.slider-container {text-align: center;}
.main-image img {width: 100%;}
.thumbnails {display: flex;justify-content: center;margin-top: 10px;width: 100%;box-sizing: border-box;overflow:hidden;}
.thumbnail {width: 19%;margin-right: 10px;cursor: pointer;border:2px solid #F6E9CA;margin-bottom: 0px;}
.thumbnail:last-child {margin-right: 0;}


/*****選ばれる理由*********************/
.husen ul{
    padding: 0;
    position: relative;
}
.husen ul li{
    border-left: solid 6px #ffb007;
    background: #FFFDFA;
    margin-bottom: 10px;
    line-height: 1.5;
    padding: 0.7rem;
    list-style-type: none;
}

/*****ストライプBOX*********************/
.box_stripe1 {
    position: relative;
    background: linear-gradient(-45deg, #fff 25%, #ffda47 25%, #ffda47 50%, #fff 50%, #fff 75%, #ffda47 75%, #ffda47);
    background-size: 10px 10px;
    padding: 10px;
}

.box_inner1 {
    background: #FFF;
    padding: 15px 20px;
}


/*****リスト：チェックマーク*********************/
.list01 ul {
	padding: 0 0.5em;
	margin-bottom: 2em;
}
.list01 li {
	position: relative;
	padding-left: 2.5em;
	margin: 0.8em 0;
	font-size: 1rem;
	list-style-type: none!important;
	border-bottom: dashed 1px #FFEAAC;
}
.list01 li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFC107;
  color: #fff;
  border-radius: 50%;
  width: 1.6em;
  height: 1.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1em;
}
.list01 ul li:last-of-type {
	border-bottom: none;
}

/*****CTA上の総額例の表*********************/
.rank_example table th{
	background: #32CD31;
	color: #fff;
}

/*****詳細の表*********************/
.rank_info{
	font-weight: bold;
	background:#f5f5f5;
	padding:0.5em;
	border-bottom: 2px solid #dfdfdf;
}

.rank_info_table table{
	text-align:left;
}

.rank_info_table table th{
	padding: 10px;
	width: 25%;
	border-left: none;
	border-right: none;
}

.rank_info_table table td{;
	padding: 5px 5px 5px 15px;
	width: 75%;
	border-left: none;
	border-right: none;
}

@media (max-width: 768px) {
	.rank_info_table table{font-size: 0.8rem;}
}

/*****シンプルな枠*********************/
.waku_simple {
    border: 2px solid #ffb007;
	border-radius: 5px;
    padding: 20px;
}

.waku_simple p:last-child{
	margin-bottom: 0px;
}

/*****口コミ：枠*********************/
.readmore_inside {
    background-color: #fffbf2;
	padding: 30px 15px 15px;
    border: 3px solid #ffb007;
	margin: -20px auto 30px;
}

.voice_prof {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
}

.voice_prof figure {
    width: 25%;
    margin-right: 10px;
}

.voice_text p:last-child{
	margin-bottom: 0px;
}

@media only screen and (min-width: 749px) {
    .readmore_inside {
        display: flex;
    }
	
    .voice_prof {
        display: block;
        border-bottom: none;
        border-right: 1px solid #000;
        text-align: center;
        padding: 10px;
    }
	
    .voice_prof figure {
        width: 150px;
    }
	
    .voice_text {
        display: block;
        margin-left: 20px;
    }	
}

/*****口コミ：readmore仕組み*********************/
.readmore {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

.readmore.open {
  max-height: none;
}

.readmore-fade {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px; /* フェードの高さ */
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  pointer-events: none; /* フェード部分クリックを透過 */
}

.readmore.open .readmore-fade {
  display: none; /* 展開したらフェードを消す */
}

.readmore-btn {
	display: block;
  width: 50%;
	margin: 0 auto;
  background: #fff;
  color: #7d7d7d;
  padding:0.5rem 0rem;
  border-radius: 100px;
  cursor: pointer;
	border:1px solid #9e9e9e;
}


/*****枠：縫い目*********************/
.waku_stitch {
    margin: 2em 10px;
    padding: 1em;
    border: dashed 2px #92d500;
    border-radius: 8px;
    background: #f8fdef;
    box-shadow: 0 0 0 10px #f8fdef;
}

.waku_stitch .title {
    position: relative;
    font-size: 1.3em;
    padding: 4px 0px 0px 12px;
    color: #92d500;
    font-weight: bold;
    text-align: center;
    margin: 0 auto 0.5em;
    width: 95%;
}


/******デリピックスrankパートユーザー投稿のスライド**********************/
.title01{
	text-align: center;
	font-weight: bold;
	color: #fff;
	background: #ff6347;
	padding: 0.3em;
    border-radius: 100px;
    margin: 1em 0 0.5em;
}
/*****スライダー**************/
.slide-wrap_voice{
   display:-webkit-box;
   display:-ms-flexbox;
   display: flex;
   overflow-x: scroll;
   -webkit-overflow-scrolling: touch;
   overflow-scrolling: touch;
   scroll-snap-type: x mandatory;
   scroll-behavior: smooth;
	align-items: stretch;
}
.slide-wrap_voice .slide-content{
   flex: 0 0 40%;
   margin: 0 10px 0 0;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  box-sizing: border-box;
  min-height: 100%;
	font-size: 0.7em;
	border-radius: 10px 10px 0px 0px;
}
.slide-wrap_voice .slide-content img{
	margin-bottom: 0px;
}
.prof {
	margin-bottom:0px!important;
	background: #eee;
	text-align: right;
	padding-right: 0.5em;
}

.voice_title{
	font-weight: bold;
	padding: 0.5em;
    text-align: center;
}
@media screen and (max-width: 480px){
.slide-wrap_voice .slide-content {
	flex: 0 0 60%;
	scroll-snap-align:center;
	}
}

/*****文字*************************************************************************************/
/**********************************************************************************************/
.red{color: #ff6347;}
.white{color: #fff;}
.indigo{color: #4b0082;}
.dgray {color: #a9a9a9;}
.bk{color: #333;}
.wht{color: #fff;}

span.del {
    text-decoration-line: line-through;
    text-decoration-style: double;
    text-decoration-color: red;
}

.marker-under {
    background: linear-gradient(transparent 60%, #ff9 60%);
}

.under_yel {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgba(255, 228, 0, 0.2); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

.under_bl {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #87ceeb4d;
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}

/*先頭imgのタイトル*/
.title_img {
	display: flex;
	align-items: center;
	font-weight: bold;
}

.title_img img {
	display: inline-block;
	height: 1em;
	width: auto;
	vertical-align: middle;
	margin:0em 0.3em 0em 0em;
}

/****ページ固定ボタン****************/
.fix_btn{
	border-radius: 100px;
	background: #3FC1C9;
	padding: 10px 0px 14px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	width: 90%;
	max-width: 800px;
	margin:0 auto;
}
.fix_btn:hover{
	color: #fff;
	background: #8CD9DD;
}

#fixed_btn{
    display: none;
    position: fixed;
    bottom: 0px;
    left: 0px;
    margin: 0px auto;
    width: 100%;
    text-align: center;
    z-index: 900;
	background-color: rgba(214,204,212,0.7);
	padding:5px 0px 10px;
}


@media only screen and (max-width: 768px){
    #fixed_btn{bottom: 0px;}
}

/****モーション***********************************************************************************/
/***********************************************************************************************/

/*ボタンぷるぷる*/
.prupru02{
  animation-name: puru;
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-play-state: running;
  animation-direction: normal;
  animation-delay: 0s;
  position: relative;
  bottom: 0;
  transition: all 100ms;
}
@keyframes puru {
  3% { transform: scale(0.93); }
  9% { transform: scale(1); }
  15% { transform: scale(0.96); }
  19% { transform: scale(1); }
  23% { transform: scale(0.99); }
  26% { transform: scale(1); }
}

/* ボタンを光らせる */
.btn-shine{
  overflow: hidden;
}
.btn-shine::before {
	content: "";
	position: absolute;	
	background: linear-gradient(to right,rgba(255,255,255,0), rgba(255,255,255,0.9));
width: 30px;
height: 100%;
top: -60px;
left: -60px;
animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
0% {
	transform: scale(0) rotate(50deg);/* アニメ開始時は大きさ0、50度の傾き */
	opacity: 0;/* アニメ開始時は全透過 */
}
40% {
	transform: scale(1) rotate(50deg);/* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
	opacity: 1;/* 透過しない（しっかり表示される）ように1を設定 */
}
60% {
	transform: scale(1) rotate(50deg);
	opacity: 0.6;
}	
100% {
	transform: scale(250) rotate(50deg);/* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
	opacity: 0;/* 全透過になるようにして、徐々に消えるような変化を付ける */
}
}

/*矢印*/
.cp_arrows *, .cp_arrows *:before, .cp_arrows *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_arrows {
	position: relative;
	display: flex;
	height: 0px;
	margin: 0em auto 80px;
	justify-content: center;
	align-items: center;
}
.cp_arrows .cp_arrow {
	position: absolute;
	/*left: 50%;*/
	width: 60px;
	height: 10px;
	-webkit-transform: scale(0.3);
	        transform: scale(0.3);
	-webkit-animation: arrow-move07 3s ease-out infinite;
	        animation: arrow-move07 3s ease-out infinite;
	opacity: 0;
}
.cp_arrows .cp_arrow:first-child {
	-webkit-animation: arrow-move07 3s ease-out 1s infinite;
	        animation: arrow-move07 3s ease-out 1s infinite;
}
.cp_arrows .cp_arrow:nth-child(2) {
	-webkit-animation: arrow-move07 3s ease-out 2s infinite;
	        animation: arrow-move07 3s ease-out 2s infinite;
}
.cp_arrows .cp_arrow:before,
.cp_arrows .cp_arrow:after {
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	content: '';
	border-radius: 2px;
	background: #ffb007;
}
.cp_arrows .cp_arrow:before {
	left: 1px;
	-webkit-transform: skewY(30deg);
	        transform: skewY(30deg);
}
.cp_arrows .cp_arrow:after {
	right: 1px;
	width: 50%;
	-webkit-transform: skewY(-30deg);
	        transform: skewY(-30deg);
}
@-webkit-keyframes arrow-move07 {
	25% {opacity: 0.6;}
	43.75% {
		-webkit-transform: translateY(1em);
		        transform: translateY(1em);
		opacity: 0.8;}
	62.5% {
		-webkit-transform: translateY(2em);
		        transform: translateY(2em);
		opacity: 1;}
	100% {
		-webkit-transform: translateY(3em) scale(0.5);
		        transform: translateY(3em) scale(0.5);
		opacity: 0;}
}
@keyframes arrow-move07 {
	25% {opacity: 0.6;}
	43.75% {
		-webkit-transform: translateY(1em);
		        transform: translateY(1em);
		opacity: 0.8;}
	62.5% {
		-webkit-transform: translateY(2em);
		        transform: translateY(2em);
		opacity: 1;}
	100% {
		-webkit-transform: translateY(3em) scale(0.5);
		        transform: translateY(3em) scale(0.5);
		opacity: 0;}
}

/* トップへ戻るボタン */
.page_top_btn {
width: 60px;
height: 60px;
position: fixed;
right: 5px;
bottom: 100px;
background: #000;
border-radius: 50%;
/*opacity: 0.6;*/
	opacity: 0;
	pointer-events: none;
	z-index: 999;
	 transition: opacity 0.5s ease;
}

.page_top_btn::before {
content: '▲';
color: rgb(255, 255, 255);
position: absolute;
top: 50%;
left: 50%;
translate: -50% -50%;
}

/* マウスオーバー時 */
.page_top_btn:hover {
background: rgb(0, 0, 0, 0.8);
color: rgb(255, 255, 255, 0.8);
}

/* フェードイン用クラス */
.page_top_btn.show {
  opacity: 0.6;
  pointer-events: auto;
}