@charset "UTF-8";

*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html{
	font-size: 62.5%;
}
body{
	font-family: "Zen Kaku Gothic New", 游ゴシック, YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",  sans-serif;
	font-size: 1.5rem;
	color: #000;
	font-weight: 400;
	font-style: normal;	
	position: relative;
	letter-spacing: .05em;
}
.noto-sans{
	font-family: "Noto Sans JP", "Zen Kaku Gothic New", 游ゴシック, YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",  sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.mincho {
	font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝B", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
img{
	border:none;
}

ul,ol{
	list-style: none;
}
li{
	list-style-type: none;
}

a{
	text-decoration:none;
	color:#000;
	transition: .3s all ease;
}
a:hover{
	opacity:0.7;
	filter:alpha(opacity=70);
}


.inner{
	width: calc(1100px - 5vw);
	margin: 0 auto;
	position: relative;
}
.outer{
	width: 100%;
	min-width: 1100px;
	margin:auto;
	position: relative
}
.pic img,
.pic a{
	display: block;
	width: 100%;
	height: auto;
}
main{
	display: block;
	padding-bottom: 12rem;
}
table{
	border-collapse: collapse;
}
.caveat {
    font-family: 'Caveat', cursive;
}

/* +++++++++++++++++++++++++loading++++++++++++++++++++++++ */
.loading{
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: #fff;
	z-index: 99999;
}
.spin{
	width: 3rem;
	height: 3rem;
	border: .2rem solid #fafafa;
	border-top: .2rem solid #ccc;
	border-radius: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	animation-name: spining;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
@keyframes spining{
	0%{
		transform: rotateZ(0deg);
	}
	100%{
		transform: rotateZ(360deg);
	}
}

/* +++++++++++++++++++++++header++++++++++++++++++++++ */
#header{
	z-index: 999999;
	background: #f1f1f1;
	height: 9rem;
	position: sticky;
	left: 0;
	top: 0;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo{
	width: 12rem;
	position: relative;
	left: auto;
	top: auto;
}
.logo *{
	display: block;
	width: 100%;
}
.logo{
	width: 12rem;
	position: relative;
	display: block;
}
nav .small{
	letter-spacing: 0;
}
.outer{
	padding-left: 2.5vw;
	padding-right: 2.5vw;
}
.tc{
	text-align: center;
}

.outer{
	padding-left: 2.5vw;
	padding-right: 2.5vw;
}
.tc{
	text-align: center;
}

/* +++++++++++++++++++++++nav++++++++++++++++++++++ */
nav{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	height: 100%;
	margin-left: auto;
}

nav .small{
	font-size: 1rem;
	display: block;
	text-align: center;
	padding-top: .5em;
}
#global{
	display: flex;
}
#global>li{
	margin: 0 0 0 3rem;
	position: relative;
	color: #fff;
}
#global .child{
	background: #333;
	width: 260%;
	position: absolute;
	left: -75%;
	top: 100%;
	transform: translateY(1rem);
	margin: auto;
	display: block;
	padding: 0 2rem;
	line-height: 1.5;
	opacity: 0;
	filter: alpha(opacity=0);
	visibility: hidden;
}
@media screen and (min-width: 769px){
	#global .child{
		transition: .4s all ease;
	}
}
#global .child.on{
	opacity: 1;
	filter: alpha(opacity=100);
	transform: translateY(0);
	visibility: visible;
}
#global .child:before{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-bottom: 1rem solid #333;
	border-left: .7rem solid transparent;
	border-right: .7rem solid transparent;
	position: absolute;
	left: 0;
	right: 0;
	top: -1rem;
	margin: auto;
	display: none;
}
#global .child>li{
	font-size: 1.4rem;
	padding: 2rem 0;
}
#global .child a{
	color: #fff;
}
#global .sub-ttl{
	display: block;
/*
	font-size: 1.2rem;
*/
	font-size: 1.0rem;
	letter-spacing: 0;
	margin-top: .5rem;
	font-weight: 400;
	display: block;
	line-height: 1.5;
