<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


/* ベース
/************************************************************/

body {
	margin: 0;
	font-family: 'Noto Sans', 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset', sans-serif;
	overflow-wrap: break-word;
	word-break: normal;
	color: #111;
	background-color: #FFFFFF;
}
body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background:url(../img/bg-b.jpg) center no-repeat;
  background-size:cover;
}
img {
	max-width: 100%;
	height: auto;
}
a {
	color: #111;
	text-decoration: none;
}
a:hover{
	text-decoration:none;
}
p {
	line-height: 200%;
}
p i {
	color: #D33939;
	font-weight: bold;
	background: linear-gradient(transparent 75%, #FFFF00 75%);
	padding-bottom: 3px;
}
p span {
	font-size: 14px;
}
p.center {
	text-align: center;
}

h2 {
	font-size: 40px;
	font-weight: bold;
	line-height: 135%;
}
h2 i {
	color: #D33939;
	font-weight: bold;
}
h3 {
	font-size: 24px;
	font-weight: bold;
	line-height: 135%;
}


h4 {
	font-size: 20px;
	font-weight: bold;
	line-height: 135%;
}
h5 {
	font-size: 20px;
	font-weight: bold;
	line-height: 135%;
}

button, select, input, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}

/*input[type=text] {
  font-size: 16px;
  transform: scale(0.8);
}*/

.pc{
	display: block;
}

.sp{
	display: none;
}
.font_bold{
	font-weight: bold;
}


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

header {
	background-color: #FFFFFF;
	position: fixed;
	box-shadow: 0px 0px 5px rgb(0 0 0 / 10%);
	box-sizing: border-box;
	width: 100%;
	height: 100px;
	min-width: 1280px;
	z-index: 100;
}
header .logo {
	float: left;
	width: 200px;
	margin: 20px 0px;
	padding-left: 10px;
}
header .logo a {
	transition: all .2s ease;
}
header .logo a:hover {
	opacity: 0.6;
}
header nav {
	float: right;
}
header nav li {
	float: left;
	line-height: 20px;
	margin: 40px 1rem 10px 0px;
	padding-right: 1rem;
	border-right: 1px solid #CCCCCC;
}
header nav li:last-child {
	padding-right: 10px;
	border: none;
}
header nav li.nav_last{
	border-right: none;
	padding-right: 0;
}

header nav li a {
	font-weight: bold;
	padding: 5px 0px;
	transition: all .2s ease;
}
header nav li a:hover {
	opacity: 0.6;
}

/* header .zoom {
	float: right;
	margin: 20px 20px 20px 0;
}
header .zoom a {
	font-size: 15px;
	line-height: 40px;
	color: #FFFFFF;
	background-color: #1B92CB;
	display: block;
	padding: 0px 20px;
	transition: all .2s ease;
}
header .zoom a:hover {
	opacity: 0.6;
} */

header .contact,header .contact_b {
	float: right;
}
header .contact a,header .contact_b a {
	font-size: 15px;
	line-height: 40px;
	color: #FFFFFF;
	background-color: #2EAD6D;
	display: block;
	padding: 30px 20px;
	transition: all .2s ease;
}
header .contact_b a{
	background-color: #f29918;
}
header .contact a:hover {
	opacity: 0.6;
}






/* スマホハンバーガーメニュー
/************************************************************/


#sp-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background-color: rgba(0,0,0,0.8);
    /*動き*/
	transition: all 0.3s;
}
#sp-nav li a.contact {
	background-color: #2EAD6D;
	color: #fff;
}
#sp-nav li a.contact_b{
	background-color: #f29918;
	color: #fff;
}
#sp-nav li a.lp {
	background-color: #C7252D;
	color: #fff;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#sp-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#sp-nav.panelactive #sp-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#sp-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	width: 60%;
}

#sp-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#sp-nav li{
	list-style: none;
    text-align: center; 
}

#sp-nav li a{
	text-decoration: none;
	padding:15px;
	display: block;
	text-transform: uppercase;
	font-size: 18px;
	margin-bottom: 20px;
	background-color: #FFFF;
	color: #111;
	font-weight: bold;
	border-radius: 4px;
}
#sp-nav li a.contact {
	background-color: #2EAD6D;
	color: #fff;
}
#sp-nav li a.lp {
	background-color: #C7252D;
	color: #fff;
}
#sp-nav li a.zoom{
	background-color: #1B92CB;
	color: #fff;
}

