@charset "UTF-8";
/*================================================
 *  CSSリセット
 ================================================*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary, time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	font-weight:normal;
}
body {
	line-height:1
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display:block
}
ul {
	list-style:none
}
blockquote, q {
	quotes:none
}
blockquote:before, blockquote:after, q:before, q:after {
	content:none
}
a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent
}
del {
	text-decoration:line-through
}
abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help
}
table {
	border-collapse:collapse;
	border-spacing:0
}
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #ccc;
	margin:1em 0;
	padding:0
}
input, select {
	vertical-align:middle
}
/*================================================
 *  一般・共通設定
 ================================================*/
html {
	font-size:62.5%; /*ベースを10pxにしています*/
}
body {
	width:100%;
	margin:0;
	font-size:1.0rem; /*10px*/
	font-family:"メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height:1.6;
	box-sizing:border-box;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
a {
	text-decoration:none;
}
a:hover {
}
/*================================================
 *  フロート回避
 ================================================*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
/*================================================
 *  ヘッダー
 ================================================*/
header {
	width: 100%;
	line-height:0;
}
header img {
	width: 100%;
	line-height:0;
}
/*================================================
 *  ハンバーガーメニュー
 ================================================*/
.global-nav {
	position: fixed;
	right:-100vh; /* これで隠れる */
	top: 0;
	width:100%; /* スマホに収まるくらい */
	height:100vh;
	padding-top:4.83vw;
	background-color: #000;
	transition:all .6s;
	z-index:200;
	overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.hamburger {
	position: fixed;
	left:4.83vw;
	top:8.63vw;
	width:14.49vw; /* クリックしやすいようにちゃんと幅を指定する */
	height:14.49vw; /* クリックしやすいようにちゃんと高さを指定する */
	cursor:pointer;
	z-index:999;
	background:#000;
	border-radius:10px;
}
.global-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.global-nav__title {
	width:82.667%;
	text-align:center;
	color:#FFF;
	font-size:3.865vw;
	font-weight:900;
	line-height:1;
	float:left;
	padding-top:2.9vw;
	padding-left:19.32vw;
	padding-bottom:14.49vw
}
.global-nav__title span {
	font-size:80%;
	font-weight:normal;
}
.global-nav__logo {
	float:left;
	width:17.333%;
	line-height:0;
	padding-right:4.286%;
}
.global-nav__logo img {
	width:100%;
	line-height:0;
}
.global-nav__item {
	padding: 0 3.382vw;
	font-size:4.831vw;
	line-height:1.6;
}
.global-nav__item a {
	display: block;
	padding: 2.9vw 0;
	text-decoration: none;
	color: #FFF;
}
.global-nav__item a span {
	color:#F00;
	font-size:80%;
	font-style:italic;
	padding-left:2.9vw;
	vertical-align:text-top;
}
.hamburger__line {
	position: absolute;
	left: 15%;
	width: 70%;
	height: 5px;
	background-color: #FFF;
	transition: all .6s;
	border-radius:25px;
}
.hamburger__line--1 {
	top:3.865vw;
}
.hamburger__line--2 {
	width: 0;
	top:8.696vw;
	font-size:3.14vw;
	font-weight:900;
	color:#FFF;
	line-height:1.6;
}
.hamburger__line--2::before {
	content: " MENU ";
}
.hamburger__line--3 {
	top:6.522vw;
}
.black-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100;
	background-color: #000;
	opacity: 0;
	visibility: hidden;
	transition: all .6s;
	cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
	right: 0;
}
.nav-open .black-bg {
	opacity:1;
	visibility: visible;
}
.nav-open .hamburger__line--1 {
	width: 65%;
	left: 20%;
	transform: rotate(45deg);
	top:4.831vw;
}
.nav-open .hamburger__line--2 {
	width: 0;
}
.nav-open .hamburger__line--2::before {
	content: "CLOSE";
}
.nav-open .hamburger__line--3 {
	width: 65%;
	left: 20%;
	transform: rotate(-45deg);
	top:4.831vw;
}
/*================================================
 *  メイン
 ================================================*/
#wrapper {
	width:100%;
	margin:0;
	padding:0;
}
.search {
	padding:1.5rem 0;
}
.search table {
	width:98%;
	margin:0 auto;
}
.search table td {
	width:22.333%;
	width:calc((100% - 33%) / 3);
	width:-webkit-calc((100% - 33%) / 3);
	text-align:center;
	padding:0;
	vertical-align:middle;
}
.search table td p {
	font-size:3.382vw;
	line-height:1.2;
}
.search table td .choice {
	width:85%;
	padding:0.5rem 0 0.3rem;
	border-radius:5px;
}
.search table th {
	width:33%;
	width:calc(100 - 67%);
	width:-webkit-calc(100 - 67%);
}
.search table th .btn {
	background:#FFF;
	color:#FFF;
	border:none;
	padding:0;
}
.search table th img {
	width:100%;
	line-height:0;
}
.tab {
	line-height:0;
}
.tab img {
	width:100%;
	line-height:0;
}

