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

/* ---------------------------------------------------------------------------------------------

　   webフォント

--------------------------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
/*
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
*/

@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
/*
	font-family: "Crimson Text", serif;
	font-weight: 400;
	font-style: normal;
*/


/* ---------------------------------------------------------------------------------------------

　   ページ読み込み　ふわっと表示

--------------------------------------------------------------------------------------------- */

  body {
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    -o-animation: fadeIn 1.5s ease 0s 1 normal;
	animation: fadeIn 1.5s ease 0s 1 normal;
	}
	@keyframes fadeIn {
		0% {
			opacity: 0
			}
		100% {
			opacity: 1
			}
		}
	@-webkit-keyframes fadeIn {
		0% {
			opacity: 0
			}
		100% {
			opacity: 1
			}
		}

/* ---------------------------------------------------------------------------------------------

　   全体

--------------------------------------------------------------------------------------------- */

html {
	margin:			0!important;
	padding:		0!important;
	overflow-y: auto;
	-webkit-overflow-scrolling:touch;
	-moz-text-size-adjust:		none;
	-webkit-text-size-adjust:	100%;
	}
	
body{
	color: #000000;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 600;
	-webkit-font-smoothing: antialiased;
	line-height:	200%;
	width:			100%;
	padding:		0;
	margin: 0;
	}
	@media only screen and (max-width: 640px) {
		body{
			/*font-size: 15px;*/
			}
		}
	@media only screen and (max-width: 540px) {
		body{
			font-size: 14.5px;
			line-height:	220%;
			}
		}
	@media only screen and (max-width: 480px) {
		body{
			font-size: 13.5px;
			/*font-weight: normal;*/
			}
		}
	@media only screen and (max-width: 360px) {
		body{
			font-size: 13px;
			}
		}

	img {
		border:			0;
		vertical-align:	middle;
		}
	a img {
		text-align:center;
		border-style:none;
		}




/* ---------------------------------------------------------------------------------------------

　   共通パーツ

--------------------------------------------------------------------------------------------- */

/*----------

　テキスト

----------*/


/* リンク 装飾なし　*/
a{
	text-decoration: none;
    transition: .3s;
	}
/*a:hover{
    opacity: .7;
}*/

/*フォント指定*/
.tiny{
    font-size: 0.7em;
    }

/*フォント色指定*/
.ft_green{
	color: #50be50;
	}

.ft_red{
	color: #ff0000;
	}

/*.en{
	font-family: "EB Garamond";
	font-weight: 400;
	}*/



/*----------

　フォントスタイル

----------*/

.ft_garamond{
	font-family: "EB Garamond";
	font-weight: 400;
	}

.ft_sans{
	font-family: "Reddit Sans", serif;
	}

.ft_oswald{
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	}


/*----------

　フォントサイズ

----------*/

.ft_size_150{
	font-size:150%;
	letter-spacing:2px;
	}
.ft_size_260{
	font-size:260%;
	margin-bottom:1.5rem;
	letter-spacing:2px;
	}
.ft_size_540{
	font-size:540%;
	letter-spacing:7px;
	}
	@media only screen and (max-width: 767px) {
		.ft_size_150{
			font-size:130%;
			}
		.ft_size_260{
			font-size:240%;
			}
		.ft_size_540{
			font-size:480%;
			letter-spacing:5px;
			}
		}
	@media only screen and (max-width: 540px) {
		.ft_size_260{
			font-size:220%;
			margin-bottom:1.2rem;
			}
		.ft_size_540{
			font-size:420%;
			}
		}
	@media only screen and (max-width: 480px) {
		.ft_size_150{
			font-size:120%;
			}
		.ft_size_260{
			font-size:200%;
			margin-bottom:1rem;
			}
		.ft_size_540{
			font-size:360%;
			}
		}
	@media only screen and (max-width: 360px) {
		.ft_size_260{
			font-size:180%;
			}
		.ft_size_540{
			font-size:320%;
			}
		}
	@media only screen and (max-width: 260px) {}