/*
	letter-spacing: .05em;
*/
}
#global .sub-ttl02{
	font-size: 1.2rem;
}
#global .child>li:not(:last-of-type){
	border-bottom: .1rem solid #fff;
}

.grand-child{
	font-size: 1.1rem;
	letter-spacing: 0;
	font-weight: 400;
}
.grand-child li{
	padding-top: 1.5rem;
	margin-top: 1.5rem;
	border-top: 1px dotted rgba(255,255,255,.3);
}
nav .arrow{
	background: url(../images/nav-arrow01.png) no-repeat;
	background-size: .8em auto;
	background-position: right center;
}


/* +++++++++++++++++++++++bread-crumbs++++++++++++++++++++++ */
#bread-crumbs{
	line-height: 1;
	border-top: .1rem solid #eee;
	border-bottom: .1rem solid #eee;
	padding: 2.5rem 0;
}
#bread-crumbs ul{
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
}
#bread-crumbs li:not(:last-of-type):after{
	content: "/";
	display: inline;
	padding: 0 1.5rem;
}
#bread-crumbs a{
	text-decoration: underline;
}
#bread-crumbs a:hover{
	text-decoration: none;
}
#bread-crumbs li span{
	font-size: 75%;
	padding-left: 1em;
}
/* +++++++++++++++++++++++footer++++++++++++++++++++++ */

#footer{
	padding-block: 4.5rem;
	background: #d9d9d9;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	z-index: 9;
}
#footer:before{
	content: "";
	display: block;
	width: 100%;
	height: 18rem;
	background: url(../images/footer-bg01.png) repeat-x;
	background-size: auto 100%;
	background-position: center center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
}
#footer:after{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: url(../images/footer-bg02.png) repeat-x;
	background-size: auto 100%;
	background-position: center center;
	position: absolute;
	left: 0;
	right: 0;
	top: .8rem;
	margin: auto;
}
.company-data{
	display: flex;
	align-items: flex-start;
}
.company-detail{
	padding-left: 2.4rem;
	padding-top: 1.1rem;
	line-height: 2;
}
.company-detail h2{
	font-weight: 400;
	font-size: 1.5rem;
}
.sitemap>ul{
	display: flex;
	align-items: flex-start;
	line-height: 1;
}
.sitemap>ul>li{
	margin-left: 4rem;
}

.sitemap .child{
	font-size: 1.3rem;
	letter-spacing: 0;
	font-family: "Zen Kaku Gothic New", 游ゴシック, YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",  sans-serif;
}
.sitemap .child li{
	margin-top: 2.4rem;
}
.mother-logo{
	width: 8.7rem;
	padding-top: .6rem;
}
.mother-logo img{
	display: block;
	width: 100%;
}
.canvas-logo{
	display: flex;
	align-items: center;
}
.canvas-logo:after{
	display: block;
	content: "";
	width: 3rem;
	height: 2.4rem;
	background: url(../images/canvas-logo.png) no-repeat;
	background-size: 100% auto;
	margin-left: .8rem;
}
/* ++++++++++++++++++++++++コンテンツ共通++++++++++++++++++++++++ */
.btn{
	background-color: #333;
	width: 29rem;
	height: 6rem;
	display: flex !important;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 3rem;
	background-image: url(../images/btn-arrow.svg);
	background-repeat: no-repeat;
	background-size: .9rem auto;
	background-position: right 2rem center;
	margin: 5rem auto 0;
	border: 1px solid #333;
}
.btn:hover{
	color: #333;
	background-color: #fff;
	background-image: url(../images/btn-arrow-b.svg);
}
.btn.small{
	height: 5rem;
	width: 24rem;
	margin-top: 4rem;
	font-size: 1.4rem;
	background-size: .7rem auto;
}
.txt-yellow{
	color: #fccc00;
}
.txt-green{
	color: #b0c81a;
}
.txt-blue{
	color: #1fa4db;
}
.bg-txt{
	line-height: 1;
	display: flex;
	width: calc(100% + .2em);
	position: absolute;
	left: -.1em;
	font-weight: 700;
	display: flex;
	justify-content: space-between;
	z-index: -2;
}
.service-ttl{
	font-size: 4.8rem;
	letter-spacing: .2em;
}

