@charset "utf-8";

/* **************************
Web font
************************** */
.rig-shaded{
    font-family: rig-shaded-bold-face,sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* **************************
Common
************************** */
body {
    color: #515151;
    letter-spacing: 0.5px;
    line-height: 1.5;
    font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",'Noto Sans Japanese',"Helvetica Neue",Helvetica,sans-serif,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS P Gothic";
}
img {
    max-width: 100%;
}
:root {
  --main-color: #C9A322;
  --main-white: #f9f8f1;
  --main-lightgray: #F4F4F2;
}
a{
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
}

/* Button Inquiry */
a.btn_inquiry{
    background: #009AE1;
    color:#FFFFFF;
}
a.btn_inquiry:hover{
    background: #007eff;
}

/* Button ordrAG */
a.btn_ag{
    background: #6e1cff;
    color:#FFFFFF;
}
a.btn_ag:hover{
    background: #5613cc;
}

/* Button Demo */
a.btn_demo{
    background: #ffdf17;
    color:#000000;
}
a.btn_demo:hover{
    background: #ffef8e;
}

/* Link underline */
.underline{
	position: relative;
	display: inline-block;
}
.underline::after{
	position: absolute;
	bottom: -3px;
	left: 0;
	content: '';
	width: 0;
	height: 1px;
	background-color: #c1282e;
	transition: .2s;
}
.underline:hover::after{
  width: 100%;
}

.pc {
    display: block;
}
.sp {
    display: none;
}

/* **************************
Header
************************** */
.l_main {
    padding-top: 72px;
}
.l_header {
    background: var(--main-color);
    color:#fff;
    font-weight: bold;
    position: fixed;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .3);
}
.header_wrap {
    margin: 0 auto;
    display: flex;
    padding: 16px;
    background: var(--main-color);
}

/*logo*/
header .logo img {
    max-height: 40px;
}

/*nav*/
.nav {
    width: calc( 100% - 121px );
    font-size: 16px;
}
.nav_list {
    display: flex;
    align-items: center;
    background: var(--main-color);
    margin-left: 24px;
    float: left;
}
.nav_list li a{
    display: block;
    width:100%;
    padding: 12px 16px;
    vertical-align: middle;
}

.nav_list li a em{
	font-style: normal;
	font-size: 12px;
	padding: 4px;
	margin-right: 4px;
	background: #f74e4e;
}

.nav_list li a:hover .underline::after{
  width: 100%;
}

.nav_list .beginner a{
}

.nav_list .beginner a:before{
	display: inline-block;
	content:"";
	height:20px;
	width: 16px;
	background: url(../img/base/icon_beginner.svg) no-repeat center;
	background-size: contain;
	margin: 3px 8px 0 0;
	vertical-align: sub;
}

.hd_contact_btn {
    float: right;
    display: flex;
}

.hd_contact_btn li:last-child{
    margin-left:12px;
}

.hd_contact_btn a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 3px;
}

/*sub menu*/
.nav_list li.sub{
	position:relative;
	cursor: pointer;
	display: block;
	padding: 12px 16px;
}

.nav_list li.sub > .pc{
	display: inline-block;
}

.nav_list li.sub .icon{
	padding-left:8px;
	font-size: 12px;
	vertical-align: 2px;
}

.nav_list li.sub > ul {
	display:none;
	position: absolute;
	top: 48px;
	left: 16px;
	width:200px;
	background: rgb(153 131 57 / 90%);
}

.nav_list li.sub > ul li:first-child{
	border-bottom:solid 1px rgba(255, 255, 255, 0.3)
}

.nav_list li.sub:hover > ul {
	display:block;
}


/* **************************
Trial Banner
************************** */
.free-trial{
    background:url(../img/base/trial_image.jpg) no-repeat top center;
    background-size: cover;
    color: #FFFFFF;
    padding: 5%;
}
.free-trial .inner{
    max-width: 800px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5% 0;
}
.free-trial .text h2{
    font-size: 30px;
    font-weight: bold;
}
.free-trial .text p{
    font-size: 18px;
    padding-top: 8px;
}
.free-trial .trial_link_btn{
    margin-left: 56px;
}
.free-trial .trial_link_btn a{
	display: block;
	padding: 18px 0;
	font-size: 18px;
	font-weight: bold;
	width: 240px;
	text-align: center;
	border-radius: 6px;
}

/* **************************
Main
************************** */
.heading[id]::before {
  content: "";
  display: block;
  height: 105px;
  margin-top: -105px;
  visibility: hidden;
}