/*----------

　デバイスで表示切り替え

----------*/

/*　PCで非表示、スマホで表示　*/
.pc_hidden{
	display: none;
	}
	@media only screen and (max-width: 900px) {
		.pc_hidden{
			display:block !important;
			}
		}
/*　スマホで非表示、PCで表示　*/
.sp_hidden{
	display: block;
	}
	@media only screen and (max-width: 900px) {
		.sp_hidden{
			display:none!important;
			}
		}


/*----------

　罫線

----------*/

hr.line_solid{
	border: none;
	border-bottom: solid 1px #ccc;
	margin: 1.5rem 0 1.8rem 0;
	}




/*　回りこみ解除　*/
.clear{
	clear:both;
	float: none;
	}
.clear::after {
	content: " "; 
	display: block;
	clear: both;
	}

/*PCでのtel:無効に*/
[href^="tel"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
	}
@media screen and (max-width: 767px) {
    [href^="tel"] {
        pointer-events: auto;
    	}
	}




/*----------

　画像

----------*/

img {
	border:			0;
	vertical-align:	middle;/*画像 縦配置時の隙間なくす*/
	}
a img {
	text-align:center;
    border-style:none;
	}


/*.shake-side {
    animation: shake-side 3s infinite ease-in-out;
	}


@keyframes shake-side {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
}*/



/*----------

　ボタン 角丸

----------*/

/*ボタン センター揃え*/
.btn_wrap{
	text-align: right;
	}
.btn_wrap a{}
	@media only screen and (max-width: 1100px) {}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}






/*-----丸がボタンに変形する-----*/
.btntransform{
	position: relative;
    display: inline-block;
	padding:0 0 0 60px ;
	line-height: 60px;
    text-decoration: none;
    outline: none;
	z-index: 1;
	}
.btntransform span{
	position: inherit;
	left:0;
	color: #fff;
	font-size: 0.9rem;
	margin-left: 0.75rem;
	z-index: 10;
	transition:.3s ease-out;
	}
.btntransform:hover span{
	color: #0D1F62!important;
	left:-20px;
	}

/*矢印 設定*/
.btntransform .arrow{
	content: url("../img/arrow02.svg");
	position: absolute;
	left: 24px;
	top: 25px;
	width: 12px;
	height: 10.5px;
	z-index: 1;
	transition:.3s ease-out;
	}
.btntransform:hover .arrow{
	content: url("../img/arrow01.svg");
	left: 30px;
	}

/* 丸が動く */
.btntransform::before{
	content:'';
	position:absolute;
	left:0;
	z-index: 0;
	width:60px;
	height:60px;
	border: solid 1px #fff;
	border-radius:30px;
    transition:.3s ease-out;
	padding-right: 0;
	}
