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

@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;500&display=swap');

* {
	box-sizing:border-box;
}
html {
	font-size: 62.5%;
	width: 100%;
	min-height: 100%;
	scroll-behavior: smooth;
}
body {
    background-color: #E3E9F1;
    color: #191D22;
    font-size: 1.6rem;
    font-family: 'Hind', 'ヒラギノ角ゴ Pro','Hiragino Maru Gothic Pro','ヒラギノ角ゴ ProN','Hiragino Maru Gothic ProN',sans-serif;
    font-weight: normal;
    line-height: 1.5em;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    -webkit-text-size-adjust: 100%;
}

/*clearfix*/
.clearfix:after {
	content:".";
	display:block;
	clear:both;
	height:0;
	visibility:hidden;
}
	
.clearfix {
	min-height:1px;
}
		
*html.clearfix {
	height:1px;
	/*¥*//*/
	height:auto;
	overflow:hidden;
	/**/
}

body {
	min-width: 100%;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

.fade {
	-webkit-transition: 0.3s ease-in-out;
	   -moz-transition: 0.3s ease-in-out;
	     -o-transition: 0.3s ease-in-out;
	        transition: 0.3s ease-in-out;
}

.fade:hover {
	opacity: 0.5;
	filter: alpha(opacity=50);
}
img,
iframe {
	max-width: 100%;
	height:auto;
}
.sp {
	display: none;
}

a.anchor {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

.loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
}
  
.loading.is-active {
	opacity: 0;
	visibility: hidden;
}
  
.loading-animation {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #1E3A8E;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
}
  
.loading-animation.is-active {
	opacity: 1;
	visibility: visible;
}
header#top {
	position: relative;
	height: 100vh;
}

/*SVGの横幅*/
.svganimeblock{
	width:100%;
	height: 100vh;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #1E3A8E;
}

/*SVGの可変*/
.svganimeblock svg{
	width: 600px;
}

/*アニメーション前のパスの指定*/
.svganimeblock svg path {
	fill-opacity: 0;/*最初は透過0で見えない状態*/
	transition: fill-opacity 0.5s;/*カラーがつく際のアニメーション0.5秒で変化*/
	fill: none;/*塗りがない状態*/
	stroke: #FFF;/*線の色*/
}

/*アニメーション後に.doneというクラス名が付与された時のパスの指定*/
.svganimeblock svg.done path{
	fill: #FFF;/*塗りの色*/
	fill-opacity: 1;/*透過1で見える状態*/
	stroke: none;/*線の色なし*/
}

.hamburger {
	position: fixed;
	top:0;/*ポジション設定topを0*/
    width: 100%;
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	background-color: rgba(255,255,255,0.65);
	z-index: 50;
	padding: 20px 30px 16px;
	box-shadow: 0 12px 10px 0 rgba(0, 0, 0, .2);
}

.logo {
    width: 15%;
}

.hamburger .btn-gNav {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #1E3A8E;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span:nth-child(1) {
    top: 0;
}

.hamburger .btn-gNav span:nth-child(2) {
    top: 10px;
}

.hamburger .btn-gNav span:nth-child(3) {
    top: 20px;
}

.hamburger .btn-gNav.open span:nth-child(1) {
    background: #ffffff;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger .btn-gNav.open span:nth-child(2),
.hamburger .btn-gNav.open span:nth-child(3) {
    top: 6px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


.btn-gNav {
    display: none;
}
.gNav {
    display: flex;
    justify-content: flex-end;
	align-items: center;
	width: 85%;
	height: 70px;
}
.gNav .gNav-menu {
    display: flex;
    justify-content: space-between;
	align-items: center;
}

.gNav .gNav-menu li {
	margin-right: 40px;
}
.sns-inner {
	width: 140px;
	margin-left: 12px;
}
.sns-inner ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	padding-bottom: 8px;
	margin-left: 24px;
}
.sns-inner ul li {
	margin-right: 12px;
	width: 34px;
}
.sns-inner ul li:last-child {
	margin-right: 0;
}
/*== ヘッダーお問合せボタン */
.head_btn_inner .btn{
    /*アニメーションの起点とするためrelativeを指定*/
	width: 140px;
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #1E3A8E;/* ボーダーの色と太さ */
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	padding: 8px 12px 4px;
}

/*ボタン内spanの形状*/
.head_btn_inner .btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#1E3A8E;
}
.head_btn_inner .btn:hover span{
	color:#fff;
}
.head_btn_inner a::after {
	content: "";
	position: absolute;
	border-style: solid;
	border-width: 0 0 6px 6px;
	border-color: transparent transparent #1E3A8E transparent;
	right: 2px;
	bottom: 2px;
}
.head_btn_inner a:hover::after {
	border-color: transparent transparent #FFF transparent;
}
/*== 背景が流れる（斜め） */
.head_btn_inner .bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background:#1E3A8E;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.head_btn_inner .bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

@keyframes skewanime {
	100% {
		left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
	}
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
	0%{bottom:1%;}
	50%{bottom:3%;}
   100%{bottom:1%;}
}

/*スクロールダウン全体の場所*/
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position:absolute;
  left:50%;
  bottom:10px;
  /*全体の高さ*/
  height:50px;
}

/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left:-15px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

#video-area{
    position: fixed;
    z-index: -2;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
	background: #000;
	height: 100vh;
}
#video-area::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(25,29,34,0.35);
}
#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

