@charset "UTF-8";

.sp_only {
	display: none !important;
}

nav#header_top_nav.spOnly {
	display: none;
}

body {
	font-family: "Noto Sans CJK JP", sans-serif;
}

body#top {
	margin: 0;
}

main {
	margin: auto;
	overflow: hidden;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

body {
	color: #333;
}

/*--------------------------------------------------
**************************************************
ヘッダー
**************************************************
--------------------------------------------------*/


header#top_header {
	width: 100%;
	height: 60px;
}

#header_content {
	position: fixed;
	width: 100%;
	height: 60px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
	z-index: 20;
}

#header_content .header_wrap {
	display: flex;
	align-items: center;
	width: calc(100% - 20px);
	max-width: 1100px;
	height: 60px;
	margin: 0 auto;
}

#header_content #logo {
	position: relative;
	width: 240px;
	height: 100%;
	margin: auto;
}

#header_content #logo a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	transition: 1s;
}

#header_content #logo a:hover {
	opacity: 0.8;
}

#header_content #logo a img {
	width: 100%;
}

#header_content ul {
	display: flex;
	width: calc(100% - 585px);
	list-style: none;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
}

#header_content ul li {
	text-align: center;
}

#header_content ul li a {
	position: relative;
	display: block;
	font-size: 14px;
	color: #333333;
	letter-spacing: 0.02em;
}

#header_content ul li a:hover {
	color: #0c5e9b;
}

#header_content ul li a::after {
	position: absolute;
	content: '';
	width: calc(100% + 20px);
	height: 1px;
	bottom: 0;
	left: -10px;
	background: #999999;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
}

#header_content ul li a:hover::after {
	transform: scale(1, 1);
}

#header_content .tel {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: center;
	width: 185px;
	text-align: center;
	margin-right: 20px;
}

#header_content .tel .tel_title {
	position: relative;
	height: 18px;
	font-size: 12px;
	letter-spacing: 0.1em;
}

#header_content .tel .tel_title::before {
	position: absolute;
	content: "";
	width: calc(100% + 20px);
	height: 1px;
	left: -10px;
	right: 0;
	bottom: 0;
	margin: auto;
	background: #999999;
}

#header_content .tel .tel_title {}

#header_content .tel .tel_num {
	display: flex;
	height: 30px;
	align-items: center;
	margin-top: -2px;
}

#header_content .tel .tel_num span.tel_icon {
	display: block;
	width: 23px;
	height: auto;
	margin-right: 5px;
}

#header_content .tel .tel_num span.tel_icon path {
	fill: url(#grad);
}

#header_content .tel .tel_num span.number {
	font-size: 19px;
	color: #0c5e9b;
	font-weight: bold;
}

_::-webkit-full-page-media,
_:future,
:root #header_content .tel .tel_num span.number {
	font-size: 18px;
}

#header_content .tel span.time {
	display: block;
	height: 18px;
	margin-top: -7px;
	text-align: center;
	color: #0c5e9b;
	font-size: 12px;
}

#header_content .button_wrap {
	position: relative;
	width: 150px;
	margin: 0 auto;
}

header#top_header .button_wrap div  {
	width: 100%;
	height: 24px;
}

header#top_header .button_wrap .new {
	margin-bottom: 3px;
}

header#top_header .button_wrap a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #fff;
	text-align: center;
	font-size: 12px;
	border-radius: 16px;
	transition: 0.3s;
}

header#top_header .button_wrap .new a {
	background: #f1bd48;
}

header#top_header .button_wrap .login a {
	background: #bcafa4;
}

header#top_header .button_wrap a:hover {
	opacity: 0.8;
}

header#top_header .h_icon_box {
	display: none;
}

nav {
	position: fixed;
	width: 100%;
	top: 60px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #f1f8fc;
	box-shadow: 0px 0px 15px rgb(0 0 0 / 20%);
	z-index: 11;
	opacity: 0;
	pointer-events: none;
	transition: 0.5s;
}

