@charset "utf-8";
/* CSS Document */

html{
	overflow-y : scroll;
}
body {
	background: #ffffff;
	font-size-adjust: 100%;
	position: relative;
}
#wrapper {
	clear: both;
	background: #ffffff;
	line-height: 1.5;
	margin: 0px auto;
	width: 100%;
}

/*header設定*/
#out_header {
	width: 100%;
	position: fixed; /* ヘッダーの固定 */
	top: 0;
	/*height: 85px;*/
	z-index: 100;
	background-color: rgba(255,255,255,0.4);
	/*border-bottom: 1px solid #c5c5c5;*/
}
body header {
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
}
.head_top {
    padding-top: 5px;
    display: block;
    max-width: 1200px;
    width: 100%;
}
header h1 {
    padding: 0px 0px 8px 0px;
    text-align: left;
    font-size: 10px;
    color: #474747;
    font-weight: normal;
    display: inline-block;
}
.header_contact {
    text-align: right;
    float: right;
    display: inline-block;
}
.header_contact li {
	float: left;
	padding-left: 10px;
}
.header_contact .tel img {
	width: 24px;
	padding-right: 8px;
}
.header_contact .tel  {
	font-size: 24px;
}
.header_contact .tel a {
    text-decoration: none;
    color: #000;
}
.header_contact .mail img {
	padding-left: 10px;
	width: 30px;
}
.head_btm {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
header h2 {
    max-width: 160px;
    display: inline-block;
	padding-bottom: 8px;
}
header h2 img {
    width: 100%;
	height: auto;
}
header nav {
    width: auto;
    margin-left: auto;
    float: right;
}

@media screen and (min-width:768px) {
	header #toggle ul {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	header #toggle li a {
		float: none;
	}
}
/*ヘッダーナビ設定*/
header nav li a {
	font-size: 14px;
	display: block;
	float: left;
    margin: 0px 0px 8px 20px;
	text-decoration: none;
	color:#000;
	font-weight: 500;
}
header .nav6 a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	background: #1c69aa;
	border: 1px solid #1c69aa;
	border-radius: 1px;
	color: #fff;
	font-weight: 600;
	letter-spacing: .04em;
	padding: 0 58px 0 18px;
	margin-top: -11px;
	transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
header .nav6 a::before {
	position: absolute;
	top: 50%;
	right: 18px;
	width: 24px;
	height: 1px;
	background: rgba(255,255,255,.7);
	content: "";
	transform: translateY(-50%);
}
header .nav6 a::after {
	position: absolute;
	top: 50%;
	right: 28px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #f6bb16;
	content: "";
	transform: translateY(-50%);
	transition: transform .32s cubic-bezier(.34, 1.56, .64, 1);
}
header .nav6 a:hover {
	background: #145488;
	border-color: #145488;
	color: #fff;
	transform: translateY(-1px);
}
header .nav6 a:hover::before {
	width: 24px;
}
header .nav6 a:hover::after {
	transform: translate(11px, -50%) scale(1.25);
}
header .nav6 a:active {
	background: #ccc;
	color: #000;
}
header nav a {
	position:relative;
}
header nav li:not(.nav6) a {
	transition: color .25s ease;
}
header .nav1 a:before,
header .nav2 a:before,
header .nav3 a:before,
header .nav4 a:before,
header .nav5 a:before{
    position: absolute;
    width: 6px;
    height: 6px;
    left: 50%;
    top: -9px;
    content: '';
    background: #f6bb16;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, 5px) scale(.55);
}
header nav li a:active:before{
    width: 100%;
}
/*中身の設定*/
#nav_title {
	background: #ccc;
	margin-top: 85px;
}
#nav_title h1 {
	text-align: center;
	padding: 60px 0px;
	font-size: 170%;
	width: 100%;
	animation: fadeIn 1.0s ease 0s 1 normal;
	-webkit-animation: fadeIn 1.0s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