/*hoverした際の丸の形状*/
.btntransform:hover::before{
	width:calc(100% + 12px);
	background-color: #fff;
	left:0;
	}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {
		.btntransform{
			padding:0 0 0 40px ;
			line-height: 40px
			}
		.btntransform span{
			margin-left: 1rem;
			}
		/*矢印 設定*/
		.btntransform .arrow{
			left: 16px;
			top: 14px;
			}
		.btntransform:hover .arrow{
			left: 16px;
			}
		/* 丸が動く */
		.btntransform::before{
			width:40px;
			height:40px;
			border-radius:20px;
			}
		/*hoverした際の丸の形状*/
		.btntransform:hover::before{
			width:calc(100% + 0);
			}
		}
	@media only screen and (max-width: 480px) {
		.btntransform{
			padding:0 0 0 30px ;
			}
		.btntransform span{
			font-size: 0.85rem;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}








.readmore{
	color: #50be50!important;
	text-decoration: none!important;
	font-weight: bold;
	line-height: 100%;
	position: relative;
	left: 0;
	}
.readmore::before{
	content: url("../img/arrow01.svg");
	display: inline-block;
	width: 9px;
	height: 11px;
	margin-right: 0.7rem;
	position: relative;
	left: 0;
	transition: .2s;
	}

.readmore:hover{
	left: -1rem;
	}
.readmore:hover::before{
	opacity: 0;
	left: 1rem;
	}

	@media only screen and (max-width: 900px) {
		.readmore{
			font-size: 0.85rem;
			}
		}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {
		.readmore{
			font-size: 0.8rem;
			}
		.readmore::before{
			width: 9px;
			height: 11px;
			margin-right: 0.25rem;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}








/* ボタン共通設定 */
.btn{
    position: relative;
	overflow: hidden;
	text-decoration: none!important;
	display: inline-block;
   	border: 1px solid #0D1F62;
    padding: 1.5rem;
    text-align: center;
    outline: none;  
    transition: ease .2s;
	width: 60%;
	min-width: 360px;
	margin: 1rem auto 0 auto;
	}
.btn span {
	position: relative;
	z-index: 3;
	color:#0D1F62;
	}
.btn:hover span{
	color:#fff;
	}

/* 背景が流れる（中央から横全体） */
.bgcenterx:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #0D1F62;
	width: 100%;
	height: 100%;
	transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: top;
	}
.bgcenterx:hover:before{
	transform:scale(1, 1);
	}

/*-- 背景が流れる（左から右） --*/
.bgleft:before {
 	content: '';
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
 	background:#0D1F62;
 	width: 100%;
	height: 100%;
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
    }
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
    }


	@media only screen and (max-width: 1100px) {}
	@media only screen and (max-width: 900px) {
		.btn{
			padding: 0.75rem 3rem;
			font-size: 85%;
			width: inherit;
			min-width: 80%;
			max-width: 80%;
			}
		}
	@media only screen and (max-width: 767px) {
		.btn{
			max-width: 80%;
			padding: 0.5rem 2rem;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}





a{
	transition: .2s;
	}
a:hover{
	/*color: #aaa;*/
	}




/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.hover_slidebar a{
	position: relative;
	}

.hover_slidebar.current a,
.hover_slidebar a:hover{}

.hover_slidebar a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 1px;
    background:#ddd;
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.hover_slidebar.current a::after,
.hover_slidebar a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
	}







/* ---------------------------------------------------------------------------------------------

　   wrapper

--------------------------------------------------------------------------------------------- */

.wrapper{
	overflow: hidden;
	}







/* ---------------------------------------------------------------------------------------------

　   header

--------------------------------------------------------------------------------------------- */

header#header{} 


/*-- サイトタイトル--*/
.site_ttl{
    position:absolute;
    top: 1.5rem;
    left: 4%;
	z-index: 999;
	width: 100%;
	max-width: 176px;
	height: auto;
	max-height: 109.7926px;
	}
.site_ttl a{
	display: block;
	width:100%;
	height:auto;
	}
.site_ttl:hover a{
	transform: scale(1.1, 1.1);
	}
.site_ttl img{
	width: 100%;
	max-width: 176px;
	height: auto;
	max-height: 109.7926px;
	-webkit-filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 1)); /* SafariなどのWebkitブラウザ用 */
	filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 1));
	}
	@media only screen and ( max-width : 767px ) {
		.site_ttl{
			top: 1rem;
			width: 30%!important;
			max-width: 176px;
			height: auto;
			max-height: 109.7926px;
			}
		}
	@media only screen and ( max-width : 600px ) {}
    @media only screen and (max-width: 480px) {}
    @media only screen and (max-width: 320px) {
        }



/*-- スクロール後.fixed付与 --*/
.site_ttl.fixed{
	position:fixed;
	top: 0.75rem;
	}

/*白ロゴ 表示切り替え*/
.site_ttl.fixed .site_ttl___current{
	display: none;
	}