/* **************************
Contact
************************** */
.contact_area {
    background: #F9F8F1;
    border-top: 1px solid #BABABA;
    padding: 0 0 60px;
}
.contact_box {
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 0;
    justify-content: center;
}
.contact_tit {
    font-size: 30px;
    text-align: center;
    padding: 2em 0 1em;
    font-weight: bold;
}
.contact_txt {
    text-align: center;
    padding: 1em 0;
}
.contact_link_btn {
    padding-right: 50px;
}
.contact_link_btn a {
    display: inline-block;
    border:2px solid var(--main-color);
    border-radius:9px;
    font-size: 18px;
    color:var(--main-color);
    background: #fff;
    padding: 1.2em 2.2em 1em;
    font-weight: bold;
}
.contact_link_btn a:hover {
    background: var(--main-color);
    color:#fff;
}
.contact_tel_box {
    font-size: 32px;
    color:#000;
    line-height: 0.8;
    text-align: center;
    letter-spacing: 0;
}
.contact_tel_box a {
    font-weight: bold;
}
.contact_tel_box img {
    vertical-align: middle;
}
.contact_tel_box small {
    font-size: 14px;
    color:#515151;
}

/* **************************
LP (Ranking)
************************** */
.report .archive{
	background: var(--main-lightgray);
	margin:0 auto 40px;
	width: 100%;
	max-width: 400px;
}

.report .archive summary{
	font-weight: bold;
	cursor: pointer;
	padding:16px;
}

.report .archive summary:hover{
	color:#c1282e;
}

.report .archive ul {
	margin-left:32px;
	padding-bottom:16px;
}

.report .archive ul li{
	list-style:disc;
}

.report .archive ul li a{
	padding-top: 12px;
	display: block;
	width: fit-content;
}

.report .archive ul li a.disable{
	color:#d3d3d3;
}

/* **************************
Footer
************************** */
.page_ft {
    background: #323333;
    color:#fff;
    font-size: 14px;
    display:flex;
    justify-content:space-between;
    align-items: center;
    padding: 32px 32px 16px;
}
.page_ft .corporate{
    display:flex;
    align-items: baseline;
    flex-wrap:wrap;
    order: 1;
}
.page_ft .corporate img{
    max-height:32px;
}
.page_ft .corporate img{
    max-height:32px;
}
.page_ft .corporate p{
    display:inline-block;
    padding-left:16px;
}
.page_ft .corporate .copyright{
    color:#838383;
    width:100%;
    padding-top: 8px;
}
.page_ft .service_banner{
    border:solid 1px #606363;
    border-radius:2px;
    order: 2;
}
.page_ft .service_banner a{
    display:block;
    padding: 12px 16px;
}
.page_ft .service_banner img{
    max-height:42px;
}
.page_ft .service_banner p{
    display:inline-block;
    font-size:12px;
    padding-left: 12px;
}

@media screen and (min-width: 1240px) {
/* **************************
Trial Banner
************************** */
	.free-trial{
		padding:20px 0;
	}
}

@media screen and (max-width: 960px) {
	/* **************************
	Header
	************************** */
	.header_wrap {
		display: flex;
		justify-content:space-between;
	}
	.nav_list {
		margin-left: 12px;
	}
	.nav_list li,
	.hd_contact_btn a {
		font-size:15px;
	}
	.nav_list li a{
		padding: 12px 6px;
	}
	.hd_contact_btn a {
		padding: 10px;
	}

	/*sub menu*/
	.nav_list li.sub > ul {
		width:160px;
	}
}

@media screen and (max-width: 768px) {
/* **************************
Common
************************** */
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }

/* **************************
Header
************************** */
    .l_main {
        padding-top:40px;
    }
    .header_wrap {
        padding: 7px 10px 5px;
    }
    .header_inner{
        width: 100%;
        height: 40px;
        position:fixed;
        top: 0;
        left: 0;
        z-index: 10000;
    }
    .header_wrap {
        position:relative;
        width: 100%;
        height: 40px;
    }
	header .logo img {
		max-height: 24px;
	}
    .nav {
        display: none;
        position: absolute;
        width: 100%;
        text-align: center;
        top: 40px;
        left: 0;
        background: #c9a321;
        box-shadow: 0 4px 4px 0 rgb(0 0 0 / 15%);
        z-index: 10000;
    }
	.nav_list,
	.hd_contact_btn{
		float:inherit;
	}
    .nav_list {
        flex-direction: column;
        padding: 10px;
        height: auto;
    }
    .nav li {
            background: var(--main-color);
            width: 100%;
            margin: 0 auto;
    }
    .nav a {
            display: block;
            padding: 0.75em 0.25em;
    }
    .nav .underline:after {
            display: none;
    }
	/*sub menu*/
	.nav_list li.sub > .pc{
	    display: none;
    }
	.nav_list li.sub{
		padding: 0;
	}
	.nav_list li.sub > ul {
		display:block;
		position:inherit;
		top: inherit;
		left: inherit;
		width:100%;
		background: none;
	}
	.nav_list li.sub > ul li:first-child{
		border-bottom:none
	}
	.hd_contact_btn{
		width:90%;
		margin: 12px auto 0;
	}

    .hd_contact_btn a {
        border-radius: 4px;
        width: 100%;
        margin: 0 auto 1.5em auto;
    }