#contents {
	clear:both;
	width: 100%;
	margin:0px auto;
	padding:20px 0px;
}
.inner{
	max-width: 1000px;
	width:100%;
	margin:0px auto;
}
/*問い合わせボタン設定*/
.button a{
	display: block;
	text-decoration: none;
	height: 60px;
	width: 420px;
	font-size:131%;
	font-weight:nomal;	
	line-height: 60px;
	text-align: center;
	color: #fff;
	background-color: #1F35A2;
	border-radius: 5px;
	margin: 20px auto;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
.button a:hover{
	background: #fff;
	color: #1F35A2;
	border:solid 1px #1F35A2;
}
#guide .inner{
	text-align:center;
}
/*footer設定*/
footer {
	clear: both;
	text-align: center;
	padding: 30px 0 10px;
	margin: 60px 0 0;
	background: #ccc;
}
footer p {
	font-size: 55%;
    padding-top: 20px;
}
footer #main li {
	display: inline;
	margin-right: 25px;
	position: relative;

}
footer #main li a{
	text-decoration: none;
	color:#000;
	font-size: 89%;
	font-weight:bold;
	padding-bottom: 50px;
}
footer #sub, footer #sns{
	padding-top: 40px;
	font-size: 12px;
}
footer #sub li, footer #sns li {
	display: inline;
}
footer #sub li+li::before {
	content: " | ";
}
footer #sns li+li {
	padding-left: 30px;
}
footer #sub li a{
	text-decoration: none;
	color:#000;
	font-size: 78%;
}
footer .nav1 a:before,
footer .nav2 a:before,
footer .nav3 a:before,
footer .nav4 a:before,
footer .nav5 a:before,
footer .nav6 a:before
{
    position: absolute;
    width: 0px;
    height: 10.8%;
    left: 0px;
    top: 29px;
    content: '';
    background: #000;
    opacity: 0.3;
    transition: all 0.2s;
}

header nav li a:hover:before, footer li a:hover:before{
    width: 100%;
}
header nav li:not(.nav6) a:hover {
	color: #1c69aa;
}
header nav li:not(.nav6) a:hover::before {
	width: 6px;
	animation: nav-dot-bounce .42s ease-out forwards;
}

@keyframes nav-dot-bounce {
	0% {
		opacity: 0;
		transform: translate(-50%, 6px) scale(.5);
	}
	48% {
		opacity: 1;
		transform: translate(-50%, -7px) scale(1.08);
	}
	72% {
		transform: translate(-50%, 2px) scale(.94);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, 0) scale(1);
	}
}
/*カレント設定*/
#service .nav1 a,
#beginner .nav2 a,
#works .nav3 a,
#company .nav4 a,
#faq .nav5 a,
#contact footer .nav6 a {
	border-bottom: solid 2px #ccc;
	padding-bottom: 9px;
}
#contact header .nav6 a {
	color: #fff;
}
button{
	display:none;
}

/*レスポンシブ設定*/
@media screen and (max-width:768px){
header .nav1 a:before,
header .nav2 a:before,
header .nav3 a:before,
header .nav4 a:before,
header .nav5 a:before,
header .nav6 a:before,
footer .nav1 a:before,
footer .nav2 a:before,
footer .nav3 a:before,
footer .nav4 a:before,
footer .nav5 a:before,
footer .nav6 a:before{
    display: none;
}
}
@media screen and (max-width:767px) {
	
button{
	display:block;
	position:absolute;
	top:6px;
	right:8px;
	background-color:transparent;
	border:none;
	cursor:pointer;
}
button:focus {
outline: none;
}
.menu_toggle {
	width: 48px;
	height: 48px;
	padding: 0;
}
.menu_toggle:focus-visible {
	outline: 2px solid #1c69aa;
	outline-offset: 2px;
}
.menu_icon {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 26px;
	height: 18px;
	transform: translate(-50%, -50%);
}
.menu_icon span {
	position: absolute;
	right: 0;
	display: block;
	height: 1px;
	background: #1c69aa;
	transition: width .25s ease, top .25s ease, transform .25s ease;
}
.menu_icon span:first-child {
	top: 3px;
	width: 26px;
}
.menu_icon span:nth-child(2) {
	top: 13px;
	width: 18px;
}
.menu_icon i {
	position: absolute;
	top: 0;
	right: -2px;
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #f6bb16;
	transition: opacity .2s ease, transform .2s ease;
}
.menu_toggle.is-open .menu_icon span:first-child {
	top: 8px;
	transform: rotate(45deg);
}
.menu_toggle.is-open .menu_icon span:nth-child(2) {
	top: 8px;
	width: 26px;
	transform: rotate(-45deg);
}
.menu_toggle.is-open .menu_icon i {
	opacity: 0;
	transform: scale(.4);
}
#out_header {
	height: 60px;
	max-width: 767px;
}
header h1 img{
	width: 160px;
	height: auto;
}
header h1{
	text-indent: -9999px;
}

