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

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
            margin: 0;
            padding: 0;
            border: 0;
            outline: 0;
            vertical-align: baseline;
            word-wrap:break-word
        }
body{
	margin: 0 auto;
    font-family:Helvetica, "メイリオ", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
	height: auto;
    -webkit-text-size-adjust: 100%;
}
html {
      height:auto
 }

html {
    scroll-behavior: smooth;
}


#wrap {
            width: 100%;
            position: relative;
            height: auto !important;
            height: 100%;
            min-height:100%
        }

a{
	text-decoration: none;
}


/* パソコンでみた時は"pc"のclassがついたカテゴリーが表示 */
.pc {display: flex;
}
.sp{display: none!important}
.sp_view{display: block;}
.sp_view_none{display: none;}



/* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 */

.menu-btn {
    position: fixed;
    right: 0px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
   background: linear-gradient(-20deg,#0091da,#0c618e);
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 21px;
    border-radius: 4px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
   background: linear-gradient(-20deg,#0091da,#0c618e);
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
	text-align: center;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content img{
	width: 100px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background: linear-gradient(-20deg,#0091da,#0c618e);
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

/* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで */

/* ドロップダウンメニュー *//* ドロップダウンメニュー *//* ドロップダウンメニュー *//* ドロップダウンメニュー *//* ドロップダウンメニュー *//* ドロップダウンメニュー *//* ドロップダウンメニュー */

.DropdownMenu {
	margin-left: auto;
  margin-right: auto;
  margin-top: 0px;

}

.Menu {
  
  width: 100%;
  display: flex;
}

.Menu > * + * {

}

.Menu-Item {
	position: relative; /* 追加 */
  flex: 1;
  cursor: pointer;
	
}

.Menu-Item-Label {
  width: 150px;
  height: 50px;
  padding-top: 35px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #444;
	font-weight: bold;
}

/* アニメーション */
.SubMenu {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 80px; /* 50pxから40pxに変更 */
  width: 100%;
}

.Menu-Item:hover .SubMenu {
  transition: all 0.3s; /* 追加 */
  visibility: visible;
  transform: translateY(10px); /*　追加 */
}

.Menu-Item:hover .SubMenu {/* 動き */
  visibility: visible;
}

.SubMenu {
  visibility: hidden; /* 追加 */
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
}

/*　ここから追加　*/
.SubMenu {
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
}

.SubMenu-Item {
  width: 100%;
  padding-top: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.SubMenu > * + * {

}

.SubMenu-Item-Link{
	width: 300px;
	color: #fff;
	background-color: #005597;
	font-weight: bold;
	text-align: center;
	padding: 10px 0;
	font-size: 0.7em;
}

nav li{
	list-style: none;
}

/* ドロップダウンメニューここまで *//* ドロップダウンメニューここまで *//* ドロップダウンメニューここまで *//* ドロップダウンメニューここまで *//* ドロップダウンメニューここまで */


/* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー */

.top_logo{
	width: 250px;
	margin: 30px 0 0 40px;
	
}
.top_entry{
	width: 190px;
}

/*--topエントリーボタンhover--*//*--topエントリーボタンhover--*//*--topエントリーボタンhover--*//*--topエントリーボタンhover--*//*--topエントリーボタンhover--*//*--topエントリーボタンhover--*/
.top_entry{
	transition:transform 0.3s;
}
.top_entry:hover{
	transform:scale(0.9);
}

.entry_btn:hover{
    opacity: 0.7;
}
/*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*/
.top_img{
	display: flex;
	justify-content:space-between;
	width: 100%;
}

.nav ul{
	display: flex;
	justify-content: space-around;
	width: 600px;
}

.nav ul li a{
	color: #444;
	text-decoration: none;
	font-weight: 700;
	font-size: 17px;
	
}

.menu-item {
  list-style: none;
  display: inline-block;
}

.menu-group{
	display: flex;
	justify-content: space-around;
	align-items: center;
	height:100px;
}

.border-solid{
    padding:6rem 0rem 0.4rem 0rem;
    margin-bottom: 0.2rem;
    border-bottom: 3px solid #005597;
    font-weight: bold;
    font-size: 27px;
	color: #444;
	width: fit-content;
	margin: 0 auto;
}
.border_title{
	text-align: center;
	color: #444;
	font-size: 20px;
	margin-top: 0.4rem;
	font-weight: bold;
	margin-bottom: 2rem;
}
/***事業内容css***//***事業内容css***//***事業内容css***//***事業内容css***//***事業内容css***//***事業内容css***//***事業内容css***//***事業内容css***//***事業内容css***/

/***ページリンクcss***/
#page-link{
  display: flex;
  justify-content: center;
  padding: 20px;
}

#page-link li{
  list-style: none;
}

#page-link li a{
  color: #444;
  font-size: 18px;
  font-weight:500;
  padding:0 20px;
  text-decoration: none;
}

#page-link li a::before{
  content:'▼';
  font-size:1.2rem;
  padding:0 10px 0 0;
  color: #005597;
}

#page-link li{
transition: 0.3s; /* 0.3秒で拡大までの時間 */
}
#page-link li:hover{
transform: scale(1.1,1.1); /* 1.2倍に拡大 */
}
/***ページリンクcssここまで***/

