@charset "utf-8";
/*==================================================
	【トップ】ページ固有のスタイル
==================================================*/
#top_ttl {
	padding-top: 20px;
}
#top_ttl::before {
	top: -55px;
	height: 70%;
	background: url("../img/top/bg-title.png") no-repeat center bottom / cover;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#top_ttl {
		padding-top: 15px;
	}
}
/**/
#ranking {
	position: relative;
	width: 100%;
	max-width: 700px;
	margin: 30px auto 60px;
	padding: 20px;
	border: 4px solid var(--color-primary);
}
#ranking::after {
	position: absolute;
	left: 50%;
	bottom: -39px;
	display: block;
	width: 250px;
	height: 35px;
	background: var(--color-font);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	transform: translateX(-50%);
	content: "";
}
#ranking h3 {
	position: absolute;
	top: -30px;
	left: 50%;
	width: 90%;
	max-width: 600px;
	background: #fff;
	border: 4px solid var(--color-primary);
	font-size: 35px;
	text-align: center;
	white-space: nowrap;
	transform: translateX(-50%);
	line-height: 52px;
}
#ranking .ico {
	position: absolute;
	top: 120px;
	right: 25px;
}
#ranking dl {
	margin-top: 15px;
	padding: 0 0 20px 120px;
	background: url("../img/top/ranking01.png") no-repeat left top 5px;
	border-bottom: 2px dashed var(--color-font);
}
#ranking dt {
	margin-bottom: 5px;
	font-size: 56px;
	font-weight: bold;
	line-height: 1.2;
}
#ranking dd {
	font-size: 28px;
	line-height: 1.4;
	/* フレックス */
	display: flex;
	align-items: center;
	column-gap: 10px;
}
#ranking dd span {
	display: block;
	padding: 2px 10px;
	padding-right: 25px;
	background: var(--color-font);
	clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
	color: #fff;
	font-size: 20px;
	white-space: nowrap;
}
#ranking dl:nth-of-type(1) dt {
	color: var(--color-secondary);
	text-shadow: 2px 2px 0 #2f3e5933;
}
#ranking dl:nth-of-type(1) dd {
	font-size: 38px;
}
#ranking dl:nth-of-type(1) dd span {
	font-size: 25px;
}
#ranking dl:nth-of-type(2) {
	background-image: url("../img/top/ranking02.png");
}
#ranking dl:nth-of-type(2) dt {
	color: var(--color-primary);
	font-size: 51px;
}
#ranking dl:nth-of-type(3) {
	background-image: url("../img/top/ranking03.png");
}
#ranking dl:nth-of-type(3) dt {
	font-size: 46px;
}
@media only screen and (max-width: 640px){ /* スマホ */
	#ranking {
		margin: 20px auto 30px;
		padding: 12px;
		border-width: 2px;
	}
	#ranking::after {
		bottom: -32px;
		width: 150px;
		height: 30px;
	}
	#ranking h3 {
		top: -20px;
		border-width: 2px;
		font-size: 4.5vw;
		line-height: 40px;
	}
	#ranking .ico {
		top: 30px;
		right: -10px;
		width: 45px;
	}
	#ranking dl {
		padding: 0 0 15px 60px;
		background-position: left top;
		background-size: 50px auto;
		border-width: 1px;
	}
	#ranking dt {
		font-size: 6.4vw;
	}
	#ranking dd {
		font-size: 3.2vw;
		line-height: 1.2;
		column-gap: 5px;
	}
	#ranking dd span {
		padding-left: 5px;
		padding-right: 15px;
		clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
		font-size: 2.5vw;
	}
	#ranking dl:nth-of-type(1) dd {
		font-size: 4vw;
	}
	#ranking dl:nth-of-type(1) dd span {
		font-size: 3.5vw;
	}
	#ranking dl:nth-of-type(2) dt {
		font-size: 6vw;
	}
	#ranking dl:nth-of-type(3) dt {
		font-size: 5.5vw;
	}
}
/**/
.top_line {
	margin: 60px auto 50px;
}
.top_line a {
	position: relative;
	width: 700px;
	height: 128px;
	margin: 0 auto;
	padding: 0 40px;
	background-color: #06c755;
	border-radius: 64px;
	box-shadow: 0 0 5px rgba(47, 62, 89, 0.7);
	color: #fff;
	font-size: 50px;
	font-weight: 700;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
}
.top_line a::after {
	content: "";
	background: url("../img/top/line_img.png") no-repeat bottom right/ 100%;
	width: 189px;
	height: 168px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1000;
	overflow: hidden;
	border-radius: 0 0 64px 0;
}
.top_line a span {
	margin-right: 18px;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.top_line a {
		width: 100%;
		font-size: 40px;
		padding: 0 25px;
	}
	.top_line a span {
		margin-right: 13px;
	}
	.top_line span {
		width: 13%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	.top_line {
		margin: 35px auto 40px;
	}
	.top_line a {
		width: 282px;
		height: 70px;
		font-size: 1.5rem;
		padding: 0 19px;
	}
	.top_line a::after {
		content: none;
	}
	.top_line span {
		width: 20%;
	}
}
/**/
#time_box {
	background: #282836;
	width: 100%;
	line-height: 100px;
	text-align: center;
	font-weight: bold;
	font-size: 25px;
	color: #fff;
	padding: 0 135px;
	box-sizing: border-box;
}
#time_box .txt {
	display: flex;
}
#time_box span {
	font-weight : bold;
	font-size : 35px;
	color : #FFCC33;
}
#real_time {
	display: flex;
}
/**/
.bg_sugu {
	background: url(../img/top/sugu_bg.jpg) no-repeat;
	background-size: cover;
	padding: 20px;
}
.white_tel {
	background: #fff;
	padding: 10px;
	border-radius: 10px;
	margin: 1em 0 -20px;
}
.white_tel .text {
	font-size: 24px;
	font-weight: bold;
	margin: 0;
}
#campaign {
	background: url(../img/top/bana02_bg2.jpg) bottom no-repeat;
	padding: 15px 100px 10px;
	position: relative;
}
#campaign p {
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	line-height: 1;
	color: #282836;
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
}
#campaign .big {
	font-size: 43px;
	color: #fe6565;
	margin-top: 10px;
	margin-bottom: 0;
	text-shadow: 2px 2px 0px #fff;
}
#campaign span {
	font-size: 57px;
	color: #ff3939;
	text-shadow: 2px 2px 0px #333;
}
/**/
#trouble {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}
#trouble h3 {
	position: relative;
	margin-bottom: -50px;
	z-index: 2;
}
#trouble .box {
	padding: 0 5px 5px;
	background: linear-gradient(to right, #2f3e59, #2a80ef);
}
#trouble .in {
	position: relative;
	padding: 35px;
	padding-top: 70px;
	background: #fff;
	font-size: 30px;
	font-weight: bold;
}
#trouble .ico {
	position: absolute;
	top: 70px;
	right: 5%;
}
#trouble li {
	padding-left: 50px;
	background: url("../img/top/chk.png") no-repeat left top 0.3em;
	line-height: 1.5;
}
#trouble li+li {
	margin-top: 0.5em;
}
#trouble li .pri {
	font-size: 35px;
}
#trouble li .marker {
	display: inline-block;
	box-shadow: 0 -10px 0 #f691084D inset;
}
@media only screen and (max-width: 640px){ /* スマホ */
	#trouble h3 {
		margin-bottom: -50px;
	}
	#trouble .in {
		padding: 15px;
		padding-top: 60px;
		font-size: 4vw;
	}
	#trouble .ico {
		position: absolute;
		top: 60px;
		right: 3%;
		width: 40px;
	}
	#trouble li {
		padding-left: 30px;
		background-size: 20px auto;
	}
	#trouble li .pri {
		font-size: 5.2vw;
	}
	#trouble li .marker {
		box-shadow: 0 -8px 0 #f691084D inset;
	}
}
/**/
#sct {
	width: 100%;
	background-color: #589EF2;
	padding: 50px;
}
#sct h3 {
	width: 75%;
	margin: 0 auto 30px;
}
#sct .box_sct {
	width: 100%;
	background-color: #fff;
	border-radius: 20px;
	font-size: 110%;
	padding: 5px 30px;
}
#sct .box_sct dl {
	width: 100%;
	display: flex;
	padding: 20px 0;
}
#sct .box_sct dl + dl {
	border-top: 1px solid #ccc;
}
#sct .box_sct dt {
	width: 20%;
	color: var(--color-primary);
	font-weight: 500;
	padding-left: 10px;
}
#sct .box_sct dd {
	width: 80%;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#time_box {
		line-height: 85px;
		font-size: 22px;
		justify-content:center;
	}
	#time_box span {
		font-size: 30px;
	}
	/*h2アニメーション*/
	.puyon {
		top: 24%;
	}
	#campaign .big {
		font-size: 39px;
	}
	#campaign .age {
		font-size: 33px;
	}
	#campaign img.img {
		right: 0;
		bottom: 0;
		width: 142px;
	}
	
	#sct {
		padding: 40px;
	}
	#sct h3 {
		width: 70%;
	}
	#sct .box_sct {
		font-size: 100%;
		padding: 5px 15px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#time_box {
		line-height: 1.8em;
		padding: 15px;
		font-size: 16px;
		/*margin-top: 25px;*/
	}
	#time_box span {
		font-size: 18px;
	}
	.bg_sugu {
		padding: 10px;
	}
	.bg_sugu p.text {
		font-size: 13px;
	}
	/*キャンペーン*/
	#campaign {
		padding: 10px 60px 5px;
	}
	#campaign .big {
		font-size: 31px;
	}
	#campaign .big span {
		font-size: 35px;
	}
	#campaign .age {
		font-size: 17px;
	}
	#campaign .nm {
		font-size: 25px;
	}
	#campaign .nm span {
		font-size: 33px;
	}
	#campaign img.img {
		width: 54px;
	}
	#sct {
		padding: 25px;
	}
	#sct h3 {
		width: 85%;
		margin-bottom: 20px;
	}
	#sct .box_sct dl {
		display: block;
	}
	#sct .box_sct dt {
		width: 100%;
		padding: 0 0 5px;
	}
	#sct .box_sct dd {
		width: 100%;
	}
}
/*------------------------------*/
.tel_box .txt_box {
	padding-top: 10px;
	margin-bottom: 20px;
}
.tel_box .txt_box .txt {
	font-weight : bold;
	font-size : 31px;
	color : #2F3E59;
	margin-left: 100px;
}
.tel_box .txt_box .txt span {
	font-size : 28px;
	color : #2A80EF;
	padding-left: 0.5em;
}
.tel_box .tel_waku .tel a {
	border: 9px solid #f69108;
	background: #fff;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-radius: 70px;
	position: relative;
	width: 700px;
	height: 128px;
	margin: 0 auto;
	padding-left: 60px;
	z-index: 0;
}
.tel_box .tel_waku .tel a::before {
	content: "";
	border: 3px solid #2a80ef;
	border-radius: 70px;
	width: 706px;
	height: 132px;
	position: absolute;
	top: -11px;
	left: -12px;
	z-index: -1;
	box-sizing: border-box;
}
.tel_box .tel_waku .tel a::after {
	content: "";
	background: url("../img/top/btn-bg.png") no-repeat bottom left/100%;
	width: 176px;
	height: 178px;
	position: absolute;
	bottom: -15px;
	left: -60px;
	z-index: -1;
}
.tel_box .tel_waku .tel a .ico {
	position: relative;
	background: #f69108;
	width: 70px;
	height: 70px;
	border: 3px solid #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 1em;
}
.tel_box .tel_waku .tel a .ico img {
	width: 43px;
}
.tel_box .tel_waku .tel a .txt {
	font-size : 68px;
	color : #F69108;
	font-weight: 800;
	position: relative;
	top: -3px;
}
.puyon.cta_puyon {
	position: inherit;
	width: 100%;
}
.puyon {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	-webkit-animation: puyon 2.0s linear 0s 1;
	animation: puyon 2.0s linear 0s 1;
	animation-iteration-count: infinite;
	width: 90%;
}
@-webkit-keyframes puyon {
	0%   { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
	40%  { -webkit-transform: scale(0.95, 1.2) translate(0%, -10%); }
	50%  { -webkit-transform: scale(1.1, 0.9) translate(0%, 5%); }
	60%  { -webkit-transform: scale(0.95, 1.05) translate(0%, -3%); }
	70%  { -webkit-transform: scale(1.05, 0.95) translate(0%, 3%); }
	80%  { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
	100% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
}
@keyframes puyon {
	0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
	40%  { transform: scale(0.95, 1.2) translate(0%, -10%); }
	50%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
	60%  { transform: scale(0.95, 1.05) translate(0%, -3%); }
	70%  { transform: scale(1.05, 0.95) translate(0%, 3%); }
	80%  { transform: scale(1.0, 1.0) translate(0%, 0%); }
	100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.tel_box .txt_box .txt {
		font-size: 25px;
	}
	.tel_box .txt_box .txt span {
		font-size: 85%;
	}
	.tel_box .tel_waku .tel a {
		width: 600px;
	}
	.tel_box .tel_waku .tel a::before {
		width: 606px;
	}
	.tel_box .tel_waku .tel a::after {
		width: 162px;
		height: 165px;
	}
	.tel_box .tel_waku .tel a .txt {
		font-size: 50px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	.tel_box .txt_box .txt {
		font-size: 20px;
		line-height: 1.5em;
		text-align: center;
		margin-left: 0;
	}
	.tel_box .txt_box .txt span {
		padding-left: 0;
	}
	.tel_box .tel_waku .tel a {
		width: 280px;
		height: 70px;
		border: 4px solid #f69108;
		padding-left: 0;
		margin-top: 15px;
	}
	.tel_box .tel_waku .tel a::before {
		width: 282px;
		height: 72px;
		border: 2px solid #2a80ef;
		top: -5px;
		left: -5px;
	}
	.tel_box .tel_waku .tel a .txt {
		font-size: 1.6rem;
	}
	.tel_box .tel_waku .tel a::after {
		display: none;
	}
	.tel_box .tel_waku .tel a .ico {
		width: 50px;
		height: 50px;
		margin-right: 0.5em;
		margin-left: 5px;
	}
	.tel_box .tel_waku .tel a .ico img {
		width: 35px;
	}
}