nav.is-open {
	opacity: 1;
	pointer-events: auto;
}

nav ul {
	padding: 30px 0;
}

nav ul li {
	text-align: center;
	margin-bottom: 20px;
}

nav ul li:last-child {
	margin-bottom: 0px;
}

nav ul li a {
	display: inline-block;
	position: relative;
	color: #333;
}

nav ul li a:hover {
	color: #0c5e9b;
}

nav ul li a::after {
	position: absolute;
	content: '';
	width: calc(100% + 20px);
	height: 1px;
	bottom: 0;
	left: -10px;
	background: #999999;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
}

nav ul li a:hover::after {
	transform: scale(1, 1);
}

/* ハンバーガーアイコン版メニュー */

@media (max-width: 1049px) {
	#header_content ul {
		padding: 0 20px;
	}

	#header_content ul li a {
		font-size: 13px;
	}
}

@media (max-width: 999px) {
	#header_content ul li a {
		font-size: 12px;
	}
}

@media (max-width: 949px) {
	#header_content .header_wrap {
		display: flex;
		align-items: center;
		width: calc(100% - 40px);
		max-width: 1100px;
		height: 60px;
		margin: 0 auto;
	}

	#header_content ul {
		display: none;
	}

	#header_content .tel {
		width: 185px;
		text-align: center;
		margin-left: calc(100% - 655px);
	}

	header#top_header .h_icon_box {
		display: flex;
		align-items: center;
		width: 50px;
		height: 100%;
		margin: 0 5px 0 15px;
	}

	header#top_header .h_icon_box .h_icon {
		position: relative;
		width: 100%;
		height: 36px;
		background: #fff;
		cursor: pointer;
	}

	header#top_header .h_icon_box .h_icon span {
		position: absolute;
		width: 100%;
		height: 2px;
		margin: auto 0;
		background: #999;
		transition: 0.5s;
	}

	header#top_header .h_icon_box .h_icon span:nth-child(1) {
		top: 0;
	}

	header#top_header .h_icon_box .h_icon span:nth-child(2) {
		top: calc(50% - 1px);
		margin: auto 0;
	}

	header#top_header .h_icon_box .h_icon span:nth-child(3) {
		top: calc(100% - 2px);
	}

	header#top_header .h_icon_box.is-open .h_icon span {
		top: calc(50% - 1px);
	}

	header#top_header .h_icon_box.is-open .h_icon span:nth-child(1) {
		transform: rotate(135deg);
	}

	header#top_header .h_icon_box.is-open .h_icon span:nth-child(2) {
		opacity: 0;
	}

	header#top_header .h_icon_box.is-open .h_icon span:nth-child(3) {
		transform: rotate(225deg);
	}
}


/*--------------------------------------------------
**************************************************
運営会社
**************************************************
--------------------------------------------------*/
footer {
	padding-bottom: 50px;
}

#footer_inner {
	position: relative;
}

#footer_inner .company::after {
	position: absolute;
	content: "";
	width: 100%;
	max-width: 2000px;
	height: 100%;
	left: 0;
	right: 0;
	bottom: -180px;
	background: url(../imgs/common/campany_back.png) center bottom / cover no-repeat;
	margin: 0 auto;
	opacity: 0.8;
}

#footer_inner .company {
	position: relative;
	padding-top: 80px;
}

#footer_inner .company h2 {
	text-align: center;
	letter-spacing: 0.3em;
	margin-bottom: 50px;
	color: #10609c;
	font-size: 30px;
}

#footer_inner .company .company_inner_01 {
	position: relative;
	border-top: 2px solid #6ea82e;
	border-bottom: 2px solid #6ea82e;
	padding: 50px 0;
	margin: 50px auto;
	background: rgba(255, 255, 255, 0.75);
	z-index: 1;
}