/*見出し設定*/
h1 {
    /*要素の配置*/
    position:absolute;
    /*要素を天地中央寄せ*/
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /*見た目の調整*/
    color:#fff;
    text-shadow: 0 0 15px #666;
	text-align: center;
	font-size: 2.6rem;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	z-index: 0;
}
h1 img {
	width: 415px;
	margin-top: 24px;
}
.lead-area {
	position: absolute;
	left: 0;
	bottom: 0;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.leadTxt p {
	color: #FFF;
	font-size: 2.4rem;
	line-height: 1.8em;
	font-weight: 200;
	position: relative;
	padding-left: 120px;
	padding-top: 36px;
	padding-bottom: 36px;
}
.leadTxt p::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	background: #1E3A8E;
	width: 200px;
	height: 100%;
	z-index: -1;
}
#contentWarp {
	overflow: hidden;
}
.products_inner {
	margin-right: 5%;
	padding-top: 86px;
	padding-bottom: 126px;
	background: #FFF;
	position: relative;
}
.products_inner h2 {
	font-size: 6rem;
	font-weight: 700;
	color: #0E2C63;
	text-align: center;
	line-height: 0.8em;
}
.products_inner h2 span {
	font-size: 2rem;
	color: #191D22;
}
.products_sub_inner {
	position: relative;
	width: 95%;
	background: #E3E9F1;
	margin-top: 80px;
	height: 960px;
}
.connect_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	position: absolute;
	top: -30px;
	left: 0;
	z-index: 5;
	width: 100%;
}
.connect_box .mainImg {
	width: 53%;
	height: 460px;
	margin-right: 2%;
	background-image: url(../images/connect-main-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.connect_box .connect_txt {
	width: 45%;
	text-align: center;
}
.connect_box .connect_txt .connect_logo {
	display: block;
	width: 360px;
	margin: 0 auto;
}
.sub_item_inner {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 500px;
}
.sub_item_inner .sub_itemBox {
	width: 262px;
	margin-right: 60px;
	text-align: center;
}
.sub_item_inner .sub_itemBox:last-child {
	margin-right: 0;
}
.sub_item_inner .sub_itemBox > .logo {
	height: 55px;
	width: auto;
	margin-top: 12px;
}
.products_lead_inner {
	width: 90%;
	background: #0E2C63;
	color: #FFF;
	padding: 1.5% 15% 1.5% 1.5%;
	position: absolute;
	right: -10%;
	bottom: 80px;
}
/*== products詳細ボタン */
.products_btn_inner .btn{
    /*アニメーションの起点とするためrelativeを指定*/
	width: 160px;
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #1E3A8E;/* ボーダーの色と太さ */
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	padding: 8px 12px 4px;
	background: #FFF;
	margin-top: 36px;
}

/*ボタン内spanの形状*/
.products_btn_inner .btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#1E3A8E;
}
.products_btn_inner .btn:hover span{
	color:#fff;
}
.products_btn_inner a::after {
	content: "";
	position: absolute;
	border-style: solid;
	border-width: 0 0 6px 6px;
	border-color: transparent transparent #1E3A8E transparent;
	right: 2px;
	bottom: 2px;
}
.products_btn_inner a:hover::after {
	border-color: transparent transparent #FFF transparent;
}
/*== 背景が流れる（斜め） */
.products_btn_inner .bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background:#1E3A8E;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.products_btn_inner .bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}
/*== 背景が流れる（斜め） */
.products_btn_inner .bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background:#1E3A8E;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.products_btn_inner .bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

#company_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	padding-top: 220px;
	padding-bottom: 80px;
	position: relative;
	background: #E3E9F1;
}
#company_inner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: #1E3A8E;
	width: 280px;
	height: 140px;
}
#company_inner .company_txt {
	width: 50%;
	text-align: left;
	padding-left: 12.5%;
	padding-right: 12.5%;
}
#company_inner .company_txt h2 {
	font-size: 6rem;
	line-height: 0.5em;
	font-weight: 700;
	color: #0E2C63;
	padding-top: 36px;
}
#company_inner .company_txt h2 span {
	font-size: 2rem;
	color: #191D22;
}
#company_inner .company_mainimg {
	width: 50%;
}
/*== connect詳細ボタン */
.company_btn_inner .btn{
    /*アニメーションの起点とするためrelativeを指定*/
	width: 328px;
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #1E3A8E;/* ボーダーの色と太さ */
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	padding: 8px 12px 4px;
	background: #FFF;
	margin-top: 36px;
}

/*ボタン内spanの形状*/
.company_btn_inner .btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#1E3A8E;
}
.company_btn_inner .btn:hover span{
	color:#fff;
}
.company_btn_inner a::after {
	content: "";
	position: absolute;
	border-style: solid;
	border-width: 0 0 6px 6px;
	border-color: transparent transparent #1E3A8E transparent;
	right: 2px;
	bottom: 2px;
}
.company_btn_inner a:hover::after {
	border-color: transparent transparent #FFF transparent;
}
/*== 背景が流れる（斜め） */
.company_btn_inner .bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background:#1E3A8E;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.company_btn_inner .bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}
/*== 背景が流れる（斜め） */
.company_btn_inner .bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background:#1E3A8E;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.company_btn_inner .bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