.acc_box {
	background:#323232;
	padding:1.5rem 0;
}
.acc_box h1 {
	text-align:center;
	font-size:6.281vw;
	font-weight:600;
	line-height:1.3;
	color:#FFF;
}
.acc_box h2 {
	text-align:center;
	font-size:3.382vw;
	line-height:1.6;
	color:#FFF;
}
.acc_tab {
	background:#e20011;
	padding:2rem 1rem 1.8rem;
	margin:1.5rem 0;
}
.acc_tab h3 {
	text-align:center;
	font-size:3.865vw;
	font-weight:600;
	line-height:1;
	color:#FFF;
}
.acc_tab2 {
	background:#e20011;
	padding:2rem 1rem 1.8rem;
	margin:0.5rem 0 1.5rem;
}
.acc_tab2 h3 {
	text-align:center;
	font-size:3.865vw;
	font-weight:600;
	line-height:1;
	color:#FFF;
}
.acc_box .btn2 {
	text-align:center;
	margin:2rem 0;
}
.acc_box .btn2 a {
	background:#ff0000;
	color:#FFF;
	font-size:3.865vw;
	font-weight:600;
	line-height:1;
	padding:0.7rem 2.5rem 0.5rem;
	border-radius:5px;
	box-shadow: 0 0px 20px rgba(202,161,3,0.75);
}
.acc_box .btn2 a:hover {
	box-shadow: 0 0 2px rgba(202,161,3,0.75);
}
.btn4 {
	width:88.2667%;
	line-height:0;
	margin:3rem auto -5rem;
}
.btn4 img {
	width:100%;
	line-height:0;
	border-radius:6px;
	box-shadow:2px 1px 6px rgba(0,0,0,0.75);
}
.btn4 a:hover {
	opacity:0.75;
}
.choose_box {
	width:90%;
	margin:5rem auto 0;
}
.choose_box .choose_title {
	font-size:4.348vw;
	color:#F00;
	font-weight:600;
}
.choose_box .choose_text {
	font-size:3.865vw;
	padding-bottom:4.831vw;
}
.choose_box .choose_text span {
	color:#F00;
}
.privacy_box {
	width:94%;
	color:#454545;
	padding:3rem 0 0;
	margin:0 auto -7rem;
}
.privacy_box .tab {
	font-size:4.3478vw;
	font-weight:900;
	line-height:1;
	padding:0.4rem 0 0 0.5rem;
	border-left:solid 6px #454545;
	border-bottom:solid 2px #454545;
}
.privacy_box .text {
	font-size:3.8647vw;
	line-height:1.4;
	padding:1.5rem 0 3rem 1.1rem;
}
.privacy_box .text ul li {
	list-style-type:none;
	list-style-position:inside;
	counter-increment: cnt;
}
.privacy_box .text ul li:before{
	display: marker;
	content: "(" counter(cnt) ") ";
}
.privacy_box .text ul li ol li {
	padding-left:7.24vw;
	counter-increment: none;
}
.privacy_box .text ul li ol li:before{
	display:none;
}

/*================================================
 *  ランキング
 ================================================*/
.ranking {
	background:#ebecee;
	padding:2rem 0 1.5rem;
}
.rank_box {
	width:90%;
	margin:0 auto 3.5rem;
}
.order {
	width:25%;
	position:absolute;
	top:-1.5rem;
	left:-1.5rem;
	line-height:0;
	z-index:100;
}
.order img {
	width:100%;
	letter-spacing:0;
}
.rank_contents {
	width:(100% - 1rem);
	position:relative;
	background:#FFF;
	padding:1rem 0 1.5rem;
	margin:1rem 0 0 1rem;
	border-radius:5px;
	border:solid 2px #d2d2d2;
	border-top:solid 4px #caa103;
	box-shadow:1px 0 5px rgba(0, 0, 0, .5);
}