/***ここからメインコピーする***//***ここからメインコピーする***//***ここからメインコピーする***//***ここからメインコピーする***//***ここからメインコピーする***//***ここからメインコピーする***/

/***求人スライダーここから***//***求人スライダーここから***//***求人スライダーここから***/

/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*
IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.d-demo {
  display: -ms-grid;
  overflow: hidden;
}
/*----------------------------*/

.d-demo__wrap {
  display: flex;
  overflow: hidden;
}

.d-demo__list {
  display: flex;
  list-style: none;
}

.d-demo__list--left{
animation :infinity-scroll-left 95s infinite linear 0.5s both;
}

.d-demo__item {
  width: calc(100vw / 6);
}
.d-demo__item > img{
   width: 100%;
}

.d-demo{
	margin-top: 50px;
}

/***求人スライダーここまで***//***求人スライダーここまで***//***求人スライダーここまで***/

#content_title01 p{
	width: 100%;
	margin: 50px 0 40px 0;
	padding: 6px 0;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	color: #fff;
	background-color: #005593;
}

#content_title02 p{
	width: 100%;
	margin: 50px 0 40px 0;
	padding: 6px 0;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	color: #fff;
	background-color: #005593;
}

#content_title03 p{
	width: 100%;
	margin: 50px 0 40px 0;
	padding: 6px 0;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	color: #fff;
	background-color: #005593;
}

#content_title04 p{
	width: 100%;
	margin: 50px 0 40px 0;
	padding: 6px 0;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	color: #fff;
	background-color: #005593;
}

#content_title05 p{
	width: 100%;
	margin: 50px 0 40px 0;
	padding: 6px 0;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	color: #fff;
	background-color: #005593;
}


.content_blk{
	display: flex;
	justify-content: space-around;
	width: 1300px;
	margin: 0 auto;
}

.content_blk img{
	width: 450px;
}

.content_text p{
	width: 700px;
	color: #444;
	font-size: 17px;
	line-height: 35px;
}

.content_text p span{
	font-size: 20px;
	font-weight: bold;
	line-height:50px;
	color: #005593;
}

.dounyu{
	display: flex;
	justify-content: space-around;
	width: 1350px;
	margin: 0 auto;
	padding-top: 70px;
	padding-bottom: 40px;
}
.dounyu img{
	width: 190px;
}

.dounyu_text{
	text-align: center;
	width: 275px;
}
.dounyu_text p{
	color: #444;
	font-size: 15px;
	margin-top: 15px;
}

.jirei_douga{
	text-align: center;
	margin-top: 30px;
}
.jirei_douga img{
	width: 560px;
}

.jirei_douga02{
	text-align: center;
	margin-top: 30px;
	padding-bottom: 20px;
}

.jirei_douga02 img{
	width: 560px;
}

.hp{
	text-align: center;
	padding: 60px 0;
}

.hp img{
	width: 650px;
}

.nayami_blk{
	background-image: url("../img/sns02.png");
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 0%;
	height: auto;
	margin-top: 120px;
	text-align: center;
}

.nayami_blk p{
	font-size: 25px;
	font-weight:inherit;
	color: #fff;
	line-height: 50px;
	display: inline-block;
	text-align: left;
	padding: 30px 0 50px 0;
}

h2{
	font-size: 30px;
	color: #fff;
	padding-top: 40px;
}

.matome_text{
  display:flex;
  align-items: center;
  justify-content: center;
}

.matome_text::before,
.matome_text::after{
  content: "";
  width:90px;
  border-top: 2px solid #fff;
}

.matome_text:before {
  margin-right: 1rem; 
}
.matome_text:after {
  margin-left: 1rem; 
}


.nayami_kaikethu{
	padding: 20px 0 30px 0;
	text-align: center;
}
.nayami_kaikethu img{
	width: 600px;
}




/***事業内容cssここまで***//***事業内容cssここまで***//***事業内容cssここまで***/


.mynavi{
text-align: center;
	margin: 60px 0;
}

.mynavi img{
	width:230px;
}

/***トップへ戻るボタン***/
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}
/***トップへ戻るボタンここまで***/

.footer_copy{
	text-align: center;
	color: #444;
	font-weight: bold;
	font-size: 26px;
}