/*トップページnewsエリア*/
#top_news_inner {
	position: relative;
	padding-bottom: 70px;
	height: 700px;
	background: #E3E9F1;
}
#top_news_inner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: #1E3A8E;
	width: 80%;
	height: 100%;
}
.newscontent {
	background: #191D22;
	color: #FFF;
	margin-left: 5%;
	padding: 42px 120px 36px 60px;
	z-index: 5;
	position: absolute;
	width: 100%;
}
.newscontent h2 {
	font-size: 4.4rem;
	font-weight: 700;
}
.newscontent h2 span {
	font-size: 2rem;
	font-weight: normal;
	margin-left: 24px;
	vertical-align: middle;
}
.topnews_btn_inner {
	text-align: right;
}
.topnews_btn_inner .btn{
    /*アニメーションの起点とするためrelativeを指定*/
	width: 160px;
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #FFF;/* ボーダーの色と太さ */
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	padding: 8px 12px 4px;
	margin-top: 20px;
}

/*ボタン内spanの形状*/
.topnews_btn_inner .btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#FFF;
}
.topnews_btn_inner .btn:hover span{
	color:#191D22;
}
.topnews_btn_inner a::after {
	content: "";
	position: absolute;
	border-style: solid;
	border-width: 0 0 6px 6px;
	border-color: transparent transparent #FFF transparent;
	right: 2px;
	bottom: 2px;
}
.topnews_btn_inner a:hover::after {
	border-color: transparent transparent #191D22 transparent;
}
/*== 背景が流れる（斜め） */
.topnews_btn_inner .bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background:#FFF;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.topnews_btn_inner .bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

/*トップページリクルートボタン*/
#recruit_inner {
	position: relative;
	width: 100%;
	height: 140px;
	background-image: url(../images/recruit-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
#recruit_inner a {
	display: block;
}
#recruit_inner p {
	width: 100%;
    /*要素の配置*/
    position:absolute;
    /*要素を天地中央寄せ*/
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /*見た目の調整*/
    color:#fff;
	text-align: center;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.2em;
}
#recruit_inner p span {
	font-size: 2rem;
}

/*** フッターお問合せエリア ***/
#foot_inquiry_Warp {
	background: #1E3A8E;
}
.inquiry_inner {
	max-width: 1120px;
	margin: 0 auto;
	color: #FFF;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 36px;
	padding-bottom: 36px;
	text-align: center;
}
.inquiry_box {
	width: 350px;
	height: 260px;
	margin-right: 35px;
	flex-direction: column;
	position: relative;
}
.inquiry_box:last-child {
	margin-right: 0;
}
.inquiry_box h3 {
	font-weight: bold;
	text-align: center;
	font-size: 2rem;
	margin-bottom: 12px;
}
.inquiry_box p {
	text-align: left;
}
.inquiry_box .text_1 {
	text-align: left;
	margin-top: 8px;
}
.inquiry_box .text_1 input {
	height: 32px;
}
.inquiry_box .check_inner {
	text-align: left;
	margin-top: 6px;
}
.inquiry_btn_inner {
	position: absolute;
	bottom: 0;
	left: 30%;
}
.inquiry_btn_inner .btn{
    /*アニメーションの起点とするためrelativeを指定*/
	width: 140px;
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #FFF;/* ボーダーの色と太さ */
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	padding: 8px 12px 4px;
	margin-top: auto;
}

/*ボタン内spanの形状*/
.inquiry_btn_inner .btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#FFF;
}
.inquiry_btn_inner .btn:hover span{
	color:#1E3A8E;
}
.inquiry_btn_inner a::after {
	content: "";
	position: absolute;
	border-style: solid;
	border-width: 0 0 6px 6px;
	border-color: transparent transparent #FFF transparent;
	right: 2px;
	bottom: 2px;
}
.inquiry_btn_inner a:hover::after {
	border-color: transparent transparent #1E3A8E transparent;
}
/*== 背景が流れる（斜め） */
.inquiry_btn_inner .bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background:#FFF;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.inquiry_btn_inner .bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}