/*ボタン*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:16px;
	right: 3%;
	cursor: pointer;
    width: 48px;
    height:48px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 13px;
    height: 2px;
	background-color: #111;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 17px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
	background-color: #fff;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 29px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
	background-color: #fff;
}






  /*
zoom icon----------------------------*/
.zoom-ring-wrap {
	position: fixed;
	bottom: 40px;
    right: 0;
	z-index: 999999;
  }
  .zoom-ring {
	position: relative;
	visibility: visible;
	background-color: transparent;
	width: 150px;
	height: 150px;
	cursor: pointer;
	z-index: 11;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transition: visibility .5s;
	left: 0;
	bottom: 0;
	display: block;
  }

  .zoom-ring-circle {
	top: 10px;
	left: 10px;
	position: absolute;
	background-color: transparent;
	border-radius: 100%;
	-webkit-animation: zoom-circle-anim 1.2s infinite ease-in-out;
	animation: zoom-circle-anim 1.2s infinite ease-in-out;
	transition: all .5s;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	opacity: 0.5;
  }
  .zoom-ring-circle-fill {
	top: 25px;
	left: 25px;
	position: absolute;
	border-radius: 100%;
	border: 2px solid transparent;
	-webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
	animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
	transition: all .5s;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
  }
  .zoom-ring-img-circle {
	top: 37px;
	left: 37px;
	position: absolute;
	background-size: 20px;
	border-radius: 100%;
	border: 2px solid transparent;
	-webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
	animation: phonering-alo-circle-img-anim 1.3s infinite ease-in-out;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .zoom-ring-img-circle .pps-btn-img {
	  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
  }
  /* .zoom-ring-img-circle .pps-btn-img img {
	width: 200px;
    height: 200px;
  } */
  
  @-webkit-keyframes zoom-circle-anim {
	0% {
	  -webkit-transform: rotate(0) scale(0.5) skew(1deg);
	  -webkit-opacity: 0.1;
	}
	30% {
	  -webkit-transform: rotate(0) scale(0.7) skew(1deg);
	  -webkit-opacity: 0.5;
	}
	100% {
	  -webkit-transform: rotate(0) scale(1) skew(1deg);
	  -webkit-opacity: 0.1;
	}
  }
  @-webkit-keyframes phonering-alo-circle-fill-anim {
	0% {
	  -webkit-transform: rotate(0) scale(0.7) skew(1deg);
	  opacity: 0.6;
	}
	50% {
	  -webkit-transform: rotate(0) scale(1) skew(1deg);
	  opacity: 0.6;
	}
	100% {
	  -webkit-transform: rotate(0) scale(0.7) skew(1deg);
	  opacity: 0.6;
	}
  }
  @-webkit-keyframes phonering-alo-circle-img-anim {
	0% {
	  -webkit-transform: rotate(0) scale(1) skew(1deg);
	}
	10% {
	  -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
	}
	20% {
	  -webkit-transform: rotate(25deg) scale(1) skew(1deg);
	}
	30% {
	  -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
	}
	40% {
	  -webkit-transform: rotate(25deg) scale(1) skew(1deg);
	}
	50% {
	  -webkit-transform: rotate(0) scale(1) skew(1deg);
	}
	100% {
	  -webkit-transform: rotate(0) scale(1) skew(1deg);
	}
  }




/* フッター
/************************************************************/

footer {
	min-width: 1280px;
	padding: 80px 0px 80px;
}
#footer01{
	margin-bottom: 1.5rem;
}

#footer01 .logomarks{
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
#footer01 .logomarks p:nth-child(n+1) {
 margin-left: 1rem
}

footer .copyright {
	text-align: center;
	letter-spacing: 0.05em;
}



/* FVエリア
/************************************************************/


#area-fv {
	min-width: 1280px;
	padding-top: 80px;
	box-sizing: border-box;
}
#area-fv .bg {
	background-image: url(../img/fv-bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	height: 100%;
	width: 100%;
}
#area-fv .copy {
	padding-left: 5%;
	padding-right: 56%;
}
#area-fv-sp {
	padding-top: 80px;
}