/* ++++++++++++++++++++++++#key-visual++++++++++++++++++++++++ */
#key-visual{
	height: 60rem;
	background: url(../images/key-visual-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	position: relative;
}
#key-visual:before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,.25);
}
#page-ttl{
	margin-top: 4.5rem;
	line-height: 1;
	font-size: 1.8rem;
	text-align: center;
	position: relative;
	color: #fff;
	font-weight: 400;
}
#page-ttl .caveat{
	font-size: 6rem;
/*
	padding-right: 1.5rem;
*/
	letter-spacing: .2em;
	font-weight: 400;
	display: block;
	color: #c2f018;
	margin-bottom: 1.5rem;
}




/* ++++++++++++++++++++++++各見出しのスタイル++++++++++++++++++++++++ */
.sec{
	padding-top: 10rem;
	padding-bottom: 10rem;

	position: relative;
}
.sec p{
	line-height: 2;
}
.sec-ttl01{
	padding-bottom: 5rem;
	letter-spacing: .2em;
	font-size: 100%;
	line-height: 1;
}
.sec-ttl01 .en{
	display: block;
	font-size: 4.8rem;
	letter-spacing: .1em;
	padding-bottom: 1.5rem;
}
.sec-ttl02{
	text-align: center;
	font-size: 4.6rem;
	letter-spacing: .2em;
	margin: 0 auto 5rem;
}
.sec-sub-ttl01{
	font-size: 2.4rem;
	line-height: 2;
	text-align: center;
	letter-spacing: .15em;
	margin-bottom: 4rem;
	font-weight: 700;
}

.sec-ttl03{
	padding-bottom: 5rem;
	letter-spacing: .2em;
	font-size: 100%;
	line-height: 1;
	text-align: center;
}
.sec-ttl03 .qu{
	display: block;
	//font-size: 4.8rem;
	font-size: 6rem;
	letter-spacing: .1em;
	padding-bottom: 1.5rem;
	font-weight: 400;
	color: #e3ee31;
}
.sec-ttl03:after{
	content: "";
	display: block;
	width: 100%;
	max-width: 10rem;
	height: .3rem;
	background: #e3ee31;
	margin: 2rem auto 0;
}
.sec-ttl04{
	font-size: 3.2rem;
	line-height: 1.4;
	margin-bottom: 4rem;
	text-align: center;
}
.sec-sub-ttl02{
	font-size: 2rem;
	line-height: 1;
	margin-bottom: 4rem;
}
.sec-sub-ttl02 span{
	border-bottom: .3rem solid #000;
	padding: 0 .5rem .5rem;
}
.sec-sub-ttl02 span:before{
	content: "■";
	display: inline;
	margin-right: .5rem;
}
/* ++++++++++++++++++++++++tab++++++++++++++++++++++++ */
.tab{
	height: 9.6rem;
	background: #23477f;
	border-bottom: 1.2rem solid #09244e;
}
.tab ul{
	display: flex;
	flex-wrap: wrap;
	height: 100%;
}
.tab li{
	width: 33.333%;
	height: 100%;
	display: flex;
	background: #fff;
}
.tab a,
.tab .active{
	color: #6a88b6;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	letter-spacing: .2em;
	font-size: 2.4rem;
	background: #23477f;
}
.tab .active{
	color: #fff;
	background: #09244e;
}