#footer_inner .company .company_inner_02 {
	position: relative;
	border-top: 2px solid #005595;
	border-bottom: 2px solid #005595;
	padding: 50px 0;
	margin: auto;
	background: rgba(255, 255, 255, 0.75);
	z-index: 1;
}

#footer_inner .company .company_box {
	display: flex;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
}

#footer_inner .company .logo {
	width: 340px;
}

#footer_inner .company .logo img {
	width: 200px;
	margin: 0 auto;
}

#footer_inner .company .company_cont {
	width: calc(100% - 340px);
	font-size: 14px;
	letter-spacing: 0.16em;
	line-height: 1.7;
}

#footer_inner .company .company_cont span {
	display: block;
}

@media (max-width: 900px) {
	footer {
		padding-bottom: 5vw;
	}

	#footer_inner .company::after {
		height: 800px;
	}

	#footer_inner .company .company_inner {
		width: calc(100% - 8vw);
		padding-top: 8vw;
	}

	#footer_inner .company h2 {
		margin-bottom: 5vw;
		font-size: 3vw;
	}

	#footer_inner .company .company_inner_01 {
		padding: 5vw 0;
		margin: 5vw auto;
	}

	#footer_inner .company .company_inner_02 {
		padding: 5vw 0;
	}

	#footer_inner .company .company_box {
		width: 100%;
	}

	#footer_inner .company .logo {
		width: 36vw;
	}

	#footer_inner .company .logo img {
		width: 20vw;
	}

	#footer_inner .company .company_cont {
		width: calc(100% - 36vw);
		font-size: 1.55vw;
	}
}

/*--------------------------------------------------
**************************************************
フッター
**************************************************
--------------------------------------------------*/
#footer_inner .nav {
	padding: 90px 50px;
}
#footer_inner .nav ul {
	display: flex;
	max-width: 1000px;
	margin: auto;
	padding: 0;
	list-style: none;
	justify-content: space-evenly;
}
#footer_inner .nav ul li {
	position: relative;
	line-height: 3em;
	z-index: 1;
}

#footer_inner .nav ul li a {
	position: relative;
	text-decoration: none;
	font-size: 18px;
	color: #333333;
}
@media (max-width: 1000px) {
	#footer_inner .nav ul li a {
		font-size: 1.8vw;
	}
}
#footer_inner .nav ul li a::after {
	position: absolute;
	content: '';
	width: calc(100% + 20px);
	height: 1px;
	bottom: 0;
	left: -10px;
	background: #999999;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: all 0.3s;
}
#footer_inner .nav ul li a:hover::after {
	transform: scale(1, 1);
}

/*--　下部申込ボタン　--*/
#ft_aplly_btn {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 70px;
	background: #858585;
	opacity: 0;
	pointer-events: none;
	z-index: 100;
	box-shadow: 0px 0px 15px rgb(0 0 0 / 20%);
	transition: 0.5s;
}

#ft_aplly_btn.active {
	opacity: 1;
	pointer-events: auto;
}

#ft_aplly_btn .ft_aplly {
	display: flex;
	align-items: center;
	width: calc(100% - 80px);
	max-width: 500px;
	height: 100%;
}

#ft_aplly_btn .ft_aplly a {
	width: 100%;
	height: 50px;
	line-height: 50px;
}

