@charset "utf-8";

/* **************************
Common
************************** */
:root {
  --main-color: #000000;
}

html{
	scroll-behavior: smooth;
}

body {
    color: var(--main-color);
    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";
}
h2{
    font-size: 40px;
    font-weight: bold;
}
img{
    max-width: 100%;
}
a{
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
}
a:hover{
	cursor:pointer;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
section{
	padding: 120px 0;
}
.inner {
	max-width:960px;
	margin:auto;
}

/* **************************
top
************************** */
.top{
    background: url(../img/beginner/top_bg.jpg);
    background-size:cover;
    padding-top: 0;
    padding-bottom: 0;
}
.top .inner{
    position: relative;
    max-width: 1280px;
    padding-top: 40px;
    padding-bottom:40px;
}
.top h1{
	font-family: "corporate-logo-ver2", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 9vw;
	font-weight: bold;
	line-height: 1.1em;
	margin-top: 4%;
	margin-bottom: 80px;
}
.top h1 em{
	font-size: 11.2vw;
	font-style:normal;
}
.top h1 span{
	color: #4EADEB;
}

.top nav ul{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.top nav ul li{
    background: var(--main-color);
    color: #FFFFFF;
    width: 32%;
    text-align: center;
    border-radius: 16px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4em;
}
.top nav ul li a{
    display: block;
    height: 100%;
    border-radius: 16px;
    padding: 32px 8px 40px;
    position:relative;
    color: #FFF;
    background: #000000;
    z-index: 1;
    transition: .3s;
    overflow:hidden;
}
.top nav ul li a::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: transform ease .3s;
	transform-origin: 100% 50%;
	transform: scaleX(0);
}
.top nav ul li.agent a::before {
	background: #4EADEB;
}
.top nav ul li.creative a::before {
	background: #9F00FF;
}
.top nav ul li.estimate a::before {
	background: #f00266;
}
.top nav ul li.research a::before {
	background: #c9a322;
}
.top nav ul li a:hover::before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}
.top nav ul li a:after{
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  width: 13px;
  margin: auto;
  border: 10px solid transparent;
}
.top nav ul li:nth-child(1) a:after{
  border-top: 13px solid #4EADEB;
}
.top nav ul li:nth-child(2) a:after{
  border-top: 13px solid #9E2CE4;
}
.top nav ul li:nth-child(3) a:after{
  border-top: 13px solid #c9a322;
}
.top nav ul li:nth-child(4) a:after{
  border-top: 13px solid #FFFFFF;
}
.top nav ul li a:hover::after{
  border-top: 13px solid #FFF;
}

/* 一括見積りボタン */
.top .button{
	position:absolute;
	bottom: 280px;
	right: 0;
	max-width: 240px;
	transition: transform ease .3s;
	transform: scale(1);
}
.top .button:hover img{
	transform: scale(1.05);
	transition: transform ease .3s;
}

/* 吹き出し */
.top .balloon{
	display:flex;
	justify-content:space-between;
}
.top .balloon .item_group1,
.top .balloon .item_group2{
	position: relative;
	width: 50%;
	padding-top: 10%;
}
.top .balloon .item_group1 .item1{
	position:absolute;
	top:0;
	width: 42%;
}
.top .balloon .item_group1 .item2{
	position:absolute;
	top: 44%;
	left: 32%;
	width: 46%;
}
.top .balloon .item_group2 .item3{
	position:absolute;
	top:0;
	width: 42%;
}
.top .balloon .item_group2 .item4{
	position:absolute;
	top: 44%;
	left: 36%;
	width: 50%;
}

/* animation-fadein */
.top .fadein_01 {
   opacity: 0;
   animation-name: fadein_01;
   animation-duration: .5s;
   animation-timing-function: ease-out;
   animation-fill-mode: forwards;
}
@keyframes fadein_01 {
   0% {
        opacity: 0;
        transform:scale(4); 
   }
   90% {
        transform:scale(1.1);  
   }
   100% {
        opacity: 1;
        transform:scale(1);  
   }
}

.top .fadein_02 {
   opacity: 0;
   animation-name: fadein_02;
   animation-duration: .8s;
   animation-timing-function: ease-out;
   animation-fill-mode: forwards;
}
@keyframes fadein_02 {
   0% {
        opacity: 0;
        transform:scale(0); 
   }
   90% {
        transform:scale(1.2);  
   }
   100% {
        opacity: 1;
        transform:scale(1);  
   }
}