/*==================================================
要素のアニメーション
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.animation {
	opacity: 0;
  }
  
  .fadeUp {
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
  }
  
  @keyframes fadeUpAnime{
	from {
	  opacity: 0;
	transform: translateY(100px);
	}
  
	to {
	  opacity: 1;
	transform: translateY(0);
	}
  }

/*下層ページ共通*/
header {
	position: relative;
}
#contentWarp.toppage {
	background: #E3E9F1;
}
#contentWarp .lowpage {
	position: relative;
}
#page_title_inner {
	width: 100%;
	height: 300px;
	background-image: url(/images/page-title-bg.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: -1;
}
#page_title_inner h2 {
	text-align: center;
	color: #FFF;
	text-align: center;
	margin-top: 70px;
	font-size: 4rem;
	font-weight: 500;
	line-height: 0.8em;
}
#page_title_inner h2 span {
	font-size: 2rem;
}
#content_inner_warp {
	padding-top: 270px;
	height: 100%;
}
.content_inner {
	width: 100%;
	height: 100%;
}
.content_inner_nomal.right {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.contentBox {
	background: #FFF;
	padding-top: 60px;
	padding-bottom: 60px;
	margin-bottom: 86px;
}
.contentBox.blue {
	background: #0E2C63;
	color: #FFF;
}
.contentBox.left {
	margin-right: 5%;
}
.contentBox.right {
	margin-left: 5%;
	width: 95%;
}

/*ページ内ボタン共通*/
.btn_inner .btn{
    /*アニメーションの起点とするためrelativeを指定*/
	width: 100%;
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #1E3A8E;/* ボーダーの色と太さ */
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	padding: 8px 12px 4px;
	margin-top: 20px;
}

/*ボタン内spanの形状*/
.btn_inner .btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#1E3A8E;
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn_inner .btn.logo_img span:hover {
	color: #1E3A8E;
}
.btn_inner .btn span img {
	width: 420px;
	height: auto;
	margin-right: 24px;
}
.btn_inner .btn:hover span{
	color:#FFF;
}
.btn_inner a::after {
	content: "";
	position: absolute;
	border-style: solid;
	border-width: 0 0 6px 6px;
	border-color: transparent transparent #1E3A8E transparent;
	right: 2px;
	bottom: 2px;
}
.btn_inner a:hover::after {
	border-color: transparent transparent #FFF transparent;
}
.btn_inner a.logo_img:hover::after {
	border-color: transparent transparent #1E3A8E transparent;
}
/*== 背景が流れる（斜め） */
.btn_inner .bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background:#1E3A8E;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}
/*== 背景が流れる（斜め） */
.btn_inner .bgskew_img::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background-color: rgba(212, 217, 255, 0.35);
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.btn_inner .bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}
/*hoverした時のアニメーション*/
.btn_inner .bgskew_img:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

/*テキストボックス共通*/
.text_common_inner {
	width: 100%;
	padding-left: 20%;
	padding-right: 5%;
	line-height: 1.8em;
}
.text_common_inner hr.nomal {
	margin-top: 36px;
	margin-bottom: 36px;
}
.note {
	text-align: right;
	font-size: 1.4rem;
	line-height: 1.5em;
}
.text_common_inner h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 36px;
}
.text_common_inner h3 {
	font-size: 1.8rem;
	font-weight: 600;
}
.text_common_inner .list {
	padding-left: 24px;
}

/*会社概要*/
.about_copy {
	font-size: 2.8rem;
	line-height: 1.5em;
}
.about_text_inner {
	width: 70%;
	margin: 0 auto 80px;
}
.about_text_inner:last-child {
	margin-bottom: 0;
}
.about_text_inner h3 {
	font-size: 2rem;
	font-weight: bold;
	color: #1E3A8E;
	margin-bottom: 24px;
}
.about_table {
	width: 100%;
	text-align: left;
	vertical-align: top;
}
.about_table th,td {
	padding: 16px 0;
}
.about_table th {
	width: 25%;
}
.about_table td {
	width: 75%;
}
.about_table tr {
	border-top: 1px solid #1E3A8E;
	border-bottom: 1px solid #1E3A8E;
}
.map_innner {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
}
.mapBox {
	width: 45%;
	margin-right: 10%;
}
.mapBox:last-child {
	margin-right: 0;
}
.mapBox h4 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #1E3A8E;
	margin-bottom: 12px;
}
.mapBox iframe {
	width: 100%;
	height: 280px;
	margin-bottom: 12px;
}
.history .bottom_line {
	border-bottom: 1px solid #FFF;
}
.history .year {
	width: 10%;
}
.history .month {
	width: 10%;
}

/*事業内容*/
#anchor_btn_inner {
	max-width: 940px;
	margin: 0 auto 24px;
	padding-bottom: 40px;
	border-bottom: 1px solid #707070;
}
.anchor_btn_box.col2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: 24px;
}
.anchor_btn_box.col2 a {
	width: 450px;
	margin-right: 40px;
}
.anchor_btn_box.col2 a:last-child {
	margin-right: 0;
}
.anchor_btn_box img {
	height: 56px;
	width: auto;
}
/*== アンカーボタン */
.anchor_btn_box .btn{
    /*アニメーションの起点とするためrelativeを指定*/
	width: 100%;
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #1E3A8E;/* ボーダーの色と太さ */
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	padding: 8px 12px 4px;
}

/*ボタン内spanの形状*/
.anchor_btn_box .btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#1E3A8E;
}
.anchor_btn_box .btn:hover span{
	color:#fff;
}
.anchor_btn_box a::after {
	content: "";
	position: absolute;
	border-style: solid;
	border-width: 0 0 6px 6px;
	border-color: transparent transparent #1E3A8E transparent;
	right: 2px;
	bottom: 2px;
}
.anchor_btn_box a:hover::after {
	border-color: transparent transparent #1E3A8E transparent;
}
/*== 背景が流れる（斜め） */
.anchor_btn_box .bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background-color: rgba(212, 217, 255, 0.35);
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.anchor_btn_box .bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

@keyframes skewanime {
	100% {
		left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
	}
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
	0%{bottom:1%;}
	50%{bottom:3%;}
   100%{bottom:1%;}
}

.service_connect_inner {
	padding-top: 60px;
	position: relative;
}

