@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;900&family=Noto+Serif+JP:wght@900&display=swap');

:root {
	--page-portal-color: #008542;/*var(--page-portal-color)*//*#589331*/
    --page-1-color: #D56227;/*var(--page-1-color)*/
	--page-2-color: #A1851A;/*var(--page-2-color)*/
	--page-3-color: #2487b4;/*var(--page-3-color)*/
}

.textttttttt {
	background: #008542;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.navarea-wrap{
	background: var(--page-portal-color);
	width: 100%;
	box-shadow: 0 0 7px rgba(0,0,0,0.6);
}

.navarea {
	position: relative;
}

.img-main{
	top: 0;
    left: 0;
}

.img-main-back{
	background: #333;
}









/* サブエリア　タイトル */

.sub-area {
	position: relative;
	padding-bottom: 2em;
	overflow: hidden;
}

.sub-area::before {
	background-color: rgba(88,147,49,0.20);
    /* Curved corners */
    border-bottom-left-radius: 90% 60%;
    border-bottom-right-radius: 90% 60%;
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	height: 140px;
	margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
}

.sub-title {
	position: relative;
	display: flex;
	justify-content: center;
	background: var(--page-portal-color);
}

.sub-title-text {
	display: inline;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:700;
	font-size: 1em;
	color: #fff;
	background: #008542;
	margin-top: -20px;
	padding: 5px 2em 10px;
	border-radius: 20px 20px 0 0;
	letter-spacing: .1em;
}

.sub .summary {
	font-size: 1em;
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:400;
	padding-top: 10px;
	padding-bottom: 30px;
}

.sub .summary .br::after {
	content: "\A" ;
	white-space: pre ;
}

.sub .summary .text-color {
	color: #008542;
	font-weight: 700;
}



/*================カードここから================*/

.sub h2 {
	font-size: 1.5em;
	font-size: clamp(1.2rem, 1.5vw, 1.5rem);
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:700;
	padding: 14px 0 5px;
}

.sub .card-wrap{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
	flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
	padding-top: 30px;
}

.sub .card-outer {
	display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
}

.sub .card-02 .card-title {
	border-top: 2px solid var(--page-2-color);
}

.sub .card-03 .card-title {
	border-top: 2px solid var(--page-3-color);
}

.sub .card-box {
	width: 100%;
	height: auto;
	border-radius: 2px 2px 8px 8px;
	overflow: hidden;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.2);
	background: #f7f7f5;
}

.sub .card-02 .card_imgframe{
	position: relative;
	width: 100%;
    height: auto;
	padding-top: 35%;
    box-sizing: border-box;
    background-size: cover;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
@media screen and (max-width:991px){
.sub .card-02 .card_imgframe{
	padding-top: 20%;
}
}

.sub .card-02 .card_imgframe:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.20);
}

.sub .card-03 .card_imgframe{
	position: relative;
	width: 100%;
    height: auto;
	padding-top: 29%;
    box-sizing: border-box;
    background-size: cover;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.sub .card-03 .card_imgframe:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.20);
}

.sub .img-02{
	background-image: url("../images/home/img-sub-02.jpg");
}

.sub .img-03{
	background-image: url("../images/home/img-sub-03.jpg");
}

.sub .card_textbox{
    width: 100%;
    height: auto;
    padding: 0 30px 20px;
    box-sizing: border-box;
}

.sub .card-box .card-overlay-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 1110;
}

.sub .img-02 .icon-02, .sub .img-03 .icon-03 {
    font-size: 4em;
	opacity: .9;
	color: #fff;
}

.sub .card-text {
	padding-top: 10px;
	font-size: 0.9em;
	color: #555;
}

/*カード全体をリンク*/
.sub .card-outer .card-link{
    display: block;
    position: absolute;
    top: 0;
    left: 15px;
	width: calc(100% - 30px);
    height: 100%;
}

.sub .card-outer .card-link:hover {/*カードにポインタ時*/
  background: rgba(255,255,255,0.2);
}

.card-02 .card_imgframe .card-link:hover {/*カードにポインタ時*/
  opacity: 0.3;
}

/*      ダミーボタンの色      */
/*調査受託者の方へ*/
.card-02 .btn-dammy-02 {
	background-color: var(--page-2-color);
	text-align: center;
	color: #fff;
	padding: 2px 0;
	font-size: 0.8rem;
}

/*データを利用される方へ*/
.card-03 .btn-dammy-03 {
	background-color: var(--page-3-color);
	text-align: center;
	color: #fff;
	padding: 5px 0;
	font-size: 1.3rem;
}

/*================カードここまで================*/










/* ==================== アイコンフォント ==================== */

@font-face {
  font-family: 'icon-02';
  src:  url('../images/home/fonts/icon-02.eot?avtdfj');
  src:  url('../images/home/fonts/icon-02.eot?avtdfj#iefix') format('embedded-opentype'),
    url('../images/home/fonts/icon-02.ttf?avtdfj') format('truetype'),
    url('../images/home/fonts/icon-02.woff?avtdfj') format('woff'),
    url('../images/home/fonts/icon-02.svg?avtdfj#icon-02') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-02"], [class*=" icon-02"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icon-02' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-02:before {
  content: "\e901";
}

@font-face {
  font-family: 'icon-03';
  src:  url('../images/home/fonts/icon-03.eot?70dtzq');
  src:  url('../images/home/fonts/icon-03.eot?70dtzq#iefix') format('embedded-opentype'),
    url('../images/home/fonts/icon-03.ttf?70dtzq') format('truetype'),
    url('../images/home/fonts/icon-03.woff?70dtzq') format('woff'),
    url('../images/home/fonts/icon-03.svg?70dtzq#icon-03') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-03"], [class*=" icon-03"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icon-03' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-03:before {
  content: "\e902";
}









/* ==================== リンクエリア ==================== */

.link-area h2 {
	font-size: 1.2rem;
	color: #fafafa;
	background: var(--page-portal-color);
	padding: 5px 0;
	border-radius: 3px;
}

.link-area .media-body {
	height: 130px;
}

.link-area .media {
	background: #f7f7f5;
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.link-area .media img {
	width: 100px;
	height: auto;
}

.link-area .media-body a {
	color: #333;
	font-size: 1.3rem;
	font-weight: bold;
	position: relative;
	text-decoration: none;
	padding-bottom: 5px;
}

.link-area .media-body a:hover {
	color: var(--page-portal-color);
}

.link-area .media-body a:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 3px;
	background: var(--page-portal-color);
	transform: scale(0, 1);
	transition: 0.4s;
}

.link-area .media-body a:hover:before {
	transform: scale(1);
}











/*================================================
 *  タブレット向けデザイン
 ================================================*/
@media screen and (max-width:991px){
.wrap {
	display: block;
	flex-wrap: nowrap;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
}

.box {
	display:block;
}
}
/*================================================
 *  スマートフォン向けデザイン
 ================================================*/

@media screen and (max-width:767px){
	
.sub-area::before {
	height: 180px;
}
	
.sub .summary {
	font-size: 0.9em;
}
	
.sub .summary .br::after {
	content: "\A" ;
	white-space: normal ;
}

.link-area .media-body {
	height: 80px;
}

.link-area .media img {
	width: 50px;
	height: auto;
}
}