#area-fv-sp  img {
	height: auto;
	width: 100%;
}

#area-fv-sp .jmr {
	margin-top: -40px;
}


/* アクションユニット
/************************************************************/


.action {
	margin: 140px 0px 0px;
	text-align: center;
}
.action .contact {
	float: left;
	width: 49%;
}
.action .contact_b {
	float: right;
	width: 49%;
}
.action .contact a,.action .contact_b a {
	position: relative;
	background-color: #2EAD6D;
	display: block;
	border-bottom: 3px solid rgba(0, 0, 0, 0.20);
	width: 100%;
	border-radius: 8px;
    transition: all .2s ease;
	text-align: center;
	padding: 30px 0px 30px;
}
.action .contact_b a {
	background-color: #f29918;
	border-bottom: 3px solid rgba(69, 56, 56, 0.2);
}
.action .contact a:hover,.action .contact_b a:hover {
	opacity: 0.6;
}
.action p .txt_ok{
font-size: 20px;
display: block;
}

/* .action .zoom {
	float: right;
	width: 49%;
}
.action .zoom a {
	background-color: #1B92CB;
	display: block;
	border-bottom: 3px solid rgba(0, 0, 0, 0.20);
	width: 100%;
	border-radius: 8px;
    transition: all .2s ease;
	text-align: center;
	padding: 30px 0px;
}
.action .zoom a:hover {
	opacity: 0.6;
} */

.action p {
	font-weight: bold;
	margin: 25px 0px;
	line-height: 150%;	
}
.action p .txt_line::before{
	margin-right: 10px;
	content:'＼';
}
.action p .txt_line::after{
	margin-left: 10px;
	content:'／';
}
.action p i {
    color: #111;
}
.action .btn_txt_a{
	position: absolute;
	bottom: 90px;
	left: 55px;
}
.action .btn_txt_b{
	position: absolute;
	bottom: 90px;
	right: 55px;
}

.action .lp-btn a {
	font-size: 15px;
	line-height: 49px;
	height: 48px;
	color: #FFFFFF;
	background-color: #0066CC;
	text-align: center;
	display: inline-block;
	width: 300px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.20);
	border-radius: 30px;
    transition: all .2s ease;
}
.action .lp-btn a:hover {
	opacity: 0.6;
}
.action .tel{
	padding-top: 2rem;
}


/* 光らせるためのstyle */
.shine{
  position: relative;
  overflow: hidden;
}
/* 光の疑似要素 */
.shine::before{
  content: "";
  animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #fff;
  width: 140%;
  height: 100%;
  transform: skewX(-45deg);
  top: 0;
  left: -160%;
  opacity: 0.5;
  position: absolute;
}
/* 光の動き */
@keyframes shine{
  0% {
    left: -160%;
    opacity: 0;
  }
  70% {
    left: -160%;
    opacity: 0.5;
  }
  71% {
    left: -160%;
    opacity: 0.8;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}



/* 共通要素
/************************************************************/

.container{
	position:relative;
	max-width:1000px;
    margin: 0 auto;
}
.container::after {
	content: "";
	display: block;
	clear: both;
}
.hide-pc {
	display: none;
}

.head {
	text-align: center;
	margin-bottom: 40px;
}

.border-top {
	margin-top: 100px;
	padding-top: 100px;
	border-top: 1px solid #ddd;
}
.img-center {
	margin: 60px 100px;
}


.side-link {
	position: fixed;
	right: 0px;
	bottom: 80px;
	z-index: 10;
}
.side-link a {
	background-color: #C7252D;
	transition: all .2s ease;
	display: block;
}
.side-link a:hover {
	background-color: #ca5e63;
}


.main-head {
	background-size: cover;
	text-align: center;
	padding: 100px 0px;
	background-position: center center;
	margin-bottom: 100px;
}
.main-head .nth {
	font-family: ZonaPro;
	font-size: 32px;
	color: #FFFFFF;
	letter-spacing: 0.08em;
	display: inline-block;
	height: 74px;
	width: 74px;
	border: 3px solid #FFFFFF;
	border-radius: 80px;
	line-height: 75px;
	text-align: center;
	margin-bottom: 15px;
}
.main-head .copy {
	font-size: 32px;
	font-weight: bold;
	color: #FFFFFF;
}


.purchase-sp {
	width: 100%;
	position: fixed;
	bottom: -60px;
	z-index: 10;
	box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
	display: none;
}
.purchase-sp a {
	background-color: #2EAD6D;
	line-height: 60px;
	color: #FFFFFF;
	display: block;
	font-size: 18px;
	text-align: center;
	transition: all .2s ease;
	font-weight: bold;
}






/* 1stエリア
/************************************************************/

#area-1st {
	min-width: 1280px;
}



