@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;
}
a {
	text-decoration: none;
}

ul{
	list-style: none;
}

body{
	color: #333;
}

/*--------------------------------------------------
**************************************************
ヘッダー
**************************************************
--------------------------------------------------*/

header#top_header {
	width: 100%;
	height: 60px;
}
div#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;
}
div#header_content .header_wrap {
	display: flex;
	align-items: center;
	width: calc(100% - 20px);
	max-width: 1100px;
	height: 60px;
	margin: 0 auto;
}
div#header_content div#logo {
	position: relative;
	width: 240px;
	height: 100%;
	margin: auto;
}
div#header_content div#logo a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	transition: 1s;
}
div#header_content div#logo a:hover {
	opacity: 0.8;
}
div#header_content div#logo a img {
	width: 100%;
}
div#header_content ul {
	display: flex;
	width: calc(100% - 585px);
	list-style: none;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
}
div#header_content ul li {
	text-align: center;
}

div#header_content ul li a {
	position: relative;
	display: block;
	font-size: 14px;
	color: #333333;
	letter-spacing: 0.02em;
}
div#header_content ul li a:hover{
	color: #0c5e9b;
}
div#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;
}
div#header_content ul li a:hover::after {
	transform: scale(1, 1);
}
div#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;
}
div#header_content .tel .tel_title {
	position: relative;
	height: 18px;
	font-size: 12px;
	letter-spacing: 0.1em;
}
div#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;
}
div#header_content .tel .tel_title {
}
div#header_content .tel .tel_num {
	display: flex;
	height: 30px;
	align-items: center;
	margin-top: -2px;
}
div#header_content .tel .tel_num span.tel_icon {
	display: block;
	width: 23px;
	height: auto;
	margin-right: 5px;
}
div#header_content .tel .tel_num span.tel_icon path {
	fill: url(#grad);
}
div#header_content .tel .tel_num span.number {
	font-size: 19px;
	color: #0c5e9b;
	font-weight: bold;
}
_::-webkit-full-page-media, _:future, :root div#header_content .tel .tel_num span.number {
	font-size: 18px;
}
div#header_content .tel span.time {
	display: block;
	height: 18px;
	margin-top: -7px;
	text-align: center;
	color: #0c5e9b;
	font-size: 12px;
}
div#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) {
	div#header_content ul {
		padding: 0 20px;
	}
	div#header_content ul li a {
		font-size: 13px;
	}
}
@media (max-width: 999px) {
	div#header_content ul li a {
		font-size: 12px;
	}
}
@media (max-width: 949px) {
	div#header_content .header_wrap {
		display: flex;
		align-items: center;
		width: calc(100% - 40px);
		max-width: 1100px;
		height: 60px;
		margin: 0 auto;
	}
	div#header_content ul {
		display: none;
	}
	div#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;
}

div#footer_inner {
	position: relative;
}
div#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;
}
div#footer_inner .company {
	position: relative;
	padding-top: 80px;
}

div#footer_inner .company h2 {
	text-align: center;
	letter-spacing: 0.3em;
	margin-bottom: 50px;
	color: #10609c;
	font-size: 30px;
}
div#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;
}
div#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;
}
div#footer_inner .company .company_box {
	display: flex;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
}

div#footer_inner .company .logo {
	width: 340px;
}
div#footer_inner .company .logo img{
	width: 200px;
	margin: 0 auto;
}
div#footer_inner .company .company_cont {
	width: calc(100% - 340px);
	font-size: 14px;
	letter-spacing: 0.16em;
	line-height: 1.7;
}
div#footer_inner .company .company_cont span {
	display: block;
}

@media (max-width: 900px) {
	footer {
		padding-bottom: 5vw;
	}
	div#footer_inner .company::after {
		height: 800px;
	}
	div#footer_inner .company .company_inner {
		width: calc(100% - 8vw);
		padding-top: 8vw;
	}
	div#footer_inner .company h2 {
		margin-bottom: 5vw;
		font-size: 3vw;
	}
	div#footer_inner .company .company_inner_01 {
		padding: 5vw 0;
		margin: 5vw auto;
	}
	div#footer_inner .company .company_inner_02 {
		padding: 5vw 0;
	}
	div#footer_inner .company .company_box {
	 width: 100%;
	}

	div#footer_inner .company .logo {
		width: 36vw;
	}
	div#footer_inner .company .logo img{
		width: 20vw;
	}
	div#footer_inner .company .company_cont {
		width: calc(100% - 36vw);
		font-size: 1.55vw;
	}
}

/*--------------------------------------------------
**************************************************
フッター
**************************************************
--------------------------------------------------*/

div#footer_inner .nav {
	padding: 90px 50px;
}
div#footer_inner .nav ul {
	display: flex;
	max-width: 1000px;
	margin: auto;
	padding: 0;
	list-style: none;
	justify-content: space-evenly;
}
div#footer_inner .nav ul li {
	position: relative;
	line-height: 3em;
	z-index: 1;
}

div#footer_inner .nav ul li a {
	position: relative;
	text-decoration: none;
	font-size: 18px;
	color: #333333;
}
@media (max-width: 1000px) {
	div#footer_inner .nav ul li a {
		font-size: 1.8vw;
	}
}
div#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;
}
div#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;
	}
}


/*--　ページアップ　--*/
#pageup {
	pointer-events: none;
	opacity: 0;
	transition: 0.5s;
}
#pageup.active {
	pointer-events: auto;
	opacity: 1;
}
.page_top {
	position: fixed;
	bottom: 75px;
	right: 20px;
	opacity: 0.8;
	z-index: 1000;
	transition: 0.5s;
}
.page_top.show {
	opacity: 1;
	pointer-events: auto;
}
.page_top a {
	position: relative;
	display: block;
	width: 90px;
	height: 70px;
	background: rgba(0,0,0,0.3);
	border: 1px solid rgba(255,255,255,0.2);
	box-sizing: border-box;
	transition: 0.3s;
}
.page_top a:hover {
	opacity: 0.8;
}
span.page_up {
	position: absolute;
	width: 100%;
	height: 16px;
	top: 32px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-family: "Noto Sans JP",sans-serif;
	font-weight: 400;
	letter-spacing: 0.1em;
	z-index: 99999;
	pointer-events: none;
}
span.page_up::after {
	content: "";
	position: absolute;
	display: block;
	width: 14px;
	height: 14px;
	top: -11px;
	left: 0;
	right: 0;
	margin: 0 auto;
	color: rgba(255,255,255,0.6);
	border-bottom: solid 2px #fff;
	border-left: solid 2px #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	box-sizing: border-box;
}