/*グレーロゴ 表示切り替え*/
.site_ttl .site_ttl___fix{
	display: none;
	}
.site_ttl.fixed .site_ttl___fix{
	display: block;
	width: 180%;
	max-width: 260px;
	height: auto;
	max-height: inherit;
	}

	@media only screen and ( max-width : 767px ) {
		.site_ttl.fixed .site_ttl___fix{
			width: 300%;
			}
		}
	@media only screen and ( max-width : 540px ) {}
    @media only screen and (max-width: 480px) {
		.site_ttl.fixed{
			top: 0.8rem;
			}
		}
    @media only screen and (max-width: 360px) {
		.site_ttl.fixed .site_ttl___fix{
			width: 200%;
			}
		.site_ttl.fixed{
			top: 1rem;
			}
		}







/* ---------------------------------------------------------------------------------------------

　   main

--------------------------------------------------------------------------------------------- */

main#main{}

/*----------

共通

----------*/

section{}

.container{
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
	}

/* 幅を強制的に全画面*/
.fullwidth{
	width: 100vw!important;
	}

/*改行位置調整*/
.br_span{
	display: inline-block;
	}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}

.txalign_center{
	text-align: center;
	}



/*-----

hoverで右へ動く

-----*/

.hover-slideleft{
	position: relative;
	left: 0;
	transition: .3s;
	}
.hover-slideleft:hover{
	left: 0.5rem;
	}







/*--------------------

　ファーストビュー

--------------------*/
















/*--------------------

　新着情報

--------------------*/

.sec_news{
	padding: 3rem;
	}


.sec_heading{
	display: flex;
	justify-content: space-between;
	align-items: center;
	}

.sec_heading .sectTit{
	font-size: 1.4rem;
	}


.sec_heading .btntransform{
	margin-bottom: 1rem;
	}


.sec_heading .btntransform{
	padding:0 0 0 60px ;
	line-height: 60px;
	}
.sec_heading .btntransform span{
	color: #0D1F62;
	margin-left: 0.75rem;
	}
.sec_heading .btntransform:hover span{
	left:-25px;
	color: #fff!important;
	}
.sec_heading .btntransform .arrow{
	content: url("../img/arrow01.svg");
	left: 24px;
	top: 25px;
	width: 12px;
	height: 10.5px;
	}
.sec_heading .btntransform:hover .arrow{
	content: url("../img/arrow02.svg");
	left: 24px;
	}

/* 丸が動く */
.sec_heading .btntransform::before{
	left:0;
	width:60px;
	height:60px;
	border: solid 1px #0D1F62;
	border-radius:30px;
	}