.footer_copy02{
	padding-top: 20px;
	text-align: center;
	color: #444;
	font-size: 20px;
}

.footer_img{
	width: 100%;
}

.footer_haikei{
background-image: url("../img/footer_haikei.png");
	width: 100%;
	height:350px;
    background-size:cover;
    background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	}

.footerlogo{
	width: 300px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	padding-top: 140px;
}

.footer-copyright{
	padding-top: 15px;
}



/* ここからスマホサイズ *//* ここからスマホサイズ *//* ここからスマホサイズ *//* ここからスマホサイズ *//* ここからスマホサイズ *//* ここからスマホサイズ *//* ここからスマホサイズ *//* ここからスマホサイズ */
@media screen and (max-width:768px) {
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
            margin: 0;
            padding: 0;
            border: 0;
            outline: 0;
            vertical-align: baseline;
            word-wrap:break-word
        }
body{
	margin: 0 auto;
    font-family:Helvetica, "メイリオ", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
	height: auto;
    -webkit-text-size-adjust: 100%;
}
html {
      height:auto
 }
	
	html {
    scroll-behavior: smooth;
}


#wrap {
            width: 100%;
            position: relative;
            height: auto !important;
            height: 100%;
            min-height:100%
        }

a{
	text-decoration: none;
}

	
	h1{
		text-align: center;
	}	

/* スマホでみた時は"sp"のclassがついたカテゴリーが表示 */
.pc{display: none!important}
.sp{display: block!important
	}
	
.sp_view{display: none;}
.sp_view_none{display: block;}

/* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 */

.menu-btn {
    position: fixed;
    right: 0px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
   background: linear-gradient(-20deg,#0091da,#0c618e);
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 21px;
    border-radius: 4px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
   background: linear-gradient(-20deg,#0091da,#0c618e);
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
	text-align: center;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content img{
	width: 100px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background: linear-gradient(-20deg,#0091da,#0c618e);
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

/* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで */


/* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー */

.top_logo{
	width: 130px;
	margin: 15px 0 0 20px;
	
}
.top_entry{
	width: 190px;
}

/*--topエントリーボタンhover--*//*--topエントリーボタンhover--*//*--topエントリーボタンhover--*//*--topエントリーボタンhover--*//*--topエントリーボタンhover--*//*--topエントリーボタンhover--*/
.top_entry{
	transition:transform 0.3s;
}
.top_entry:hover{
	transform:scale(0.9);
}
/*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*/
.top_img{
	display: flex;
	justify-content:space-between;
	width: 100%;
}

.nav ul{
	display: flex;
	justify-content: space-around;
	width: 600px;
}

.nav ul li a{
	color: #444;
	text-decoration: none;
	font-weight: 700;
	font-size: 17px;
	
}

.menu-item {
  list-style: none;
  display: inline-block;
}

.menu-group{
	display: flex;
	justify-content: space-around;
	align-items: center;
	height:100px;
}

.border-solid{
    padding: 0.4rem 0rem;
    margin-bottom: 0.2rem;
    border-bottom: 3px solid #005597;
    font-weight: bold;
    font-size: 21px;
	color: #444;
	width: fit-content;
	margin: 0 auto;
	padding-top: 30px;
}
.border_title{
	text-align: center;
	color: #444;
	font-size: 17px;
	margin-top: 0.4rem;
	font-weight: bold;
}
	
/***事業内容css***//***事業内容css***//***事業内容css***//***事業内容css***//***事業内容css***//***事業内容css***//***事業内容css***//***事業内容css***//***事業内容css***/

	/***ページリンクcss***/
#page-link{
  width: 94%;
  flex-wrap: wrap;
  padding: 10px 0;
	margin: 0 auto;
}

#page-link li{
  list-style: none;
	margin: 9px 0;
}

#page-link li a{
  color: #444;
  font-size: 15px;
  font-weight:500;
  padding:0 20px;
  text-decoration: none;
}

#page-link li a::before{
  content:'▼';
  font-size:1rem;
  padding:0 10px 0 0;
  color: #005597;
}

#page-link li{
transition: 0.3s; /* 0.3秒で拡大までの時間 */
}
#page-link li:hover{
transform: scale(1.1,1.1); /* 1.2倍に拡大 */
}
/***ページリンクcssここまで***/

/***事業内容cssここまで***//***事業内容cssここまで***//***事業内容cssここまで***/	

	
/***求人スライダーここから***//***求人スライダーここから***//***求人スライダーここから***/

/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*
IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.d-demo {
  display: -ms-grid;
  overflow: hidden;
}
/*----------------------------*/

.d-demo__wrap {
  display: flex;
  overflow: hidden;
}