.service_connect_inner .service_name {
	text-align: center;
	font-size: 2.8rem;
}
.service_connect_inner .service_name img {
	width: 800px;
	height: auto;
}
.service_connect_lead {
	height: 600px;
}
.service_connect_lead .img_bg {
	background-image: url(/images/connect-main-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 60%;
	height: 420px;
	position: absolute;
	top: 240px;
	left: 0;
}
.service_connect_lead .lead_txt {
	background: #0E2C63;
	color: #FFF;
	font-weight: bold;
	padding: 24px 10% 24px 24px;
	position: absolute;
	top: 300px;
	right: -10%;
	width: 55%;
	z-index: 5;
}
.service_connect_lead .lead_txt h3 {
	font-size: 2.4rem;
	line-height: 1.5em;
	margin-bottom: 24px;
}
.service_connect_lead .lead_txt p {
	line-height: 1.8em;
}
.feature_inner {
	width: 940px;
	margin: 0 auto 76px;
}
.feature_inner h2 {
	font-size: 4rem;
	font-weight: 700;
	color: #0E2C63;
	line-height: 0.8em;
	margin-bottom: 40px;
	text-align: center;
}
.feature_inner h2 span {
	font-size: 2rem;
	font-weight: bold;
	color: #191D22;
}
.feature_col3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
	margin-bottom: 50px;
}
.feature_col_box {
	width: 296px;
	flex-direction:column;
	padding-right: 25px;
	margin-right: 25px;
	border-right: 1px solid #191D22;
}
.feature_col_box:last-child {
	margin-right: 0;
	border-right: none;
}
.feature_col_box h3 {
	font-size: 2rem;
	color: #0E2C63;
	font-weight: bold;
	margin-bottom: 24px;
}
.function_inner {
	width: 940px;
	margin: 0 auto;
}
.function_inner h2 {
	font-size: 4rem;
	font-weight: 700;
	color: #0E2C63;
	line-height: 0.8em;
	margin-bottom: 40px;
	text-align: center;
}
.function_inner h2 span {
	font-size: 2rem;
	font-weight: bold;
	color: #191D22;
}
.function_col3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
	margin-bottom: 50px;
}
.function_col_box {
	width: 280px;
	flex-direction:column;
	border: 1px solid #0E2C63;
	padding: 24px;
	margin-right: 50px;
}
.function_col_box:last-child {
	margin-right: 0;
}
.function_col_box .icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 24px;
}
.function_col_box dl dt {
	font-weight: 600;
	font-size: 2rem;
	text-align: center;
	margin-bottom: 12px;
	color: #0E2C63;
}
.function_col_box dl dd {
	font-weight: bold;
}