.top .fadein_03 {
   opacity: 0;
   animation-name: fadein_03;
   animation-duration: .8s;
   animation-timing-function: ease-out;
   animation-fill-mode: forwards;
}
@keyframes fadein_03 {
   0% {
      opacity: 0;
        transform:scale(0); 
   }
   90% {
        transform:scale(1.2);  
   }
   100% {
      opacity: 1;
        transform:scale(1);  
   }
}

/* **************************
about
************************** */
.about h2{
	text-align: center;
	font-size: 30px;
	margin-bottom:12px;
}
.about .contact{
    background: #F0F0F0;
    border-radius: 16px;
}

/* **************************
contact(共通)
************************** */
.contact{
	margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 24px 80px;
}
.contact .tel{
    font-weight: bold;
    text-align: left;
}
.contact .invert{
    color: #FFFFFF;
}
.contact .tel > em{
    font-style: normal;
    font-size: 48px;
    display: block;
    line-height: 1.2em;
}
.contact .button{
    width: 300px;
    text-align: center;
}
.contact .button a{
    background: var(--main-color);
    display: block;
    color: #FFFFFF;
    border-radius: 8px;
    padding:24px;
    font-size: 20px;
    font-weight: bold;
	position:relative;
    z-index: 1;
    transition: .3s;
	overflow: hidden;
}
.contact .button a::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: transform ease .3s;
	transform-origin: 100% 50%;
	transform: scaleX(0);
}
.contact .button a::before {
	background:#FFF;
}
.contact .button a:hover::before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}

/* about */
.about .contact .button a:hover {
	color:#000000;
}
/* agent */
.agent .contact .button a:hover {
	color:#9E2CE4;
}
/* creative */
.creative .contact .button a:hover {
	color:#4eaeeb;
}
/* callcenter */
.callcenter .contact .button a:hover {
	color:#f00266;
}
/* free */
.free .contact .button a:hover {
	color:#b39018;
}
/* footer */
footer .contact .button a:hover {
	color:#b39018;
}


/* **************************
Partner(共通)
************************** */
.partner{
    color: #FFFFFF;
    position:relative;
    padding: 160px 0 120px;
}
.partner .decoration{
    font-family: "neusa-next-std-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    position:absolute;
    top: 120px;
    right:0;
    font-size: 15vw;
    opacity: 0.1;
    z-index: 0;
}
.partner:nth-child(2n) .decoration{
	/* left:0; */
}
.partner h2{
	margin-bottom: 4px;
}
.partner .detail{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    z-index:1;
    position:relative;
}
.partner .detail .text{
    width: 53%;
}
.partner .detail .text p{
	font-size: 18px;
	line-height: 2em;
	font-weight: bold;
}
.partner .detail .text p:nth-child(2){
	padding-top:16px;
}
.partner .detail .img{
    width: 42%;
    text-align:center;
}
.partner .point{
    background: #FFFFFF;
    color: var(--main-color);
    text-align: left;
    padding: 24px;
    border-radius: 16px;
}
.partner .point h3{
    font-size: 26px;
    font-weight: bold;
}
.partner .point ul{
	list-style:disc;
	margin-left:24px;
}
.partner .point ul li{
	padding:4px 0;
}

.industry{
	padding: 0;
	position:relative;
}
.industry .creative,
.industry .callcenter{
	display:none;
}
.tab{
	width: 100%;
	max-width: 960px;
	margin: auto;
	position:absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index:1;
}
.tab ul{
	display: flex;
	justify-content: center;
	margin: auto;
	width: 100%;
	padding: 60px 0;
}
.tab ul li{
	margin: 0 16px;
	/* width: 30%; */
	max-width: 264px;
	text-align:center;
	color:#FFF;
	font-weight:bold;
	font-size: 16px;
}
.tab ul li a{
	display:block;
}
.tab ul li a:hover{
	content:"";
	display:block;
	margin-top: 4px;
}
.tab ul li .on::after{
	content:"";
	display:block;
	margin-top: 4px;
	border-bottom: solid 3px #FFEB3B;
}