header nav ul {
	max-width: 767px;
    width: 100%;
    float: none;
    position: absolute;
    top: 60px;
    left: 0px;
}
header nav li a {
	margin: 0px auto;
}
nav .nav1 a,
nav .nav2 a,
nav .nav3 a,
nav .nav4 a,
nav .nav5 a,
nav .nav6 a{
	padding: 10px 0;
	height: 20px;
	display:inline-block;
	list-style-type:none;
	text-decoration:none;
	font-weight:bold;
	float:none;
	Width:100%;
	text-align:center;
	color:#1D1D1D;
	background:#E3E3E3;
	border-bottom:none;
}
nav .nav1 a{
	padding-top: 40px;
}
nav .nav6 a{
	padding-bottom: 30px;
}
nav .nav1 a:hover,
nav .nav2 a:hover,
nav .nav3 a:hover,
nav .nav4 a:hover,
nav .nav5 a:hover,
nav .nav6 a:hover{
	color: #8D8D8D;
}
header .nav1 a:before,
header .nav2 a:before,
header .nav3 a:before,
header .nav4 a:before,
header .nav5 a:before,
header .nav6 a:before,
footer .nav1 a:before,
footer .nav2 a:before,
footer .nav3 a:before,
footer .nav4 a:before,
footer .nav5 a:before,
footer .nav6 a:before{
    display: none;
}
header .nav6 a {
	margin-top: 0px;
}
.none {
	display: none;
}
.header_contact {
    margin-right: 60px;
}
.head_btm {
    max-width: 200px;
    margin-top: -20px;
}
#top header .nav1 a,
#service header .nav2 a,
#works header .nav3 a,
#flow header .nav4 a,
#faq header .nav5 a{
	border-bottom: none;
	
}
#top footer .nav1 a,
#service footer .nav2 a,
#works footer .nav3 a,
#flow footer .nav4 a,
#faq footer .nav5 a{
	border-bottom:none;	
}
footer ul li a{
	position: relative;
}
#toggle{
	display:none;
}
footer ul li {
	display: block;
	line-height:1.5;
}
#nav_title h1 {
    padding: 30px 0px;
    font-size: 131%;
    width: 100%;
}
.header_contact .tel img {
    width: 24px;
    padding-right: 8px;
    border: 1px solid #8cb7da;
    padding: 6px;
}
.header_contact .mail img {
    padding-left: 0px;
    width: 25px;
    border: 1px solid #8cb7da;
    padding: 6.5px;
    margin-right: 5px;
}
#nav_title {
    background: #ccc;
    margin-top: 60px;
}
header h2 img {
    width: 150px;
    height: auto;
    margin-top: -5px;
    position: absolute;
    top: 16px;
	margin-left: 5px;
}
}
@media screen and (max-width:500px) {
footer #main li {
	display: block;
	margin-right: 0px;
}
footer #sub li {
	font-size: 80%;
	font-weight: bold;
}
footer p {
	font-size: 70%;
}
footer #sub, footer #sns{
	padding-top: 20px;
}
.button a {
    width: 300px;
    font-size: 100%;
}
}