.contents_top_box {
	width:(100% - 25%);
	padding-left:22%;
}
.contents_top_box table {
	width:100%;
}
.contents_top_box table td {
	vertical-align:middle;
}
.contents_top_box table td.icon {
	width:26%;
	padding-right:1rem;
}
.contents_top_box table td.icon p {
	background:#caa103;
	text-align:center;
	color:#FFF;
	font-size:3.382vw;
	line-height:0;
	padding:1.2rem 1rem 1rem;
	border-radius:5px;
}
.contents_top_box table td.star {
	width:44%;
}
.contents_top_box table td.star img {
	width:100%;
	line-height:0;
}
.contents_top_box table td.point_box {
	width:30%;
	padding-right:0;
}
.contents_top_box table td.point_box .point {
	width:80%;
	text-align:center;
	line-height:1;
	margin:0 auto;
}
.contents_top_box table td.point_box .point .num1 {
	width:19.5%;
}
.contents_top_box table td.point_box .point .num1_1 {
	width:21.2%;
}
.contents_top_box table td.point_box .point .num2 {
	width:38%;
}
.contents_top_box table td.point_box .point .num3 {
	width:38%;
}
.contents_top_box table td.point_box .point .num4 {
	width:38%;
}
.contents_top_box table td.point_box .point .num5 {
	width:38%;
}
.contents_top_box table td.point_box .point .num6 {
	width:38%;
}
.contents_top_box table td.point_box .point .num7 {
	width:32%;
}
.contents_top_box table td.point_box .point .num8 {
	width:38%;
}
.contents_top_box table td.point_box .point .num9 {
	width:38%;
}
.contents_top_box table td.point_box .point .num0 {
	width:35%;
}
.contents_top_box table td.point_box .point .numP {
	width:10.5% !important;
}
.contents_top_box table td.point_box .point3 {
	width:50%;
	line-height:1;
	margin:0 auto;
}
.contents_top_box table td.point_box .point3 img{
	width:100%;
	line-height:1;
}
.rank_contents .title {
	width:94%;
	font-size:4.348vw;
	font-weight:900;
	color:#F00;
	line-height:1;
	padding:1rem 0 0.5rem;
	margin:0 auto;
}
.rank_contents .site_img {
	width:100%;
	line-height:0;
}
.rank_contents .site_img img {
	width:100%;
	line-height:0;
}
.rank_contents .recommend {
	width:90%;
	background:url(../images/bg_sha.jpg) repeat;
	padding:1rem 0 1.5rem;
	margin:4.831vw auto 3.623vw;
}
.rank_contents .recommend .title {
	width:90%;
	font-size:3.382vw;
	line-height:1;
	color:#000;
	padding:0 0 0.5rem;
	margin:0 auto;
}
.rank_contents .recommend .title span {
	color:#F00;
	font-size:120%;
}
.rank_contents .recommend .inner {
	width:90%;
	background:#FFF;
	margin:0 auto;
}
.rank_contents .recommend .inner ul {
	padding:1.5rem 1rem 0;
}
.rank_contents .recommend .inner ul li {
	font-size:3.382vw;
	font-weight:600;
	line-height:1.3;
	padding-bottom:1rem;
}
.rank_contents .recommend .inner ul li .bold {
	font-weight:600;
}
.rank_contents .recommend .inner ul li .red {
	color:#F00;
}
.rank_contents .recommend .inner ul li .bk_yellow {
	background:#FF0;
}
.rank_contents .recommend .inner ul li .under_bar {
	text-decoration:underline;
}
.evaluation {
	width:90%;
	margin:0 auto;
	padding-bottom:1.5rem;
}
.evaluation .tab_box {
	width:45%;
	float:left;
}
.tag_back {
	background:#caa103;
	display:inline-block;
	color:#FFF;
	text-align:center;
	font-size:2.9vw;
	line-height:1;
	padding:3% 5% 2.5%;
	border-radius:5px;
	margin:1.5% 2%;
}
.evaluation .label {
	width:55%;
	float:left;
}
.label .popular {
	display:inline-block;
	width:32.4%;
	font-size:3vw;
	line-height:1;
}
.label .earn {
	display:inline-block;
	width:32.4%;
	font-size:3vw;
	line-height:1;
}
.label .easy {
	display:inline-block;
	width:32.4%;
	font-size:3vw;
	line-height:1;
}
.label .star {
	display:inline-block;
	width:38%;
	line-height:0;
}
.label .star img {
	width:100%;
	line-height:0;
}
.label .point {
	display:inline-block;
	width:25%;
	text-align:right;
}
.evaluation .label .point img {
	line-height:0;
	margin-right:1%;
}
.evaluation .label .point .num1 {
	width:11.85%;
	margin-right:3%;
}
.evaluation .label .point .num1_1 {
	width:21%;
}
.evaluation .label .point .num2 {
	width:21%;
}
.evaluation .label .point .num3 {
	width:21%;
}
.evaluation .label .point .num4 {
	width:21%;
}
.evaluation .label .point .num5 {
	width:21%;
}
.evaluation .label .point .num6 {
	width:21%;
}
.evaluation .label .point .num7 {
	width:18.3%;
}
.evaluation .label .point .num8 {
	width:21%;
}
.evaluation .label .point .num9 {
	width:21%;
}
.evaluation .label .point .num0 {
	width:21%;
}
.evaluation .label .point .numP {
	width:16% !important;
}
.rank_contents .btn3 {
	width:95%;
	margin:0 auto;
}
.rank_contents .btn3 a {
	text-align:center;
	display:block;
	background-color:#009944;
	background-image:url(../images/btn_icon.png);
	background-repeat:no-repeat;
	background-size:4.348vw 4.348vw;
	background-position:left 4.348vw center;
	color:#FFF;
	font-size:4.348vw;
	line-height:1;
	font-weight:600;
	padding:3.141vw 0 2.415vw;
	border-radius:10px;
    animation:pekopeko 1s infinite;
}
.rank_contents .btn3 a:hover {
    background-color:#009944;/*触れたときの背景色*/
    color:#fff;/*触れたときの文字色*/
    animation-play-state:paused;
    top:3px;
}