/*--　共通ボタン　--*/
.lnk_block {
	position: relative;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.lnk_block.lnk_large {
	width: 700px;
}

.lnk_block a {
	border-radius: 5px;
}

.lnk_block.lnk_solid_yellow a {
	background: #f1bd48;
}

.lnk_block.lnk_border_yellow a {
	background: #fff;
	border: 2px solid #f6ab03;
	box-shadow: 3px 3px 10px rgb(0 0 0 / 10%);
}

.lnk_block a {
	position: relative;
	display: block;
	font-size: 20px;
	letter-spacing: 0.1em;
	text-align: center;
	line-height: 80px;
	transition: opacity 0.3s;
}

.lnk_block a:hover {
	opacity: 0.8;
}

.lnk_block.lnk_solid_yellow a {
	color: #fff;
}

.lnk_block.lnk_border_yellow a {
	color: #333;
}

.lnk_block a::before {
	position: absolute;
	content: "";
	width: 40px;
	height: 40px;
	top: 0;
	right: -20px;
	bottom: 0;
	background: #fff;
	border-radius: 50%;
	box-shadow: 5px 5px 5px rgb(0 0 0 / 20%);
	margin: auto;
	z-index: 1;
}

@media all and (-ms-high-contrast: none) {
	.lnk_block.lnk_border_yellow a {
		box-shadow: 3px 3px 10px #ddd;
	}

	.lnk_block a::before {
		box-shadow: 3px 3px 10px #ddd;
	}
}

.lnk_block a::after {
	content: "";
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	top: 0;
	right: -3px;
	bottom: 0;
	margin: auto;
	color: rgba(255, 255, 255, 0.6);
	border-bottom: solid 2px #f1bd48;
	border-left: solid 2px #f1bd48;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	box-sizing: border-box;
	z-index: 1;
}

.lnk_block.lnk_border_yellow a::before {
	background: #f6ab03;
}

.lnk_block.lnk_border_yellow a::after {
	border-bottom: solid 2px #fff;
	border-left: solid 2px #fff;
}

@media (max-width: 1000px) {
	.lnk_block {
		height: 8vw;
		border-radius: 0.5vw;
	}

	.lnk_block.lnk_large {
		width: 70vw;
	}

	.lnk_block a {
		font-size: 2vw;
		line-height: 8vw;
	}

	.lnk_block::before {
		width: 4vw;
		height: 4vw;
		right: -1.5vw;
	}

	.lnk_block::after {
		width: 1vw;
		height: 1vw;
		right: 0.3vw;
	}
}

/*--------------------------------------------------
**************************************************
審査申込
**************************************************
--------------------------------------------------*/

#judging {
	transition: 0.5s;
}

.move {
	position: fixed;
	bottom: 30px;
	right: 0;
	z-index: 90;
	transition: opacity 0.5s;
}

.move.show {
	opacity: 1;
	pointer-events: auto;
}

.move a {
	position: relative;
	display: block;
	width: 200px;
	height: 150px;
	background: rgb(16 96 156 / 90%);
	border-radius: 20px 0 0 20px;
	box-shadow: 3px 5px 15px -2px #666666;
	box-sizing: border-box;
	transition: 0.3s;
}

.move a::before {
	content: "";
	position: absolute;
	width: 40px;
	height: 60px;
	top: 45px;
	left: -18px;
	background: url(../imgs/top/beginners.png) no-repeat;
}

.move a:hover {
	opacity: 0.8;
}

.move a .move_wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
}

.move a .move_wrap span {
	display: block;
	color: #fff;
	letter-spacing: 0.1em;
}

.move a .move_wrap .frame {
	font-size: 12px;
	line-height: 25px;
}

.move a .move_wrap .firster {
	font-size: 15px;
}

.move a .move_wrap .offer {
	font-size: 30px;
	font-weight: 600;
}

.move a .move_wrap .free {
	font-size: 15px;
}

/*--------------------------------------------------
**************************************************
ボタン
**************************************************
--------------------------------------------------*/
.bth_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bth_wrap .bth_detail,
.bth_wrap .bth_watch {
	width: 200px;
	height: 50px;
	margin: 0 10px;
}

.bth_wrap.small .bth_detail,
.bth_wrap.small .bth_watch {
	width: 130px;
	height: 50px;
	margin: 0 10px;
}

.bth_wrap.small a {
	font-size: 14px;
	letter-spacing: 0.05em;
}

.bth_wrap a {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	text-align: center;
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 15px;
	border-radius: 30px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 3px solid #ffffff;
	box-shadow: 7px 7px 16px -12px #000000;
	box-sizing: border-box;
	cursor: pointer;
	transition: 400ms ease all;
	overflow: hidden;
}