#area-1st .selling-point {
	margin: 100px 0px 100px;
}
#area-1st .selling-point table {
	float: left;
	width: 31%;
	margin-right: 3.5%;
}
#area-1st .selling-point table:last-child {
	margin-right: 0%;
}
#area-1st .selling-point th {
	font-size: 24px;
	color: #FFFFFF;
	background-color: #D43A3A;
	height: 90px;
	text-align: center;
	vertical-align: middle;
}
#area-1st .selling-point th span {
	font-size: 15px;
	display: block;
}
#area-1st .selling-point td {
	font-size: 32px;
	font-weight: bold;
	background-color: #ffffff;
	height: 170px;
	text-align: center;
	vertical-align: middle;
	border-right: 5px solid #D43A3A;
	border-left: 5px solid #D43A3A;
	border-bottom: 5px solid #D43A3A;
}
#area-1st .selling-point td span {
	font-family: Oswald;
	font-size: 88px;
	margin-right: 5px;
	font-weight: normal;	
	line-height: 100%;
}



/* 2ndエリア
/************************************************************/

#area-2nd {
	min-width: 1280px;
	margin-top: 100px;
}
#area-2nd .main-head {
	background-image: url(../img/main-head-bg01.jpg);
}
#area-2nd .work-list {
	background-color: #111;
	margin: 40px 100px;
	padding: 30px 30px 20px;
}
#area-2nd .work-list h3 {
	color: #FFFFFF;
	text-align: center;
	margin-bottom: 30px;
}
#area-2nd .work-list h3 span {
	color: #D33939;
	background-color: #fff981;
	display: inline;
	padding: 8px 10px;
	margin-left: 8px;
}
#area-2nd .work-list li {
	background-color: #FFFFFF;
	float: left;
	width: 32.4%;
	margin-right: 1.4%;
	margin-bottom: 1.4%;
	text-align: center;
	height: 60px;
	position: relative;
}
#area-2nd .work-list li:nth-child(3n) {
	margin-right: 0%;
}
#area-2nd .work-list li span {
	/* color: #2EAD6D; */
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 100%;
	text-align: center;
	font-weight: bold;
	line-height: 125%;
}
#area-2nd .work-list.ninsho {
	background-color: #2EAD6D;
	margin-top: 60px;
}
#area-2nd .work-list.customer {
	background-color: #1B92CB;
}
/* #area-2nd .work-list.customer li span {
	color: #1B92CB;
} */
#area-2nd .attention {
	margin-top: 40px;
	text-align: center;
}
#area-2nd .attention:before {
	content: '';
	display: inline-block;
	width: 80px;
	height: 40px;
	background-image: url(../img/arrow-black.png);
	background-size: contain;
}
#area-2nd .attention p {
	font-size: 56px;
	line-height: 175%;
}
#area-2nd .attention p em {
	font-weight: bold;
    background-image: linear-gradient(to right, #E68E1A, #D03333);
    background-repeat: no-repeat;
    background-size: 100% 8%;
    background-position: bottom;
	padding-bottom: 20px;
}
#area-2nd .attention p span {
	font-size: 24px;
	display: block;
	font-weight: bold;
	line-height: 24px;
	padding-top: 20px;
}