/*header_sp_nav=====*/
    .header_sp_nav {
        width: 30px;
        height: 26px;
        position: absolute;
        top: 5px;
        bottom: 0;
        right: 15px;
        margin:auto;
        cursor: pointer;
    }
    .nav_line {
        display: block;
        position: absolute;
        width: 30px;
        height: 3px;
        background: #fff;
        -webkit-transition: .3s;
        transition: .3s;
    }
    .nav_line1 {
        top: 0;
        bottom: auto;
        margin-bottom: 10px;
    }
    .nav_line2 {
        top: 0;
        bottom: 0;
        margin: 9px 0 9px;
    }
    .nav_line3 {
        bottom: 5px;
        top: auto;
    }
    .header_sp_nav.active .nav_line2{
            right: -60px;
    }
    .header_sp_nav.active .nav_line1{
            top: 0;
            bottom: 0;
            margin: auto;
            transform:rotate(45deg);
    }
    .header_sp_nav.active .nav_line3{
            top: 0;
            bottom: 0;
            margin: auto;
            transform:rotate(-45deg);
    }
    /* inquiry button*/
    .hd_contact_btn ul a{
    	margin: 0.5em auto;
    }
    .hd_contact_btn ul a.btn_inquiry{
    	background:#009ae1;
    	color:#FFFFFF;
    }
    .hd_contact_btn ul a.btn_demo{
    	background:#ffdf17;
    }

/* **************************
Main
************************** */
    .heading[id]::before {
        height: 40px;
        margin-top: -40px;
    }

/* **************************
Trial Banner
************************** */
    .free-trial{
        padding: 8% 0;
        background-position: center right 30%;
    }
    .free-trial .inner{
        text-align: center;
        display: block;
    }
    .free-trial .text h2{
        font-size: 24px;
    }
    .free-trial .text p{
        font-size: 14px;
        padding: 5%;
        text-align: left;
    }
    .free-trial .trial_link_btn{
        margin:20px auto;
    }
    .free-trial .trial_link_btn a{
        margin: auto;
    }

/* **************************
Contact
************************** */
    .contact_area {
        padding: 0 20px 40px;
    }
    .contact_tit {
        font-size: 24px;
        padding: 1.25em 0 0.5em;
    }
    .contact_box {
        flex-direction: column;
        padding: 24px 0 0;
    }
    .contact_txt {
        text-align: left;
        font-size: 14px;
    }
    .contact_link_btn {
        padding: 0;
        text-align: center;
    }
    .contact_link_btn a {
        width: 100%;
        max-width: 250px;
        padding: 0.65em 0 0.5em;
        text-align: center;
    }
    .contact_tel_box {
        font-size: 28px;
        padding-top: 40px;
    }
    .contact_tel_box img {
        width: 29px;
        height: auto;
    }
    .contact_tel_box small {
        font-size: 12px;
    }

/* **************************
LP (Ranking)
************************** */
	.report .archive{
		margin-bottom:24px;
	}
	
	.report .archive summary{
		font-size:14px;
	}
	.report .archive ul li{
		font-size:14px;
	}
	
/* **************************
Footer
************************** */
	.page_ft {
		flex-wrap:wrap;
	}
	.page_ft .service_banner{
		order: 1;
		width:100%;
		text-align: center;
		margin-bottom: 24px;
	}
	.page_ft .service_banner a{
    padding: 8px;
    }
	.page_ft .service_banner img{
		max-height: 40px;
		margin-right: 10px;
	}
	.page_ft .service_banner p{
		padding-left: 0;
		line-height: 1.4;
	}
	.page_ft .corporate{
		order: 2;
	}
	.page_ft .corporate img{
		max-height:20px;
	}
	.page_ft .corporate p{
		font-size:12px;
    }
}