.bth_wrap .bth_watch a .bth_fonts {
	display: block;
	font-size: 12px;
}

.bth_wrap .bth_detail a {
	background: linear-gradient(to right, #e4ae34 0%, #f1bd48 100%);
	transition: 0.5s;
}

.bth_wrap .bth_watch a {
	background: linear-gradient(to right, #10609c 0%, #2a7ebe 100%);
}

.bth_wrap a:hover,
.bth_entry a:hover {
	opacity: 0.8;
}

.bth_wrap a::before {
	position: absolute;
	content: '';
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #fff;
}

@-webkit-keyframes shiny-btn1 {
	0% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: 0;
	}

	80% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: 0.5;
	}

	81% {
		-webkit-transform: scale(4) rotate(45deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}

.bth_entry {
	position: relative;
	width: 500px;
	height: 80px;
	margin: 0 auto;
}

.bth_entry a {
	position: relative;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 26px;
	letter-spacing: 0.2em;
	line-height: 80px;
	background: #e4ae34;	
	border: 1px solid #f1bd48;
	box-shadow: 7px 7px 16px -12px #000000;
	border-radius: 20px;
	transition: 0.5s;
	box-sizing: border-box;
}

.bth_inner {
	position: relative;
	overflow: hidden;
}

.bth_entry a .bth_inner::before {
	position: absolute;
	content: '';
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #fff;
	animation: shiny-btn1 5s ease-in-out infinite;
}

.bth_entry a .entry_text {
	position: relative;
}

.bth_entry a::before {
	position: absolute;
	content: "";
	width: 40px;
	height: 40px;
	top: 0;
	right: -20px;
	bottom: 0;
	background: #ffffff;
	border-radius: 50%;
	box-shadow: 3px 5px 15px -2px #666666;
	margin: auto;
	z-index: 10;
}

.bth_entry a::after {
	content: "";
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	top: 0px;
	right: -2px;
	margin: auto;
	bottom: 0px;
	color: rgba(255, 255, 255, 0.6);
	border-bottom: solid 2px #f1bd48;
	border-left: solid 2px #f1bd48;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	box-sizing: border-box;
	z-index: 10;
}

.bth_entry a:hover::before {
	background: #f1bd48;
}

.bth_entry a:hover::after {
	border-color: #fff;
}

.bth_entry a:hover {
	color: #f1bd48;
	background: #fff;
}

.bth_watch.b {
	position: absolute;
	width: 280px;
	height: 70px;
	left: 0;
	right: 0;
	bottom: 30px;
	margin: 80px auto 0 auto;
}

.bth_watch.b a {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	text-align: center;
	color: #fff;
	font-size: 20px;
	letter-spacing: 0.2em;
	border-radius: 45px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	border: 2px solid #ffffff;
	background: linear-gradient(to right, #10609c 0%, #2a7ebe 100%);
	box-shadow: 7px 7px 16px -12px #000000;
	box-sizing: border-box;
	transition: 400ms ease all;
	overflow: hidden;
}

.bth_watch.b a .bth_fonts {
	font-size: 15px;
	letter-spacing: 0.1em;
}

.bth_watch.b a .fontsize {
	display: block;
	font-size: 15px;
}

.bth_watch.b a:hover {
	opacity: 0.8;
}

@media (max-width: 1000px) {
	.bth_entry {
		width: 50vw;
		height: 8vw;
	}

	.bth_entry a {
		font-size: 2.6vw;
		line-height: 8vw;
	}

	.bth_entry a .bth_inner::before {
		top: -18vw;
		width: 3vw;
	}

	.bth_entry a::before {
		width: 4vw;
		height: 4vw;
		right: -2vw;
	}

	.bth_entry a::after {
		width: 1vw;
		height: 1vw;
		right: -0.2vw;
	}
}