#area-2nd .staff {
	background-image: url(../img/red-bg.jpg);
	padding: 80px 0px 60px;
	background-size: cover;
	background-position: center center;
	margin-bottom: 40px;
}
#area-2nd .staff.consultant {
	margin-top: 80px;
}
#area-2nd .staff.support {
	margin-bottom: 100px;
}
#area-2nd .staff h3 {
	text-align: center;
	margin-bottom: 40px;
	color: #FFFFFF;
	font-size: 20px;
}
#area-2nd .staff h3 span {
	font-family: ZonaPro;
	font-size: 48px;
	letter-spacing: 0.1em;
	display: block;
	margin-bottom: 20px;
}
#area-2nd .staff .etc {
	color: #FFFFFF;
	margin-top: 20px;
	text-align: center;
}


#area-2nd .staff .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  position: relative;
}

#area-2nd .staff .img {
}
#area-2nd .staff .profile {
	background-color: #FFFFFF;
	padding: 20px 20px 15px;
	height: 160px;
}
#area-2nd .staff .profile .name {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #ddd;
}
#area-2nd .staff .profile .name i {
	font-size: 20px;
	font-weight: bold;
	display: block;
}
#area-2nd .staff .profile p {
	font-size: 14px;
	line-height: 175%;
}






/* swiperカスタマイズ */

.swiper {
  padding-bottom: 70px;
}
.swiper-button-prev {
  left: -50px;
}
.swiper-button-next {
  right: -50px;
}
.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-color: #fff;
}
.swiper-horizontal &gt; .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px 0px;
}
.swiper-pagination-bullet {
  background-color: #fff;
  height: 12px;
  width: 12px;
}


















#area-2nd .schedule {
	font-size: 20px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #D43A3A;
	padding: 10px 20px;
	display: block;
	width: 440px;
	margin: 0px auto 20px;
	text-align: center;
}
#area-2nd .schedule span {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin: 0px 10px;
	position: relative;
	top: -6px;
}

/* 3rdエリア
/************************************************************/

#area-3rd {
	min-width: 1280px;
	margin-top: 100px;
}
#area-3rd .main-head {
	background-image: url(../img/main-head-bg02.jpg);
}

#area-3rd .achievement {
	margin: 60px 100px 0px;
}
#area-3rd .achievement .total {
	background-color: #FFFFFF;
	padding: 40px 0px 20px;
	width: 480px;
	border-radius: 20px;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
	margin: 0px auto 60px;
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	position: relative;
}
#area-3rd .achievement .total::after {
	content: '';
    display: block;
    width: 60px;
    height: 80px;
    background-image: url(../img/arrow-fukidashi.png);
    background-size: contain;
	position: absolute;
	bottom: -80px;
	left: 50%;
    transform: translateX(-50%);
}

#area-3rd .achievement .total span {
	display: block;
	color: #D43A3A;
	font-size: 56px;
	margin-top: -20px;
}
#area-3rd .achievement .total span i {
	font-family: Oswald;
	font-size: 120px;
	margin-right: 10px;
	position: relative;
	bottom: -4px;
}
#area-3rd .achievement .list {
	background-color: #eee;
	padding: 30px 30px 20px;
}
#area-3rd .achievement .list li {
	line-height: 60px;
	background-color: #FFFFFF;
	float: left;
	width: 32.4%;
	margin-right: 1.4%;
	margin-bottom: 1.4%;
	box-sizing: border-box;
	padding: 0 15px;
	font-weight: bold;
	position: relative;
}
#area-3rd .achievement .list li:nth-child(3n) {
    margin-right: 0%;
}
#area-3rd .achievement .list li span {
	color: #D43A3A;
	position: absolute;
	right: 15px;
}
#area-3rd .achievement .list li span i {
	font-family: Oswald;
	font-size: 24px;
	margin-right: 4px;
	letter-spacing: 0.04em;
	position: relative;
	bottom: -1px;
}


#area-3rd .team-structure {
	background-image: url(../img/red-bg.jpg);
	padding: 60px 0px 80px;
	background-size: cover;
	background-position: center center;
	margin-top: 100px;
	margin-bottom: 100px;
	text-align: center;
}
#area-3rd .team-structure h3 {
	line-height: 60px;
	color: #FFFFFF;
	background-color: #222;
	margin: -90px auto 60px;
	width: 320px;
	display: block;
	text-align: center;
}



/* 4thエリア
/************************************************************/

#area-4th {
	min-width: 1280px;
	margin-top: 100px;
}
#area-4th .main-head {
	background-image: url(../img/main-head-bg03.jpg);
}


