/*--------------------------------------------------------------
Theme Name: taniplate HP
	Author: S.Tanio
	Author URI:
--------------------------------------------------------------*/
@charset "UTF-8";
/*--------------------------------------------------------------
必須項目
--------------------------------------------------------------*/
/* フォント */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

/* カスタムプロパティなど定義 */
@import url("./root.css");

/*--------------------------------------------------------------
オプションの読み込み
--------------------------------------------------------------*/
@import url("./hamburger-side.css");/* ハンバーガーメニュー */
/*@import url("./contact-form-7.css");*//* Contact Form 7カスタマイズ */
@import url("./contact-form.css");/* MW WP Form カスタマイズ */
/*--------------------------------------------------------------
メモ
<a>タグは個別に設定しない限り、全体設定にて"block"要素にしている。
フォントサイズはremで指定する。1rem=16rem
レスポンシブによる値の切り替えはroot.cssに記述する。
文字色は不透明で、背景色だけ透過(透明)させたい時もこれ

background-color: transparent;
または
background-color:rgba(0,0,0,0);
--------------------------------------------------------------*/

/*--------------------------------------------------------------
各デフォルト設定
--------------------------------------------------------------*/
/* htmlタグ(後で設定されたもので上書きされる)
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	font-size: 62.5%;
	/*scroll-behavior: smooth;*/
}
/* bodyタグ(後で設定されたもので上書きされる)
--------------------------------------------------------------*/
body {
	color: #000000;		/* 文字色 */
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	background:#FFFFFF;	/* 背景色 */
	font-size:1.6rem;	/* 16px*/
	line-height: 2;		/* 行間 */
	font-weight: 400;	/* フォントの太さ */
	margin:0;
	padding:0;
}
/* hタグの設定(後で設定されたもので上書きされる)
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 1rem;
	letter-spacing: 0.1em; /* 水平方向字間スペース */
	font-weight: normal;
}

/* 文字サイズ、行間、水平方向字間スペース
rem:ルート要素のフォントサイズを基準とした相対的な値
--------------------------------------------------------------*/
h1 { font-size: 3.2rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.0rem;line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 2.8rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

@media (min-width: 550px) {
	h1 { font-size: 3.0rem; }
	/*h2 { font-size: 2.8rem; }*/
	h3 { font-size: 2.5rem; }
	h4 { font-size: 2.0rem; }
	h5 { font-size: 1.8rem; }
	h6 { font-size: 1.5rem; }
}
h1 {
	font-size: 36px;/* IE8以下とAndroid4.3以下用フォールバック */
	font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));/* 24px~36pxで可変*/
	line-height: 1.3;
}
.h2 {
	font-size: 24px;/* IE8以下とAndroid4.3以下用フォールバック */
	font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));/* 20px~24pxで可変*/
	line-height: 1.3;
}
/* @media スタイルシートを適用する条件 */
@media (min-width: 1200px) {            /* 1200px以上*/
    h1 {
        font-size: 3.6rem;              /* 36px */
    }
    .h2 {
        font-size: 2.4rem;              /* 24px */
    }
}
@media screen and (max-width: 640px) {  /* 640px以下*/
	body{
		line-height: 2;
	}
	h1{
		font-size: 2.4rem;              /* 24px*/
	}
	.h2 {
		font-size: 2rem;                /* 20px*/
	}
}

/* 基本画像設定 */
img {
	max-width:100%;                     /* 最大幅 */
	height: auto;                       /* 高さ自動 */
	z-index:2;
}
/* 線
--------------------------------------------------------------*/
hr {
	border-width: 0;
	border-top: 1px solid #E1E1E1; 
}
@media screen and (max-width: 960px){
	hr {
		margin-top: 0.5rem;
		margin-bottom: 0.8rem;
		border-width: 0;
		border-top: 1px solid #E1E1E1; 
	}
}
.dotted-line {
	border-bottom: 2px dotted #000000;
}
.dotted-line-w {
	border-bottom: 2px dotted #FFFFFF;
}
/*.line-black line-xx のクラスは削除しておく */

/* このクラスを設定するとアンダーライン表示 */
.under-line {
	border-bottom: 2px solid #19a724;
}
/* このクラスを設定するとアンダーライン表示 */
.under-line-white {
	border-bottom: 2px solid white;
}

/* aタグ(基本設定)
--------------------------------------------------------------*/
a {
	color: #0080FF;
	text-decoration-line: none;
}
a:hover {
	color: #0FA0CE;
}
a,
a:visited,
a:hover,
a:active {
	color: inherit;
}

/*--------------------------------------------------------------
レスポンシブ設定
--------------------------------------------------------------*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
/*.pc { display: block !important; }*/      	/* PC表示 */
/*.pc-tablet { display: none !important; }*/	/* PC-タブレット表示 */
.tablet-sp { display: none !important; }
.sp { display: none !important; }				/* スマホ表示 */

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media screen and (max-width: 960px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}
@media screen and (max-width: 768px) {
	.pc-tablet { display: none !important; }
    .tablet-sp { display: block !important; }
}
.advantage-sp { display: none !important; }
@media screen and (max-width: 1180px) {
	.advantage-pc { display: none !important; }
	.advantage-sp { display: block !important; }
}
@media screen and (max-width: 960px){
	.sp-hidden {
		display: none;
	}
}
@media screen and (min-width: 960px){
	.pc-hidden {
		display: none;
	}
}
@media screen and (min-width: 768px){
	.sp-only {
		display: none;
	}
}
@media screen and (max-width: 1080px){
	.access-hidden {
		display: none;
	}
}

/*--------------------------------------------------------------
ヘッダー用
--------------------------------------------------------------*/
header {
	/* 追従ヘッダーメニュー用 追従させない場合は全部無効にする */
	/* 基本変更しない ここから */
	position: fixed;
	width: 100%;
	top: 0;
	left:0;
	height: auto;
	z-index: 9999;
	/* 基本変更しない ここまで */
	/* 常時上に表示しない場合は全部無効にする ここまで */
	background-color: white;
}

/* ヘッダーの一番上のテキストエリア */
.header-text {
	position: absolute;
	background-color: transparent;
}
/* ヘッダーロゴエリア */
.header-logo {
	display: block;
	width: var(--header-left-width);
	height: auto;/*90px;*/
	padding: 10px;
	/*margin-top: 30px;*/
	z-index: 1;
}
/* ヘッダーロゴ画像サイズ */
.header-logo img{
	height: 50px;
	object-fit: cover;
}

/* スマホ表示 */
@media screen and (max-width: 768px ) {
	.header-logo {
		height: auto;
		margin-top: auto;
		z-index: 1;
	}
	.header-logo img{
		width: 180px;
		height: auto;
		padding-top: 10px;
	}
}
/*
ヘッダー構成について
	header
		id="header-wrapper"
			id="header-top"
			id="header-main"
				id="header-content"
					id="header-center"
					id="header-right"
					id="header-left"
	みたいな感じになっている
*/

/* ヘッダーサイズ設定 */
#header-wrapper {
	position: relative;
	/*display: var(--display-flex-block);*//* これをすると問い合わせボタンが左によってくる */
	max-width: var(--width-header-area);
	height: var(--height-header-area);
	margin: 0 auto;
	/*padding: 0px 50px 0px 50px;*//* 上右下左 */
	padding: 0px 0px 0px 50px;/* 上右下左 */
}
@media screen and (max-width: 768px ) {
	#header-wrapper {
		padding: 0;
	}
}
#header-top {
	width: 100%;
	height: var(--height-header-top-area);
	float: left;
	padding-right: 0px;
}
@media screen and (max-width: 1349px ) {
	#header-top {
		padding-right: 0px;
	}
}
.header-top-text {
	float: left;
	text-align: left;
}
/* ヘッダートップ電話番号 */
.header-top-tel {
	float: right;
	width: 175px;
	padding: 0 20px 0 45px;
	color: white;
	background-color: black;
}
.header-top-tel::before{
	position: absolute;
	content: url(../img/icon-iphone-white-small.png);/* iPhoneアイコン(白) */
	margin-left: -25px;
	margin-top: 2px;
	height: 30px;
}
#header-main {
	width: 100%;
	height: var(--height-header-main-area);
	float: left;
}
#header-content {
	height: var(--height-header-main-area);
	margin-right: var(--header-right-width);/* 右側のサイズ */
	margin-left: var(--header-left-width);/* 左側のサイズ */
	/*background-color: #EEEEEE;*/
}
#header-center {
	display: block;
	height: var(--height-header-main-area);
}
#header-left {
	float:  var(--float-header-left-none);/*left;*/
	width: var(--header-left-width);
	height: var(--height-header-main-area);
	margin-left: var(--margin-left-header-left);
	/*background-color: #F60;*/
}
#header-right {
	float: var(--float-header-left-none);/*left;*/
	width: var(--header-right-width);
	height: var(--height-header-main-area);
	margin-left:  calc(-1 * var(--header-right-width));
	padding-top: 0px;
	/*background-color: #0C3;*/
}
/* ヘッダーサイズ設定(2段目) */
#header-wrapper2 {
	/*position: relative;*/
	height: var(--height-header-area2);
	max-width: var(--width-main-wrap);
	margin: 0 auto;
	/*background-color: #ECF8FF;*/
}
#header-main2 {
	max-width: 1080px;
	height: auto;/*var(--height-header-area2);*/
	margin: 0 auto;
}
#header-content2 {
	/*background-color: #EEEEEE;*/
	height: auto;/*var(--height-header-area2);*/
	margin: 0 auto;
}
#header-100vw {
	width: 100%;
	height: auto;
	background-color: #ECF8FF;
}

/* 2段メニューを使用しない場合はnoneにしておく */
#header-wrapper2 {
	display: none;
}
/* 左上のロゴの上のテキスト表示・非表示に使う */
.header-text{
	display: none;
}

/* レスポンシブ設定 */
/* ヘッダーメニュー */
@media screen and (max-width: 1350px ) {
	.global-menu {
		display: none;/*指定幅以下では使用しない */
	}
}

/*--------------------------------------------------------------
ヘッダー用お問い合わせボタン設定
--------------------------------------------------------------*/
.header-contact-btn {
	display: block;
	width: 175px;/*62px;*/ /*var(--header-right-width);*/
	height: var(--height-header-main-area);/*50px;*/
	font-size: 16px;
	/* 右寄せ */
	margin-left: auto;	margin-right: 0;
	padding-top: 0px;
	padding-left: 0px;
	line-height: 50px;
	/*vertical-align: middle;*/
	color: white;
	background-color: var(--contact-button-color);/*#4169e1;*//*#EA9720;*/
	border-radius: 0px;
	z-index: 99;
}
.header-contact-btn:hover {
	opacity: 0.8;
}
.header-contact-btn::before{
	position: absolute;
	/*content: url(../img/icon-mail.png);*//* メール用アイコン */
	content: url(../img/icon-mail.png);/* iPhoneアイコン(白) */
	margin-left: 75px;
	margin-top: 38px;
	pointer-events: none;
}
/* レスポンシブ設定 */
@media only screen and (max-width: 1349px) {
	.header-contact-btn {
		width: 87px;
		/* 右寄せ */
		margin-right: auto;	margin-left: 55px;
	}
	.header-contact-btn b {
		display: none;
	}
	.header-contact-btn::before{
		margin-left: 30px;
		margin-top: 28px;
	}
}
@media only screen and (max-width: 768px) {
	.header-contact-btn {
		font-size: 20px;
		line-height: 30px;
		padding-left: 0px;
	}
	.header-contact-btn::before{
		position: absolute;
		content: url(../img/mail.png);
		margin-left: -66px;
		margin-top: 32px;
	}
}
.header-contact-btn a {
	display: block;
	width: 100%;
	height: 100%;
	padding-top: 0px;
	padding-left: 42px;
}
/*--------------------------------------------------------------
スマホ用問い合わせボタン(ヘッダー用)
--------------------------------------------------------------*/
.top-contact-btn {
	position: fixed;
	width: 42px;/*72px;*/
	height: 35px;/*50px;*/
	top: 18px;
	right:60px;
	/*padding-top: 7px;*/
	z-index: 1000;
	align-items: center;/* 配置 */
	cursor: pointer;/* カーソル */
	position: fixed;/* 要素の配置 */
	background-color: var(--contact-button-color);/*#4169e1;*/
	border-radius: 5px;/* ボーダー設定ラウンド指定 */

}
.top-contact-btn img {
	margin-top: 3px;
}
/*--------------------------------------------------------------
スマホ用電話ボタン(ヘッダー用)
--------------------------------------------------------------*/
.top-tel-btn {
	position: fixed;
	width: 42px;/*72px;*/
	height: 35px;/*50px;*/
	top: 18px;
	right:109px;
	/*padding-top: 7px;*/
	z-index: 1000;
	align-items: center;/* 配置 */
	cursor: pointer;/* カーソル */
	position: fixed;/* 要素の配置 */
	background-color: var(--contact-button-color);/*#4169e1;*/
	border-radius: 5px;/* ボーダー設定ラウンド指定 */

}
.top-tel-btn img {
	margin-top: 3px;
}
/*--------------------------------------------------------------
スマホ用SNSボタン(ヘッダー用)
--------------------------------------------------------------*/
#top-sns-btn {
	position: fixed;
	width: 42px;/*72px;*/
	height: 35px;/*50px;*/
	top: 18px;
	right:159px;
	/*padding-top: 7px;*/
	z-index: 1000;
	align-items: center;/* 配置 */
	cursor: pointer;/* カーソル */
	position: fixed;/* 要素の配置 */
	color: var(--sns-button-font-color);
	background-color: var(--sns-button-color);
	border-radius: 5px;/* ボーダー設定ラウンド指定 */

}
#top-sns-btn img {
	margin-top: 3px;
}
/* ヘッダートップSNSメニュー中身 */
#top-sns-menu {
	position: absolute;
	top: 70px;
	right: 0;
	transform: translate(280px);
	transition: all .5s;
	width: 280px;
	height: auto;
	padding: 0 20px 20px 20px;
	text-align: center;
	border: 2px solid #4169e1;
	background-color: white;
}
#top-sns-menu.open {
	transform: translate(0);
}
.header-top-sns-menu {
	float: right;
    /*position: absolute;*/
	overflow: hidden;
    /*width: 680px;*/
    height: var(--height-header-top-area);
    padding: 0 20px;
	white-space: nowrap; /* 改行禁止 */
	text-align: center;
	/*border-bottom: 1px solid #CCCCCC;*/
	background-color: transparent;
}
/* <ul>箇条書きリスト */
.header-top-sns-menu ul {
    display: flex;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	height: 100%;
	text-align: center;
    justify-content: center;
    align-items: center;
}
/* <ul>の内容を<li>で記載 */
.header-top-sns-menu ul li {
	display: table-cell;/* 親の<ul>がtableなので、table-cellとして表示 */
	/*min-width: 100px;*//* メニュー1項目の最低サイズ */
	height: 100%;
    padding: 0px 10px;
	/*border-right: 1px solid #CCCCCC;*/
}
/* <ul><li>の中の<a>に適用 */
.header-top-sns-menu ul li a {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	text-decoration: none;
	color: #000000;
}
.header-top-sns-menu ul li a img{
	display: flex;
	height: 30px;
	align-items: center;
}
/*--------------------------------------------------------------
グローバルメニュー(主にヘッダー用)
--------------------------------------------------------------*/
/* 注意 */
/* WPのメニュー設定で名前をheadにすること */
/* またfunction.phpでglobal-menuをメニューに定義しておくこと */
.global-menu {
	/*position: absolute;*/
	width: 100%;
	height: 100%;
/**/font-size: 14px;
	/*border-bottom: 1px solid #CCCCCC;*/
	white-space: nowrap; /* 改行禁止 */
	overflow: hidden;
}
.global-menu #menu-head {/* <ul>箇条書きリスト */
	display: table;
	width: auto;/*80%;*//* メニューの幅 */
	height: 70px;
	margin-left: auto;/* 右寄せ */
	/*margint: 0 auto;*//* 中央寄せ */
	padding: 0;
}
.global-menu #menu-head li {
	display: table-cell;/* 親の<ul>がtableなので、table-cellとして表示 */
	max-width: 120px;/* メニュー1項目の最大サイズ */
	min-width: 120px;/* メニュー1項目の最低サイズ */
	height: 100%;
	/*border-right: 1px solid #CCCCCC;*/
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
}
.global-menu #menu-head li a {
	display: block;/* flex; */
	width: 100%;
	height: 87px;/*100%;*/
	font-size: 18px;
	line-height: 14px;
	/*padding: 0px 20px 0px 20px;*//* 上右下左 */
	padding-top: 38px;
	text-decoration: none;
	color: #000000;
	justify-content: center; /*左右中央揃え*/
	align-items: center;     /*上下中央揃え*/
}
.global-menu #menu-head li a span{
	font-size: 12px;
}
.global-menu ul li a:hover {/* リンクホバー時の表示 */
	background-color:#dedef9;/*#E0EFF6;*/
	transition: 0.8s;/* 表示変更にかかる時間 */
	/*border-bottom: 10px solid #4169e1;*/
}
.global-menu ul li.current {
	font-weight: bold;
}
.global-menu ul li.current a {
	/*border-bottom: 5px solid #FFCCCC;*/
	color: #000000;
}
/* メニュー項目の左右に線を引く */
.global-menu #menu-head li:first-child{
	/*line-height: 40px;*/
	border-left:0px solid #D5D5D5;
}
.global-menu #menu-head li{
	/*line-height: 40px;*/
	border-right: 0px solid #D5D5D5;
}