/*hoverした際の丸の形状*/
.sec_heading .btntransform:hover::before{
	width:calc(100%);
	background-color: #0D1F62;
	}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {
		.sec_heading .btntransform{
			padding:0 0 0 40px ;
			line-height: 40px
			}
		.sec_heading .btntransform span{
			margin-left: 1rem;
			}
		/*矢印 設定*/
		.sec_heading .btntransform .arrow{
			left: 16px;
			top: 14px;
			}
		.sec_heading .btntransform:hover .arrow{
			left: 16px;
			}
		/* 丸が動く */
		.sec_heading .btntransform::before{
			width:40px;
			height:40px;
			border-radius:20px;
			}
		/*hoverした際の丸の形状*/
		.sec_heading .btntransform:hover::before{
			width:calc(100% + 0);
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_news{
			padding: 1rem!important;
			}
		.sec_heading .sectTit{
			font-size: 1.2rem;
			}
		.sec_heading .btntransform{
			padding:0 0 0 30px ;
			margin-bottom: 0.5rem;
			}
		.sec_heading .btntransform span{
			font-size: 0.85rem;
			}
		}





.sec_news___wrap{
	border-top: 1px solid #ccc;
	}

.sec_news .post{
	display: flex;
	justify-content:flex-start;
	align-items:center;
	padding: 1.6rem 1rem;
	border-bottom: 1px solid #ccc;
	}

.sec_news .post .date,
.sec_news .post .cat,
.sec_news .post .ttl{
	margin-right: 1rem;
	}
.sec_news .post .date{
	font-size: 0.95rem;
	}
.sec_news .post .cat{
	width: 12%;
	min-width: 12%;
	}
.sec_news .post .cat span{
	display: block;
	border: solid 1px #ccc;
	border-radius: 3px;
	font-size: 0.75rem;
	text-align: center;
	}
.sec_news .post .ttl{}
.sec_news .post .ttl a{
	font-size: 1rem;
	transition: .3s;
	}
.sec_news .post .ttl a:hover{
	opacity: .3;
	}

	@media only screen and (max-width: 900px) {
		.sec_news{
			padding: 3rem 1.2rem;
			}
		.sec_news .post{
			padding: 1rem 0.5rem;
			}
		.sec_news .post .date{
			font-size: 0.85rem;
			}
		.sec_news .post .ttl a{
			font-size: 0.9rem;
			}
		}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {
		.sec_news .post{
			display: block;
			padding: 0.8rem 0 1rem 0;
			}
		.sec_news .post .date{
			float: left;
			font-size: 0.8rem;
			}
		.sec_news .post .cat{
			float: left;
			width: inherit;
			min-width:inherit;
			position: relative;
			top: 3px;
			margin-bottom: 0.8rem;
			}
		.sec_news .post .cat span{
			font-size: 0.6rem;
			line-height: 180%;
			padding: 3px 1rem 0 1rem;
			}
		.sec_news .post .ttl{
			float:none;
			clear: both;
			line-height: 165%;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_news .post{
			padding: 0.6rem 0 0.75rem 0;
			}
		.sec_news .post .date{
			font-size: 0.7rem;
			}
		.sec_news .post .ttl a{
			font-size: 0.8rem;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}









/*--------------------

　案内3セクション 共通

--------------------*/

.sec_service{
	clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
	object-fit: cover;
	z-index: 1;
	}
.sec_service___wrap{
	background: url("../img/top_bg___service.jpg") no-repeat;
	background-size:cover;
	padding: 15rem 0 8rem 0;
	}

.sec_result{
	margin-top: -8rem;
	z-index: 0;
	}
.sec_result___wrap{
	background: url("../img/top_bg___result.jpg") no-repeat;
	background-size:100% auto;
	padding: 18rem 0 12rem 0;
	}

.sec_message{
	clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
	object-fit: cover;
	margin-top: -10%;
	z-index: 1;
	}
.sec_message___wrap{
	background: url("../img/top_bg___message.jpg") no-repeat;
	background-size:cover;
	padding: 15rem 0 8rem 0;
	}

	@media only screen and (max-width: 900px) {
		.sec_service___wrap{
			background-position: top center;
			}
		.sec_result___wrap{
			background-position: top center;
			background-size:150% auto;
			}
		.sec_message___wrap{
			background-position: top center;
			}
		}
	@media only screen and (max-width: 800px) {
		.sec_service{
			clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
			}
		.sec_service___wrap{
			padding: 8rem 0 8rem 0;
			}
	
		.sec_result{
			margin-top: -5rem;
			margin-bottom: -7rem;
			}
		.sec_result___wrap{
			padding: 9rem 0 9rem 0;
			margin-top: 0rem;
			}
		
		.sec_message{
			clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
			margin-top: 0rem;
			}
		.sec_message___wrap{
			padding: 8rem 0 8rem 0;
			}
		}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {
		.sec_service___wrap{
			padding: 4rem 0 4rem 0;
			}
		.sec_result{
			margin-top: -5rem;
			margin-bottom: -6rem;
			}
		.sec_result___wrap{
			padding: 6rem 0 8rem 0;
			}
		.sec_message___wrap{
			padding: 4rem 0 4rem 0;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_service___wrap{
			padding: 2rem 0 4rem 0;
			}
		.sec_result{
			margin-top: -3rem;
			margin-bottom: -4rem;
			}
		.sec_result___wrap{
			padding: 2rem 0 6rem 0;
			}
		.sec_message___wrap{
			padding: 2rem 0 4rem 0;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}





.sec_cont{
	position: relative;
	}

.sec_bgtx{
	position: absolute;
	top: 35%;
	right: 0;
	bottom: auto;
	left: auto;
	margin: auto;
	z-index: 0;
	 mix-blend-mode: overlay;
	}
.sec_bgtx span{
	color: #999;
	font-size: 16rem;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	}

.sec_result .sec_bgtx{
	right: auto;
	left: 0;
	}

.sec_cont___wrap{
	position: relative;
	z-index: 1;
    width: 88%;
    margin: 0 auto;
	}


.heading_sec{
	width: 40%;
	margin-bottom: 5rem;
	}
.heading_sec h2 {
    display: flex;
    align-items: center;
	color: #fff;
	font-size: 1.1rem;
	font-weight: bold;
	}
.heading_sec h2:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #fff;
    margin-left: 0.5rem;
	}

.sec_cont .catch{
	margin-bottom: 1.5rem;
	}
.sec_cont .catch .catch_item{
	margin-bottom: 1rem;
	}
.sec_cont .catch span{
	background-color: #fff;
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 100%;
	padding: 0.4rem 0.7rem;
	}

.sec_cont .tx{
	margin-bottom: 2rem;
	}
.sec_cont .tx p{
	color: #fff;
	}

	@media only screen and (max-width: 1200px) {
		.sec_cont .catch span{
			font-size: 1.9rem;
			}
		}
	@media only screen and (max-width: 900px) {
		.heading_sec{
			width: 40%;
			margin-bottom: 3.5rem;
			}
		.sec_bgtx span{
			font-size: 12rem;
			}
		.sec_cont .catch{
			margin-bottom: 1.2rem;
			}
		.sec_cont .catch .catch_item{
			margin-bottom: 0.75rem;
			}
		.sec_cont .catch span{
			font-size: 1.8rem;
			padding: 0.4rem 0.7rem;
			}
		}
	@media only screen and (max-width: 800px) {
		.sec_bgtx span{
			font-size: 11rem;
			}
		.sec_cont___wrap{
			margin: 10rem auto 0 auto;
			}
		.sec_result .sec_bgtx{
			right: 0;
			left: auto;
			}

		.sec_cont .catch span{
			font-size: 1.5rem;
			}
		.sec_cont .tx p{
			font-size: 0.9rem;
			}
		}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {
		.sec_bgtx span{
			font-size: 8rem;
			}
		.heading_sec{
			width: 50%;
			margin-bottom: 1.5rem;
			}
		.heading_sec h2 {
			font-size: 0.95rem;
			}
		.sec_cont .catch span{
			font-size: 1.2rem;
			}
		.sec_cont .tx{
			margin-bottom: 1rem;
			}
		.sec_cont .tx p{
			font-size: 0.8rem;
			line-height: 180%;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}




/*--------------------

　技術案内

--------------------*/

.sec_service{}

	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}



/*--------------------

　事例紹介

--------------------*/

.sec_result{}

.sec_result .sec_bgtx{
	 mix-blend-mode: multiply;
	}
.sec_result .sec_bgtx span{
	color: #ddd;
	}


.sec_result .sec_cont___wrap{
	display: flex;
	justify-content: space-between;
	}
.sec_cont___right{
	width: 50%;
	}
.sec_cont___left{
	width: 40%;
	position: relative;
	}

.sec_cont___left .sec_img01{
	position: absolute;
	right: 0;
	top: 25%;
	width: 50%;
	z-index: 1;
	}
.sec_cont___left .sec_img02{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 70%;
	}
.sec_cont___left img{
	width: 100%;
	height: auto;
	}


.sec_result .heading_sec h2 {
	color: inherit;
	}
.sec_result .heading_sec h2:after {
    background-color: #888;
	}
.sec_result.sec_cont .tx p{
	color: inherit;
	}

.sec_result .btntransform span{
	color: #0D1F62;
	}
.sec_result .btntransform:hover span{
	color: #fff!important;
	}
.sec_result .btntransform .arrow{
	content: url("../img/arrow01.svg");
	}
.sec_result .btntransform:hover .arrow{
	content: url("../img/arrow02.svg");
	}
.sec_result .btntransform::before{
	border: solid 1px #0D1F62;
	}
.sec_result .btntransform:hover::before{
	background-color: #0D1F62;
	}

	@media only screen and (max-width: 1020px) {
		.sec_cont___left .sec_img01{
			width: 60%;
			}
		.sec_cont___left .sec_img02{
			width: 80%;
			}
		}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 800px) {
		.sec_result .sec_cont___wrap{
			display: block;
			justify-content: space-between;
			}
		.sec_cont___right{
			width: 100%;
			}
		.sec_cont___left{
			display: none;
			}
		.sec_result .sec_bgtx{
			top: 22rem;
			}
		.sec_result .catch span{
			background-color: #000;
			color: #fff;
			}
		}
	@media only screen and (max-width: 540px) {
		.sec_result .sec_bgtx{
			top: 10rem;
			}
		.sec_result .sec_bgtx span{
			color: #eee;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}






/*--------------------

　メッセージ

--------------------*/

.sec_message{}



	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}







/*--------------------

　バナー

--------------------*/

/*全体*/
.sec_bnr{
	margin: 2.5rem 0;
	}

/*2列*/
.sec_bnr___2column{
	display: flex;
	}
.sec_bnr___2column .sec_bnr___item{
	flex-grow: 1;
	}
.sec_bnr___2column .sec_bnr___item a{}

/*個別*/
.sec_bnr___item{}
.sec_bnr___item a{
	background-color: #ddd;
	display: block;
	color: #fff;
	padding: 6rem 0 5rem 0;
	}

.sec_bnr .outline a{
	background: url("../img/bnr_bg___outline.jpg") no-repeat center center;
	background-size: cover;
	}
.sec_bnr .recruit a{
	background: url("../img/bnr_bg___recruit.jpg") no-repeat center center;
	background-size: cover;
	}
.sec_bnr .contact a{
	background: url("../img/bnr_bg___contact.jpg") no-repeat center center;
	background-size: cover;
	}

/*タイトル*/
.sec_bnr___item .ttl{
	text-align: center;
	line-height: 280%;
	}
.sec_bnr___item span{
	display: block;
	}
.sec_bnr___item .en{
	font-size: 2.5rem;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	}
.sec_bnr___item .jp{
	font-size: 1.2rem;
	font-weight: bold;
	}

	@media only screen and (max-width: 900px) {
		.sec_bnr___item a{
			padding: 4rem 0 2rem 0;
			}
		}
	@media only screen and (max-width: 767px) {
		.sec_bnr___item .ttl{
			line-height: 220%;
			}
		.sec_bnr___item .en{
			font-size: 2rem;
			}
		.sec_bnr___item .jp{
			font-size: 1rem;
			}
		}
	@media only screen and (max-width: 540px) {
		.sec_bnr___item a{
			padding: 3rem 0 1rem 0;
			}
		.sec_bnr___item .ttl{
			line-height: 200%;
			}
		.sec_bnr___item .en{
			font-size: 1.6rem;
			}
		.sec_bnr___item .jp{
			font-size: 0.9rem;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}








/* ---------------------------------------------------------------------------------------------

　   footer

--------------------------------------------------------------------------------------------- */

footer#footer{
	background: #0D1F62;
	color: #fff;
	padding: 6rem 0;
	clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
	object-fit: cover;
	}
	@media only screen and (max-width: 1020px) {
		footer#footer{
			padding: 4rem 0;
			}
		}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {
		footer#footer{
			padding: 4rem 0 2rem 0;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}


/*----------

　footer 上段

----------*/

.footer_upper{
	display: flex;
	justify-content:space-between;
	}


/*社名*/
.footer_sitelogo{
	width: 40%;
	margin-bottom: 0.25rem;
	}
.footer_sitelogo a{}
.footer_sitelogo img{
	width: 100%;
	max-width: 410px;
	height: auto;
	max-height: 69.6744px;
	}

/*メニュー*/
.footer_menu{
	display: flex;
	justify-content: flex-start;
	align-items:flex-end;
	column-gap: 2rem;
	}

.footer_menu ul{}

.footer_menu ul li{
	line-height: 165%;
	}

.footer_menu ul li a{
	font-size: 0.75rem;
	transition: .3s;
	}
.footer_menu ul li a:hover{
	opacity: .5;
	}

	@media only screen and (max-width: 900px) {
		.footer_menu{
			display: none;
			}
		}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {
		.footer_sitelogo{
			width: 50%;
			}
		}
	@media only screen and (max-width: 480px) {
		.footer_sitelogo{
			width: 60%;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}



/*----------

　footer 中央 罫線

----------*/

footer#footer hr{
	width: 100vw!important;
	margin: 1.2rem calc(50% - 50vw) 1rem calc(50% - 50vw)!important;
	border: none;
	border-bottom:solid 1px #fff;
	}

	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}




/*----------

　footer 下段

----------*/

.footer_lower{
	display: flex;
	justify-content:space-between;
	}

/*社名・連絡先*/
.footer_tx{
	line-height: 155%;
	}
.footer_tx .ttl{
	font-size: 1rem;
	}
.footer_tx .add{
	font-size: 0.8rem;
	}
	@media only screen and (max-width: 767px) {
		.footer_lower{
			display: block;
			justify-content:flex-start;
			}
		/*社名・連絡先*/
		.footer_tx{
			margin-bottom: 2rem;
			}
		.footer_tx .ttl{
			font-size: 0.95rem;
			}
		.footer_tx .add{
			font-size: 0.7rem;
			}
		}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}



/*----------

　コピーライト

----------*/

.cpright{
	font-size: 0.7rem;
	letter-spacing: 1px;
	line-height: 100%;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	}
.cpright small{}

	@media only screen and (max-width: 767px) {
		.cpright{
			font-size: 0.6rem;
			}
		}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}