.function_col_box02 {
	width: 280px;
	flex-direction:column;
	border: 1px solid #0E2C63;
	padding: 24px;
	margin-right: 50px;
}
.function_col_box02:last-child {
	margin-right: 0;
}
.function_col_box02 .icon {
	width: 150px;
	height: 80px;
	margin: 0 auto 24px;
}
.function_col_box02 dl dt {
	font-weight: 600;
	font-size: 2rem;
	text-align: center;
	margin-bottom: 12px;
	color: #0E2C63;
}
.function_col_box02 dl dd {
	font-weight: bold;
}
.service_tsutaeru_inner {
	padding-top: 60px;
	position: relative;
	margin-bottom: 120px;
}
.service_tsutaeru_inner .service_name {
	padding-left: 60px;
}
.service_tsutaeru_inner h2 img {
	width: auto;
	height: 98px;
}
.service_tsutaeru_lead {
	height: 400px;
}
.service_tsutaeru_lead .img_bg {
	background-image: url(/images/tsutaeru-main-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 470px;
	height: 310px;
	position: absolute;
	top: -60px;
	left: 540px;
}
.service_tsutaeru_lead .lead_txt {
	background: #89B92A;
	color: #FFF;
	font-weight: bold;
	padding: 24px 24px 24px 10%;
	position: absolute;
	top: 200px;
	left: -10%;
	width: 1000px;
	z-index: 5;
}
.service_tsutaeru_lead .lead_txt h3 {
	font-size: 2.4rem;
	margin-bottom: 24px;
}
.service_tsutaeru_lead .lead_txt p {
	line-height: 1.8em;
}

.service_mediapack_inner {
	padding-top: 60px;
	position: relative;
	margin-bottom: 120px;
}
.service_mediapack_inner .service_name {
	padding-left: 60px;
}
.service_mediapack_inner h2 img {
	width: auto;
	height: 98px;
}
.service_mediapack_lead {
	height: 400px;
}
.service_mediapack_lead .img_bg {
	background-image: url(/images/mediapack_main_img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 470px;
	height: 310px;
	position: absolute;
	top: 0px;
	left: 540px;
}
.service_mediapack_lead .lead_txt {
	background: #EF6132;
	color: #FFF;
	font-weight: bold;
	padding: 24px 24px 24px 10%;
	position: absolute;
	top: 260px;
	left: -10%;
	width: 940px;
	z-index: 5;
}
.service_mediapack_lead .lead_txt h3 {
	font-size: 2.4rem;
	margin-bottom: 24px;
}
.service_mediapack_lead .lead_txt p {
	line-height: 1.8em;
}

/* 機能のアコーディオン */
.accordion-box {
    position: relative;
}
.accordion-box label {
    height: 100px; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;

    /* 以下グラデーションは「背景が白」に併せて設定しています */ 
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}
.accordion-box input:checked + label {
    background: inherit; /* 開いた時には背景グラデーションを消す */
}
.accordion-box label:after {
    content: "その他の機能をもっと見る"; /* ラベルの文字 */
	font-size: 1.6rem;
    letter-spacing: .05em;
    line-height: 2.5rem;
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #0E2C63;
    background-color: #FFF;
    width: 100%;
    border: 1px solid #0E2C63;
	padding-top: 6px;
	padding-bottom: 6px;
}
.accordion-box label:before {
    content: "+";
	font-size: 1.6rem;
    font-weight: 700;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
    background-color: #fff;
    z-index: 1;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.accordion-box input {
    display: none;
}
.accordion-box .accordion-container {
    overflow: hidden;
    height: 40px; /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.accordion-box input:checked + label {
    /* display: none ; 閉じるボタンは要らないとき */
}
.accordion-box input:checked + label:after {
    content: "閉じる";
}
.accordion-box input:checked + label:before {
    content: "—";
}
.accordion-box input:checked ~ .accordion-container {
    height: auto;
    padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

/*ニュース一覧ページ*/
.news_inner {
	padding-left: 20%;
	padding-right: 5%;
	width: 100%;
}
.news_inner h3 {
	font-weight: 600;
	font-size: 2rem;
	margin-bottom: 60px;
}
.newsBox {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #707070;
}
.newsBox .data {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 12px;
}
.newsBox .data .time {
	font-size: 1.4rem;
	margin-right: 8px;
}
.newsBox .data .cat_icon {
	display: inline-block;
	font-size: 1rem;
	padding: 4px;
	background: #293139;
	color: #FFF;
	text-align: center;
}
.page_navi {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.page_navi .prev,.next {
	font-size: 1.4rem;
	display: block;
}
.page_navi .prev {
	margin-right: 100px;
}
/*ニュース記事ページ*/
.newspage_title {
	font-size: 2.6rem;
	font-weight: 600;
}
.newsTxt p {
	line-height: 1.8em;
}

/*採用情報*/
.recruit_txt_inner {
	margin-bottom: 60px;
	width: 100%;
	padding-left: 20%;
	padding-right: 5%;
	line-height: 1.8em;
}
.recruit_title {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	margin-bottom: 24px;
}
.recruit_title h2 {
	margin-bottom: 0;
	font-size: 2rem;
}
.recruit_title h2 span {
	font-size: 1.4rem;
	color: #1E3A8E;
	margin-right: 6px;
}
.recruit_title hr {
	width: 85%;
}

footer {
	background: #191D22;
}
#foot_warp {
	width: 1120px;
	margin: 0 auto;
	padding: 36px 0;
}
.foot_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
.foot_inner .logobox {
	margin-right: 140px;
}
.foot_inner .logobox .logo {
	width: 174px;
	margin-bottom: 24px;
}
.foot_inner .logobox .isms {
	width: 87px;
}
.footnavi_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	color: #FFF;
}
.footnavi_inner .footnavi_box {
	margin-right: 70px;
}
.footnavi_inner .footnavi_box:last-child {
	margin-right: 0;
}
.footnavi_inner .footnavi_box h3 {
	font-size: 1.5rem;
	margin-bottom: 16px;
}
.footnavi_inner .footnavi_box ul li {
	font-size: 1.3rem;
	line-height: 2em;
}
.footnavi_inner .footnavi_box ul li a {
	color: #FFF;
}
.footnavi_inner .footnavi_box ul li a:hover {
	text-decoration: underline;
}
.copy {
	color: #FFF;
	margin-top: 70px;
	font-size: 1.2rem;
}

/*お問い合わせ*/
#contact_inner {
	width: 900px;
	margin: 0 auto;
}

#contact_inner table th {
	background: #1E3A8E;
	color: #FFF;
	border-bottom: 1px solid #FFF;
	text-align: left;
	vertical-align: top;
	padding: 12px;
}
#contact_inner table th span {
	font-size: 1.4rem;
	margin: 0 auto 0 0;
	color: #F00;
	margin-left: 24px;
}
#contact_inner table td {
	padding: 12px 24px;
}
#contact_inner table td #query_name_last_1,
#contact_inner table td #query_name_first_1,
#contact_inner table td #query_text_1,
#contact_inner table td #query_text_2,
#contact_inner table td #query_text_3,
#contact_inner table td #query_text_4 {
	height: 42px;
	margin-bottom: 12px;
}
.contact_btn_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 42px;
}
.contact_btn_inner .submit_btn {
    /*アニメーションの起点とするためrelativeを指定*/
	width: 200px;
	height: 40px;
    position: relative;
	background: #FFF;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #1E3A8E;/* ボーダーの色と太さ */
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	padding: 8px 12px 4px;
	margin-top: 20px;
	margin-right: 20px;
}
.contact_btn_inner .submit_btn:hover {
	color: #FFF;
}
.contact_btn_inner .submit_btn:last-child {
	margin-right: 0;
}
.contact_btn_inner .submit_btn::after {
	content: "";
	position: absolute;
	border-style: solid;
	border-width: 0 0 6px 6px;
	border-color: transparent transparent #1E3A8E transparent;
	right: 2px;
	bottom: 2px;
}
.contact_btn_inner .submit_btn input {
	background: none;
	border: none;
	font-size: 1.6rem;
	color: #1E3A8E;
	position: absolute;
	left: 25%;
	right: 25%;
}
.contact_btn_inner .submit_btn input:hover {
	color: #FFF;
}
/*== 背景が流れる（斜め） */
.contact_btn_inner .bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background:#1E3A8E;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}
/*hoverした時のアニメーション*/
.contact_btn_inner .bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