/* サブメニュー(第2階層メニュー) */
#header-main .sub-menu {
	position: relative;
	width: 200px!important;
	padding: 0!important;
	margin-left: 20px!important;
}
#header-main .sub-menu:before {
  content: "";
  position: absolute;
  top: -29px;
  left: 50%;
  margin-left: -80px;
  border: 15px solid transparent;
  border-bottom: 15px solid black;
  z-index: 0;
  pointer-events: none;
}
#header-main .sub-menu li {
	width: 100%!important;
	max-width: 100%!important;
	height: 40px!important;
	font-size: 18px!important;
	line-height: 18px!important;
	text-align: left!important;
	color: white;
	background-color: black;
	border: 1px solid black!important;
}
#header-main .sub-menu li a {
	padding-top: 10px!important;
	padding-left: 10px!important;
	color: white!important;
	height: 100%;
}
#header-main .sub-menu li a:hover {
	color: black!important;
	background-color: white;
	transition: 0.6s;/* 表示変更にかかる時間 */
}

/*--------------------------------------------------------------
!ニー設定
--------------------------------------------------------------*/
#knee ._title span {
	font-size: 35px;
	line-height: 35px;/* 高さ調節 */
	font-family: 'Josefin Sans', sans-serif;
	/*color: black;*//*#4169e1;*/
	/*background-color: white;*/
	/*background-position: center;*/
	overflow: hidden;
}
#knee ._subtitle {
/*	font-size: 20px;*/
/*	line-height: 30px;*/
	/*font-family: "Noto Serif JP", sans-serif;*/
	/*color: black;*//*#2f4f4f;*//*orange;*/
/*	padding-bottom: 40px;*/
	/*background-color: white;*/
	/*background-position: center;*/
/*	overflow: hidden;*/
	color: white!important;
}
#knee {
	width: 100%;
	height: auto;
	padding: 72px 15px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: black;/*#ffff01;*/
	color: white;/*#333333;*/

/**/background-image : url(../img/bg-knee.jpg);
/**/background-position: top right;

	/* 背景画像を半透明にする場合は下記2つを有効に */
	background-color:rgba(55,55,55,0.7);/* 最後の数字が透明度 1で見えなくなる */
	background-blend-mode:color;
}
.knee {
	/*display: flex;*/
	display: block;
	max-width: 760px;
	margin: 0 auto;

	/* フォント設定 */
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0.1rem;
	overflow: hidden;
	text-align: center;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.knee ._text {
		text-align: left;
	}
}
.knee ._title {
	text-align: center;
	padding-bottom: 30px;
}
.knee_text_are {
	width: 75%;
}
.knee_btn_area {
	display: flex;
	margin: 0 auto;
	justify-content: center;
	justify-items: center;/*start;*/
	align-items: center;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.knee_btn_area {
		display: block;
		padding: 40px 10px;
		text-align: center;
	}
}
.knee-btn a {
	/*font-size: 1.778rem;*/
	font-size: 20px;
	background-color: black;
	color: white;
	/*border-radius: 50px;*/
	padding: 16px 48px;
	font-weight: bold;
	width: 100%;
	text-align: center;
	border: 3px solid #ffffff; 
}
.knee-btn a:hover {
	background-color: white;
	color: black;
}
.knee-btn-mail a::before{
	position: absolute;
	content: url(../img/icon-mail.png);
	margin-left: 0px;
	margin-top: 0px;
}
.knee-btn-mail a:hover::before {
	content: url(../img/icon-mail-2.png);
}

.knee-btn-tel a::before{
	position: absolute;
	content: url(../img/icon-iphone-white-small.png);
	margin-left: 0px;
	margin-top: 0px;
}
.knee-btn-tel a:hover::before {
	content: url(../img/icon-iphone-black-small.png);
}
/*--------------------------------------------------------------
!フッター設定
--------------------------------------------------------------*/
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: var(--footer-main-height);/*350px;*/
	background-color: var(--footer-color);/*#f0f8ff;*/
}
.footerMenu ul li:before{
    content: "";
}
.footerMenu {
	font-size: 14px;
}
.footerFixed {
	min-height: 100vh; /* ←コンテンツの高さの最小値＝ブラウザの高さに指定 */
	position: relative;/* ←相対位置 */
	padding-bottom: var(--footer-main-height);/*350px;*/ /* ←フッターの高さを指定 */
	box-sizing: border-box;
	/* ↑ヘッダーやフッターを含むすべての要素の高さ＝min-height:100vhになるように指定 */
}
@media screen and (max-width: 960px ) {/* スマホ表示 */
	footer {
		height: 425px;/*280px;*//*370px;*/
		text-align: center;
	}
	.footerFixed {
		padding-bottom: 425px; /* ←フッターの高さを指定 */
	}
}
.footer-main-area {
	max-width: var(--width-1000-wrap);
	height: var(--footer-main-height);
	margin: 0 auto;/* 中央寄せ */
	padding-top: 40px;/* 上の空きサイズ */
	background-position: center;
	background-position: top;
	overflow: hidden;
}
@media screen and (max-width: 1200px) { 
	.footer-main-area {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media screen and (max-width: 960px ) {/* スマホ表示 */
	.footer-main-area {
		padding-top: 20px;/* 上の空きサイズ */
	}
}
/* フッターの2カラム設定 */
.footer-2column {
	display: flex;
	overflow: hidden;
	max-width: var(--width-max-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
}
.footer-2column-left {
	width: 350px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
/*
.footer-2column-left img {
	width: 100%;
}
*/
@media screen and (max-width: 960px) {
	.footer-2column {
		display: block;
	}
}
@media screen and (max-width: 768px) { 
	.footer-2column-left {
		width: auto;
	}
}
.footer-2column-right {
	width: 850px;
	padding-top: 16px;
	padding-left: 70px;
}
@media screen and (max-width: 960px) { 
	.footer-2column-right {
		width: auto;
		padding-left: 0px;
	}
}

/* フッターメニュー */
.f_menu {
    /*position: absolute;*/
	overflow: hidden;
    /*width: 680px;*/
    /*height: var(--height-header-area);*/
	white-space: nowrap; /* 改行禁止 */
	text-align: center;
	/*border-bottom: 1px solid #CCCCCC;*/
	background-color: #FFFFFF;
}
/* <ul>箇条書きリスト */
.f_menu ul {
	/*display: table;*//* tableで表示 */
    display: flex;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	text-align: center;
    justify-content: center;
    align-items: center;
}
/* <ul>の内容を<li>で記載 */
.f_menu ul li {
	display: table-cell;/* 親の<ul>がtableなので、table-cellとして表示 */
	/*min-width: 100px;*//* メニュー1項目の最低サイズ */
    padding: 5px 10px;
	/*border-right: 1px solid #CCCCCC;*/
}
/* <ul><li>の中の<a>に適用 */
.f_menu ul li a {
	display: flex;
	width: 100%;
	align-items: center;
	/*padding: 5px 10px;*/
	text-decoration: none;
	color: #000000;
}
.f_menu ul li img{
	display: flex;
	align-items: center;
}
/* フッターの対応エリア表示 */
.fotter-support-area {
	margin-top: 10px;
	background-color: #F1F5F7;
	border: 1px solid black;
}
.fotter-support-area p {
	width: 100%;
	padding: 0px 20px 0px 20px;
	color: white;
	background-color: #19a724;
}
.fotter-support-area div {
	padding: 10px 20px 10px 20px;
}
@media screen and (max-width: 768px) { 
	.fotter-support-area {
		text-align: left;
	}
}
/*--------------------------------------------------------------
コピーライト部分
--------------------------------------------------------------*/
.copyright{
	overflow: hidden;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	text-align: center;
	padding: var(--default-padding);
	padding-bottom: 0px;
	color: var(--copyright-font-color);
	background-color: var(--copyright-color);
}

/*--------------------------------------------------------------
追従-TOPへ戻るボタン
--------------------------------------------------------------*/
#pagetop {
	position: fixed;
	bottom: 15px; /* 下からの位置 */
	right: 15px; /* 右からの位置 */
	z-index: 100; /* Zパラメータ */
}
#pagetop a {
	display: block;
	width: 75px;
	height: 75px;
	padding: 10px 5px;
	padding-top: 70px;
	text-align: center;/* 中央寄せ */
	/*border: solid 2px #000000;*/
	color: #000000;
	z-index: 100;
	/*background: #FFFFFF;*/
	background-image : url(../img/pagetop.png);
	background-repeat: no-repeat;
	background-position: center;
}
/* ホバー設定 */
#pagetop a:hover {
	/*background: #BC8F8F;/* 背景色 */
	z-index: 100;
}
#pagetop.close {
	display: none;
}
@media screen and (max-width: 960px) { 
	#pagetop a {
		width: 75px;/* 幅 */
		height: 75px;
		padding: 10px 5px;
		padding-top: 30px;
		background-image : url(../img/pagetop.png);
	}
}
/*--------------------------------------------------------------
!main(メインタグ)
--------------------------------------------------------------*/
/* 常時上にヘッダー表示する場合のマージン */
main {
	margin-top: var(--height-header-area);
}
/*--------------------------------------------------------------
フロントページ各セクション用
汎用性に欠けるので注意
display: flex; 親要素がflexだと子は横に並ぶ
--------------------------------------------------------------*/
/*--------------------------------------------------------------
!ボタン
--------------------------------------------------------------*/
.front-btn {
	display: table-cell;
    position: relative;
	width: var(--front-btn-width);/*328px;*/
	height: 60px;
	font-size: 1.5rem;/* 18px */
	text-align: center;
	vertical-align: middle;
	color: #FFFFFF;
	background-color: #1B97BB;
	border-radius: 0px;
	margin: auto;
	z-index: 10;
}
.front-btn::after {
	position: absolute;
	content: url(../img/link.png);
	left: 90%;
}
/* フロント用ボタン */
.front-btn-small {
	display: inline-block;
	overflow: hidden;
	width: 278px;
	height: 50px;
	font-size: 1.5rem;/* 18px */
	line-height: 44px;/* heightと同じにする→微調整する */
	text-align: center;
	color: white;
	background-color: var(--button-color);
	border: solid 2px var(--button-color);
	border-radius: 0px;
}
.front-btn-small:hover {
	color: var(--button-color);
	background-color: white;
}
/* フロント用ボタン(色反転) */
.front-btn-small-2pcolor {
	display: inline-block;
	overflow: hidden;
	width: 278px;
	height: 50px;
	font-size: 1.5rem;/* 18px */
	line-height: 44px;/* heightと同じにする→微調整する */
	text-align: center;
	color: var(--button-color);
	background-color: white;
	border: solid 2px var(--button-color);
	border-radius: 0px;
}
.front-btn-small-2pcolor:hover {
	color: white;
	background-color: var(--button-color);
	border: solid 2px white;
}
/* 1カラムで使用するボタン(基本ボタン) */
.wrap-1column-btn {
	display: inline-block;
	overflow: hidden;
	width: var(--width-1column-btn);
	height: 60px;
	font-size: 1.5rem;/* 18px */
	line-height: 58px;/* heightと同じにする→微調整する */
	text-align: center;
	color: white;
	background-color: var(--button-color);
	border: solid 2px var(--button-color);
	border-radius: 0px;
}
.wrap-1column-btn:hover {
	color: var(--button-color);
	background-color: white;
}
/* ホームへ戻るボタンの上下のスペース用 */
.return-home-top-space {
	height: 60px;
}
.return-home-bottom-space {
	height: 60px;
}
.btn-around2 {
	width: auto;
	height: auto;
	padding: 50px 0px 50px 0px;/* 上右下左 */
}
.btn-center {
	transform:translate(-50%,0);
}
/* リンク用の枠 */
.another-btn {
	max-width: 350px;
	height: 48px;
	border: solid 2px #000000;
	border-radius: 5px;
	padding: 5px 10px;
	margin: 0;
	background-color: white;
}

/*--------------------------------------------------------------
テキスト用
--------------------------------------------------------------*/
/* 16px=1rem */
/* 62.5%なので 1rem=10px */
.text-center-left {
	text-align: center;
}
@media screen and (max-width: 768px) {
	.text-center-left {
		text-align: left;
	}
}
.text-left-center {
	text-align: left;
}
@media screen and (max-width: 768px) {
	.text-left-center {
		text-align: center;
	}
}
.text-center-left-tablet {
	text-align: center;
}
@media screen and (max-width: 960px) {
	.text-center-left-tablet {
		text-align: left;
	}
}
.text-center-left-center-left {
	text-align: left;
}
@media screen and (max-width: 960px) {
	.text-center-left-center-left {
		text-align: center;
	}
}
@media screen and (max-width: 768px) {
	.text-center-left-center-left {
		text-align: left;
	}
}
.text-right-center-tablet {
	text-align: right;
}
@media screen and (max-width: 960px) {
	.text-right-center-tablet {
		text-align: center;
	}
}
.text-left-center-tablet {
	text-align: left;
}
@media screen and (max-width: 960px) {
	.text-left-center-tablet {
		text-align: center;
	}
}
.text-header-menu {
	/*font-size: 26px;*//*2.5rem;*/
    font-weight: 700; /* フォントの太さ */
    padding-top: 35px;
    padding-right: 30px;
    /*font-size:min(1.4vw,28px);*/
    font-size:clamp(22px, 1.8vw, 24px);
}
.header-tel p::before{
    position: absolute;
    content: url(../img/tel.png);
	margin-left: -90px;
    margin-top: -2px;
}

@media screen and (max-width: 1300px) {
    .text-header-menu {
     	font-size:clamp(6px, 1.6vw, 24px);
    }
}
@media screen and (max-width: 1140px) {
    .text-header-menu {
     	font-size:clamp(6px, 1.4vw, 22px);
    }
}
@media screen and (max-width: 1050px) {
    .text-header-menu {
     	font-size:clamp(6px, 1.2vw, 21px);
    }
}

.front-content-title {
    /*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	font-size: 48px;/*2.5rem;*/
    font-weight: normal; /* フォントの太さ */
    line-height: 52px;
    letter-spacing: 0.5rem;
    color: #000000;
}
@media screen and (max-width: 768px) {
.front-content-title {
		font-size: 30px;/*2.5rem;*/
		line-height: 32px;
	}
}
.contact-btn-text-white {
    font-size: 18px;/*1.125rem;*/
    font-weight: 700; /* フォントの太さ */
    letter-spacing: 0.1rem;
	color: #FFFFFF;
}
.contact-btn-tel-text {
    font-size: 28px;/*1.125rem;*/
    font-weight: 700; /* フォントの太さ */
    line-height: 28px;
    letter-spacing: 0.1rem;
	color: #000000;
}
.contact-btn-tel-text2 {
    font-size: 14px;/*1.125rem;*/
    font-weight: 700; /* フォントの太さ */
    line-height: 14px;
    letter-spacing: 0.1rem;
	color: #000000;
}
.contact-btn-tel-text::before{
    position: absolute;
    content: url(../img/TELicon.png);
    margin-left: 2%;
    margin-top: 2px;
}
@media screen and (max-width: 960px) {
	.contact-btn-tel-text::before{
	    position: absolute;
	    content: url(../img/TELicon.png);
	    margin-left: 4%;
	    margin-top: 2px;
	}
}