@media screen and (max-width:768px){
	html{
		font-size: 3.125vw;	// 横幅320pxの時に10px相当
	}
	body{
		font-size: 1.4rem;
		overflow-x: hidden;
		width: 100vw;
	}
	body.hidden{
		overflow-y: hidden;
	}

	.inner{
		width: 100%;
		margin: 0 auto;
		position: relative;
	}
	.outer{
		min-width:100%;
		margin:auto;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

/* +++++++++++++++++++++++header++++++++++++++++++++++ */
	#header{
		position: fixed;
		top: 0;
		z-index: 9999999;
		height: 5rem;
	}
	.logo{
		width: 9rem;
		height: auto;
	}
	.logo *{
		display: block;
		height: auto;
		width: 100%;
	}
	.menu-btn{
		width: 5rem;
		height: 5rem;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 9999;
	}
	.menu-btn span{
		display: block;
		width: 40%;
		height: .1rem;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
		background: #000;
		transition: .3s all ease;
	}
	.menu-btn span:nth-of-type(1){
		transform: translateY(-.5rem);
	}
	.menu-btn span:nth-of-type(3){
		transform: translateY(.5rem);
	}
	.menu-btn.opened span:nth-of-type(1){
		transform: translateY(0) rotate(-45deg);
	}
	.menu-btn.opened span:nth-of-type(2){
		opacity: 0;
		filter: alpha(opacity=0);
	}
	.menu-btn.opened span:nth-of-type(3){
		transform: translateY(0) rotate(45deg);
	}
	.contact-btn{
		position: absolute;
		right: 5rem;
	}
	.contact-btn a{
/*
		width: 5rem;
		height: 5rem;
*/
		width: 3.6rem;
		height: 3.6rem;
		margin-top: .7rem;

/*
		background-position: center 1.5rem;
		padding-top: 2.75rem;
*/
	}
	.contact-btn a span{
		transform: scale(.6);
	}
	.sp.instagram{
		width: 3.6rem;
		height: 3.6rem;
		position: absolute;
		right: 9.5rem;
		top: .7rem;
	}
	.sp.instagram *{
		display: block;
		width: 100%;
	}

/* +++++++++++++++++++++++nav++++++++++++++++++++++ */
	nav{
		position: fixed;
		left: 0;
		top: 5rem;
		width: 100%;
		height: calc(100% - 5rem);
		overflow-y: scroll;
		background: #f1f1f1;
		z-index: 9999;
		padding: 3rem 1.5rem;
		display: none;
		align-items: flex-start;
		width: 100%;
		overflow: auto;
	}
	nav .small{
		font-size: 1.1rem;
		display: block;
		text-align: center;
		padding-top: .5em;
	}
	#global{
		display: block;
	}
	#global>li{
		width: 100%;
		padding: 0 0 3rem;
		width: 100%;
		margin: 0;
	}
	#global>li>a{
		text-align: center;
		font-size: 1.6rem;
		display: block;
	}
/* +++++++++++++++++++++++footer++++++++++++++++++++++ */
	#footer{
		padding: 3rem 1.5rem;
		display: block;
	}
	#footer:before{
		height: 9rem;
	}
	#footer:after{
		height: 1px;
		top: .4rem;
	}
	.company-data{
		display: block;
	}
	#footer .logo{
		margin: 0 auto;
	}
	.company-detail{
		padding-left: 0;
		padding-top: 1.2rem;
		text-align: center;
	}
	.company-detail h2{
		font-size: 1.4rem;
	}

	.sitemap{
		margin-top: 2.4rem;
		
	}
	.sitemap>ul{
		flex-wrap: wrap;
	}
	.sitemap>ul>li{
		margin-left: 0;
		width: 50%;
		padding: 0 0 2.4rem;
		font-size: 1.5rem;
	}

	.sitemap .child{
		font-size: 1.3rem;
	}
	.sitemap .child li{
		margin-top: 2.4rem;
	}
	.mother-logo{
		width: 9rem;
		padding-top: .6rem;
	}
	.canvas-logo{
		display: flex;
		align-items: center;
	}
	.canvas-logo:after{
		width: 2.5rem;
		height: 2rem;
		margin-left: .4rem;
	}