.d-demo__list {
  display: flex;
  list-style: none;
}

.d-demo__list--left{
animation :infinity-scroll-left 95s infinite linear 0.5s both;
}

.d-demo__item {
  width: calc(180vw / 6);
}
.d-demo__item > img{
   width: 100%;
}

.d-demo{
	margin-top: 30px;
}

/***求人スライダーここまで***//***求人スライダーここまで***//***求人スライダーここまで***/

#content_title01 p{
	width: 100%;
	margin: 50px 0 20px 0;
	padding: 6px 0;
	text-align: center;
	font-weight: bold;
	font-size: 19px;
	color: #fff;
	background-color: #005593;
}

#content_title02 p{
	width: 100%;
	margin: 30px 0 20px 0;
	padding: 6px 0;
	text-align: center;
	font-weight: bold;
	font-size: 19px;
	color: #fff;
	background-color: #005593;
}

#content_title03 p{
	width: 100%;
	margin: 35px 0 20px 0;
	padding: 6px 0;
	text-align: center;
	font-weight: bold;
	font-size: 19px;
	color: #fff;
	background-color: #005593;
}

#content_title04 p{
	width: 100%;
	margin: 55px 0 20px 0;
	padding: 6px 0;
	text-align: center;
	font-weight: bold;
	font-size: 19px;
	color: #fff;
	background-color: #005593;
}

#content_title05 p{
	width: 100%;
	margin: 50px 0 20px 0;
	padding: 6px 0;
	text-align: center;
	font-weight: bold;
	font-size: 19px;
	color: #fff;
	background-color: #005593;
}


.content_blk{
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	width: 90%;
}

.content_blk img{
	width: 100%;
}

.content_text p{
	width:100%;
	color: #444;
	font-size: 15px;
	line-height: 33px;
}

.content_text p span{
	font-size: 17px;
	font-weight: bold;
	line-height:25px;
	color: #005593;
}

.dounyu{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	width: 50%;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 40px;
}
.dounyu img{
	width: 150px;
}

.dounyu_text{
	text-align: center;
	width: 275px;
	margin-bottom: 20px;
}
.dounyu_text p{
	color: #444;
	font-size: 15px;
	margin-top: 15px;
}

.jirei_douga{
	text-align: center;
	margin: 40px 0;
}
.jirei_douga img{
	width: 290px;
}

.jirei_douga02{
	text-align: center;
	margin: 40px 0;
}

.jirei_douga02 img{
	width: 290px;
}

.hp{
	text-align: center;
	padding: 40px 0;
}

.hp img{
	width: 95%;
}

.nayami_blk{
	background-image: url("../img/sns02.png");
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 0%;
	height: auto;
	margin-top: 60px;
}

.nayami_blk p{
	font-size: 14px;
	font-weight:inherit;
	color: #fff;
	line-height: 50px;
	padding: 20px 0 40px 0;
	text-align:left;
	display:inline-block;
}
	
	.center_blk{
		text-align: center;
	}	

h2{
	font-size: 22px;
	color: #fff;
	padding-top: 40px;
}

.matome_text{
  display:flex;
  align-items: center;
  justify-content: center;
}

.matome_text::before,
.matome_text::after{
  content: "";
  width:60px;
  border-top: 1px solid #fff;
}

.matome_text:before {
  margin-right: 1rem; 
}
.matome_text:after {
  margin-left: 1rem; 
}


.nayami_kaikethu{
	padding: 20px 0 30px 0;
	text-align: center;
}
.nayami_kaikethu img{
	width: 600px;
}




/***事業内容cssここまで***//***事業内容cssここまで***//***事業内容cssここまで***/
	
	
	
	.mynavi{
text-align: center;
	margin: 60px 0;
}

.mynavi img{
	width:180px;
}

/***トップへ戻るボタン***/
.pagetop {
    height: 30px;
    width: 30px;
    position: fixed;
    right: 5px;
    bottom: 20px;
    background: #fff;
    border: solid 2px #444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 2px solid #444;
    border-right: 2px solid #444;
    transform: translateY(20%) rotate(-45deg);
}
/***トップへ戻るボタンここまで***/
	
	.footer_copy{
	text-align: center;
	color: #444;
	font-weight: bold;
	font-size: 22px;
}

.footer_copy02{
	margin: 0 auto;
	width: 92%;
	padding-top: 20px;
	text-align: center;
	color: #444;
	font-size: 16px;
}

.footer_img{
	width: 100%;
}

.footer_haikei{
background-image: url("../img/footer.png");
	width: 100%;
	height:150px;
	margin-top: 20px;
	}

.footerlogo{
	width: 140px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	padding-top: 40px;
}

.footer-copyright{
	padding-top: 15px;
	font-size: 12px;
}
	
}