/* -------------------------------------------------------------
パンくずリスト
------------------------------------------------------------- */
.pankuzu-list {
	display: block;
	max-width: var(--pankuzu-list-width);
	height: 40px;
	overflow: hidden;
	font-size: 15px;/*0.9375rem;*/
	line-height: 29px;
	font-weight: 700;
	margin: 0 auto;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.pankuzu-list {
		height: auto;
	}
}
/* テキスト設定用 */
.text-pankuzu {
	font-size: 15px;/*0.9375rem;*/
	line-height: 29px;
	font-weight: 700;
}
/* -------------------------------------------------------------
各ページの上部メインタイトル
------------------------------------------------------------- */
.main-title {
	position: relative;
	display: flex;
	width: 100%;
	/*max-width: var(--width-max-wrap);*/
	height: 200px;
	overflow: hidden;
	padding-top: 68px;
	/*font-family: "Noto Serif JP", sans-serif;*//* フォント指定 */
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	text-align: center;
	justify-content: center;/*start; 開始位置 */
	color: white;/*#EA7620;*//*#005BAC;*/
	/*background-color: var(--page-title-color);*/
	background-image : url(../img/page-title.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100%;
	/* 背景画像を半透明にする場合は下記2つを有効に */
	background-color:rgba(0,0,0,0.5);/* 最後の数字が透明度 1で見えなくなる */
	background-blend-mode:color;
}
/* 背景画像を半透明にする場合は有効に */
/*
.main-title::after {
	content: '';
	background-color: rgba(29,124,240,0.9);//不透明度と色設定
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
*/
.main-title h1,
.main-title span{
	/*position: relative;*/
	z-index: 1;
	text-align: center;
	margin-bottom: 0;
}
.main-title h1 {
	height: 40px;
	font-size: 32px;
}
.main-title span{
	position: absolute;
	top: 58%;
}
/* アイコン用 */
.main-title img {
	height: 36px;
	margin-left: -36px;
	padding-right: 10px;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.main-title {
		height: 100px;
		padding-top: 25px;
	}
	.main-title h1 {
		font-size: 20px;
	}
	.main-title span {
		font-size: 14px;
	}
	.main-title img {
		height: 28px;
		margin-left: -36px;
		padding-right: 10px;
	}
}
.main-title p {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 3em;
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	white-space: nowrap;
	letter-spacing: 12px;
}
/* -------------------------------------------------------------
サイドバー設定
------------------------------------------------------------- */
.wrap-sidebar {
	display: var(--display-2column);
	overflow: hidden;
	max-width: var(--width-max-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
}

.left-sidebar {
	width: 200px;/*var(--width-left-sidebar);*/
	height: auto;
    padding: var(--default-padding);
    background-color: white;
}

.right-sidebar {
	width: 1000px;/*var(--width-right-sidebar);*/
	padding: var(--default-padding);
}
/* -------------------------------------------------------------
フロントページスライダー設定
------------------------------------------------------------- */
/* WPプラグインのXOスライダー使用時 */
.xo-slider .swiper-slide > img {
	object-fit: cover;
	min-height: 600px;
}

/* -------------------------------------------------------------
セクション基本設定
------------------------------------------------------------- */
/* フロントセクション用基本クラス各設定 */
.front-basic-section {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;
	padding: 56px 0px 80px 0px;/* 上右下左 */
}
.front-basic-section ._title {
	margin-bottom: 30px;
}
.front-basic-section ._text {
	margin-bottom: 0px;
}
.front-basic-section ._button {
	margin-top: 72px;
}
/* 各ページ用基本クラス各設定 */
/* シングル用基本クラス各設定 */
.single-basic-section {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;
	padding: 0px 0px 0px 0px;/* 上右下左 */
}
.single-basic-section ._button {
	margin-top: 144px;
}
/* アーカイブ用基本クラス各設定 */
.archive-basic-section {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;
	padding: 56px 0px 80px 0px;/* 上右下左 */
}
.archive-basic-section ._title {
	margin-bottom: 30px;
}
.archive-basic-section ._text {
	margin-bottom: 0px;
}
.archive-basic-section ._button {
	margin-top: 144px;
}
.single-top-image {
	width: 50%;
	max-width: 960px;
	height: auto;
	margin: 0 auto;
}
/* -------------------------------------------------------------
フロントページ基本設定
------------------------------------------------------------- */
/* フロントページに表示する各ページ名、コンテンツ名などに使用 */
.front-page-title {
	overflow: hidden;
	max-width: var(--width-main-wrap);
	height: 63px;
	font-size: 38px;
	font-weight: normal;
	line-height: 60px;
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	color: #272B48;
	background-image : url(../img/moyou.png);
	background-position: center;
	margin: 0 auto;
	padding: 0;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.front-page-title {
	    font-size: 24px;
	}
}

.front-title {
	display: flex;
	align-items: center;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.front-title {
		align-items: center;
		justify-content: center   
	}
	.front-title img {
		width: 48px;
		height: 48px;
	}
}

.front-page-subtitle {
	overflow: hidden;
	max-width: var(--width-main-wrap);
	height: 20px;
	font-size: 17px;
	line-height: 17px;
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	color: #EA7620;
	margin: 0 auto;
	padding: 0;
}
/* フロントページのタイトルのアイコンサイズ */
.front-title-icon {
	width:48px;
	height:48px;
}
/* 以下ユニーク設定 */
.front-page-title-contact {
	position: relative;
	overflow: hidden;
	max-width: var(--width-main-wrap);
	height: 106px;
	margin: 0 auto;
    padding: 0;
    padding-top: 40px;
	font-size: 38px;
	/*line-height: 38px;*/
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	color: #272B48;
	background-image : url(../img/contact.png);
	background-position: center;
    overflow: hidden;
}
@media screen and (max-width: 1100px) {
	.front-page-title-contact {
	    font-size: 30px;
	}
}
@media screen and (max-width: 768px) {
	.front-page-title-contact {
	    font-size: 22px;
	}
}
.front-page-title-contact p {
	position:absolute;
	width: auto;
	bottom: 0; /*下寄せの指定*/
	left: 50%;
	transform:translate(-50%,-50%);
	top: 60px;
}
/* フロントページに表示する各コンテンツのタイトル用 */
.front-basic-section ._title span,
#front-access ._title span,
#front-news-2column ._title span {
	/*width: 300px;*/
	height: 40px;
	font-size: 36px;
	line-height: 50px;
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	color: var(--front-title-color);
	/*background-color: white;*/
	/*background-position: center;*/
	overflow: hidden;
}
/* フロントページに表示する各コンテンツのサブタイトル用 */
#knee ._subtitle,
.front-basic-section ._subtitle,
#front-access ._subtitle,
#front-news-2column ._subtitle {
	font-size: 17px;
	line-height: 30px;
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	color: black;/*#2f4f4f*/;/*orange;*/
	/*background-color: white;*/
	/*background-position: center;*/
	overflow: hidden;
}
.front-overview {
	color:#2f4f4f;
	font-size: 36px;
	line-height: 50px;
}
@media screen and (max-width: 768px) {
	.front-overview h2{
	    font-size: 17px;
	}
}
/* -------------------------------------------------------------
アンダーライン
------------------------------------------------------------- */
._underline_ {
	display: inline-block;
	width: 200px;
	border-bottom: solid 5px #ccc;
}
._underline_long {
	display: inline-block;
	width: 300px;
	border-bottom: solid 5px #ccc;
}
._underline_longer {
	display: inline-block;
	width: 380px;
	border-bottom: solid 5px #ccc;
}
/* -------------------------------------------------------------
トップ画像
------------------------------------------------------------- */
.top-img {
	position: relative;
}
.slide-content-title {
	position: absolute;
	width: auto;
	white-space: nowrap;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	text-shadow: #000 1px 0 20px;/* color | offset-x | offset-y | blur-radius */
}
.slide-content-title p {
	width: auto;
	padding: 50px 150px;
	/*background-color: rgba(25,25,112,0.1);*/
	border: 8px rgba(25,25,112,0.1) solid;
}
@media screen and (max-width: 768px) {
	.slide-content-title {
		top: 35%;
	}
	.slide-content-title p {
		font-size: 20px;
		border: none;
		background-color: rgba(25,25,112,0.1);
	}
}
.slide-content-subtitle {
  text-shadow:1px 1px 0 #000, -1px -1px 0 #000,
              -1px 1px 0 #000, 1px -1px 0 #000,
              0px 1px 0 #000,  0-1px 0 #000,
              -1px 0 0 #000, 1px 0 0 #000;
}
/* 隙間対策 */
.top-img img {
	vertical-align:top;
}
/* -------------------------------------------------------------
インフォメーションバー-フロントページ
------------------------------------------------------------- */
.top-bar {
	position: relative;
	display: var(--display-top-ver);
	width: var(--width-max-wrap);
	height: var(--top-bar-height);
	/*padding-top: 72px;*/
	color: #FFFFFF;
	background-color: #82674A;
	overflow: hidden;
	/*vertical-align: middle;*/
	align-items: center;
	justify-content: center
}
.top-bar-inner {
	width: var(--width-main-wrap);
	display: flex;/*block;*/
	align-items: center;
}
.top-bar-contents {
	display: inline-block;/*var(----display-inline-block);*//*inline-block;*/
	max-height: var(--top-bar-height);
	padding-left: 10px;
	padding-right: 10px;
	align-items: center;
}
/* 枠 営業時間 */
.top-bar-frame {
	display: table-cell;
	overflow: hidden;
	/*width: auto;//278px;*/
	height: 40px;
	padding: 0px 5px;
	/*margin: 0 auto;*/
	/*font-size: 16px;*/
	/*line-height: 40px;*//* heightと同じにする→微調整する */
	color: white;
	/*background-color: #65A6D3;*/
	border: solid 1px;
	border-radius: 5px;
	/*vertical-align: middle;*/
}
/* 枠 しつこい～ */
.top-bar-frame2 {
	display: table-cell;
	overflow: hidden;
	/*width: auto;//278px;*/
	height: 40px;
	padding: 0px 5px;
	/*margin: 0 auto;*/
	/*font-size: 16px;*/
	/*line-height: 40px;*//* heightと同じにする→微調整する */
	color: #82674A;
	background-color: #FFFFFF;
	border: solid 1px #FFFFFF;
	border-radius: 5px;
	/*vertical-align: middle;*/
}

/* -------------------------------------------------------------
以下、各セクション・項目の設定
 セクション設定で**がついているものは要設定、若しくはよく変更されるパラメーター
 レスポンシブ設定は概ね、個別に調整が必要なもの
------------------------------------------------------------- */
/* -------------------------------------------------------------
!ABOUT(企業情報)-フロントページ
------------------------------------------------------------- */
/* フロントページのABOUTセクション(ユニーク設定) */
/* 外枠 */
#front-about {
	background-color: white;
	/* 背景画像用 */
	/*
	background-image : url(../img/bg-front-about.jpg);
	background-position: top right;
	*/
	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/
}
@media screen and (max-width: 768px) {
	#front-about {
	    margin-top: 10px;
	}
}
/* 内枠 */
.front-about {
	display: block;
	max-width: var(--width-main-wrap);
	height: var(--front-about-height);
	margin: 0 auto;
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
	/*background-image : url(../img/bg-section1.png);*/
	background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
/* タイトル */
.front-about ._title {
	text-align: center;
	align-items: center;
}

/* テキスト(内容・説明文) */
.front-about ._text {
	padding: 0px 0px 0px 0px;
	font-size: 1.8rem;
	text-align: center;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.front-about ._text {
	    text-align: left;
	}
}

/* ボタン */
.front-about ._button {
	text-align: center;
	align-items: center;
}
.bg_skew_border{
    background-color: #fdfdfd!important;
    background-image:
   repeating-linear-gradient(-90deg,
   #fff, #fff 7px,
   transparent 0, transparent 14px);
}
/* ---------------------------- */
/* フロントABOUTの2カラム設定	*/
/* ---------------------------- */
.front-about-2column-left {
	width: var(--width-front-about-2column-left);
	height: auto;
	padding: 10px;
	background-color: #ffffff;

	/* 背景色透明度設定 */
	background-color:rgba(255,255,255,0.5);
}
.front-about-2column-right {
	width: calc(var(--width-main-wrap) - var(--width-front-about-2column-left));
	padding: var(--default-padding);
}

/* ---------------------------- */
/* ABOUTのグリッドエリア		*/
/* ---------------------------- */
.about-grid-area {
	display: grid;
	max-width: var(--width-about-grid-area);/*920px;*/
	gap: 0px;/*25px;*/
	grid-template-columns: repeat(auto-fit, 230px);
	grid-auto-rows: auto;/*425px;*//* 行設定 */
	margin: 0 auto;
	justify-content: center;
	justify-items: center;/*start;*/
	align-items: center;
}

/* グリッド単体の設定 */
.about-grid-item {
	width: 230px;
	height: 260px;
	padding: 5px;
	line-height: 1.2;
	/*margin: var(--margin-0-auto);*/
	/*border: solid 1px #000000;*/
	/*border-radius: 10px;*/
	/*box-shadow: 0px 0px 0px 0px #000000;*/
}
/* グリッド単体の中の画像設定 */
.about-grid-item img {
	width: 200px;
	height: auto;
	padding-top: 10px;
	margin: 0 auto;
	object-fit:cover;
}

/* -------------------------------------------------------------
!ADVANTAGE(強み・特徴など)-フロントページ
------------------------------------------------------------- */
/* フロントページのADVANTAGEセクション */
#front-advantage {
	/*background-color: #f0f8ff;*/
	/*background-image : url(../img/bg-front.jpg);*/
	background-position: top right;

	/* 背景画像を半透明にする場合は下記2つを有効に */
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;

}
@media screen and (max-width: 768px) {
	#front-advantage {
	    margin-top: 10px;
	}
}
.front-advantage {
	display: block;
	width: 90%;
	/*max-width: var(--width-main-wrap);*/
	height: var(--front-about-height);
	margin: 0 auto;
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
	/*background-image : url(../img/bg-section1.png);*/
	background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 1080px) {
	.front-advantage {
		width: 100%;
	}
}
/* タイトル */
.front-advantage ._title {
	text-align: center;
	align-items: center;
}
/* テキスト(内容・説明文) */
.front-advantage ._text {
	padding: 0px 0px 72px 0px;
	font-size: 1.8rem;
	text-align: center;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.front-advantage ._text {
	    text-align: left;
	}
}
/* ボタン */
.front-advantage ._button {
	text-align: center;
	align-items: center;
}
/* 背景固定の疑似要素 */
#front-advantage::before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background-repeat: no-repeat;
	background-position: center center;
	background-image : url(../img/bg-front-advantage.jpg);
	background-size: cover;
	/* 背景画像を半透明にする場合は下記2つを有効に */
	background-color:rgba(255,255,255,0.85);/* 最後の数字が透明度 1で見えなくなる */
	background-blend-mode:color;
}
/* ---------------------------- */
/* フロントADVANTAGEの3カラム設定	*/
/* ---------------------------- */
.front-advantage-3column {
	display: flex;
	gap: 20px 0px; /* 余白 縦 横*/
	overflow: hidden;
	max-width: var(--width-max-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: left;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
}
.front-advantage-3column-left {
	position: relative;
	width: 56%;
	height: 360px;
	padding: 45px 60px;;
	overflow: hidden;
	border: 1px #999 solid;
	border-right: 0px #999 solid;
	/* 背景色透明度設定 */
	background-color:rgba(0,0,0,0.1);
	background-blend-mode:color;
}
.front-advantage-3column-left:last-child {
	border-right: 1px #999 solid;
}
@media screen and (max-width: 768px) {
	.front-advantage-3column-left {
		border-right: 1px #999 solid;
	}
}
.advantage-text {
	position: absolute;
	top: 22%;
	left: 50%;
	padding: 0px 20px 0 20px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-shadow: #000 1px 0 20px;/* color | offset-x | offset-y | blur-radius */
	transform: translate(-50%,0%);
	width: 100%;
	text-align: left;
}
.advantage-number {
	position: absolute;
	top: 5%;
	left: 50%;
	padding: 45px 20px 10px 20px;
	color: white;
	opacity: 0.5;
	font-size: 36px;
	font-weight: bold;
	text-shadow: #000 1px 0 20px;/* color | offset-x | offset-y | blur-radius */
	transform: translate(-50%,-50%);
	width: 100%;
	text-align: left;
}
.advantage-title {
	position: absolute;
	top: 5%;
	left: 60%;
	padding: 45px 20px 10px 20px;
	color: white;
	opacity: 0.5;
	font-size: 18px;
	font-weight: bold;
	text-shadow: #000 1px 0 20px;/* color | offset-x | offset-y | blur-radius */
	transform: translate(-50%,-50%);
	width: 86%;
	text-align: left;
}
.front-advantage-img {
	width: 100%;
	height: 100%;
	padding-top: 0px;
	margin: 0 auto;
	object-fit:cover;
	opacity: 1;
	background-color: #000;
	transition: 0.3s;/* ズームとかトランスフォームするときの速度 */
}

.front-advantage-icon {
	position: absolute;
	width: 15%;/*64px;*/
	/*height: 64px;*/
	top: 32%;
	left: 50%;
	transform: translate(-50%,0%);
	object-fit:cover;
}
.front-advantage-icon {
	opacity: 1!important;
	z-index: 99;
}
@media screen and (max-width: 1350px) {
	.front-advantage-3column-left {
		padding: 10px;
	}
	.advantage-title {
		position: absolute;
		top: 5%;
		left: 56%;
		padding: 45px 20px 10px 20px;
		color: white;
		opacity: 0.5;
		font-size: 18px;
		font-weight: bold;
		text-shadow: #000 1px 0 20px;/* color | offset-x | offset-y | blur-radius */
		transform: translate(-50%,-50%);
		width: 86%;
		text-align: left;
	}
}
@media screen and (max-width: 960px) {
	.advantage-text {
		width: 100%;
		text-align: left;
	}
	.front-advantage-3column {
		width: 100%;
		display: block;
	}
	.front-advantage-3column-left {
		width: 100%;
		height: 200px;
		margin-top: 10px;
		padding: 0 15px;
	}
	.front-advantage-img {
		width: 100%;
		height: 200px;
	}
	.front-advantage-icon {
		width: 40px;
	}
	.advantage-title {
		position: absolute;
		top: 5%;
		left: 57%;
		padding: 45px 20px 10px 20px;
		color: white;
		opacity: 0.5;
		font-size: 18px;
		font-weight: bold;
		text-shadow: #000 1px 0 20px;/* color | offset-x | offset-y | blur-radius */
		transform: translate(-50%,-50%);
		width: 86%;
		text-align: left;
	}
	.advantage-text {
		position: absolute;
		top: 26%;
		left: 50%;
		padding: 0px 20px 0 20px;
		color: white;
		font-size: 18px;
		font-weight: bold;
		text-shadow: #000 1px 0 20px;/* color | offset-x | offset-y | blur-radius */
		transform: translate(-50%,0%);
		width: 100%;
		text-align: left;
	}
}
/* 画像ズームイン */
.front-advantage-zoom-area {
	position: relative;
	width: 100%;
	height: 100%;
}
.front-advantage-zoom-area::before {
	content: "";
	position: absolute;
	top: 0;  bottom: 0;
	left: 0;  right: 0;
	background: black;
	opacity:0.4;
  }
/* -------------------------------------------------------------
!SERVICE(サービス・業務内容)-フロントページ
------------------------------------------------------------- */
/* フロントページのSERVICEセクション */
#front-service {
	/*background-color: var(--main-color);*/
	/*background: linear-gradient(to bottom, #1a50a0 0%, #163c74 100%);*/
	/*background: linear-gradient(to bottom, #ffffff 0%, #204a89 50%, #223a70 100%);*/
	/*background-image : url(../img/bg-front-activity.jpg);*/
	background-position: top right;
	/*
	background: linear-gradient(	170deg,
									rgba(255,255,255,0.2) 0%,
									rgba(255,255,255,0.2) 45%,
									rgba(70,102,183,0.8) 45%,
									rgba(70,102,183,0.8) 100%
								);
	*/
	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*background-color: rgba(70,102,183,0.8);*/
	background-color: rgb(60 181 10);
	background-blend-mode:color;
	
	z-index: 0;
}