/* **************************
Partner(agent)
************************** */
.agent{
    background: #9E2CE4;
}

/* **************************
Partner(creative)
************************** */
.creative{
    background: #4EADEB;
}
.creative h2,
.creative .text{
	color: var(--main-color);
}

/* **************************
Partner(callcenter)
************************** */
.callcenter{
    background: #f00266;
}

/* **************************
Partner(Research)
************************** */
section.research{
    background: #b39018;
	padding:120px 0;
}
.research h2{
	text-align: center;
}
.research p{
	font-size: 18px;
	line-height: 2em;
	font-weight: bold;
	margin-bottom: 64px;
}
.research .data{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    width: 80%;
}
.research .data li{
	margin-bottom: 24px;
	background: #FCFEE1;
	color: #8F7004;
	padding: 16px 48px;
	border-radius: 16px;
}
.research .data li.area,
.research .data li.station{
	width:48%;
}
.research .data li.program{
	width:100%;
}
.research .data dt{
    font-size: 20px;
}
.research .data dt:before{
    content: "［"
}
.research .data dt:after{
    content: "］"
}
.research .data dd{
    font-size: 28px;
    font-weight: bold;
    position: relative;
    width: fit-content;
    text-align: center;
    margin: auto;
}
.research .data .station dd{
	text-align:center;
	margin-left:0;
}
.research .data dd > em{
    line-height: 0.8;
    font-size: 112px;
    font-weight: bold;
    font-style: normal;
    font-family: acumin-pro-extra-condensed, sans-serif;
    font-weight: 800;
    font-style: normal;
}
.research .data dd > span{
    position: absolute;
    right: 0;
    bottom: 30px;
}
.research .data dd > span.items{
    font-size: 14px;
    display: block;
    text-align: left;
    bottom: 0;
    left: 146px;
    width: 120px;
}
.research .button{
    width: 300px;
    text-align: center;
	margin:40px auto 0;
}
.research .button a{
    background: var(--main-color);
    display: block;
    color: #FFFFFF;
    border-radius: 8px;
    padding:24px;
    font-size: 20px;
    font-weight: bold;
	position:relative;
    z-index: 1;
    transition: .3s;
	overflow: hidden;
}
.research .button a::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: transform ease .3s;
	transform-origin: 100% 50%;
	transform: scaleX(0);
}
.research .button a::before {
	background:#FFF;
}
.research .button a:hover {
	color:#b39018;
}
.research .button a:hover::before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}

/* **************************
rate
************************** */
.rate{
	background: #F4F4F4;
	position: relative;
}
.rate:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 64px;
    margin: auto;
    border: 48px solid transparent;
    border-top: 56px solid #b39018;
}
.rate h2{
	text-align: center;
	margin-bottom:24px;
}
.rate h2 span{
	color: #c9a322;
}
.rate small{
    text-align: right;
    font-size: 11px;
    display: block;
}

/* **************************
ordrFree
************************** */
.free{
    background: url("../img/beginner/ordr_bg.jpg");
    background-size: cover;
    text-align: center;
	color:#FFFFFF;
}
.free h2 span{
	color: #c9a322;
}
.free ol{
    display: flex;
    justify-content: space-between;
    padding-top: 96px;
}
.free ol li{
    background: #FFFFFF;
    text-align: center;
    width: 30%;
    padding: 0 24px 32px;
    border-radius: 16px;
}
.free ol li .icon{
    width: 96px;
    margin: -48px auto 24px;
}
.free ol li h3{
	color: #c9a322;
	font-weight:bold;
	font-size:12px;
	margin-bottom: 16px;
}
.free ol li h3 > em{
	display:block;
	color: var(--main-color);
	font-style: normal;
	font-size:20px;
}
.free ol li p{
    text-align: left;
	color: var(--main-color);
}

/* **************************
download
************************** */
.download{
    background: url(../img/beginner/top_bg.jpg);
    background-size:cover;
}
.download h2{
	font-size: 26px;
	text-align:center;
	margin-bottom: 2%;
}
.download a:hover img{
	transform: scale(1.02);
	transition: transform ease .3s;
}


/* **************************
FAQ
************************** */
.faq h2{
	text-align: center;
	margin-bottom:40px;
}
.faq ul li{
	padding-bottom: 16px;
}
.faq ul li:hover summary{
	cursor: pointer;
	color: #c9a322;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
}