/*================================================
 *  ボタンアニメ
  ================================================*/
/*@keyframes pekopeko {
    0% {
        transform:scale(1, 0.8);
    }
    20% {
        transform:scale(0.8, 1);
    }
    95% {
        transform:scale(1, 1);
    }
    100% {
        transform:scale(1, 0.8);
    }
}*/
@keyframes pekopeko {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.8) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.05) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.05) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

/*================================================
 *  動画
 ================================================*/
.movie {
	background:#ebecee;
	padding:0;
	text-align:center;
	line-height:0;
	margin-bottom:2rem;
}
.movie .cm {
	width:267px;
	max-width:320px;
	height:auto;
	line-height:0;
}

/*================================================
 *  比較
 ================================================*/
.comparison {
	padding:2.5rem 0 2rem;
}
.comparison table {
	width:98%;
	margin:0 auto;
}
.comparison table th {
	width:20%;
	width:calc(100% / 5);
	width:-webkit-calc(100% / 5);
	border:solid 1px #CCC;
	border-top:solid 2px #CCC;
	font-size:3.623vw;
	font-weight:900;
	line-height:1;
	padding:1.5rem 0 1.3rem;
}
.comparison table th.second {
	background:#e6e6e6;
}
.comparison table th.third {
	background:#80c26a;
	color:#FFF;
}
.comparison table th.fourth {
	background:#4489ca;
	color:#FFF;
}
.comparison table th.fifth {
	background:#eb6100;
	color:#FFF;
}
.comparison table td {
	width:20%;
	width:calc(100% / 5);
	width:-webkit-calc(100% / 5);
	vertical-align:middle;
	text-align:center;
	border:solid 1px #CCC;
}
.comparison table td:nth-child(2n) {
    background:#FFF;
}
.comparison table td:nth-child(2n-1) {
    background:#fff5f3;
}
.comparison table td.first {
    background:#FFF;
	line-height:0;
}
.comparison table td.first img {
	width:100%;
	line-height:0;
}
.comparison table td .point {
	width:90%;
	line-height:1;
	margin:0 auto;
}
.comparison table td .point2 {
	width:70%;
	line-height:0;
	margin:0 auto;
}
.comparison table td .point2 img {
	width:100%;
	line-height:0;
}
.comparison table td .point .num1 {
	width:19.5%;
}
.comparison table td .point .num1_1 {
	width:21.5%;
}
.comparison table td .point .num2 {
	width:38%;
}
.comparison table td .point .num3 {
	width:38%;
}
.comparison table td .point .num4 {
	width:38%;
}
.comparison table td .point .num5 {
	width:38%;
}
.comparison table td .point .num6 {
	width:38%;
}
.comparison table td .point .num7 {
	width:32%;
}
.comparison table td .point .num8 {
	width:38%;
}
.comparison table td .point .num9 {
	width:38%;
}
.comparison table td .point .num0 {
	width:35%;
}
.comparison table td .point .num0_1 {
	width:38%;
}
.comparison table td .point .numP {
	width:10.5% !important;
}
.comparison table td .point3 {
	width:50%;
	line-height:1;
	margin:0 auto;
}
.comparison table td .point3 img{
	width:100%;
	line-height:1;
}

/*================================================
 *  続きを読む
 ================================================*/