.front-service {
	display: block;
	max-width: 80%;/*var(--width-main-wrap);*/
	max-width: 90%;
	height: var(--front-about-height);
	margin: 0 auto;
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
	/*background-image : url(../img/bg-section1.png);*/
	background-position: center;
	overflow: hidden;
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 1080px) {
	.front-service {
		max-width: 100%;
	}
}
/* タイトル */
.front-service ._title {
	text-align: center;
	align-items: center;
}

#front-service ._title span,
#front-service ._subtitle {
	color: white;
}

/* テキスト(内容・説明文) */
.front-service ._text {
	color: white;
	padding: 0px 0px 72px 0px;
	font-size: 1.8rem;
	text-align: center;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.front-service ._text {
	    text-align: left;
	}
}

/* ボタン */
.front-service ._button {
	text-align: center;
	align-items: center;
}
._front-service::after {
	position : absolute; 
	display: block;
	content: "Midorinet-Tottori";
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	font-size : 120pt;/* 背景透かし文字サイズ */
	/*font-weight : bold;*/
	color         : rgba(200, 200, 200, 0.21);/* 背景透かし文字色     */
	                                      /* 中心寄せ＆角度       */
	bottom: 22%;
	right: 3%;
	z-index: -1;
}
#front-service .backStr {
	position      : absolute;
	display       : inline-block;
	white-space   : nowrap;/* 折り返ししない       */
	font-size     : 120pt;/* 背景透かし文字サイズ */
	/*font-weight   : bold;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	color         : rgba(200, 200, 200, 0.21); /* 背景透かし文字色     */
                                        /* 中心寄せ＆角度       */
	top           : 65%;
	right          : 3%;
	/*transform     : translate(-50%, -50%)*/
	/*				rotate(315deg);*/
	z-index: -1;
}
#front-service ._headline {
	color: #2f4f4f;/*#ea7620;*/
	line-height: 40px;
	font-size: 28px;
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
}
/* ---------------------------- */
/* フロントSERVICEの2カラム設定	*/
/* ---------------------------- */
.front-service-2column {
	display: flex;
	overflow: hidden;
	max-width: var(--width-max-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
}
@media screen and (max-width: 960px) {
	.front-service-2column {
		display: block;
	}
}
.front-service-2column2 {
	display: flex;
	overflow: hidden;
	max-width: var(--width-max-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
}
.front-service-2column-left {
	width: var(--width-front-activity-2column-left);
	height: auto;
	padding: 10px;
	background-color: #ffffff;
	/* 背景色透明度設定 */
	background-color:rgba(255,255,255,0.5);
}
.front-service-2column-right {
	width: calc(var(--width-main-wrap) - var(--width-front-activity-2column-left));
	padding: var(--default-padding);
}
@media screen and (max-width: 960px) {
	.front-service-2column-right {
		width: 100%;
	}
}
/* ---------------------------- */
/* フロントSERVICEの3カラム設定	*/
/* ---------------------------- */
.front-service-3column {
	display: flex;
	gap: 20px 20px; /* 余白 縦 横*/
	overflow: hidden;
	max-width: var(--width-max-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
}
.front-service-3column-left {
	position: relative;
	width: 33%;
	height: auto;
	/*padding: 10px;*/
	overflow: hidden;
	background-color: black;
	/* 背景色透明度設定 */
	/*background-color:rgba(255,255,255,0.5);*/
}
.service-title {
	position: absolute;
	top: 65%;
	left: 50%;
	color: white;
	font-size: 24px;
	font-weight: bold;
	text-shadow: #000 1px 0 20px;/* color | offset-x | offset-y | blur-radius */
	transform: translate(-50%,-50%);
	width: 100%;
	text-align: center;
}
.front-service-img {
	width: 100%;
	height: 100%;
	padding-top: 0px;
	margin: 0 auto;
	object-fit:cover;
	opacity: 0.5;
	transition: 0.3s;/* ズームとかトランスフォームするときの速度 */
}
.front-service-icon {
	position: absolute;
	width: 15%;/*64px;*/
	/*height: 64px;*/
	top: 32%;
	left: 50%;
	transform: translate(-50%,0%);
	object-fit:cover;
}
.front-service-icon {
	opacity: 1!important;
	z-index: 99;
}
@media screen and (max-width: 960px) {
	.service-title {
		width: 100%;
		text-align: center;
	}
	.front-service-3column {
		width: 100%;
		display: block;
	}
	.front-service-3column-left {
		width: 100%;
		height: 200px;
		margin-top: 10px;
	}
	.front-service-img {
		width: 100%;
		height: 200px;
	}
	.front-service-icon {
		width: 40px;
	}
}
/* 画像ズームイン */
.front-service-zoom-area:hover .front-service-img {
	transform:scale(1.2,1.2);
	opacity: 0.75;
	transition: 0.3s;/* ズームとかトランスフォームするときの速度 */
}
.front-service-zoom-area {
	width: 100%;
	height: 100%;
}
/* ---------------------------- */
/* SERVICEのグリッドエリア		*/
/* ---------------------------- */
.front-service-grid-area {
	display: grid;
	width: 100%;
	padding-top: 0px;
	gap: 75px;/*25px;*/
	grid-template-columns: repeat(auto-fit, 300px);
	grid-auto-rows: auto;/*425px;*//* 行設定 */
	margin: 0 auto;
	justify-content: center;
	justify-items: center;/*start;*/
	align-items: center;
	color: white;
}

/* グリッド単体の設定 */
.front-service-grid-item {
	position: relative;
	width: 300px;
	height: 320px;
	padding: 0px;
	line-height: 1.2;
	/*margin: var(--margin-0-auto);*/
	border: solid 2px white;
	border-radius: 5px;
	box-shadow: 0 0 20px rgba(0,0,0,1.0);/* <length> | <length> | <length> | <length> | <color> */
	color: black;
	background-color: #EEEEEE;
	overflow:hidden;
}
.front-service-grid-item .service-image {
	height: 275px;
}
.front-service-grid-item .service-title {
	position: relative;
	width: 100%;
	height: 42px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	line-height: 40px;
	/*background-color: #EEEEEE;*/
	background-color:rgba(255,255,255,0.95);
	z-index: 10;
}
/* グリッド単体の中の画像設定 */
.front-service-grid-item img {
	width: 100%;
	height: auto;
	padding-top: 0px;
	margin: 0 auto;
	object-fit:cover;
	transition: 0.3s;/* ズームとかトランスフォームするときの速度 */
}
/* 画像ズームイン */
.front-service-grid-item img:hover {
	transform:scale(1.2,1.2);
}

/* -------------------------------------------------------------
!ACTIVITY(活動情報)-フロントページ
------------------------------------------------------------- */
/* フロントページのACTIVITYセクション */
#front-activity {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;
	/*background-color: var(--main-color);*//*#f0f8ff;*/
	/*background-image : url(../img/bg-front-activity.jpg);*/
	background-position: top right;
	background: linear-gradient(	175deg,
									#FFFFFF 0%,
									#FFFFFF 12%,
									var(--main-color) 12%,
									var(--main-color) 100%
								);
	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/
	z-index: 0;
}

.front-activity {
	display: block;
	max-width: var(--width-main-wrap);
	height: var(--front-about-height);
	margin: 0 auto;
	padding: 36px 0px 36px 0px;/* 上右下左 */
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
	/*background-image : url(../img/bg-section1.png);*/
	background-position: center;
	overflow: hidden;
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
._front-activity::after {
	position : absolute; 
	display: block;
	content: "Midorinet-Tottori";

	font-size : 120pt;                 /* 背景透かし文字サイズ */
	/*font-weight : bold;*/                 /* 太字                 */
	color         : rgba(200, 200, 200, 0.21);/* 背景透かし文字色     */
	                                      /* 中心寄せ＆角度       */
	bottom: 22%;
	right: 3%;
	z-index: -1;
}
#front-activity .backStr {
	position      : absolute;
	display       : inline-block;
	white-space   : nowrap;/* 折り返ししない       */
	font-size     : 120pt;/* 背景透かし文字サイズ */
	/*font-weight   : bold;*/
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	color         : rgba(200, 200, 200, 0.21); /* 背景透かし文字色     */
                                        /* 中心寄せ＆角度       */
	top           : 65%;
	right          : 3%;
	/*transform     : translate(-50%, -50%)*/
	/*				rotate(315deg);*/
	z-index: -1;
}
#front-activity ._headline {
	color: #2f4f4f;/*#ea7620;*/
	line-height: 40px;
	font-size: 28px;
}
/* ---------------------------- */
/* フロントACTIVITYの2カラム設定	*/
/* ---------------------------- */
.front-activity-2column {
	display: flex;
	overflow: hidden;
	max-width: var(--width-max-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
}
@media screen and (max-width: 960px) {
	.front-activity-2column {
		display: block;
	}
}
.front-activity-2column2 {
	display: flex;
	overflow: hidden;
	max-width: var(--width-max-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
}
.front-activity-2column-left {
	width: var(--width-front-activity-2column-left);
	height: auto;
	padding: 10px;
	background-color: #ffffff;

	/* 背景色透明度設定 */
	background-color:rgba(255,255,255,0.5);
}
.front-activity-2column-right {
	width: calc(var(--width-main-wrap) - var(--width-front-activity-2column-left));
	padding: var(--default-padding);
}
@media screen and (max-width: 960px) {
	.front-activity-2column-right {
		width: 100%;
	}
}

/* -------------------------------------------------------------
!WORKS(実績)-フロントページ
------------------------------------------------------------- */
/* フロントページのWORKSセクション */
/* 基本中身は投稿型の取得になる */
#front-works {
	/*background-color: var(--main-color);*//*#f0f8ff;*/
	/*background-image : url(../img/bg-front-activity.jpg);*/
	background-position: top right;
	/*
	background: linear-gradient(	170deg,
									rgba(70,102,183,0.8) 0%,
									rgba(70,102,183,0.8) 45%,
									rgba(255,255,255,0.2) 45%,
									rgba(255,255,255,0.2) 100%
								);
	*/
	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/
	z-index: 0;
}

.front-works {
	display: block;
	max-width: 90%;/*var(--width-main-wrap);*/
	height: var(--front-about-height);
	margin: 0 auto;
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
	/*background-image : url(../img/bg-section1.png);*/
	background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 1080px) {
	.front-works {
		display: block;
		max-width: 100%;
	}
}
/* タイトル */
.front-works ._title {
	text-align: center;
	align-items: center;
}
/*
#front-works ._title span {
	color: white;
}
*/
/* テキスト(内容・説明文) */
.front-works ._text {
	padding: 20px 0px;
	font-size: 1.8rem;
	text-align: left;
	align-items: center;
}
/* ボタン */
.front-works ._button {
	text-align: center;
	align-items: center;
}

/* グリッドレイアウト */
.grid-area-front-work {
	display: grid;
	/* max-width: 幅はこれの親divに依存; */
	gap: 1px;/*40px 40px;*//*25px; 上下 左右 */
	grid-template-columns: 1fr 1fr;/*repeat(auto-fit, 700px);*/
	grid-template-rows: 1fr;
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;/*425px;*/
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	justify-items: center;/*start;*/
	align-items: center;
	padding-bottom: 0px;
}
@media screen and (max-width: 1080px) {
	.grid-area-front-work {
		justify-content: center;/*start; 開始位置 */
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 768px) {
	.grid-area-front-work {
		justify-content: center;/*start; 開始位置 */
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 480px) {
	.grid-area-front-work {
		justify-content: center;/*start; 開始位置 */
		grid-template-columns: 1fr;
	}
}
.grid-item-front-work {
	width: 100%;/*450px;*/
	height: auto;
	/*height: 260px;*/
	padding: 0px;
	font-size: 15px;
	color: black;
	background-color: white;
	border: solid 1px white;
	/*border-radius: 0px;*/
	/*
	box-shadow: 5px 5px 5px 0px #000000;*/
	/* X,Y,ぼかし,影の大きさ,色 */
	
}
@media screen and (min-width: 1080px) {
	.grid-item-front-work {
		aspect-ratio: 8 /3;
	}
}
/*
@media screen and (max-width: 768px) {
	.grid-item-front-work {
		
	}
}
*/
.grid-item-front-work a{
	display: block;
	height: auto;
}
.grid-item-front-work img {
	width: 100%;
	aspect-ratio: 4 /3;
	margin: 0 auto;
	border: solid 0px #dddddd;
	object-fit:cover;/* アス比維持 */
	transform:scale(1.2,1.2);
	transition: 0.3s;/* ズームとかトランスフォームするときの速度 */
}
/* 画像ズームイン */
.grid-item-front-work img:hover {
	transform:scale(1.4,1.4);
}

.grid-item-front-work ._title {
	display: flex;
	margin-bottom: 5px;
	padding: 0px 10px;
	color: black;
	font-size: 18px;
	/*background-color: #223a70;*/
	align-items: center;
}
.front-works-post-days {
	padding: 10px;
	font-size:17px;
	line-height: 30px;
	color: #555555;
}

/* 2カラムレイアウト */
.grid-item-front-work-wrap-2column {
	display: flex;/*var(--display-2column);*/
	overflow: hidden;
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
	overflow: hidden;
}
/* 2カラムを等分で使う時、左右のカラムに設定する */
.grid-item-front-work-left,
.grid-item-front-work-right {
	position: relative;
	width:		50%;/*var(--width-nitoubun-2column);*/
	padding:	var(--default-padding);
	text-align:	center;
	overflow: hidden;
}
.grid-item-front-work-right {
	padding-top: 20px;
}
@media screen and (max-width: 1080px) {
	.grid-item-front-work-wrap-2column {
		display:block
	}
	.grid-item-front-work-left,
	.grid-item-front-work-right {
		width: 100%;
	}
	.grid-item-front-work-right {
		height: 200px;
	}
}
/* タイトル */
.grid-item-front-work-right ._title {
	padding: 0.1em 0.3em;
	border-left: 10px solid #19a724;
}
/* 実績フロントグリッド用ボタン */
.grid-item-front-work-btn {
	position: absolute;
	display: inline-block;
	overflow: hidden;
	width: 160px;
	height: 40px;
	right: 10px;
	bottom: 14px;
	font-size: 1.5rem;/* 18px */
	line-height: 38px;/* heightと同じにする→微調整する */
	text-align: center;
	color: white;
	background-color: var(--button-color);
	border: solid 2px var(--button-color);
	border-radius: 0px;
}
.grid-item-front-work-btn:hover {
	color: var(--button-color);
	background-color: white;
}

/* -------------------------------------------------------------
!RECRUIT(採用情報)-フロントページ
------------------------------------------------------------- */
/* フロントページのRECRUITセクション */
#front-recruit {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;
	background-color: #f0f8ff;
	/*background-image : url(../img/bg-front-about.jpg);*/
	background-position: top right;
	background: linear-gradient(	175deg,
									var(--main-color) 0%,
									var(--main-color) 20%,
									#FFFFFF 20%,
									#FFFFFF 100%
								);

	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/

}
.front-recruit {
	display: block;
	max-width: 80%;/*var(--width-main-wrap);*/
	height: var(--front-about-height);
	margin: 0 auto;
	padding: 36px 0px 36px 0px;/* 上右下左 */
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
/**//*background-image : url(../img/bg-section1.png);*/
/**/background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
/* ---------------------------- */
/* フロントRECRUITの2カラム設定	*/
/* ---------------------------- */
.front-recruit-2column-left {
	width: var(--width-front-about-2column-left);
	height: auto;
	padding: 10px;
	/*background-color: #ffffff;*/

	/* 背景色透明度設定 */
	/*background-color:rgba(255,255,255,0.5);*//* 最後の数字が透明度 1で見えなくなる */
}
.front-recruit-2column-right {
	width: var(--width-front-about-2column-right);
	padding: var(--default-padding);
	text-align: center;
}

/* -------------------------------------------------------------
ADVANTAGE(強み)-フロントページ
------------------------------------------------------------- */
/* 表示用リバース設定 */
.reverse-row-order {
	flex-direction: row-reverse;
}
/* フロントページのADVANTAGEセクション */
.advantage {
    position: relative;
    display: block;
	max-width: var(--width-max-wrap);
	min-height: var(--advantage-front-height);
	padding-top: 72px;
	/*background-color: #F7F6F3;*/
	background: linear-gradient(175deg, #FFFFFF 0%, #FFFFFF 12%, #F7F6F3 12%, #F7F6F3 100%);
    overflow: hidden;
}
.advantage-left {
	width: 205px;
	height: auto;
    padding: var(--default-padding);
	/*background-color: #DDDDDD;*/
}
.advantage-left p {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.advantage-right {
	/*width: 995px;*/
	min-height: var(--advantage-right-height);
	/*padding: var(--default-padding);*/
	padding-top: 220px;
	/*background-color: #AAAAAA;*/
}

/* 2カラムのユニーク設定 */
.advantage-2column {
	display: var(--display-2column);
	overflow: hidden;
	max-width: var(--width-main-wrap);
	margin: 0 auto;
}
.advantage-2column-left {
	width: 514px;
}
.advantage-2column-left span {
	padding-left: 45px;
}
@media screen and (max-width: 768px) {
	.advantage-2column-left span {
		padding-left: 15px;
	}
}
/*
.advantage-2column-right {
}
*/
.advantage-2column-right span {
	padding-left: 45px;
}
@media screen and (max-width: 768px) {
	.advantage-2column-right span {
		padding-left: 15px;
	}
}

/* -------------------------------------------------------------
!ACCESS(地図)-フロントページ
------------------------------------------------------------- */
/* フロントページのACCESSセクション */
#front-access {
	position: relative;
	width: 100%;
	height: auto;
/**/margin-top: 0px;/* 上コンテンツとの距離 */
/*background-color: var(--main-color);*//*#f0f8ff;*/
/**//*background-image : url(../img/bg-front-activity.jpg);*/
/**/background-position: top right;
/*background: linear-gradient(	175deg,
									#FFFFFF 0%,
									#FFFFFF 12%,
									var(--main-color) 12%,
									var(--main-color) 100%
								);
*/
	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*background-color:rgba(255,255,255,0.2);*//* 最後の数字が透明度 1で見えなくなる */
	/*background-blend-mode:color;*/

}
.front-access {
	display: block;
	max-width: var(--width-main-wrap);
	height: var(--front-about-height);
	margin: 0 auto;/* 中央配置 */
/**/padding: 72px 0px 72px 0px;/* 上右下左 */
/**//*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
/**//*background-image : url(../img/bg-section1.png);*/
/**/background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 30px;
	letter-spacing: 0.1rem;
}
.front-access-2column {
	display: flex;
	overflow: hidden;
	max-width: var(--width-max-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
}
@media screen and (max-width: 1250px) {
	.front-access-2column {
		display: block;
	}
	.front-access-2column .nitoubun-2column {
		margin: 0 auto;
	}
}

/*--------------------------------------------------------------
!シングルページ用汎用
--------------------------------------------------------------*/
/* 上メニュー */
.single-top-menu-area {
	width: 100%;
	height: auto;
	display: block;
	text-align: center;
	margin: 0 auto;/* 中央配置 */
	padding-bottom: 20px;
	overflow: hidden;
	
	/* フォント設定 */
	/*font-family: "Noto Sans JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	font-size: 1.5rem;/*18px;*/
	line-height: 24px;
	letter-spacing: 0.1rem;
	background-color: white;
}
@media screen and (max-width: 960px) {/* ブレークポイント指定 */
	.single-top-menu-area {/* table用 */
		margin-bottom: 0px;
	}
}

.single-top-menu {/* table用 */
	text-align: center;
	margin: 0 auto;
	padding: 0 10px;
	font-weight: bold;
}
@media screen and (max-width: 768px) {/* ブレークポイント指定 */
	.single-top-menu {/* table用 */
		width: 100%;
	}
}
.single-top-menu td {
	display: inline-block;
	width: 180px;
	padding: 10px 10px;
	color: white;
}
.single-top-menu td a {
	display: block;
	width: 100%;
	height: 40px;
	padding-top: 7px;
	border: solid 1px var(--button-color);/*#4169e1;*/
	/*border-radius: 5px;*/
	background-color: var(--button-color);
}
.single-top-menu td a:hover {
	color: var(--button-color);
	background-color: white;
}
@media screen and (max-width: 768px) {/* ブレークポイント指定 */
	.single-top-menu td {
		display: inline-block;
		width: 100%;/*150px;*/
		padding: 10px;
		color: white;
	}
}
/* 背景指定用クラス */
.single-bg-area {
	width: 100%;
	height: auto;
}
.single-bg-area2 {
	width: 100%;
	height: auto;
	background-color:var(--main-color);
}
.single-bg-area3 {
	width: 100%;
	height: auto;
/**/background-position: top right;
/**/background: linear-gradient(	175deg,
									var(--main-color) 0%,
									var(--main-color) 20%,
									#FFFFFF 20%,
									#FFFFFF 100%
								);

	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*background-color:rgba(255,255,255,0.2);*//* 最後の数字が透明度 1で見えなくなる */
	/*background-blend-mode:color;*/

}
.single-bg-area-white {
	width: 100%;
	height: auto;
	background-color: white;
}
.single-bg-area-button-color {
	width: 100%;
	height: auto;
	background-color: var(--button-color);
}
.single-bg-area-clear {
	width: 100%;
	height: auto;
	background-color: rgba(255,255,255,0.9);
}
/* 共用トピック */
.about-topic {
	display: block;
	width: 100%;/*950px;*/
	text-align: left;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {/* ブレークポイント指定 */
	.about-topic {
		width: 100%;
	}
}
.about-topic p {
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
	.about-topic p {
		font-size: 1.8rem;
	}
}
.about-topic hr {
	height: 3px;
	background-color: #4169E1;/*green;*/
	width: 100%;
	border: none;
}
.about-topic a{
	color: green;
	text-decoration: underline;
}
.green-link a{
	color: green;
	text-decoration: underline;
}
.topic-title {
	width: 100%;
	border: solid 1px #000000;
	border-radius: 5px;
}
.topic-title th {
	display: flex;
	width: 40px;
	margin: 0;
	padding: 5px 0;
	justify-content: center;
}
.topic-title td {
	width: 100%;
	text-align: left;
	padding-left: 5px;
	font-size: 2.0rempx;
}
.topic-title h2 {
	font-size: 20px;
	margin-bottom: 0;
}
.about-topic .wrap-2column .left-2column {
	max-width: 220px;/*var(--width-nitoubun-2column);*/
	padding: 0px 20px;
	text-align:	left;
}
.about-topic .wrap-2column .right-2column {
	/*width:		var(--width-nitoubun-2column);*/
	padding: 0px 20px;
	text-align:	center;
}
.about-topic .wrap-2column .left-2column img {
	max-width: 200px;
	display: block;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.about-topic .wrap-2column .left-2column {
		max-width: 100%;
		width: 100%;
	}
	.about-topic .wrap-2column .right-2column {
		width: 100%;
		padding: 10px 5px;
	}
	.about-topic .wrap-2column .left-2column img {
		margin: auto;
	}
}
.topic-retur-top {
	text-align: right;
}
/* ダウンロードボタン並べ用グリッドレイアウト */
.dl-content-grid-area {
	display: grid;
	max-width: var(--width-max-wrap);
	gap: 5px 5px;/* 上下 左右 */
	grid-template-columns: repeat(auto-fit, 520px);
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;/*425px;*/
	margin: 0 auto;
	justify-content: center;
	justify-items: center;/*start; 開始位置 */
	align-items: center;
}
.dl-content-grid-item {
	width: 520px;
	height: 60px;
	padding: 10px;
	line-height: 1.2;
	text-align: left;
	/*margin: var(--margin-0-auto);*/
	color: white;
	background-color: #4169E1;
	border: solid 1px #4169E1;
	border-radius: 5px;
	/*box-shadow: 0px 0px 0px 0px #000000;*/
}
.dl-content-grid-item:hover {
	color: #4169E1;
	background-color: white;
	font-weight: bold;
}
.dl-content-grid-item hr {
	height: 3px;
	background-color: #4169E1;/*green;*/
	width: 100%;
	border: none;
}
.dl-content-grid-item a {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	text-decoration: none;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.dl-content-grid-item {
		width: 90vw;
		border: solid 1px #000000;
	}
}
.dl-content-title {
	font-size: 2.0rem;
	line-height: 2.0;
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	color: #4169E1;
	text-align: left;
	/*font-weight: bold;*/
}

@media screen and (min-width: 768px) {
	.vertical-center-text {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
.single-decorate-area {
	position: absolute;
	width: 1250px;
	height: 400px;
	background-color: #f0f8ff;
	top: 150px;
}
@media screen and (max-width: 768px) {
	.single-decorate-area {
		width: 100%;
	}
}

/*--------------------------------------------------------------
!ABOUT(企業情報)-シングルページ
--------------------------------------------------------------*/
/* ABOUTセクション */
#single-about {
	position: relative;
	width: 100%;
	height: auto;
/**/margin-top: 0px;/* 上コンテンツとの距離 */
/**/background-color: white;
/**//*background-image : url(../img/bg-front-about.jpg);*/
/**/background-position: top right;

	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/

}
#single-about  ._title h2 {
	position: relative;
	font-size: 36px;
}
/* タイトルの前に■を付けるCSS
#single-about  ._title h2:before {
	position: absolute;
	width: 18px;
	height: 42px;
	top: 3px;
	left: 3px;
	background: var(--button-color);
	content: "";
}
*/
@media screen and (max-width: 768px) {/* ブレークポイント指定 */
	#single-about  ._title h2 {
		font-size: 24px;
	}
	#single-about  ._title h2:before {
		height: 25px;
	}
}
.single-about {
	display: block;
	max-width: var(--width-single-wrap);
	height: var(--front-about-height);
	text-align: center;
	margin: 0 auto;/* 中央配置 */
/**/padding: 36px 0px 36px 0px;/* 上右下左 */
/**//*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
/**//*background-image : url(../img/bg-section1.png);*/
/**/background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/*18px;*/
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
	.single-about {
		padding: 10px 0px 0px 0px;/* 上右下左 */
	}
}
/* 項目1 */
.about-item-1-2 {
	background-color: #f0f8ff;
}
.about-item-1-3 {
	background-color: #f0f8ff;
}
.about-item-1-4 {
	padding-right: 10px!important;
	padding-left: 10px!important;
}
/* レスポンシブ設定 */
@media screen and (min-width: 768px) {
	.about-item-1-2,
	.about-item-1-3 {
		padding-right: 10px!important;
		padding-left: 10px!important;
	}
}
/* 会社概要テーブル */
.company-profile-table {
    width: var(--width-tbl-r02);
    margin-left: auto;
	margin-right: auto;
}
.company-profile-table th {
    width: 250px;
    border: solid 1px #CCCCCC;
    color: #FFFFFF;
    padding: 10px;
    background: #19a724;
}
.company-profile-table td {
    padding: 10px;
    border: solid 1px #CCCCCC;
    background: #FFFFFF;
	text-align: left;
}
   
@media screen and (max-width: 640px) {
    .company-profile-table {
		width: var(--width-tbl-r02);
		min-width: 320px;
	}
	.company-profile-table th,
	.company-profile-table td {
		display: block;
		width: 100%;
		border-bottom: none;
		padding: 10px 15px;
		border: solid 1px #CCCCCC;
		/*border: none;*/
	}
}

/* 会員表 */
.about-member-table {
	width: auto;
	text-align: center;
}
.about-member-table table {
	width: 80%;
	margin: auto;
	border-collapse: collapse;
}
.about-member-table table th{
	text-align: left;
	padding-left: 20px;
}
.about-member-table table table,
.about-member-table table th,
.about-member-table table td {
	border:1px solid #4169e1;
}


/*--------------------------------------------------------------
!SERVICE(サービス・業務内容)-シングルページ
--------------------------------------------------------------*/
/* SERVICEセクション */
#single-service {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;/* 上コンテンツとの距離 */
	background-color: white;
	/*
	background-image : url(../img/bg-front-about.jpg);
	*/
	background-position: top right;

	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/

}
#single-service  ._title h2 {
	position: relative;
	padding-left: 25px;
	font-size: 36px;
}
#single-service  ._title h2:before {
	position: absolute;
	width: 18px;
	height: 42px;
	top: 3px;
	left: 3px;
	background: #4169E1;
	content: "";
}
@media screen and (max-width: 768px) {
	#single-service  ._title h2 {
		font-size: 24px;
	}
	#single-service  ._title h2:before {
		height: 25px;
	}
}
.activity-subtitle {
	text-decoration: underline;
}
.single-service {
	display: block;
	max-width: var(--width-single-wrap);
	height: auto;
	text-align: center;
	margin: 0 auto;
	padding: 36px 0px 36px 0px;/* 上右下左 */
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
	/*background-image : url(../img/bg-section1.png);*/
	background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	/*font-family: "Noto Sans JP", sans-serif;*/
	font-size: 1.5rem;
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
	.single-service {
		padding: 10px 0px 0px 0px;/* 上右下左 */
	}
}