/*----------

　画像hover時zoomするアニメーション

----------*/

/*.zoomIn{
	overflow: hidden;
	}
.zoomIn img{
	transition:0.3s all;
	}
.zoomIn img:hover{
	transform:scale(1.1,1.1);
	}*/


.zoomIn{
	overflow: hidden;
	}
.zoomIn > *{
	transition:0.4s all;
	}
.zoomIn > *:hover{
	transform:scale(1.1,1.1);
	}



/*----------

　左側から表示されるアニメーション

----------*/

.anime_wrap.curtain{
    position: relative;
    overflow: hidden;
	}

.curtain::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 2;
    transition: .5s;
	color:#0D1F62;
	}
.curtain.show::before{
    transform: translateX(100%);
	}
.curtain img{
    opacity: 0;
    transition: .5s;
	}
.curtain.show img{
    opacity: 1;
	}







/*----------

　1文字ずつ表示されるアニメーション

----------*/

@keyframes showTextFromBottom{
	  0%{
		transform: translateY( 100% );
		}
	  50%{
		transform: translateY( -20% );
		}
	  100%{
		transform: translateY( 0px );
		}
	}

.anime-up.displayed span{
	animation: showText 1s backwards;
	display: inline-block;
	}
.anime-up.displayed > span{
	overflow: hidden;
	}
.anime-up.displayed > span > span{
	animation: showTextFromBottom 0.5s backwards;
	}