/* お客様の声 */

#area-4th .voice {
	background-color: #eee;
	padding: 60px 60px 60px;
	margin-top: 80px;
	margin-bottom: 100px;
}
#area-4th .voice h3 {
	line-height: 60px;
	color: #FFFFFF;
	background-color: #222;
	margin: -90px auto 80px;
	width: 380px;
	display: block;
	text-align: center;
}
#area-4th .voice .fukidashi {
	background-color: #FFFFFF;
	padding: 0px;
	border-radius: 10px;
	width: 56%;
	box-sizing: border-box;
	position: relative;
	height: 70px;
}

#area-4th .voice .fukidashi span {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	box-sizing: border-box;
	line-height: 135%;
}
#area-4th .voice .fukidashi i {
	color: #D33939;
	font-weight: bold;
}

#area-4th .voice .img {
	margin-top: -50px;
	
}

#area-4th .voice .left .fukidashi {
	float: left;
	margin-left: 25px;
}
#area-4th .voice .left .img {
	float: left;
}
#area-4th .voice .right .fukidashi {
	float: right;
	margin-right: 25px;
}
#area-4th .voice .right .img {
	float: right;
}
#area-4th .voice .left .fukidashi::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
	margin-top: -15px;
	border: 15px solid transparent;
	border-right: 15px solid #fff;
}
#area-4th .voice .right .fukidashi::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -15px;
	border: 15px solid transparent;
	border-left: 15px solid #fff;
}



/* 料金プラン */

#area-4th .price {
	background-image: url(../img/red-bg.jpg);
	padding: 100px 0px 80px;
	background-size: cover;
	background-position: center center;
}
#area-4th .price .head {
	color: #FFFFFF;
}
#area-4th .price .container {
	padding: 0 100px;
	box-sizing: border-box;
}
#area-4th .price .box {
	background-color: #FFFFFF;
	padding: 25px;
	margin-bottom: 2%;
	box-sizing: border-box;
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	line-height: 175%;
}
#area-4th .price .box span {
	color: #D33939;
}
#area-4th .price .box span i {
	font-family: Oswald;
	font-size: 64px;
	margin-left: 20px;
	margin-right: 5px;
	position: relative;
	bottom: -2px;
	line-height: 64px;
}


#area-4th .price .box.left {
	float: left;
	width: 49%;
}
#area-4th .price .box.right {
	float: right;
	width: 49%;
}
#area-4th .price .support {
	margin-top: 40px;
}
#area-4th .price .support h3 {
	font-size: 18px;
	line-height: 48px;
	color: #FFFFFF;
	background-color: #e6b16a;
	text-align: center;
	margin-bottom: 30px;
}
#area-4th .price .support li {
	font-size: 20px;
	font-weight: bold;
	color: #FFFFFF;
	float: left;
	margin-right: 25px;
	margin-bottom: 20px;
}
#area-4th .price .support li::before {
	content: "";
	background:url(../img/icon-check.png);
	background-size: cover;
	background-position: center center;
	width: 24px;
	height: 24px;
	margin-right: 8px;
	display: inline-block;
	position: relative;
	bottom: -4px;
}

/* ISMSとPマークの違い */
#difference{
	padding-top: 100px;
}
#difference .difference_tb{
	width: 100%;
	border-collapse: collapse;
}
#difference .difference_tb th,#difference .difference_tb td{
	padding: 1.3rem;
	border: solid 1px #ddd;
	text-align:center;
	box-sizing:border-box;
	vertical-align: middle;
}
#difference .difference_tb .bg_th01,#difference .difference_tb .bg_th02{
	padding: 1.8rem 1rem;
	font-size: 1.5rem;
	color: #fff;
	font-weight: bold;
}
#difference .difference_tb th{
	font-weight: bold;
	background-color: #F8F8F8;
}
#difference .difference_tb .bg_th00{
	background-color: #1A1A1A;
	width: 20%;
}
#difference .difference_tb .bg_th01{
	background-color: #1B92CB;
	width: 40%;
}
#difference .difference_tb .bg_th02{
	background-color: #2EAD6D;
	width: 40%;
}
#difference .difference_tb .bg_tb01,
#difference .difference_tb .bg_tb02{
	padding: 1.3rem;
	text-align: left;
	background-color: #fff;
}
#difference .font_bold{
	color: #D33939;
}