.single-service-noimage {
	width: 1020px;
	margin: 0 auto;
}
/*--------------------------------------------------------------
!OVERVIEW(概要)-シングルページ
--------------------------------------------------------------*/
/* OVERVIEWセクション */
#single-overview {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;/* 上コンテンツとの距離 */
	background-color: white;/*#f0f8ff;*/
	/*
	background-image : url(../img/bg-front-about.jpg);
	*/
	background-position: top right;

	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/

}
#single-overview  ._title h2 {
	position: relative;
	padding-left: 25px;
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-size: 36px;
}
#single-overview  ._title h2:before {
	position: absolute;
	width: 18px;
	height: 42px;
	top: 3px;
	left: 3px;
	background: #4169E1;
	content: "";
}
@media screen and (max-width: 768px) {
	#single-overview  ._title h2 {
		font-size: 24px;
	}
	#single-overview  ._title h2:before {
		height: 25px;
	}
}
.activity-subtitle {
	text-decoration: underline;
}
.single-overview {
	display: block;
	max-width: var(--width-single-wrap);
	height: auto;
	text-align: center;
	margin: 0 auto;
	padding: 36px 0px 36px 0px;/* 上右下左 */
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
	/*
	background-image : url(../img/bg-section1.png);
	*/
	background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	/*font-family: "Noto Sans JP", sans-serif;*/
	font-size: 1.5rem;
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
	.single-overview {
		padding: 10px 0px 0px 0px;/* 上右下左 */
	}
}

.single-overview-noimage {
	width: 1020px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.single-overview-noimage {
		width: 90%;
		max-width: 350px;
		margin: 0 auto;
	}
}
/* 活動内容グリッドレイアウト */
.activity-content-grid-area {
	display: grid;
	max-width: var(--width-max-wrap);
	gap: 5px 5px;/* 上下 左右 */
	grid-template-columns: repeat(auto-fit, 350px);
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;/*425px;*/
	margin: 0 auto;
	justify-content: center;
	justify-items: center;/*start; 開始位置 */
	align-items: center;
}
.activity-content-grid-item {
	width: 350px;
	height: 420px;
	padding: 10px;
	line-height: 1.2;
	text-align: left;
	/*margin: var(--margin-0-auto);*/
	color: black;
	background-color: white;
	/*border: solid 1px #000000;*/
	/*border-radius: 10px;*/
	/*box-shadow: 0px 0px 0px 0px #000000;*/
}
.activity-content-grid-item img {
	max-height: 200px;
	object-fit: cover;
}
.activity-content-grid-item hr {
	height: 3px;
	background-color: #4169E1;
	width: 100%;
	border: none;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.activity-content-grid-item {
		width: 100%;
		border: solid 0px #000000;
	}
}
.activity-content-title {
	font-size: 2.0rem;
	line-height: 2.0;
	/*font-family: "Noto Serif JP", sans-serif;*/
	color: #4169E1;
	text-align: left;
	/*font-weight: bold;*/
}

/*--------------------------------------------------------------
STRENGTH(強み)-単ページ
--------------------------------------------------------------*/
.strength-top-img {
	width: var(--strength-top-img);/*800px;*/
	height: auto;
	margin: 0 auto;
}
.wrap-1column-strength {
	overflow: hidden;
	max-width: var(--width-strength-wrap);
	height: auto;
	margin: 0 auto;
    padding: var(--default-padding);
	/*background-color: #DDDDDD;*/
}
.strength-text2 {
	width: 500px;
	padding-top: 100px;
	padding-left: 10px;
	/*padding: var(--default-padding);*/
}
.wrap-2column-strength{/* 未使用 */
	display: var(--display-2column);
	overflow: hidden;
	max-width: var(--width-main-wrap);
	margin: 0 auto;
}

.strength-2column-left {
	position: relative;
	width: 550px;
	height: auto;
    padding: var(--default-padding);
	background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 82%, #F7F6F3 82%, #F7F6F3 100%);
    margin-left: auto;
	margin-right: auto;
}
.strength-2column-left span {
	position: absolute;
	bottom: 0;
}
.strength-2column-right {
	width: 250px;/*790px;*/
	height: auto;
	/*padding-top: 24px;*/
	padding-bottom: 0;
	padding-left: 30px;
	/*padding: var(--default-padding);*/
	vertical-align: bottom;
}
.strength-2column-right img {
	display: block;
}
@media screen and (max-width: 960px) {
	.strength-2column-right {
		width: 30%;
		padding: 0px 15px;
	}
}
@media screen and (max-width: 768px) {
	.strength-2column-right {
		width: 100%;
	}
	.strength-2column-right img {
		width: 100%;
	}
}
.strength-title {
	display: block;
	/*
	padding-top: 12px;
	margin-top: -8px;
	vertical-align:bottom
	*/
}
.strength-line {
	overflow: hidden;
	max-width: var(--width-main-wrap);
	height: 5px;
	margin: 0 auto;
	background-color: #E0EFF6;
}
.strength-main-text {
	overflow: hidden;
	max-width: var(--width-main-wrap);
	height: auto;
	margin: 0 auto;
    padding-left: 30px;
	/*background-color: #DDDDDD;*/
}
/* ---------------------------- */
/* スタッフ紹介用				*/
/* ---------------------------- */
.wrap-1column-staff {
	overflow: hidden;
	max-width: var(--width-800-wrap);
	height: auto;
	margin: 0 auto;
    padding: var(--default-padding);
	/*background-color: #DDDDDD;*/
}
.wrap-2column-staff {
	display: var(--display-2column);
	overflow: hidden;
	max-width: var(--width-staff-wrap);
	margin: 0 auto;
	border: solid 1px #000000;
}
.left-2column-staff {
	width: var(--width-left-2column);
	height: auto;
    padding: var(--default-padding);
}
.right-2column-staff {
	width: var(--width-right-2column);
	padding: var(--default-padding);
}
/* ---------------------------- */
/* スタッフ紹介のグリッドエリア	*/
/* ---------------------------- */
.staff-grid-area {
	display: grid;
	max-width: 1220px;/*var(--width-main-wrap);*/
	height: auto;
	gap: 10px;/*25px;*/
	grid-template-columns: repeat(auto-fit, 500px);
	/*grid-template-columns: repeat(auto-fit, 330px);*/
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;/*425px;*/
	margin: 0 auto;
	justify-content: center;
	justify-items: center;/*start;*/
	align-items: center;
}
@media screen and (max-width: 1060px) {
	.staff-grid-area {
		justify-content: center;
	}
}
.staff-grid-item {
	width: 500px;
	height: 200px;
	/*padding: 5px;*/
	line-height: 1.2;
	/*margin: var(--margin-0-auto);*/
	border: solid 1px #000000;
	/*border-radius: 10px;*/
	/*box-shadow: 0px 0px 0px 0px #000000;*/
}
.staff-grid-item img {
	width: 277px;
	height: auto;
	/*aspect-ratio: 4 / 3;*/
	padding-top: 10px;
	margin: 0 auto;
	object-fit:cover;
}