.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	position: relative;
}
.cp_box label {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
	height: 140px; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
.cp_box input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_box label:after {
	font-size:2.9vw;
	font-weight:600;
	line-height: 2.5rem;
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 50%;
	width: 16rem;
	padding:0.7rem 0 0.5rem;
	font-family: FontAwesome;
	content:' 続きをよむ';
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: rgba(0, 0, 255, .35);
	background-color: rgba(255, 255, 255, 1);
	border:solid 1px;
	border-color: rgba(0, 0, 255, .35);
	box-shadow: 0 0 8px rgba(0, 0, 255, .35);
}
.cp_box input {
	display: none;
}
.cp_box .cp_container {
	overflow: hidden;
	height: 14rem; /* 開く前に見えている部分の高さ */
	transition: all 0.5s;
}
.cp_box input:checked + label {
	/* display: none ; 閉じるボタンを消す場合解放 */
}
.cp_box input:checked + label:after {
	font-family: FontAwesome;
	content:' 閉じる';
}
.cp_box input:checked ~ .cp_container {
	height: auto;
	padding-bottom: 14vw; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}
.cp_box .cp_container h2 {
	text-align:center;
	font-size:5.314vw;
	font-weight:600;
	line-height:1;
}
.cp_box .cp_container h3 {
	text-align:center;
	font-size:3.382vw;
	font-weight:600;
	padding-bottom:1rem;
}
.cp_box .cp_container p {
	width:90%;
	font-size:3.865vw;
	line-height:1.6;
	margin:0 auto;
}
.acc_box .cp_box .cp_container {
	overflow: hidden;
	height: 43.4783vw; /* 開く前に見えている部分の高さ */
	transition: all 0.5s;
}
.acc_box .cp_box .cp_container p {
	color:#FFF;
}
.acc_box .cp_box label {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
	height: 43.4783vw; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(50, 50, 50, 0) 0%, rgba(50, 50, 50, 1) 90%);
}
.acc_box .cp_box label:after {
	bottom: 3.623vw;
}
/*================================================
 * フッター
 ================================================*/
footer {
	width:100%;
	padding:10rem 0 0;
}
ul.f_nav {
	background:#323232;
}
ul.f_nav li {
	font-size:2.9vw;
	line-height:1;
	text-align:center;
	border-bottom:solid 1px #828282;
}
ul.f_nav li.start {
	font-size:3.865vw;
	font-weight:600;
	line-height:0.7;
	color:#FFF;
	padding:1.5rem 0 1.2rem;
}
ul.f_nav li.start span {
	font-size:50%;
}
ul.f_nav li.start a {
	color:#FFF;
	padding:0;
}
ul.f_nav li.end {
	text-align:left;
	border-bottom:none;
}
ul.f_nav li.back {
	text-align:right;
}
ul.f_nav li.back a {
	color:#FFF;
	font-weight:400;
	display:block;
	padding:1.5rem 1rem 1.2rem;
}
ul.f_nav li a {
	color:#FFF;
	font-weight:400;
	display:block;
	padding:2.25rem 1rem 1.2rem;
}
ul.f_nav li.end a {
	color:#FFF;
	font-weight:400;
	display:block;
	padding:1.5rem 1rem 1.2rem;
}
.arrow {
	position:relative;
	padding-right:3.623vw;
	color: #FFF;
	text-decoration: none;
}
.arrow::after {
	content: '';
	display: block;
	width:1.932vw; /* 矢印の大きさの指定 */
	height:1.932vw; /* 矢印の大きさの指定 */
	border-top:2px solid #FFF; /* 矢印の太さの指定 */
	border-left:2px solid #FFF; /* 矢印の太さの指定 */
}
.arrow--right::after {
	transform:rotate(135deg); /* 矢印の角度の指定 */
	position:absolute; /* 矢印の位置の指定 */
	right:1rem; /* 矢印の位置の指定 */
	top:1.5rem; /* 矢印の位置の指定 */
}
.arrow--top::after {
	transform:rotate(45deg); /* 矢印の角度の指定 */
	position:absolute; /* 矢印の位置の指定 */
	right:48.5%; /* 矢印の位置の指定 */
	top:1.25rem; /* 矢印の位置の指定 */
}
.arrow--left::after {
	transform:rotate(-45deg); /* 矢印の角度の指定 */
	position:absolute; /* 矢印の位置の指定 */
	left:1rem; /* 矢印の位置の指定 */
	top:1.5rem; /* 矢印の位置の指定 */
}
.copy {
	text-align:center;
	font-size:2.9vw;
	line-height:1;
	padding:1.5rem 0 1.2rem;
}