/* お客様インタビュー */

#area-4th .interview {
	padding-top: 100px;
}
#area-4th .interview .nav {
	text-align: center;
	margin: 60px 0 80px;
}
#area-4th .interview .nav li {
	line-height: 56px;
	color: #D43A3A;
	display: inline-block;
	border: 2px solid #D43A3A;
	cursor: pointer;
	width: 300px;
	margin: 0px 5px 14px;
	font-weight: bold;
	transition: all .2s ease;
	text-align: center;
	box-sizing: border-box;
}

#area-4th .interview .nav li.select {
	color: #fff;
	background-color: #D43A3A;
}

#area-4th .interview .nav li:hover {
	opacity: 0.6;
}
#area-4th .interview .nav li.select:hover {
	opacity: 1.0;
}

#area-4th .interview .pagination {
	text-align: center;
	margin-top: 60px;
}
#area-4th .interview .pagination li {
	line-height: 40px;
	width: 40px;
	display: inline-block;
	cursor: pointer;
	margin: 0px 10px;
	font-weight: bold;
	border-radius: 22px;
	text-align: center;
	border: 2px solid #D43A3A;
	color: #D43A3A;
	transition: all .2s ease;
}


#area-4th .interview .pagination li.select {
	color: #fff;
	background-color: #D43A3A;
}
#area-4th .interview .pagination li:hover {
	opacity: 0.6;
}
#area-4th .interview .pagination li.select:hover  {
	opacity: 1.0;
}



#area-4th .interview-head {
	background-color: #eee;
	position: relative;
	margin-bottom: 80px;
}
#area-4th .interview-head .img {
	width: 600px;
}
#area-4th .interview-head .information {
	position: absolute;
	right: 0px;
	top: 100px;
	height: 300px;
	width: 420px;
}



#area-4th .interview-head .information .name {
	font-size: 22px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #222;
	padding: 20px;
	text-align: center;
}
#area-4th .interview-head .information .business {
	font-size: 20px;
	margin-left: 70px;
	margin-top: 40px;
	font-weight: bold;
}
#area-4th .interview-head .information .area {
	margin-left: 70px;
	margin-top: 20px;
	line-height: 40px;
	background-color: #FFFFFF;
	display: inline-block;
	padding: 0px 30px;
	border: 1px solid #CCCCCC;
	border-radius: 22px;
}

#area-4th .interview .attention {
	text-align: center;
	margin-bottom: 80px;
}
#area-4th .interview .attention p {
	font-size: 32px;
}
#area-4th .interview .attention em {
    font-weight: bold;
    background-image: linear-gradient(to right, #E68E1A, #D03333);
    background-repeat: no-repeat;
    background-size: 100% 8%;
    background-position: bottom;
    padding-bottom: 12px;
}

#area-4th .interview section {
	padding-left: 100px;
	position: relative;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #ddd;
}
#area-4th .interview section .nth {
	font-family: ZonaPro;
	letter-spacing: 0.08em;
	font-size: 32px;
	position: absolute;
	left: 0px;
	top: 0px;
	color: #D43A3A;
}
#area-4th .interview section h4 {
	color: #D43A3A;
	margin-bottom: 10px;
}

/* タブ展開 */
#area-4th .interview .tab_main {
  display: none;
  transition-duration: 0.3s;
}
#area-4th .interview .tab_main.is_show {
  display: block;
}


/* 会社概要 */

.company {
	margin: 60px 100px 0px;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
}
.company dl {
	display: table;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	width: 100%;
	box-sizing: border-box;
}

.company dt {
	display: table-cell;
	padding: 30px 30px;
	border-right: 1px solid #ddd;
	width: 28%;
	background-color: #F8F8F8;
	vertical-align: middle;
}
.company dd {
	display: table-cell;
	padding: 30px 30px;
}
.company dd a {
	color: #3366CC;
	margin-left: 10px;
	transition: all .2s ease;
}
.company dd a:hover {
	color: #3366CC;
	margin-left: 10px;
	opacity: 0.6;
}


</pre></body></html>