/*--------------------------------------------------------------
RECRUIT(採用情報)-単ページ
--------------------------------------------------------------*/
.recruit-top-img {
	max-width: var(--recruit-top-img);/*800px;*/
	height: auto;
	margin: 0 auto;
}
.recruit {
    position: relative;
    display: block;
	max-width: var(--width-max-wrap);
	height: var(--recruit-height);/*1140px;*/
    overflow: hidden;
}
.recruit-img {
    position: absolute;
    width: 679px;
    top: 25px;
    left: 50%;
    margin-left:-960px;
    z-index: 3;
}
.recruit-img2 {
    position: absolute;
    width: 330px;
    top: 640px;
    left: 50%;
    margin-left:-700px;
    z-index: 3;
}
.recruit-img3 {
    position: absolute;
    width: 115px;
    top: 232px;
    left: 50%;
    margin-left:-410px;
    z-index: 4;
}
.recruit-img4 {
    position: absolute;
    width: 327px;
    top: 395px;
    left: 50%;
    margin-left: 633px;
    z-index: 3;
}
.recruit-main {
    position: var(--position-absolute-relative);/*absolute;*/
    display: block;
    width: var(--recruit-main-width);/*1130px;*/
    height: var(--recruit-main-height);/*945px;*/
    top: var(--recruit-main-top);/*85px;*/
    left: var(--left-50par-0);/*50%;*/
    margin-left: var(--recruit-main-margin-left);/*-430px;*/
	/*overflow: hidden;*/
    padding-top: var(--recruit-main-padding-top);/*130px;*/
    padding-left: var(--recruit-main-padding-left);/*267px;*/
	background-color: #2CA5DC;
    z-index: 1;
}
/*--------------------------------------------------------------
!CONTACT(お問い合わせ)-シングルページ
--------------------------------------------------------------*/
#single-contact {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;
	background-color: white;
	/*
	background-image : url(../img/bg-front-about.jpg);
	*/
	background-position: top right;

	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/

}

.single-contact {
	display: block;
	max-width: var(--width-single-wrap);
	height: var(--front-about-height);
	text-align: center;
	margin: 0 auto;
	padding: 36px 0px 36px 0px;/* 上右下左 */
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
/**//*background-image : url(../img/bg-section1.png);*/
/**/background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/*18px;*/
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
	.single-contact {
		padding: 10px 0px 0px 0px;/* 上右下左 */
	}
}

/* コンタクトフォーム説明文 */
.contact-form-text {
	font-size: 1.7rem;
	text-align: left;
}

/*--------------------------------------------------------------
!POST 投稿系設定
--------------------------------------------------------------*/
/*--------------------------------------------------------------
!WORK - アーカイブ用
--------------------------------------------------------------*/
#archive-works {
	/*background-color: var(--main-color);*//*#f0f8ff;*/
	/*background-image : url(../img/bg-front-activity.jpg);*/
	background-position: top right;
	/*
	background: linear-gradient(	170deg,
									rgba(70,102,183,0.8) 0%,
									rgba(70,102,183,0.8) 45%,
									rgba(255,255,255,0.2) 45%,
									rgba(255,255,255,0.2) 100%
								);
	*/
	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/
	z-index: 0;
}

.archive-works {
	display: block;
	max-width: 90%;/*var(--width-main-wrap);*/
	height: var(--front-about-height);
	margin: 0 auto;
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
	/*background-image : url(../img/bg-section1.png);*/
	background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 1080px) {
	.archive-works {
		display: block;
		max-width: 100%;
	}
}
/* タイトル */
.archive-works ._title {
	text-align: center;
	align-items: center;
}
/*
#front-works ._title span {
	color: white;
}
*/
/* テキスト(内容・説明文) */
.archive-works ._text {
	padding: 20px 0px;
	font-size: 1.8rem;
	text-align: left;
	align-items: center;
}
/* ボタン */
.archive-works ._button {
	text-align: center;
	align-items: center;
}

/* グリッドレイアウト */
.grid-area-archive-work {
	display: grid;
	/* max-width: 幅はこれの親divに依存; */
	gap: 1px;/*40px 40px;*//*25px; 上下 左右 */
	grid-template-columns: 1fr 1fr;/*repeat(auto-fit, 700px);*/
	grid-template-rows: 1fr;
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;/*425px;*/
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	justify-items: center;/*start;*/
	align-items: center;
	padding-bottom: 0px;
}
@media screen and (max-width: 1080px) {
	.grid-area-archive-work {
		justify-content: center;/*start; 開始位置 */
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 768px) {
	.grid-area-archive-work {
		justify-content: center;/*start; 開始位置 */
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 480px) {
	.grid-area-archive-work {
		justify-content: center;/*start; 開始位置 */
		grid-template-columns: 1fr;
	}
}
.grid-item-archive-work {
	width: 100%;/*450px;*/
	height: auto;
	/*height: 260px;*/
	padding: 0px;
	font-size: 15px;
	color: black;
	background-color: white;
	border: solid 1px gray;
	/*border-radius: 0px;*/
	/*
	box-shadow: 5px 5px 5px 0px #000000;*/
	/* X,Y,ぼかし,影の大きさ,色 */
	
}
@media screen and (min-width: 1080px) {
	.grid-item-archive-work {
		aspect-ratio: 8 /3;
	}
}
/*
@media screen and (max-width: 768px) {
	.grid-item-front-work {
		
	}
}
*/
.grid-item-archive-work a{
	display: block;
	height: auto;
}
.grid-item-archive-work img {
	width: 100%;
	aspect-ratio: 4 /3;
	margin: 0 auto;
	border: solid 0px #dddddd;
	object-fit:cover;/* アス比維持 */
	transform:scale(1.2,1.2);
	transition: 0.3s;/* ズームとかトランスフォームするときの速度 */
}
/* 画像ズームイン */
.grid-item-archive-work img:hover {
	transform:scale(1.4,1.4);
}

.grid-item-archive-work ._title {
	display: flex;
	margin-bottom: 5px;
	padding: 0px 10px;
	color: black;
	font-size: 18px;
	/*background-color: #223a70;*/
	align-items: center;
}
.archive-works-post-days {
	padding: 10px;
	font-size:17px;
	line-height: 30px;
	color: #555555;
}

/* 2カラムレイアウト */
.grid-item-archive-work-wrap-2column {
	display: flex;/*var(--display-2column);*/
	overflow: hidden;
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
	overflow: hidden;
}
/* 2カラムを等分で使う時、左右のカラムに設定する */
.grid-item-archive-work-left,
.grid-item-archive-work-right {
	position: relative;
	width:		50%;/*var(--width-nitoubun-2column);*/
	padding:	var(--default-padding);
	text-align:	center;
	overflow: hidden;
}
.grid-item-archive-work-right {
	padding-top: 20px;
}
@media screen and (max-width: 1080px) {
	.grid-item-archive-work-wrap-2column {
		display:block
	}
	.grid-item-archive-work-left,
	.grid-item-archive-work-right {
		width: 100%;
	}
	.grid-item-archive-work-right {
		height: 200px;
	}
}
/* タイトル */
.grid-item-archive-work-right ._title {
	padding: 0.1em 0.3em;
	border-left: 10px solid #19a724;
}
/* 実績フロントグリッド用ボタン */
.grid-item-archive-work-btn {
	position: absolute;
	display: inline-block;
	overflow: hidden;
	width: 160px;
	height: 40px;
	right: 10px;
	bottom: 14px;
	font-size: 1.5rem;/* 18px */
	line-height: 38px;/* heightと同じにする→微調整する */
	text-align: center;
	color: white;
	background-color: var(--button-color);
	border: solid 2px var(--button-color);
	border-radius: 0px;
}
.grid-item-archive-work-btn:hover {
	color: var(--button-color);
	background-color: white;
}

/*--------------------------------------------------------------
!NEWS(サムネ無し投稿一覧) - フロントページ用(1カラム)
--------------------------------------------------------------*/
#front-news-1column {
	display: block;
	background-color: white;
	overflow: hidden;
}
.front-news-1column {
	display: block;
	overflow: hidden;
	max-width: 1080px;
	padding: 0px;
	margin: 0 auto;
}
.front-news-1column ._title {
	text-align: center;
}
.front-news-1column ._subtitle {
	text-align: center;
}
.front-news-1column ._text {
	text-align: center;
}
.front-news-1column ._contents {
	width: 100%;
	margin: 0 auto;
	margin-top: 30px;
	line-height: 20px;
}
.front-news-1column ._button {
	text-align: center;
}

/* ニュースリスト */
.front-news-list {
	display: table;
	border-spacing: 15px;
}
.front-news-list li {
	display: table-cell;
	list-style: none;
	padding: 2px;
	margin: 5px;
	background-color: rgba(0,0,0,0);
}
@media screen and (max-width: 768px) {
	.front-news-list li {
		display: block;
		height: auto;
		/*vertical-align: middle;*/
	}
}

/* 投稿日 */
.front-news-list ._news-day {
	width: 140px;
	vertical-align: middle;
}
/* 疑似カテゴリ */
.front-news-list ._news-index {
	width: 160px;
	padding: 0;
	margin: 0;
	text-align: center;
	border: solid 1px #000000;
	/*border-radius: 18px;*/
}
/* タイトル */
/*
.front-news-list ._news-title {
	width: 550px;
}
*/
@media screen and (max-width: 768px) {
	.front-news-list ._news-day {
		width: 100%;
	}
	.front-news-list ._news-title {
		width: 100%;
	}
}
/*--------------------------------------------------------------
!NEWS(サムネ無し投稿一覧) - フロントページ用(2カラム)
--------------------------------------------------------------*/
#front-news-2column {
	position: relative;
	display: block;
	max-width: var(--width-max-wrap);
	height: var(--front-news-height);
	padding-top: 72px;/*var(--front-news-padding-top);*/
	padding-bottom: 72px;
	padding-left: 15px;
	padding-right: 15px;
	background-color: white;/*var(--main-color);*//*#f0f8ff;*/
	overflow: hidden;
}
.wrap-2column-front-news {
	display: flex;/*var(--display-2column);*/
	overflow: hidden;
	max-width: 1080px;/*var(--width-front-news-wrap);*/
	padding: 0px;
	margin: 0 auto;
}
@media screen and (max-width: 960px) {
	.wrap-2column-front-news {
		display:block;
		max-width: 100vw;
	}
}
.front-news-left {
	display: block;
	width: var(--width-front-news-left);/*410px;*/
	height: auto;
	/*padding: var(--default-padding);*/
	/*background-color: #DDDDDD;*/
	text-align: center!important;
}
@media screen and (max-width: 768px) {
.front-news-left {
		text-align: center;
	}
}
.front-news-right {
	display: block;
	width: 100%;
	height: auto;
	font-size: 1.5rem;/* 18px */
	/*line-height: 60px;*/
	/*padding: var(--default-padding);*/
	/*background-color: #DDDDDD;*/
}
@media screen and (max-width: 960px) {
	.front-news-right {
		line-height: 30px;
	}
}
.front-post-title {
	display: flex;
	text-align: left;
	justify-content: start;/*start; 開始位置 */
	justify-items: center;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.front-post-title {
		justify-content: center;
	}
}
.news-title-index {
	text-align: center;
	border: solid 1px #000000;
	/*border-radius: 18px;*/
}

/*--------------------------------------------------------------
NEWS - アーカイブ用
--------------------------------------------------------------*/
#archive-news {
	overflow: hidden;
	width:100%;
	height: auto;
	margin: 0 auto;
	background-color: white;
	/*background-image : url(../img/footer-top.png);*/
	/*background-position: center;*/
	/*background-position: top;*/
}

.archive-news {
	display: block;
	overflow: hidden;
	max-width: 1080px;
	padding: 0px;
	margin: 0 auto;
}
.archive-news ._button {
	text-align: center;
}

/* ニュースリスト */
.archive-news-list {
	display: table;
	width: 100%;
	border-spacing: 15px;
}
.archive-news-list li {
	display: table-cell;
	list-style: none;
	padding: 2px;
	margin: 5px;
	background-color: rgba(0,0,0,0);
}
@media screen and (max-width: 768px) {
	.archive-news-list li {
		display: block;
		height: auto;
		/*vertical-align: middle;*/
	}
}

/* 投稿日 */
.archive-news-list ._news-day {
	width: 140px;
	vertical-align: middle;
}
/* 疑似カテゴリ */
.archive-news-list ._news-index {
	width: 160px;
	padding: 0;
	margin: 0;
	text-align: center;
	border: solid 1px #000000;
	/*border-radius: 18px;*/
}
/* タイトル */
/*
.archive-news-list ._news-title {
	width: 550px;
}
*/
@media screen and (max-width: 768px) {
	.archive-news-list ._news-day {
		width: 100%;
	}
	.archive-news-list ._news-title {
		width: 100%;
	}
}
/*--------------------------------------------------------------
NEWS - シングル用
--------------------------------------------------------------*/
/*
#single-news {
}
*/
/*--------------------------------------------------------------
!BLOG - フロントページ用
--------------------------------------------------------------*/
#front-blog {
	display: block;
	/*background-color: white;*/
	overflow: hidden;

	margin-top: 0px;
	background-color: #f8f8f8;
	/*background-image : url(../img/bg-front-contest.jpg);*/
	/*background-position: top right;*/
	/*background-repeat: repeat;*/

	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.85);
	background-blend-mode:color;
	*/

}

.front-blog {
	display: block;
	max-width: 90%;/*var(--width-main-wrap);*/
	height:auto;
	margin: 0 auto;
	text-align: center;
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
	/*background-image : url(../img/bg-section1.png);*/
	background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 1080px) {
	.front-blog {
		display: block;
		max-width: 100%;
	}
}

/* グリッドレイアウト */
.front-blog-grid-area {
	display: grid;
	padding-top: 36px;
	gap: 1px;/*40px 20px;*//* 上下 左右 */
	grid-template-columns: 1fr 1fr 1fr 1fr;/*repeat(auto-fit, 700px);*/
	/*grid-template-columns: repeat(auto-fit, 339px);*/
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;/*425px;*/
	margin: 0 auto;
	justify-content: center;
	justify-items: center;/*start; 開始位置 */
	align-items: center;
}
@media screen and (max-width: 1400px) {
	.front-blog-grid-area {
		grid-template-columns: 1fr 1fr 1fr ;
	}
}
@media screen and (max-width: 1080px) {
	.front-blog-grid-area {
		max-width: 100%;
		grid-template-columns: 1fr 1fr ;
	}
}
@media screen and (max-width: 768px) {
	.front-blog-grid-area {
		grid-template-columns: 1fr 1fr ;
		gap: 10px 1px;
		padding-left: 0px;
		padding-right: 0px;
	}
}

/* グリッドアイテム */
.front-blog-grid-item {
	width: 100%;
	padding: 40px;
	line-height: 1.2;
	color: black;
	background-color: white;
	/*border: solid 1px #dddddd;*/
	/*border-radius: 10px;*/
	/*box-shadow: 2px 2px 2px 2px #000000;*/
	/* アスペクト比 */
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.front-blog-grid-item {
		grid-template-columns: 1fr 1fr ;
		padding: 0px;
		aspect-ratio: 1 / 1.4;
		border: 1px #000 solid;
	}
}
/* ホバー設定 */
.front-blog-grid-item:hover {
	box-shadow: 0 0 20px rgba(0,0,0,1.0);/* <length> | <length> | <length> | <length> | <color> */
	z-index: 1;
	transition: 0.5s;
}
/* サムネイル設定 */
.front-blog-grid-item img {
	width: 100%;
	margin: 0 auto;
	/* 画像の表示用アスペクト比(画像のアスペクト比ではない) */
	aspect-ratio: 4 /3;
	/* 画像のアスペクト比維持 */
	object-fit:cover;
	/*border: solid 1px #dddddd;*/
	overflow: hidden;
}
.front-blog-grid-item:hover img {
	transform:scale(1.1);
	transition: 0.3s;
}