.contact_btn_inner .bgskew:hover::after {
	border-color: transparent transparent #FFF transparent;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
	main {
		width: 100%;
	}
	/*見出し設定*/
	h1 {
		/*要素の配置*/
		position:absolute;
		/*要素を天地中央寄せ*/
		top: 40%;
		left: 0;
		transform: translateY(0) translateX(0);
	}
	h1 img {
		width: 70%;
		margin-top: 24px;
	}

	.leadTxt p {
		color: #FFF;
		font-size: 1.6rem;
		line-height: 1.8em;
		position: relative;
		padding-left: 0;
		padding-top: 36px;
		padding-bottom: 36px;
	}

    .btn-gNav {
        display: block;
    }
	.logo {
		width: 50%;
	}
    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: auto;
        background-color: rgba(200, 200, 200, 0.95);
        font-size: 16px;
        box-sizing: border-box;
        z-index: 1;
        padding-top: 50px;
        transition: .3s;
    }

    .gNav.open {
        right: 0;
    }
	.gNav {
        display: block;
        flex-direction: column;
        text-align: center;
		width: 100%;
	}

    .gNav .gNav-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
    }

    .gNav .gNav-menu li {
        width: 100%;
        padding: 15px;
        border-bottom: #1E3A8E 1px solid;
		margin-right: 0;
    }
	.gNav .gNav-menu li a {
		color: #1E3A8E;
	}
	/*== ヘッダーお問合せボタン */
	.btn{
		/*アニメーションの起点とするためrelativeを指定*/
		width: 80%;
		margin-top: 24px;
	}
	/*== ヘッダーSNSボタン */
	.sns-inner {
		width: 100%;
		margin: 16px auto 0;
		padding-bottom: 40px;
	}
	.sns-inner ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		padding-bottom: 8px;
		margin-left: 0;
	}

	/*** フッターお問合せエリア ***/
	.inquiry_inner {
		width: 100%;
		display: block;
	}
	.inquiry_box {
		width: 90%;
		height: auto;
		margin: 0 auto 24px;
		padding-bottom: 60px;
	}
	.inquiry_box:last-child {
		margin: 0 auto;
	}

	#foot_warp {
		width: 100%;
	}

	.scrolldown {
		left: 90%;
	}
	.lead-area p {
		padding-left: 24px;
		font-size: 2rem;
	}
	.products_inner {
		margin-right: 0;
	}
	.products_inner h2,
	#company_inner .company_txt h2 {
		font-size: 3.6rem;
		line-height: 0.6em;
	}
	.products_inner h2 span,
	#company_inner .company_txt h2 span {
		font-size: 1.2rem;
	}
	.products_sub_inner {
		width: 100%;
		margin-top: 36px;
		height: 880px;
	}
	.connect_box {
		top: auto;
		left: auto;
		display: block;
	}
	.connect_box .mainImg {
		width: 90%;
		height: 240px;
		margin: 24px auto; 
		display: block;
	}
	.connect_box .connect_txt {
		width: 100%;
	}
	.sub_item_inner {
		width: 100%;
		align-items: center;
	}
	.sub_item_inner .sub_itemBox {
		width: 42.5%;
		margin-right: 5%;
		text-align: center;
	}
	.sub_item_inner .sub_itemBox > .logo {
		width: 80%;
		height: auto;
	}
	.products_lead_inner {
		width: 100%;
		right: -5%;
		padding: 4% 10% 4% 4%;
	}
	#company_inner {
		display: block;
		padding-top: 80px;
	}
	#company_inner .company_txt {
		width: 100%;
		text-align: center;
		padding-left: 0;
		padding-right: 0;
	}
	#company_inner::after {
		width: 224px;
		height: 64px;
	}
	#company_inner .company_mainimg {
		width: 90%;
		margin: 24px auto 0;
		display: block;
	}
	/*== connect詳細ボタン */
	.company_btn_inner .btn{
		/*アニメーションの起点とするためrelativeを指定*/
		width: 90%;
	}
	#top_news_inner {
		height: auto;
		padding-bottom: 0;
		background: #E3E9F1;
	}
	#top_news_inner::after {
		display: none;
	}
	.newscontent {
		margin-left: 0;
		padding: 16px;
		position: static;
	}
	.newscontent h2 {
		font-size: 3rem;
		margin-bottom: 24px;
		margin-top: 24px;
	}
	.newscontent h2 span {
		font-size: 1.6rem;
	}
	.newsBox .data .time {
		font-size: 1.2rem;
	}
	.newsBox .data .cat_icon {
		font-size: 0.8rem;
	}
	.topnews_btn_inner {
		text-align: center;
	}
	.foot_inner .logobox {
		margin: 0 auto;
	}
	.foot_inner .logobox .isms {
		margin: 0 auto;
	}
	.footnavi_inner {
		display: none;
	}
	.copy {
		text-align: center;
		margin-top: 24px;
	}
	/*会社概要*/
	.about_copy {
		font-size: 1.8rem;
	}
	.about_text_inner {
		width: 85%;
	}
	.about_table th {
		width: 40%;
	}
	.map_innner {
		display: block;
	}
	.mapBox {
		width: 100%;
		margin-right: 0;
		margin-bottom: 24px;
	}
	.history .year {
		width: 15%;
	}
	.history .month {
		width: 15%;
	}
	/*事業案内*/
	#anchor_btn_inner {
		width: 90%;
		margin: 0 auto;
	}
	.anchor_btn_box.col2 {
		display: block;
		margin-top: 0;
	}
	.anchor_btn_box.col2 a {
		width: 100%;
	}
	.anchor_btn_box img {
		width: auto;
		height: 33px;
	}
	.service_connect_inner .service_name {
		font-size: 2rem;
		margin-bottom: 24px;
	}
	.service_connect_inner .service_name img {
		width: 90%;
		height: auto;
	}
	.service_connect_lead .img_bg {
		position: static;
		top: auto;
		left: auto;
		width: 100%;
		height: 240px;
	}
	.service_connect_lead .lead_txt {
		position: static;
		top: auto;
		right: auto;
		width: 100%;
	}
	.service_connect_lead .lead_txt h3 {
		font-size: 2rem;
		line-height: 1.5em;
	}
	.feature_inner {
		width: 100%;
	}
	.feature_col3 {
		display: block;
	}
	.feature_col_box {
		width: 90%;
		margin: 0 auto 24px;
		padding-right: 0;
		padding-bottom: 24px;
		border-right: none;
		border-bottom: 1px solid #0E2C63;
	}
	.feature_col_box:last-child {
		margin-right: auto;
	}
	.function_inner {
		width: 100%;
	}
	.function_col3 {
		display: block;
		margin-bottom: 24px;
	}
	.function_col_box {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: unset;
		width: 90%;
		margin: 0 auto 24px;
		padding: 24px 0;
		border-top: none;
		border-left: none;
		border-right: none;
	}
	.function_col_box:last-child {
		margin-right: auto;
		margin-bottom: 0;
	}
	.function_col_box .icon {
		width: 20%;
		margin: 0 4% 0 0;
		border: 1px solid #0E2C63;
	}
	.function_col_box dl {
		width: 68%;
	}
	.function_col_box dl dt {
		text-align: left;
	}
	.btn_inner {
		width: 90%;
		margin: 0 auto;
	}
	.btn_inner .btn span {
		display: block;
	}
	.service_tsutaeru_inner {
		padding-top: 0;
	}
	.service_tsutaeru_inner .service_name {
		padding-left: 30px;
		margin-bottom: 32px;
	}
	.service_tsutaeru_inner h2 img {
		width: 70%;
		height: auto;
	}
	.service_tsutaeru_lead .img_bg {
		width: 100%;
		height: 250px;
		position: static;
		top: auto;
		left: auto;
	}
	.service_tsutaeru_lead {
		overflow: hidden;
		height: auto;
		margin-bottom: 42px;
	}
	.service_tsutaeru_lead .lead_txt {
		width: 100%;
		position: static;
		top: auto;
		left: auto;
	}
	.service_tsutaeru_lead .lead_txt h3 {
		font-size: 2rem;
		line-height: 1.5em;
	}
	.accordion-box label:after {
		width: 90%;
	}
	.service_mediapack_inner .service_name {
		padding-left: 30px;
		margin-bottom: 32px;
	}
	.service_mediapack_inner h2 img {
		width: 70%;
		height: auto;
	}
	.service_mediapack_lead {
		overflow: hidden;
		height: auto;
		margin-bottom: 42px;
	}
	.service_mediapack_lead .img_bg {
		width: 100%;
		height: 250px;
		position: static;
		top: auto;
		left: auto;
	}
	.service_mediapack_lead .lead_txt h3 {
		font-size: 2rem;
		line-height: 1.5em;
	}
	.service_mediapack_lead .lead_txt {
		width: 100%;
		position: static;
		top: auto;
		left: auto;
	}
	.function_col_box02 {
		width: 90%;
		margin: 0 auto 24px;
	}
	.function_col_box02:last-child {
		margin-right: auto;
	}
	/*== プライバシーポリシー */
	.text_common_inner {
		padding-left: 5%;
	}

	#contact_inner {
		width: 90%;
	}
	#contact_inner table th {
		width: 35%;
	}
	#contact_inner table td {
		width: 65%;
		padding: 12px;
	}
	#contact_inner table th span {
		margin-left: 0;
	}
	#contact_inner table td #query_name_last_1,
	#contact_inner table td #query_name_first_1,
	#contact_inner table td #query_text_1,
	#contact_inner table td #query_text_2,
	#contact_inner table td #query_text_3,
	#contact_inner table td #query_text_4 {
		width: 90%;
		height: 30px;
		margin-bottom: 12px;
	}
	#contact_inner table td #query_area_1 {
		width: 90%;
	}

	.contact_btn_inner {
		display: block;
	}
	.contact_btn_inner .submit_btn {
		width: 100%;
		margin-right: 0;
	}
	/*== ニュース関連 */	
	.news_inner {
		width: 90%;
		margin: 0 auto;
		padding-left: 0;
		padding-right: 0;
	}
	.newspage_title {
		font-size: 2rem;
		line-height: 1.5em;
	}
	/*== 採用情報 */
	.recruit_txt_inner {
		width: 90%;
		margin: 0 auto 60px;
		padding-left: 0;
		padding-right: 0;
	}
	.recruit_title hr {
		width: 60%;
	}
}