/* ++++++++++++++++++++++++コンテンツ共通++++++++++++++++++++++++ */
	.pc-inline{
		display: none;
	}
	.btn{
		width: 80%;
		max-width: 28rem;
		height: 4rem;
		border-radius: 2rem;
		background-size: .5rem auto;
		background-position: right 2rem center;
		margin: 2.5rem auto 0;
	}
	.btn.small{
		height: 4rem;
		width: 80%;
		max-width: 28rem;
		margin-top: 2.5rem;
		font-size: 1.2rem;
		background-size: .5rem auto;
	}
	.sec-ttl01{
		padding-bottom: 2.5rem;
	}
	.sec-ttl01 .en{
		font-size: 3.6rem;
		padding-bottom: 1rem;
	}
	.sec-ttl02{
		font-size: 2.4rem;
		letter-spacing: .2em;
		margin: 0 auto 2.5rem;
		line-height: 1;
	}
	.sec-sub-ttl01{
		font-size: 1.7rem;
		line-height: 1.8;
		margin-bottom: 2.5rem;
	}
	.sec-ttl03{
		padding-bottom: 2.5rem;
	}
	.sec-ttl03 .qu{
		font-size: 3.6rem;
		padding-bottom: 1rem;
		letter-spacing: 0;
	}
	.sec-ttl03:after{
		margin: 2rem auto 0;
		height: .2rem;
		max-width: 7.5rem;
	}
	.sec-ttl04 {
	    font-size: 2rem;
	    margin-bottom: 2rem;
	}
	.sec-sub-ttl02 {
	    font-size: 1.6rem;
	    line-height: 1;
	    margin-bottom: 2rem;
	}
	.sec-sub-ttl02 span {
	    border-bottom: .2rem solid #000;
	}

/* ++++++++++++++++++++++++key-visual++++++++++++++++++++++++ */





/* ++++++++++++++++++++++++セクション内共通++++++++++++++++++++++++ */
	.sec{
		padding-top: 5rem;
		padding-bottom: 5rem;
	}


/* +++++++++++++++++++++++各見出しのスタイル++++++++++++++++++++++ */


/* ++++++++++++++++++++++++パンくずリスト++++++++++++++++++++++++ */
	#bread-crumbs{
		font-size: 1rem;
		padding: .7rem 1.5rem 0;
		min-width: 100%;
		width: 100%;
		flex-shrink: 0;
	}
	#bread-crumbs .inner{
		flex-wrap: wrap;
	}
	#bread-crumbs li{
/*
		padding-bottom: 1.5rem;
*/
		padding-bottom: .7rem;
		flex-shrink: 0;
	}
}

/* ++++++++++++++++++++++++#key-visual++++++++++++++++++++++++ */
#key-visual{
/*
	height: 60rem;
*/
	height: 51rem;
	background: url(../images/key-visual-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	position: relative;
}
#key-visual:before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,.25);
}
#page-ttl{
	margin-top: 4.5rem;
	line-height: 1;
	font-size: 1.8rem;
	text-align: center;
	position: relative;
	color: #fff;
	font-weight: 400;
}
#page-ttl .caveat{
	font-size: 6rem;
/*
	padding-right: 1.5rem;
*/
	letter-spacing: .2em;
	font-weight: 400;
	display: block;
	color: #c2f018;
	margin-bottom: 1.5rem;
}


@media screen and (max-width: 768px){
/* ++++++++++++++++++++++++key-visual++++++++++++++++++++++++ */
	#key-visual{
		height: 8rem;
	margin-top: 5rem;
	}
	#page-ttl{
		margin-top: 0;
		font-size: 1.4rem;
		line-height: 1.3;
	}
	#page-ttl .caveat{
		font-size: 2.4rem;
		letter-spacing: .1em;
		margin-bottom: 0;
	}
}



@media screen and (min-width: 769px){
	.pc-none{
		display: none !important;
	}
}
@media screen and (max-width: 768px){
	.sp-none{
		display: none !important;
	}
}