.faq ul li summary{
	font-size:24px;
	list-style:none;
	padding-bottom: 8px;
}
.faq ul li summary::-webkit-details-marker {
  display: none;
}
.faq ul li summary:before{
	content:"Q";
	color: #c9a322;
	font-weight: bold;
	font-size:24px;
	padding-right:8px;
}
.faq ul li .answer{
	padding: 24px;
	display: block;
	background: #F0F0F0;
	border-radius: 8px;
}

/* **************************
Footer
************************** */
footer{
	padding: 16px 24px;
	background: var(--main-color);
	color: #FFFFFF;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
}
footer .left{
	width: auto;
}
footer .left h3{
	font-size: 18px;
	font-weight: bold;
	width:fit-content;
	margin-bottom:12px;
}
footer .left h3 strong{
	display:block;
	font-size:11px;
}
footer .left h3 em{
	font-size:10px;
	display:block;
	text-align: right;
	font-weight: normal;
	font-style:normal;
}
footer .left .link li{
	display: inline-block;
	font-size:12px;
	text-decoration:underline;
}
footer .contact{
	padding: 0;
	margin-top: 0;
}
footer .contact .tel em{
	font-size:26px;
	line-height:1em;
}
footer .contact .tel span{
	font-size:10px;
}
footer .contact .button{
	width:160px;
	margin-left:16px;
}
footer .contact .button a{
	font-size:14px;
	background:#c9a322;
	padding: 12px;
}
footer .copyright{
	width: 100%;
	text-align:center;
	font-size: 11px;
}
/* **************************
slide_window
************************** */
.slide_window {
    position: fixed;
    bottom: 10px;
    right: -100%;
    padding: 0px;
    opacity: 0;
    transition: 1s;
	background: #6e1cff;
}
.slide_window_content > div:hover {
	outline: 2px solid #dee7eb;
	outline-offset: -6px;
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
}
.slide_window.js_active {
    right: 10px;
    z-index: 9999;
    opacity: 1;
}
.slide_window_close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    border: none;
    background: none;
    outline: none;
}
.slide_window_close::before,
.slide_window_close::after {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 3px;
    height: 3px;
    background-color: #FFFFFF;
    content: "";
}
.slide_window_close::before {
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.slide_window_close::after {
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}
.slide_window_close:hover {
    cursor: pointer;
}


@media screen and (min-width: 1280px) {
	.top h1{
		font-size: 138px;
		margin-bottom: 80px;
	}
	.top h1 em{
		font-size: 172px;
	}
}

@media screen and (max-width: 1300px) {
    .top .inner{
        padding-left: 5%;
        padding-right:5%;
    }
    /* 一括見積りボタン */
    .top .button{
        right: 5%;
        width: 24%;
    }
    /* **************************
    top
    ************************** */
	.top nav ul li .pc {
	    display: none;
	}
}

@media screen and (max-width: 980px) {
    /* **************************
    Common(共通)
    ************************** */
    section{
        padding: 8% 0;
    }
    .inner {
        padding: 5%;
    }
    /* **************************
    contact(共通)
    ************************** */
    .contact{
        padding: 24px;
    }

    .contact .tel > em{
        font-size: 36px;
    }
    .contact .tel > span{
        font-size: 13px;
        font-weight: normal;
    }
    .contact .button{
        width: 256px;
    }
    .partner .decoration{
        top: 0;
    }
	/* **************************
	Partner(共通)
	************************** */
	.partner{
	    padding-bottom: 8%;
	}
	/* **************************
	Partner(Research)
	************************** */
	section.research{
        padding: 8% 0;
	}
}

@media screen and (max-width: 768px) {
    /* **************************
    Common(共通)
    ************************** */
    h2{
        font-size: 28px;
    }
	.pc {
	    display: none;
	}
	.sp {
	    display: block;
	}
	
    /* **************************
    contact(共通)
    ************************** */
    .contact{
        flex-flow: column;
        margin-top: 24px;
    }
    .contact .tel{
        margin-bottom:16px;
    }
    .contact .button{
        width: 100%;
    }
    .contact .button a{
        padding:16px 24px;
    }

    /* **************************
    top
    ************************** */
    .top h1{
        margin-bottom: 10%;
        font-size: 12vw;
    }
    .top h1 em{
        font-size: 15vw;
    }
    .top nav ul{
        flex-wrap :wrap;
    }
    .top nav ul li{
        width :100%;
        margin-bottom:8px;
        font-size: 13px;
        text-align: left;
    }
    .top nav ul li br{
        display :none;
    }
    .top nav ul li a{
        padding: 12px 48px 12px 12px;
    }
    .top nav ul li a:after{
      content: "";
      position: absolute;
      top:40%;
      left: inherit;
      right: 20px;
      width: 13px;
      margin: auto;
      border: 10px solid transparent;
    }
    /* 吹き出し */
    .top .balloon .item_group1,
    .top .balloon .item_group2{
        padding-top: 20%;
    }
    .top .balloon .item_group1 .item1{
        top: -3%;
        width: 60%;
    }
    .top .balloon .item_group1 .item2{
        width: 60%;
        left: 22%;
    }
    .top .balloon .item_group2 .item3{
        top: -10%;
        width: 60%;
    }
    .top .balloon .item_group2 .item4{
        top: 34%;
        left: 30%;
        width: 65%;
    }
    /* 一括見積りボタン */
    .top .button{
        display:none;
    }
    .top .sp{
        display:block;
    }

    /* **************************
    about
    ************************** */
    .about h2{
        font-size: 22px;
        text-align: left;
    }
    /* **************************
    partner(共通)
    ************************** */
	.partner{
	    padding-top: 25%;
	}
    .partner .detail{
        display: inherit;
    }
    .partner .detail .text{
        width: 100%;
    }
    .partner .detail .text p{
        font-size: 15px;
    }
    .partner .detail .img{
        width: 80%;
        margin:40px auto;
    }
    .partner .point h3{
        font-size: 20px;
    }

    /* **************************
    Partner(Research)
    ************************** */
    .research p{
        font-size: 15px;
    }
	.research .data li{
		padding: 16px;
	}
    .research .data,
    .research .data li.area,
    .research .data li.station{
        width:100%;
    }
	.research .data .station dd{
		margin-left:auto;
		padding-right: 120px;
	}
	.research .data .program dd > em{
	    font-size: 80px;
	}
	
    /* **************************
    rate
    ************************** */
    .rate figure {
        overflow:hidden;
    }
    .rate figure img{
        max-width:inherit;
        width:118%;
        margin-left:-12.5%;
    }

    /* **************************
    ordrFree
    ************************** */
    .free ol{
        padding-top: 32px;
        flex-flow: column;
    }
    .free ol li{
        width: 100%;
        padding: 16px 24px 24px;
        margin-bottom: 20px;
    }
    .free ol li .icon{
        width: 96px;
        margin: 0 auto;
    }
    .free ol li h3{
        margin-top: 12px;
    }

	/* **************************
	download
	************************** */
	.download img{
		width: 100%;
		max-width: 480px;
		margin:auto;
	}
	
	.download h2{
		font-size: 16px;
		text-align:left;
		margin-bottom: 5%;
	}
	
	.download h2 > br{
		display: none;
	}
	
	/* **************************
    faq
    ************************** */
    .faq ul li summary{
        font-size:20px;
    }

    /* **************************
    footer
    ************************** */
    footer .left{
        margin-top:16px;
        width: 100%;
        text-align:center;
    }
    footer .left h3{
        margin:0 auto 12px;
    }
    footer .contact{
        margin: 24px auto ;
    }
    footer .contact .button{
        width:100%;
        margin-left:0;
    }
	/* **************************
	slide_window
	************************** */
	.slide_window {
		width: 96%;
		background: #92ea01;
		z-index: 9999;
	}
	.slide_window_content {
	}
	.slide_window.js_active {
		right: 2%;
		z-index: 9999;
		opacity: 1;
	}
	.slide_window img.sp{
		margin: auto;
	}
	.slide_window_close {
		top: 6px;
		right: 6px;
		width: 22px;
		height: 22px;
	}
	.tab ul{
		padding: 32px 0;
	}
	.tab ul li{
		width: 100%;
		font-size: 12px;
		margin: 0 8px;
	}
}
   