.front-blog-text-area {
	position: relative;
	background-color: rgba(255,255,255,1);
	z-index: 1;
	/*
		border-left: solid 1px #dddddd;
	border-right: solid 1px #dddddd;
	border-bottom: solid 1px #dddddd;
	*/
}
.front-blog-grid-area ~ .front-blog-text-area {
	border-right: solid 1px #dddddd;
}
.front-blog-post-days {
	padding: 2px 10px;
	font-size:15px;
	text-align: left;
	color: #9e6e0f;/*orange;*/
}
.front-blog-post-title {
	text-align: left;
	padding: 8px 10px;
	font-size:16px;
	line-height: 30px;
}
.front-blog-title {
	display: flex;
	text-align: left;
	justify-content: center;/*start; 開始位置 */
	justify-items: center;
	align-items: center;
}
/*--------------------------------------------------------------
!BLOG - アーカイブ用(表示数とページャー以外、基本的にフロントと同じにする)
--------------------------------------------------------------*/
#archive-blog {
	display: block;
	/*background-color: white;*/
	overflow: hidden;

	margin-top: 0px;
	background-color: #f8f8f8;
	/*background-image : url(../img/bg-front-contest.jpg);*/
	/*background-position: top right;*/
	/*background-repeat: repeat;*/

	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.85);
	background-blend-mode:color;
	*/
}
.archive-blog {
	display: block;
	max-width: 90%;
	height:auto;
	margin: 0 auto;
	text-align: center;
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
	/*background-image : url(../img/bg-section1.png);*/
	background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 1080px) {
	.archive-blog {
		display: block;
		max-width: 100%;
	}
}

/* グリッドレイアウト */
.archive-blog-grid-area {
	display: grid;
	padding-top: 36px;
	gap: 1px;/*40px 20px;*//* 上下 左右 */
	grid-template-columns: 1fr 1fr 1fr 1fr;/*repeat(auto-fit, 700px);*/
	/*grid-template-columns: repeat(auto-fit, 339px);*/
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;/*425px;*/
	margin: 0 auto;
	justify-content: center;
	justify-items: center;/*start; 開始位置 */
	align-items: center;
}
@media screen and (max-width: 1400px) {
	.archive-blog-grid-area {
		grid-template-columns: 1fr 1fr 1fr ;
	}
}
@media screen and (max-width: 1080px) {
	.archive-blog-grid-area {
		max-width: 100%;
		grid-template-columns: 1fr 1fr ;
	}
}
@media screen and (max-width: 768px) {
	.archive-blog-grid-area {
		grid-template-columns: 1fr 1fr ;
		gap: 10px 1px;
		padding-left: 0px;
		padding-right: 0px;
	}
}

/* グリッドアイテム */
.archive-blog-grid-item {
	width: 100%;
	padding: 40px;
	line-height: 1.2;
	color: black;
	background-color: white;
	/*border: solid 1px #dddddd;*/
	/*border-radius: 10px;*/
	/*box-shadow: 2px 2px 2px 2px #000000;*/
	/* アスペクト比 */
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.archive-blog-grid-item {
		grid-template-columns: 1fr 1fr ;
		padding: 0px;
		aspect-ratio: 1 / 1.4;
		border: 1px #000 solid;
	}
}
/* ホバー設定 */
.archive-blog-grid-item:hover {
	box-shadow: 0 0 20px rgba(0,0,0,1.0);/* <length> | <length> | <length> | <length> | <color> */
	z-index: 1;
	transition: 0.5s;
}
/* サムネイル設定 */
.archive-blog-grid-item img {
	width: 100%;
	margin: 0 auto;
	/* 画像の表示用アスペクト比(画像のアスペクト比ではない) */
	aspect-ratio: 4 /3;
	/* 画像のアスペクト比維持 */
	object-fit:cover;
	/*border: solid 1px #dddddd;*/
	overflow: hidden;
}
.archive-blog-grid-item:hover img {
	transform:scale(1.1);
	transition: 0.3s;
}

.archive-blog-text-area {
	position: relative;
	background-color: rgba(255,255,255,1);
	z-index: 1;
	/*
		border-left: solid 1px #dddddd;
	border-right: solid 1px #dddddd;
	border-bottom: solid 1px #dddddd;
	*/
}

.archive-blog-grid-area ~ .archive-blog-text-area {
	border-right: solid 1px #dddddd;
}
.archive-blog-post-days {
	padding: 2px 10px;
	font-size:15px;
	text-align: left;
	color: #9e6e0f;/*orange;*/
}
.archive-blog-post-title {
	text-align: left;
	padding: 8px 10px;
	font-size:16px;
	line-height: 30px;
}
.archive-blog-title {
	display: flex;
	text-align: left;
	justify-content: center;/*start; 開始位置 */
	justify-items: center;
	align-items: center;
}
/*--------------------------------------------------------------
BLOG - シングル用
--------------------------------------------------------------*/
/*
#single-blog {
}
*/
/*--------------------------------------------------------------
GALLERY - アーカイブ用
--------------------------------------------------------------*/
#archive-gallery {
	overflow: hidden;
	max-width: var(--width-main-wrap);
	height: auto;
	margin: 0 auto;
	padding: var(--padding-post-def);/* 上右下左 */
	background-color: #DDDDDD;
	/*background-image : url(../img/footer-top.png);*/
	/*background-position: center;*/
	/*background-position: top;*/
}
#archive-gallery .bottom-space {
	height: var(--bottom-space-post);/*60px;*/
}
/* グリッドレイアウト */
.grid-area-gallery {
	display: grid;
	/* max-width: 幅はこれの親divに依存; */
	gap: 10px;
	grid-template-columns: repeat(auto-fit, 240px);/* grid-itemのwidth */
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	justify-items: center;/*start;*/
	align-items: center;
}
/* レスポンシブ設定 */
/*
@media screen and (max-width: 768px) {
	.grid-area-gallery {
	}
}
*/
/* グリッドアイテム */
.grid-item-gallery {
	width: 240px;
	height: 172px;
	padding: 5px;
	line-height: 1.2;
	background-color: #FFFFFF;
	border: solid 1px #000000;
	/*border-radius: 10px;*/
	box-shadow: 0px 0px 0px 0px #000000;
}
.grid-item-gallery img {
	width: 100%;
	height: 160px;
	margin: 0 auto;
	object-fit:cover;
}

/*--------------------------------------------------------------
!TOPICS - フロントページ用
--------------------------------------------------------------*/
#front-topics {
	position: relative;
	display: block;
	max-width: var(--width-max-wrap);
	height: var(--front-news-height);
	padding-top: var(--front-news-padding-top);
	padding-left: 15px;
	padding-right: 15px;
	font-size: 1.5rem;/* 18px */
	/*background-color: #f0f8ff;*/
	overflow: hidden;
}
/*--------------------------------------------------------------
!LIBRARY - フロントページ用
--------------------------------------------------------------*/
#front-library {
	position: relative;
	display: block;
	max-width: var(--width-max-wrap);
	height: var(--front-contest-height);
	padding-top: var(--front-news-padding-top);
	padding-left: 15px;
	padding-right: 15px;
	font-size: 1.5rem;/* 18px */
	background-color: var(--main-color);
	overflow: hidden;
}
/* グリッドレイアウト */
.front-library-grid-area {
	display: grid;
	max-width: var(--width-max-wrap);
	gap: 40px 40px;/* 上下 左右 */
	grid-template-columns: repeat(auto-fit, 200px);
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;/*425px;*/
	margin: 0 auto;
	justify-content: start;
	justify-items: center;/*start; 開始位置 */
	align-items: center;
}
@media screen and (max-width: 768px) {
	.front-library-grid-area {
		justify-content: center;
	}
}

.front-library-grid-item {
	width: 200px;
	height: 200px;
	padding: 10px;
	line-height: 1.2;
	/*margin: var(--margin-0-auto);*/
	color: black;
	/*background-color: #000000;*/
	/*border: solid 1px #000000;*/
	/*border-radius: 10px;*/
	/*box-shadow: 0px 0px 0px 0px #000000;*/
}
.front-library-grid-item img {
	width: 100%;
	height: auto;/*150px;*/
	margin: 0 auto;
	border: solid 1px #000000;
	object-fit:cover;/* アス比維持 */
}

/*--------------------------------------------------------------
!CONTEST(コンテスト) - フロントページ用
--------------------------------------------------------------*/
#front-contest {
	position: relative;
	display: block;
	max-width: var(--width-max-wrap);
	height: var(--front-contest-height);
	padding-top: var(--front-news-padding-top);
	/*background-color: white;*/
	overflow: hidden;


/**/margin-top: 0px;/* 上コンテンツとの距離 */
/**/background-color: #f0f8ff;
/**/background-image : url(../img/bg-front-contest.jpg);
/**//*background-position: top right;*/
	background-repeat: repeat;

	/* 背景画像を半透明にする場合は下記2つを有効に */
	background-color:rgba(255,255,255,0.85);/* 最後の数字が透明度 1で見えなくなる */
	background-blend-mode:color;


}
/* グリッドレイアウト */
.front-contest-grid-area {
	display: grid;
	max-width: var(--width-max-wrap);
	gap: 40px 5px;/* 上下 左右 */
	grid-template-columns: repeat(auto-fit, 300px);
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;/*425px;*/
	margin: 0 auto;
	justify-content: center;
	justify-items: center;/*start; 開始位置 */
	align-items: center;
}
.front-contest-grid-item {
	width: 300px;
	height: 300px;
	padding: 10px;
	line-height: 1.2;
	/*margin: var(--margin-0-auto);*/
	color: black;
	background-color: white;
	border: solid 1px #dddddd;
	/*border-radius: 10px;*/
	/*box-shadow: 0px 0px 0px 0px #000000;*/
}
.front-contest-grid-item img {
	width: 100%;
	height: 230px;
	margin: 0 auto;
	border: solid 1px #dddddd;
	object-fit:cover;/* アス比維持 */
}
.front-contest-title {
	text-align: center;
}
/*--------------------------------------------------------------
!CONTEST(コンテスト) - アーカイブ用
--------------------------------------------------------------*/
#archive-contest {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;/* 上コンテンツとの距離 */
	background-color: #f0f8ff;
	/*
	background-image : url(../img/bg-front-about.jpg);
	*/
	background-position: top right;

	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/

}
.archive-contest {
	display: block;
	/*max-width: var(--width-main-wrap);*/
	max-width: var(--width-single-wrap);
	height: var(--front-about-height);
	text-align: center;
	margin: 0 auto;
	padding: 36px 0px 36px 0px;/* 上右下左 */
	background-color: white;
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
	/*background-image : url(../img/bg-section1.png);*/
	background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	/*font-family: "Noto Sans JP", sans-serif;*/
	font-size: 1.5rem;/*18px;*/
	line-height: 24px;
	letter-spacing: 0.1rem;
}

#archive-contest .bottom-space {
	height: var(--bottom-space-post);/*60px;*/
}
@media screen and (max-width: 768px) {
	.archive-contest {
		padding: 36px 0px 0px 0px;/* 上右下左 */
	}
}

/*--------------------------------------------------------------
!MAGAZINE(機関誌) - アーカイブ用
--------------------------------------------------------------*/
/* MAGAZINEセクション */
#archive-magazine {
	position: relative;
	width: 100%;
	height: auto;
}
#archive-magazine .bottom-space {
	height: var(--bottom-space-post);/*60px;*/
}
.archive-magazine {
	overflow: hidden;
	max-width: var(--width-800-wrap);
	/*ax-width: var(--width-main-wrap);*/
	height: auto;
	margin: 0 auto;
	padding: var(--padding-post-def);/* 上右下左 */
	background-color: white;
	/*background-image : url(../img/footer-top.png);*/
	/*background-position: center;*/
	/*background-position: top;*/
	/* フォント設定 */
	/*font-family: "Noto Sans JP", sans-serif;*/
	font-size: 1.5rem;/*18px;*/
	line-height: 24px;
	letter-spacing: 0.1rem;
}
/* トピック */
.magazine-topic {
	display: block;
	width: 750px;
	text-align: left;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
	.magazine-topic {
		width: 100%;
	}
}
.magazine-topic p {
	font-size: 1.8rem;
}
/*
.magazine-topic hr {
	//height: 5px;
	//background-color: #4169E1;
	//width: 100%;
	//border: none;
}
*/
.magazine-topic a{
	color: green;
	/*text-decoration: underline;*/
}

/*--------------------------------------------------------------
汎用：1カラムレイアウト
--------------------------------------------------------------*/
/* 基本幅用 */
.wrap-1column {
	position: relative;
	overflow: hidden;
	max-width: var(--width-max-wrap);
	height: auto;
	margin: 0 auto;
    padding: var(--default-padding);
}
/* 幅1000px用 */
.wrap-1column-1000 {
	overflow: hidden;
	max-width: var(--width-1000-wrap);
	height: auto;
	margin: 0 auto;
    padding: var(--default-padding);
}
/* 幅800px用 */
.wrap-1column-800 {
	overflow: hidden;
	max-width: var(--width-800-wrap);
	height: auto;
	margin: 0 auto;
    padding: var(--default-padding);
}
/* 幅600px用 */
.wrap-1column-600 {
	overflow: hidden;
	max-width: var(--width-600-wrap);
	height: auto;
	margin: 0 auto;
    padding: var(--default-padding);
}
.wrap-1column-pad0 {
	overflow: hidden;
	max-width: var(--width-main-wrap);
	height: auto;
	margin: 0 auto;
    padding: 0;
}
/* ブログ本文で使用 */
.wrap-1column-short {
	overflow: hidden;
	max-width: 720px;/*var(--width-main-wrap);*/
	height: auto;
	margin: 0 auto;
    padding: var(--blog-padding);
}

/*--------------------------------------------------------------
1カラムレイアウト サイトマップ用
--------------------------------------------------------------*/
.wrap-1column-sitemap {
	overflow: hidden;
	max-width: var(--width-600-wrap);
	height: auto;
	margin: 0 auto;
    padding: var(--default-padding);

}
@media screen and (min-width: 768px) {
	.wrap-1column-sitemap ul {
		padding-left: 200px;
	}
}
@media screen and (max-width: 768px) {
	.wrap-1column-sitemap ul {
		width: 100%;
		padding-left: 50px;
	}
}
/*--------------------------------------------------------------
2カラムレイアウト
--------------------------------------------------------------*/
.wrap-2column {
	display: var(--display-2column);
	overflow: hidden;
	max-width: var(--width-max-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
}
.wrap-2column-800 {
	display: var(--display-2column);
	overflow: hidden;
	max-width: var(--width-800-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	justify-items: center;/*start;*/
	align-items: center;
}

.left-2column {
	max-width: var(--width-left-2column);
	height: auto;
    padding: var(--default-padding);
}

.right-2column {
	max-width: var(--width-right-2column);
	padding: var(--default-padding);
}

/* 2カラムを等分で使う時、左右のカラムに設定する */
.nitoubun-2column {
	width:		var(--width-nitoubun-2column);
	padding:	var(--default-padding);
	text-align:	center;
}

/*--------------------------------------------------------------
3カラムレイアウト
--------------------------------------------------------------*/
.wrap-3column{
	display: var(--display-3column);
	overflow: hidden;
	max-width: var(--width-main-wrap);
	margin-left: auto;
	margin-right: auto;
}

.santoubun-3column {/* 3カラムを等分で使う */
	width: var(--width-santoubun-3column);
	padding: var(--default-padding);
}
.santoubun-3column img {
    width: 100%;
}
.sanbun2-3column {/* 66% */
	width: var(--width-sanbun2-3column);
}
.sanbun2-3column img{
	padding-left: 25%;
	padding-top: 50px;
}
.left-3column{
	width: var(--width-left-3column);
	height: auto;
    padding: var(--default-padding);
}
.left-3column img{
    width: 100%;
}

.center-3column {
	width: var(--width-center-3column);
    padding: var(--default-padding);
}
.center-3column img {
    width: 100%;
}

.right-3column{
	width: var(--width-right-3column);
    padding: var(--default-padding);
}
.right-3column img {
    width: 100%;
}
/*レイアウト用 ユニーク設定
--------------------------------------------------------------*/
.company-info{
	display: flex;
	overflow: hidden;
	max-width: var(--width-main-wrap);
	margin-left: auto;
	margin-right: auto;
	padding: var(--default-padding);
}
.company-history{
	display: flex;
	overflow: hidden;
	max-width: var(--width-main-wrap);
	margin-left: auto;
	margin-right: auto;
	padding: var(--default-padding);
}
.tabuchi-recruit{
	display: flex;
	overflow: hidden;
	width: var(--width-main-wrap);
	margin-left: auto;
	margin-right: auto;
}
.tabuchi-recruit-office img{
	width: var(--width-recruit-office-img);
}
.content-box {
	display: var(--display-flex-block);
	width: 100%;
	max-width: var(--width-main-wrap);
}
.left-front-2column {/* トップページで使用 */
	width: 356px;
	/*height: 173px;*/
	padding: var(--default-padding);/*10px;*/
	font-size: 1.5rem;
}
.right-front-2column {/* トップページで使用 */
	/*height: 173px;*/
	padding: var(--default-padding);/*10px;*/
}
.front-3column{
	width: var(--width-santoubun-3column);
	height: auto;
    padding: var(--default-padding);
}
@media screen and (max-width: 960px) { 
    .front-3column img,
    .santoubun-3column img {
        width: 100%;
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media screen and (max-width: 767px) { 
    .front-3column img,
    .santoubun-3column img {
        width: 100%;
        padding-left: 5px;
        padding-right: 5px;
    }
}
/*--------------------------------------------------------------
グリッドレイアウト
投稿タイプの一覧表示で、よく使用している 

--使い方--
<div class="grid-area">
	<div class="grid-item"></div>
	<div class="grid-item"></div>
	<div class="grid-item"></div>
</div>
パラメータは適宜調整すること
--------------------------------------------------------------*/
/* 基本 */
.grid-area {
	display: grid;
	max-width: 740px;/*var(--width-main-wrap);*/
	gap: 10px;/*25px;*/
	grid-template-columns: repeat(auto-fit, 240px);
	/*grid-template-columns: repeat(auto-fit, 330px);*/
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;/*425px;*/
	margin: 0 auto;

	justify-items: start;
}
@media screen and (max-width: 1060px) {
	.grid-area {
		justify-content: center;
	}
}
.grid-item {
	width: 240px;/*330px;*/
	height: 300px;/*420px;*/
	padding: 5px;
	line-height: 1.2;
	/*margin: var(--margin-0-auto);*/
	background-color: #FFFFFF;
	border: solid 1px #000000;
	/*border-radius: 10px;*/
	box-shadow: 0px 0px 0px 0px #000000;
}
.grid-item img {
	width: 100%;
	height: 160px;/*200px;*/
	margin: 0 auto;
	object-fit:cover;
}

/* 実績用 */
.grid-jisseki {
	width: 330px;
	height: 350px;
	padding: 5px;
	line-height: 1.2;
	/*margin: var(--margin-0-auto);*/
	background-color: #FFFFFF;
	border: solid 1px #000000;
	border-radius: 10px;
	box-shadow: 0px 3px 0px 0px #000000;
}
.grid-jisseki img {
	width: 100%;
	height: 200px;
	margin: 0 auto;
	object-fit:cover;
}

/*--------------------------------------------------------------
投稿記事(single.php関係)
--------------------------------------------------------------*/
.news a {
    display: inline-block;
}
.single_next {
    text-align: left;                   /* 文章を左寄せする(※) */
    float: left;                        /* 左端に寄せて、後続を右側へ回り込ませる */
}
.single_previous {
    text-align: right;                  /* 文章を右寄せする */
    margin-right: 2%;
}
.cat_title {
    list-style: none;
    color: #FFFFFF;
    background: #BC8F8F;
    padding: 0 4px;
    /*border-radius: 10px;*/ 
}

.news_title {
    font-size:1.4em;
}
@media only screen and (max-width: 960px) {
    .news_title {
        font-size:1.2em;
    }
}

/*--------------------------------------------------------------
グーグルマップ用
--------------------------------------------------------------*/
.google-map{
    display: var(--display-inline-block);
    margin: 0 auto;
}

/*--------------------------------------------------------------
汎用
--------------------------------------------------------------*/
.text-align-left-center {/* PC時は左揃え、スマホ時は中央揃えにするclass */
    text-align: var(--text-align-left-center);
}
.text-align-center-left {/* PC時は中央揃え、スマホ時は左揃えにするclass */
    text-align: var(--text-align-center-left);
}
/*--------------------------------------------------------------
プライバシーポリシー用
--------------------------------------------------------------*/


/*--------------------------------------------------------------
ページネーション用
--------------------------------------------------------------*/
/* page-numbersはカテゴリで使うページャー用 */
/*
.page-numbers {
	list-style: none;
}
*/
/*
.page-numbers li {
}
*/
.pager {
	text-align: center;
}
.pager li {
	display: inline-block;
	color: #ffffff;
	padding: 4px 4px;
}
.pager a {
	color: #ffffff;
}
.pagination {
	clear: both;
	padding: 20px 0;
	position: relative;
	font-size: 14px;
	line-height: 14px;
	text-align: center;
	justify-content: center;
}
.pagination-box {
	display: inline-block;
}
.pagination span,
.pagination a {
	display: block;
	float: left;
	margin: 2px 2px 2px 0;
	padding: 10px 15px 10px 15px;
	text-decoration: none;
	width: auto;
	color: var(--button-color);
	background: #ffffff;
	border: solid 1px  var(--button-color);
}
.pagination a:hover{
	color: #ffffff;
	background: var(--button-color);
}
.pagination .current{
	padding: 10px 15px 10px 15px;
	color: #ffffff;
	background: var(--button-color);
}
@media only screen and (max-width: 413px) {
	.pagination {
		font-size: 12px;
		line-height: 12px;
	}
	.pagination span, .pagination a {
		padding: 8px 10px 8px 10px;
	}
	.pagination .current{
		padding: 8px 10px 8px 10px;
	}
}

#hideMe {
	-moz-animation: cssAnimation 0s ease-in 5s forwards;
	/* Firefox */
	-webkit-animation: cssAnimation 0s ease-in 5s forwards;
	/* Safari and Chrome */
	-o-animation: cssAnimation 0s ease-in 5s forwards;
	/* Opera */
	animation: cssAnimation 0s ease-in 5s forwards;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
@keyframes cssAnimation {
	to {
		width:0;
		height:0;
		overflow:hidden;
	}
}
@-webkit-keyframes cssAnimation {
	to {
		width:0;
		height:0;
		visibility:hidden;
	}
}

/*--------------------------------------------------------------
横並び(Side by side)<ul><li>リスト
--------------------------------------------------------------*/
/* フロント、製品案内、製品リスト、取扱商品 */
.yokonarabi-list {
	display: var(--display-flex-block);/*flex;*/
}
.yokonarabi-list img{
	vertical-align: middle
}
.yokonarabi-list li{
	display: block;
	list-style: none;
	width: 150px;
	padding: 2px;
	margin: 5px;
	background-color: rgba(0,0,0,0);
}

.table-list {
	display: table;
	border-spacing: 15px;
}
.table-list li {
	display: table-cell;
	list-style: none;
	padding: 2px;
	margin: 5px;
    vertical-align:center;
	background-color: rgba(0,0,0,0);
}
@media screen and (min-width: 960px) {
    .yokonarabi-list span{
	    display: none;
    }
}
@media screen and (max-width: 960px) {
    .yokonarabi-list span{
	    width: 150px;
        display: inline-block;
    }
}
@media screen and (max-width: 768px) {
	.table-list li {
		display: block;
		height: auto;
	}
}

/*横並び(Side by side)<ul><li>リスト用 ユニーク設定
--------------------------------------------------------------*/
li.box4 {/* 4等分 */
	width: 25%;
}
li.box5 {/* 5等分 */
	width: 20%;
}
li.box6 {/* 6等分 */
	width: 16%;
}
li.box7 {/* 7等分 */
	width: 14%;
}
li.box40 {/* 5等分 */
	width: 40%;
}
li.box72 {
	width: 72px;
	padding: 0;
	margin: 0;
}
li.box104 {
	width: 104px;
	padding: 0;
	margin: 0;
}
li.box112 {
	width: 112px;
	padding: 0;
	margin: 0;
}
li.box130 {
	width: 130px;
	padding: 0;
	margin: 0;
}
li.box150 {
	width: 150px;
	padding: 0;
	margin: 0;
}
li.box200 {
	width: 200px;
	padding: 0;
	margin: 0;
}

/* ここからのli関係は不要であれば消す */
li.days-single{
	width: 140px;
    vertical-align: middle;
	/*height: 85px;*/
}
.yokonarabi-cell-single {
    display: table-cell;
    vertical-align: middle;
}
li.news-title-single{
	width: 550px;
	/*height: 85px;*/
    vertical-align: middle;
}
@media screen and (max-width: 768px) {
	li.days-single{
		width: 100%;
	    vertical-align: middle;
		height: auto;
	}
	li.news-title-single{
		width: 100%;
		height: auto;
	    vertical-align: middle;
	}
}
/*==================================================
アニメーション表示用
===================================*/
/*--------------------------------------------------------------
ふわっ
--------------------------------------------------------------*/
/* fadeUp */
.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);
	}
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger{
    opacity: 0;
}
/* -------------------------------------------------------------
ユニークページ
------------------------------------------------------------- */
/* -------------------------------------------------------------
エアコン(固定ページ)
------------------------------------------------------------- */
#air-conditioner {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;/* 上コンテンツとの距離 */
	/*background-color: white;*/
	/*
	background-image : url(../img/bg-recruit.jpg);
	background-attachment: fixed;
	background-size: 100%;
	background-position: top center;
	*/
	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/

}
#air-conditioner  ._title h2 {
	position: relative;
	font-size: 26px;
	text-align: left;
	padding-left: 28px;
}
/* タイトルの前に■を付けるCSS */
#air-conditioner  ._title h2:before {
	position: absolute;
	width: 18px;
	height: 35px;
	top: 3px;
	left: 3px;
	background: var(--button-color);
	content: "";
}

@media screen and (max-width: 768px) {/* ブレークポイント指定 */
	#air-conditioner  ._title h2 {
		font-size: 24px;
	}
	#air-conditioner  ._title h2:before {
		height: 25px;
	}
}
.air-conditioner {
	display: block;
	max-width: var(--width-single-wrap);
	height: var(--front-about-height);
	text-align: center;
	margin: 0 auto;/* 中央配置 */
/**/padding: 36px 0px 36px 0px;/* 上右下左 */
/**//*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
/**//*background-image : url(../img/bg-section1.png);*/
/**/background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.6rem;/*18px;*/
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
	.air-conditioner {
		padding: 10px 0px 0px 0px;/* 上右下左 */
	}
}
.air-conditioner ._title {
	margin-bottom: 36px;
}
.air-conditioner ._text {
	margin-bottom: 36px;
	text-align: left;
}
/* 背景1枚BG */
.air-conditioner-bg-area-image {
	width: 100%;
	height: 500px;
	background-image : url(../img/air-conditioner0.jpg);
	/*background-size: 100% 100%;*/
	background-size: cover;
	background-position: top center;
	/*
	display: flex;
	align-items: center;
	*/
}
/* 背景2枚BG */
.air-conditioner-bg-area-image-2pic {
	display: var(--display-2column);
	width: 100%;
	height: 500px;
	/*background-size: 100% 100%;*/
	background-size: cover;
	background-position: top center;
	/*
	display: flex;
	align-items: center;
	*/
	overflow: hidden;
}
.air-conditioner-bg-area-image-2pic ._image {
	width: var(--width-nitoubun-2column);
	height: 500px;
	padding: 0 0px;
}
.air-conditioner-bg-area-image-2pic ._image img {
	width: 100%;
	object-fit: cover;
}
.air-conditioner-wrap-2column {
	display: var(--display-2column);
	overflow: hidden;
	max-width: var(--width-max-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
}
/* 2カラムを等分で使う時、左右のカラムに設定する */
.air-conditioner-nitoubun-2column {
	width:		var(--width-nitoubun-2column);
	padding:	var(--default-padding);
}
.air-conditioner-nitoubun-2column ._text-area {
	width: 450px;
	height: 350px;
	padding: 20px;
	text-align: left;
	background-color:rgba(255,255,255,0.95);
	background-blend-mode:color;
}
/* 画像用グリッドレイアウト */
.grid-area-image {
	display: grid;
	/* max-width: 幅はこれの親divに依存; */
	gap: 1px;/*40px 40px;*//*25px; 上下 左右 */
	grid-template-columns: 1fr 1fr;/*repeat(auto-fit, 700px);*/
	grid-template-rows: 1fr;
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;/*425px;*/
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	justify-items: center;/*start;*/
	align-items: center;
	padding-bottom: 0px;
	overflow: hidden;
}
@media screen and (max-width: 1080px) {
	.grid-area-image {
		justify-content: center;/*start; 開始位置 */
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 768px) {
	.grid-area-image {
		justify-content: center;/*start; 開始位置 */
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 480px) {
	.grid-area-image {
		justify-content: center;/*start; 開始位置 */
		grid-template-columns: 1fr;
	}
}
.grid-item-image {
	width: 100%;/*450px;*/
	height: auto;
	padding: 0px;
	font-size: 15px;
	color: black;
	background-color: white;
	border: solid 1px white;
	/*border-radius: 0px;*/
	/*
	box-shadow: 5px 5px 5px 0px #000000;*/
	/* X,Y,ぼかし,影の大きさ,色 */
	overflow: hidden;
}
@media screen and (min-width: 1080px) {
	.grid-item-image {
		aspect-ratio: 640 /300;
	}
}
/*
@media screen and (max-width: 768px) {
	.grid-item-image {
		
	}
}
*/
.grid-item-image img {
	width: 100%;
	object-fit: cover;
	/*aspect-ratio: 4 /3;*/
	margin: 0 auto;
	border: solid 0px #dddddd;
	object-fit:cover;/* アス比維持 */
	transform:scale(1.2,1.2);
	transition: 0.3s;/* ズームとかトランスフォームするときの速度 */
}
/* 画像ズームイン */
/*
.grid-item-image img:hover {
	transform:scale(1.4,1.4);
}
*/
/* -------------------------------------------------------------
ユニークページ
------------------------------------------------------------- */
/* -------------------------------------------------------------
交通誘導警備(固定ページ)
------------------------------------------------------------- */
#traffic-induction {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;/* 上コンテンツとの距離 */
	/*background-color: white;*/
	/*
	background-image : url(../img/bg-recruit.jpg);
	background-attachment: fixed;
	background-size: 100%;
	background-position: top center;
	*/
	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/

}
#traffic-induction  ._title h2 {
	position: relative;
	font-size: 26px;
	text-align: left;
	padding-left: 28px;
}
/* タイトルの前に■を付けるCSS */
#traffic-induction  ._title h2:before {
	position: absolute;
	width: 18px;
	height: 35px;
	top: 3px;
	left: 3px;
	background: var(--button-color);
	content: "";
}

@media screen and (max-width: 768px) {/* ブレークポイント指定 */
	#traffic-induction  ._title h2 {
		font-size: 24px;
	}
	#traffic-induction  ._title h2:before {
		height: 25px;
	}
}
.traffic-induction {
	display: block;
	max-width: var(--width-single-wrap);
	height: var(--front-about-height);
	text-align: center;
	margin: 0 auto;/* 中央配置 */
/**/padding: 36px 0px 36px 0px;/* 上右下左 */
/**//*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
/**//*background-image : url(../img/bg-section1.png);*/
/**/background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.6rem;/*18px;*/
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
	.traffic-induction {
		padding: 10px 0px 0px 0px;/* 上右下左 */
	}
}
.traffic-induction ._title {
	margin-bottom: 36px;
}
.traffic-induction ._text {
	margin-bottom: 36px;
	text-align: left;
}
/* 背景1枚BG */
.traffic-induction-bg-area-image {
	width: 100%;
	height: 500px;
	background-image : url(../img/traffic_induction0.jpg);
	/*background-size: 100% 100%;*/
	background-size: cover;
	background-position: top center;
	/*
	display: flex;
	align-items: center;
	*/
}
/* 背景2枚BG */
.traffic-induction-bg-area-image-2pic {
	display: var(--display-2column);
	width: 100%;
	height: 500px;
	/*background-size: 100% 100%;*/
	background-size: cover;
	background-position: top center;
	/*
	display: flex;
	align-items: center;
	*/
	overflow: hidden;
}
.traffic-induction-bg-area-image-2pic ._image {
	width: var(--width-nitoubun-2column);
	height: 500px;
	padding: 0 0px;
}
.traffic-induction-bg-area-image-2pic ._image img {
	width: 100%;
	object-fit: cover;
}
.traffic-induction-wrap-2column {
	display: var(--display-2column);
	overflow: hidden;
	max-width: var(--width-max-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
}
/* 2カラムを等分で使う時、左右のカラムに設定する */
.traffic-induction-nitoubun-2column {
	width:		var(--width-nitoubun-2column);
	padding:	var(--default-padding);
}
.traffic-induction-nitoubun-2column ._text-area {
	width: 450px;
	height: 350px;
	padding: 20px;
	text-align: left;
	background-color:rgba(255,255,255,0.95);
	background-blend-mode:color;
}
/* 画像用グリッドレイアウト */
.grid-area-image {
	display: grid;
	/* max-width: 幅はこれの親divに依存; */
	gap: 1px;/*40px 40px;*//*25px; 上下 左右 */
	grid-template-columns: 1fr 1fr;/*repeat(auto-fit, 700px);*/
	grid-template-rows: 1fr;
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;/*425px;*/
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	justify-items: center;/*start;*/
	align-items: center;
	padding-bottom: 0px;
	overflow: hidden;
}
@media screen and (max-width: 1080px) {
	.grid-area-image {
		justify-content: center;/*start; 開始位置 */
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 768px) {
	.grid-area-image {
		justify-content: center;/*start; 開始位置 */
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 480px) {
	.grid-area-image {
		justify-content: center;/*start; 開始位置 */
		grid-template-columns: 1fr;
	}
}
.grid-item-image {
	width: 100%;/*450px;*/
	height: auto;
	padding: 0px;
	font-size: 15px;
	color: black;
	background-color: white;
	border: solid 1px white;
	/*border-radius: 0px;*/
	/*
	box-shadow: 5px 5px 5px 0px #000000;*/
	/* X,Y,ぼかし,影の大きさ,色 */
	overflow: hidden;
}
@media screen and (min-width: 1080px) {
	.grid-item-image {
		aspect-ratio: 640 /300;
	}
}
/*
@media screen and (max-width: 768px) {
	.grid-item-image {
		
	}
}
*/
.grid-item-image img {
	width: 100%;
	object-fit: cover;
	/*aspect-ratio: 4 /3;*/
	margin: 0 auto;
	border: solid 0px #dddddd;
	object-fit:cover;/* アス比維持 */
	transform:scale(1.2,1.2);
	transition: 0.3s;/* ズームとかトランスフォームするときの速度 */
}
/* 画像ズームイン */
/*
.grid-item-image img:hover {
	transform:scale(1.4,1.4);
}
*/
/* -------------------------------------------------------------
施設警備(固定ページ)
------------------------------------------------------------- */
/* 背景1枚BG */
.facility-bg-area-image {
	width: 100%;
	height: 500px;
	background-image : url(../img/facility0.jpg);
	/*background-size: 100% 100%;*/
	background-size: cover;
	background-position: top center;
	/*
	display: flex;
	align-items: center;
	*/
}
