@charset "UTF-8";
/*------------------------------
テンプレートCSS
------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/*カラー*/
body {
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  --c-text:#333;
  --c-base:#fff;
  --c-key1:#2259A0;
  --c-key2:#1188EE;
  --c-accent:#E6E6E6;
  --c-b-bg:#F5FCFF;
  --c-gray:#E6E6E6;
  color: var(--c-text);
}
h1{
  max-height: 100%;
}
a{
	color: #333333;
	font-weight: normal;
}
a:hover{
	cursor: pointer;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.red{
	color: #e60012!important;
}
.yellow{
	color: #ffff00;
}
.blue{
	color: #3372b9;
	transition: .3s;
}
.blue:hover{
	color: #135299;
}
.c-key1{
	color: var(--c-key1);
}
.c-key2{
	color: var(--c-key2);
}
.pink{
	color: #ff7987;
}
.center{
	text-align: center;
}
.under{
	border-bottom: 1px solid #888;
}
#loading{
	position: absolute;
	background-color: #fff;
	z-index: 1000;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
/*パンくずリスト*/
.breadcrumbs{
	padding-top:20px;
	padding-bottom:20px;
	padding-left: 20px;
}
.breadcrumbs li{
	position: relative;
	padding: 0 10px;
	line-height: 20px;
	height: 20px;
}
.breadcrumbs li a,.breadcrumbs li{
	display: inline-block;
	font-size: 1.3rem;
	color: #494949;
}
.breadcrumbs li:after{
	content: "";
    display: inline-block;
    border-top: 1px #494949 solid;
    border-right: 1px #494949 solid;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -4px;
    width: 6px;
    height: 6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.breadcrumbs li:last-child::after{
	display: none;
}


/*フォント*/
html { font-size: 62.5%; } 
body { font-size: 1.6rem; } 
h1 { font-size: 2.5rem; } 
h2 { font-size: 2rem; }
body{
	--ff-main: 'Noto Sans JP', sans-serif;;
	--ff-head: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	--ff-serif: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	--ff-en: "Oswald", 'Helvetica', sans-serif;
	font-family: var(--ff-main);
	font-weight: 500;
	letter-spacing: 0.04em;
}
/* IE表示用のCSS　*/
@media all and (-ms-high-contrast:none){
  body {font-family: "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans",sans-serif;}
}
p,li,dd{
	font-family: var(--ff-main);
	font-weight: 500;
	font-style: normal;
}
h1,h2,h3,h4,h5,h6{
	font-family: var(--ff-head);
	font-weight: bold;
}
.bold{
	font-weight: bold;
}
.serif{
	font-family: var(--ff-serif);
}
.sanSerif{
	font-family: var(--ff-head);
  font-weight: 500;
}
.en{
	font-family: var(--ff-en);
	font-weight: 500;
}


/*PC*/
@media screen and (min-width:900px){
	.pc{
		display: block;
	}
	.tab{
		display: none!important;
	}
	.sp{
		display: none!important;
	}
	.tab_sp{
		display: none!important;
	}
}
/*TAB*/
@media screen and (max-width:899px){
	.pc{
	  	display: none!important;
	}
	.tab{
		display: block;
	}
	.sp{
		display: none!important;
	}
	.tab_sp{
		display: block;
	}

}

/*SP*/
@media screen and (max-width:480px){
	.tab{
		display: none!important;
	}
	.sp{
		display: block!important;
	}
	
}

/*ブレイクポイント*/
.is-pc {

}
.is-sp {
	display: none;
}
@media screen and (max-width: 767px) {
	.is-pc {
		display: none;
	}
	.is-sp {
		display: block;
	}
}

/*共通セクションタイトル*/
.mainCntBox .cntTitleWrapper {
	text-align: center;
}
.mainCntBox .cntTitle {
	color: #222;
	text-align: center;
	padding-bottom: 14px;
	position: relative;
	display: inline-block;
}
.mainCntBox .cntTitle::after {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 61px;
	height: 3px;
	background: linear-gradient(90deg,var(--c-key1) 0%,var(--c-key1) 48%, transparent 49%, transparent 50%, var(--c-key2) 51%,var(--c-key2) 100%);
}
.mainCntBox .cntTitle h2 span {
	font-size: 16px;
	line-height: 1.75;
	display: block;
}
.mainCntBox .cntTitle h2 {
	font-size: 30px;
	letter-spacing: 0.05em;
	font-weight: bold;
}
.mainCntBox .cntTitle.style02{
  display: flex;
  padding-left: 24px;
  padding-bottom: 0;
}
.mainCntBox .cntTitle.style02::before{
	content: "";
  position: absolute;
  top: -9px;
  left: 0;
  background-color: var(--c-key1);
  width: 5px;
  height: 50px;
}
.mainCntBox .cntTitle.style02::after{
	content: "";
  position: absolute;
  top: -9px;
  left: 7px;
  background-color: var(--c-key2);
  width: 5px;
  height: 50px;
  transform: translateX(0);
}
.mainCntBox .cntTitle.style02 h2{
  font-size: 28px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.mainCntBox .cntTitle.style02 h2 span{
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-left: 10px;
  display: inline-block;
  transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
	.mainCntBox .cntTitle h1 {
		font-size: 15px;
	}
	.mainCntBox .cntTitle h2 {
		font-size: 25px;
	}
	.mainCntBox .cntTitle::before {
		left: 41%;
	}
	.mainCntBox .cntTitle.style02::before,.mainCntBox .cntTitle.style02::after{
		height: 40px;
    width: 4px;
	}
	.mainCntBox .cntTitle.style02 h2{
    font-size: 21px;
	}
	.mainCntBox .cntTitle.style02 h2 span{
		font-size: 12px;
		margin-left: 5px;
	}
}


/*共通ボタン*/
.btn {
	width: 300px;
	height: 50px;
	background-color: var(--c-key1);
	border-radius: 25px;
	color: #fff;
	display: block;
	text-align: center;
	line-height: 45px;
	transition: all .3s ease 0s;
	border: 2px solid var(--c-key1);
}
.btn:hover {
	color: var(--c-key1);
	background-color: #fff;
	border: 2px solid var(--c-key1);
	font-weight: bold;
}

/*ハンバーガーメニュー*/
#navBtn {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	right: -38px;
	z-index: 300;
	display: none;
}
#navBtn img {
	width: 74px;
	height: 74px;
	transition: all 0.6s;
}
#navBtn img.is-active {
	transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
	#navBtn {
		display: block;
	}
}

/*ドロワーメニュー*/
#nav_sp {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	z-index: 299;
	background-color: #fff;
	transform: translateX(100%);
	transition: all 0.6s;
}
#nav_sp.is-active {
	transform: translateX(0);
}
#nav_sp nav{
	display: flex;
  flex-flow: column;
  height: calc(100vh - 30px);
  gap: 30px;
}
#nav_sp .headerLogo {
	background-color: #fff;
	display: flex;
	align-items: center;
	text-align: center;
	margin-top: 30px;
}
#nav_sp .headerLogo a {
	display: block;
	width: 100%;
}
#nav_sp .headerLogo a img {
	width: 300px;
	height: auto;
}
#nav_sp .headerNav_sp .mainNav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background: transparent url(../img/common/drawerImg.jpg) no-repeat center center / cover;
	padding: 7vh 0 8vh;
	gap: 20px;
}
#nav_sp .headerNav_sp .mainNav li {
	width: 45%;
	max-width: 100%;
	background-color: #fff;
	text-align: center;
	border: 1px solid var(--c-key1);
	aspect-ratio: 1 / 1;
	max-width: 250px;
}
#nav_sp .headerNav_sp .mainNav li a{
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

#nav_sp .headerNav_sp .mainNav li a span:first-child {
	text-transform: uppercase;
	font-size: 12px;
	color: var(--c-key1);
	display: block;
}
#nav_sp .headerNav_sp .mainNav li a span:not(:first-child) {
	font-size: 16px;
	color: #222;
	letter-spacing: 0.05em;
	display: block;
	line-height: 1.53;
}
#nav_sp .cntBtn {
	margin-top: -4vh;
	display: flex;
	justify-content: center;
}
#nav_sp .cntBtn a {
	background-color: var(--c-key1);
	border: 2px solid var(--c-key1);
}
#nav_sp .cntBtn a:hover {
	color: var(--c-key1);
	background-color: #fff;
}
#nav_sp .subNav {
	background-color: #fff;
	padding-top: 48px;
	padding-bottom: 32px;
	margin-top: -23px;
	text-align: center;
}
#nav_sp .subNav li:not(:first-child) {
	margin-top: 15px;
}

/*ヘッダー*/
#headerLogo {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	height: 80px;
	background-color: #fff;
	z-index: 100;
}
#headerLogo::after {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg,var(--c-key1) 0%,var(--c-key1) 50%,var(--c-key2) 50%,var(--c-key2) 100%);
}
#headerLogo a {
	height: inherit;
	transition: all .3s ease 0s;
}
#headerLogo a:hover {
	opacity: 0.7;
}
#headerLogo a.telBtn{
	 position: absolute;
	 right: 20px;
	 height: 60px;
	 top: 0;
	 bottom: 0;
	 margin: auto;
}
#headerLogo a:first-child img {
	width: 332px;
	margin-top: 14px;
}
#header {
	background-color: #fff;
	width: 95%;
	max-width: 1000px;
	border: 1px solid var(--c-key1);
	border-radius:60px;
	/*position: absolute;
	left: 50%;
	transform: translateX(-50%);*/
	padding:12px 5%;
	margin: auto;
	position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
}
#top #header{
	margin: 0 auto;
	position: relative;
	bottom: auto;
}
/*.headerMain {
	bottom: 100px;
}*/
.headerSub {
	bottom: -25px;
}
#headerNav {
	height: inherit;
}
#headerNav ul {
	display: flex;
	align-items: center;
	height: inherit;
	justify-content: space-between;

}
#headerNav ul li a {
	transition: all .3s ease 0s;
	display: block;
	text-align: center;
}
#headerNav ul li a:hover {
	opacity: 0.7;
}
#headerNav span:first-child {
	text-transform: uppercase;
	font-size: 12px;
	color: var(--c-key1);
	display: block;
	text-align: center;
	transition: all .3s ease 0s;
}
#headerNav span:first-child:hover {
	color: #3A7F40;
}
#headerNav span:nth-child(2) {
	font-size: 16px;
	letter-spacing: 0.05em;
	display: block;
	margin-top: 5px;
}

@media screen and (max-width: 1100px) {
	/*
	#header {
		bottom: 70px;
	}
	*/
	/*#headerNav ul li:not(:first-child) {
		margin-left: 70px;
	}*/
}
@media screen and (max-width: 900px) {
	/*
	#header {
		bottom: 30px;
	}
	*/
	/*#headerNav ul li:not(:first-child) {
		margin-left: 50px;
	}*/
}
@media screen and (max-width: 767px) {
	#headerLogo {
		height: 60px;
	}
	#headerLogo a:first-child img {
		width: 256px;
		margin-top: 8px;
	}
}

/*メインヴィジュアル*/
#mainVisual {
	margin-top: 80px;
	position: relative;
	height: calc(100vh - 60px);
	max-height: 678px;
	width: 100%;
	background: transparent url(../img/top/top_main.jpg) no-repeat center center / cover;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

#mainVisual #copyText {
	text-align: center;
	width: 90%;
}

#mainVisual #copyText .heading {
	color: #fff;
	font-size: 44px;
	letter-spacing: 0.05em;
	line-height: 1.5;
}
#mainVisual #copyText .subHeading {
	font-size: 24px;
	letter-spacing: 0.05em;
	color: #fff;
	line-height: 1.785;
	margin-top: 57px;
}

#mainVisual #copyText p:not(:first-child) {
	margin-top: 30px;
}

#mainVisual .telBtn{
  position: absolute;
  bottom: 20px;
  width: 90%;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 900px) {
	#mainVisual #copyText .heading {
		font-size: 45px;
	}
}

@media screen and (max-width: 767px) {
	#mainVisual {
		margin-top: 60px;
		background-image: url(../img/top/top_main_sp.jpg);
	}
	#mainVisual #copyText .heading {
		font-size: 32px;
		line-height: 1.628;	
	}
	#mainVisual #copyText .subHeading {
		font-size: 17px;
	}
}

/*スライダー*/
.bx-wrapper {
	width: 100%;
	max-width: 100%;
	margin: 0;
	box-shadow: none;
	border: none;
}
.bx-wrapper .bx-pager.bx-default-pager a {
	width: 150px;
	height: 6px;
	background: #fff;
	border-radius: 0;
}
.bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager {
	bottom: 41px;
}
.bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus, .bx-wrapper .bx-pager.bx-default-pager a:hover {
	background: #444;
}

/*
@media screen and (max-width: 900px) {
	.bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager {
		bottom: 12px;
	}
}*/
@media screen and (max-width: 767px) {
	.bx-wrapper .bx-pager.bx-default-pager a {
		width: 75px;
		margin: 0 2.5px;
		height: 5px;
	}
	.bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager {
		bottom: 110px;
	}
	.bx-viewport {
		height: 586px !important;
	}
}

/*下層ページメインヴィジュアル*/
#mainVisualSub {
	margin-top: 70px;
	position: relative;
	height: 200px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
#mainVisualSub #copyText {
	color: #fff;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 100%;
	text-align: left;
	padding-left: 25px;
	padding-right: 25px;
}
#mainVisualSub .cntHeadingJa {
	font-size: 28px;
	line-height: 1.6;
	letter-spacing: 0.05em;
}
#mainVisualSubImg {
	width: 100%;
	position: relative;

}
#mainVisualSubImg::before {
	content: "";
	display: block;
	padding-top: 14.641%;
}
/*#mainVisualSubImg img {
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}*/

@media screen and (max-width: 767px) {
	#mainVisualSub {
		margin-top: 58px;
	}
	#mainVisualSubImg::before {
		padding-top: 31.641%;
	}
	#mainVisualSub .cntHeadingJa {
		font-size: 24px;
	}
	#mainVisualSub .cntHeadingEn {
		font-size: 14px;
	}
}

/*フッター*/
#footer {
	background-color: var(--c-b-bg);
	position: relative;
}
#footer::after {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg,var(--c-key1) 0%,var(--c-key1) 50%,var(--c-key2) 50%,var(--c-key2) 100%);
}
#footerCnt {
	display: flex;
	align-items: center;
	padding-top: 33px;
	padding-bottom: 37px;
	width: 90%;
	max-width: 1240px;
	margin: 0 auto;
	gap:5%;
}
#footerLogo a {
	display: block;
	transition: all .3s ease 0s;
}
#footerLogo a:hover {
	opacity: 0.7;
}
#footerLogo img {
	width: 290px;
}
#footerNav {
	margin-left: auto;	
}
#footerNavMain {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
#footerNavMain li{
	flex-shrink: 0;
}
#footerNavMain a {
	transition: all .3s ease 0s;
}
#footerNavMain a:hover {
	opacity: 0.7;
}
#footer-sp {
	margin-top: 27px;
	display: none;
}
#footer-sp ul {
	display: flex;
	justify-content: center;
}
#footer-sp ul:first-child{
	margin-bottom: 10px;
}
#footer-sp ul li:not(:first-child) {
	margin-left: 18px;
}
#footer-sp ul li a {
	font-size: 12px;
	color: #3A7F40;
}
#footerSubCnt {
	background-color: var(--c-key1);
}
#footerSubNav {
	display: flex;
	align-items: center;
	padding-top: 27px;
	padding-bottom: 27px;
	width: 90%;
	max-width: 1240px;
	margin: 0 auto;
	padding-left: 25px;
	padding-right: 70px;
}
#footerNavSub {
	display: flex;
	align-items: center;
}
.fa-facebook-f{
	font-size: 22px;
}
.fa-instagram{
	font-size: 22px;
}
.fa-twitter{
	font-size: 22px;
}
#footerNavSub li:not(:first-child) {
	margin-left: 25px;
}
#footerNavSub a {
	font-size: 14px;
	color: #fff;
	transition: all .3s ease 0s;
}
#footerNavSub a:hover {
	opacity: 0.7;
}
small {
	margin-left: auto;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	/* margin-right: 50px; */
}
@media screen and (max-width: 767px) {
	#footerCnt {
		display: block;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	#footerLogo a {
		text-align: center;
	}
	#footerLogo img {
		width: 256px;
	}
	#footerNav {
		margin-top: 27px;
		margin-left: 0;
	}
	#footerNavMain {
		justify-content: center;
		gap: 20px 5%;
	}
	#footerNavMain li {
		/*width: calc(33.3333% - 15px * 2 / 3);*/
		text-align: center;
	} 
	#footerNavMain a {
		font-size: 14px;
	}
	#footer-sp {
		display: block;
	}
	#footerNavSub {
		display: none;
	}
	#footerSubNav {
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 24px;
		padding-top: 24px;
	}
	small {
		font-size: 12px;
		margin-left: 0;
	}
}

/*トップへ戻るボタン*/
.to-top {
  position: fixed;
  right: 0;
  bottom: -1px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
	z-index: 100;
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  display: block;
	transition: all .3s ease 0s;
}
.to-top a:hover {
	opacity: 0.7;
}
.to-top img {
  width: 68px;
}
@media screen and (max-width: 767px) {
  .to-top img {
    width: 60px;
    height: 60px;
  }
  .to-top a:hover {
		opacity: 1;
	}
}




/*最新のお知らせ*/
#newsBox {
	margin-top: 53px;
	margin-bottom: 80px;
}
#newsBox .cntBox {
	width: 90%;
	max-width: 880px;
	margin: 0 auto;
}
#newsBox .cntSubBoxWrapper {
	margin-top: 10px;
	position: relative;
}
#newsBox .cntSubBox {
	color: var(--c-key1);
	border: 1px solid var(--c-key1);
}
#newsBox .cntTitle {
	display: flex;
	align-items: center;
	position: relative;
	padding-top: 6px;
	padding-left: 16px;
}
#newsBox .cntTitle::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--c-key1);
	width: 3px;
	height: 30px;
}
#newsBox .cntTitle::after {
	content: "";
	position: absolute;
	top: 0;
	left: 5px;
	background-color: var(--c-key2);
	width: 3px;
	height: 30px;
}
#newsBox .cntTitle h2{
	font-size: 13px;
	letter-spacing: 0.05em;
	margin-left: 10px;
}
#newsBox .cntTitle  h2 span{
	font-size: 20px;
}
#newsBox .cntSubBox ul {
	padding: 25px 32px;
}
#newsBox .cntSubBox li:not(:first-child) {
	margin-top: 7px;
}
#newsBox .cntSubBox a {
	color: var(--c-key1);
	font-size: 16px;
	letter-spacing: 0.03em;
	display: flex;
	align-items: center;
	transition: all .3s ease 0s;
}
#newsBox .cntSubBox a:hover {
	opacity: 0.7;
}
#newsBox .cntSubBox a p {
	width: 150px;
}
#newsBox .cntSubBox a h3 {
	width: calc(100% - 150px);
	line-height: 1.75;
	color: #222;
	color: var(--c-key1);
}
#newsBox .cntArchive {
	font-size: 14px;
	letter-spacing: 0.03em;
	color: #fff !important;
	background-color: var(--c-key1);
	display: block;
	line-height: 150px;
	align-items: center;
	width: 17.5%;
	text-align: center;
	position: relative;
	padding-right: 15px;
	transition: all .3s ease 0s;
	width: 150px;
	position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#newsBox .cntArchive:hover {
	opacity: 0.7;
}
#newsBox .cntArchive::after {
	position: absolute;
	content: "";
	width: 17px;
	height: 17px;
	top: 50%;
	transform: translateY(-50%);
	right: 14px;
	background: url(../img/common/next.png) no-repeat center center / contain;
}


@media screen and (max-width: 767px) {
	#newsBox {
		margin-bottom: 50px;
	}
	#newsBox .cntSubBox {
		width: 100%;
	}
	#newsBox .cntArchive {
		width: 100%;
		line-height: 60px;
		position: relative;
	}
	#newsBox .cntSubBoxWrapper {
		display: block;
	}
	#newsBox .cntSubBox ul {
		padding: 27px 16px 30px;
	}
	#newsBox .cntSubBox li:not(:first-child) {
		margin-top: 20px;
	}
	#newsBox .cntSubBox a {
		display: block;
		letter-spacing: 0.02em;
	}
	#newsBox .cntSubBox a p {
		width: 100%;
		font-size: 1.4rem;
	}
	#newsBox .cntSubBox a h3 {
		width: 100%;
		margin-top: 5px;
		margin-bottom: 5px;
	}
	#newsBox .cntArchive::after {
		right: 30vw;
	}
}

/*下線*/
.cntCopy span{
	position: relative;
	background:linear-gradient(transparent 60%, #E6E6E6 0%);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: 0% 100%;
}
.cntCopy span.w-98{
	background-size: 98%;
}

/*------------------------------
共通CSS
------------------------------*/
/*コンタクト*/
#contact{
	margin: 80px auto;
}
#contact .cntBox {
	width: 1240px;
	max-width: 100%;
	padding-left: 25px;
	padding-right: 25px;
	margin: 0 auto;
}
#contact .cntSubBoxWrapper {
	display: flex;
	align-items: center;
}
#contact .cntSubBox {
	width: 622px;
	max-width: 100%;
}
#contact .cntText {
	line-height: 2.125;
	margin-top: 40px;
}
#contact .cntBtn {
	margin-top: 40px;
}
#contact .cntBtn a {
	background-color: var(--c-key1);
	transition: all .3s ease 0s;
	border: 2px solid var(--c-key1);
}
#contact .cntBtn a:hover {
	color: var(--c-key1);
	background-color: #fff;
	font-weight: bold;
}
#contact .cntImg {
	width: 520px;
	max-width: 100%;
	margin-left: 50px;
	position: relative;
}
#contact .cntImg::before {
	content: "";
	display: block;
	padding-top: 67.3076%;
}
#contact .cntImg img {
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}

@media screen and (max-width: 767px) {
	#contact {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	#contact .cntBox {
		padding-left: 20px;
		padding-right: 20px;
	}
	#contact .cntSubBoxWrapper {
		display: block;
	}
	#contact .cntText {
		margin-top: 25px;
	}
	#contact .cntImg {
		width: 100%;
		margin-left: 0;
		margin-top: 30px;
	}
	#contact .cntImg::before {
		padding-top: 42.6666%;
	}

	#contact .cntBtn a {
		margin: 0 auto;
	}
}


/*採用情報*/
.mainCntBoxWrapper {
	display: flex;
}


/* 会社概要 */
.mainCntBoxWrapper {
	display: flex;
}
.cntTitleWrapper2{
	margin-bottom: 30px;
}


/*取扱商品*/
#supply {
	margin-top: 78px;
}
#supply .cntBox {
	margin-top: 60px;
	display: flex;
}
#supply .cntImg {
	width: 45%;
	position: relative;
}
#supply .cntImg::before {
	content: "";
	display: block;
	padding-top: 59.49%;
}
#supply .cntImg img {
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}
#supply .cntSubBox {
	width: calc(50% - 34px / 2);
	margin-left: 34px;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
#supply .cntCopy {
	font-size: 30px;
	color: #fff;
	background-color: #444;
	padding: 15px 23px;
	display: flex;
	align-items: center;
}
#supply .cntCopy span {
	display: inline-block;
	text-transform: uppercase;
	margin-left: 25px;
	font-size: 16px;
	background: none;
}
#supply .cntHeading {
	/*margin-top: 34px;*/
	font-size: 34px;
	letter-spacing: 0.05em;
	line-height: 1.7;
	color: #222;
	position: relative;
	z-index: 1;
}
#supply .cntHeading span{
	position: relative;
	background: linear-gradient(transparent 60%, #E6E6E6 0%);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: 0% 100%;
}
#supply .cntHeading span.w-94 {
	background-size: 94%;
}
#supply .cntText {
	margin-top: 30px;
	line-height: 2.125;
	max-width: 100%;
	padding-right: 25px;
}
#supply .cntText p{
	margin-bottom: 20px;
}
/*#supply .cntBtn {
	margin-top: 30px;
	border-radius: 25px;
}
#supply .cntBtn a {
	display: inline-block;
}*/

#supply .sdgsBox{
	border:1px solid var(--c-key2);
	padding:40px 5% 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 5%;
	width: 85%;
	margin: 40px auto;
}
#supply .sdgsBox > dl{
	width: 45%;
}
#supply .sdgsBox dt{
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 18px;
	color: var(--c-key1);
}
#supply .sdgsBox dd{
	padding-left: 22px;
	line-height: 1.6;
	position: relative;
	margin-bottom: 10px;
}
#supply .sdgsBox dd::before{
	content:'';
	width: 15px;
	height: 2px;
	background: var(--c-key2);
	position: absolute;
	left: 0;
	top: 12px;
}

@media screen and (max-width: 822px) {
	#supply .cntHeading {
		font-size: 28px;
	}
	#supply .cntHeading::before {
		top: 31px;
		width: 339px;
		height: 12px;
	}
	#supply .cntHeading::after {
		bottom: 5px;
		height: 12px;
		width: 290px;
	}
}
@media screen and (max-width: 767px) {
	#supply {
		margin-top: 48px;
	}
	#supply .cntBox {
		display: block;
		margin-top: 42px;
	}
	#supply .cntImg {
		width: 100%;
	}
	#supply .cntImg::before {
		padding-top: 58.66%;
	}
	#supply .cntSubBox {
		width: 100%;
		margin-left: 0;
	}
	#supply .cntCopy {
		font-size: 24px;
		margin-left: 20px;
		margin-top: -10px;
		position: relative;
		z-index: 1;
		padding-left: 19px;
		padding-right: 15px;
	}
	#supply .cntCopy span {
		margin-left: auto;
		font-size: 12px;
		
	}
	#supply .cntHeading {
		font-size: 27px;
		padding-left: 20px;
		padding-right: 20px;
		margin: 25px auto 0;
	}
	#supply .cntHeading::before {
		top: 31px;
		height: 12px;
		left: 5%;
		width: 318px;
	}
	#supply .cntHeading::after {
		left: 5%;
		bottom: 6px;
		height: 12px;
		width: 270px;
	}
	#supply .cntText {
		padding-left: 20px;
		padding-right: 20px;
	}
	#supply .cntBtn {
		margin-left: auto;
		margin-right: auto;
		width: 300px;
	}
	#supply .sdgsBox{
		width: 90%;
		padding: 30px 2.5%;
		flex-flow: column;
		gap: 20px 0;
		margin-top: 20px;
	}
	#supply .sdgsBox > dl{
		width: 100%;
	}
	#supply .sdgsBox dt{
		margin-bottom: 15px;
	}
}

/*下部リンクブロック*/
.linkBlock{
    width: 50%;
    position: relative;
    transition: all .3s ease 0s;
    height: 439px;
}
.linkBlock:hover {
	opacity: 0.7;
}
.linkBlock::before {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}
.linkBlock_l::before{
	bottom: 0;
}
.linkBlock_r::before{
	top: 0;
}
.linkBlock .cntTitle{
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
    padding-bottom: 10px;
    width: 100%;
    line-height: 1.2;
}
.linkBlock_l .cntTitle{
	bottom: 17%;
}
.linkBlock_r .cntTitle{
	top: 15%;
}
.linkBlock .cntTitle h2 {
    font-size: 30px;
    letter-spacing: 0.05em;
    font-weight: bold;
}
.linkBlock .cntTitle h2 span{
    font-size: 16px;
    line-height: 1.75;
    display: block;
}
.linkBlock .cntTitle::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 61px;
    height: 3px;
    background: linear-gradient(90deg,var(--c-key1) 0%,var(--c-key1) 48%, transparent 49%, transparent 50%, var(--c-key2) 51%,var(--c-key2) 100%);
}
.linkBlock.about{
	background: url(../img/common/f_cnt_aboutUsImg.jpg)center/cover no-repeat;
}
.linkBlock.recruit{
	background: url(../img/common/f_cnt_recruitImg.jpg)70% center/cover no-repeat;
}
.linkBlock.facilities{
	background: url(../img/common/f_cnt_facilitiesImg.jpg)center/cover no-repeat;
}
.linkBlock.products{
	background: url(../img/common/f_cnt_productsImg.jpg)center/cover no-repeat;
}
@media screen and (max-width: 767px) {
	.linkBlock{
		height: 350px;
	}
	.linkBlock .cntTitle h1 {
		font-size: 11px;
	}
	.linkBlock .cntTitle h2 {
		font-size: 21px;
	}
	.linkBlock .cntTitle::before {
		left: 13%;
	}
	#aboutus{
		background-position: 60% center;
	}
	#recruit{
		background-position: 71% center;
	}
	#business{
		background-position: 60% center;
	}
}

/*その他共通パーツ*/
.img-cover{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}



/*------------------------------
TOP CSS
------------------------------*/
#top #mainVisual .btn-products{
	width: 90%;
	max-width: 500px;
    margin: 30px auto;
    height: auto;
    padding: 10px 0;
    line-height: 1.5;
    border-radius: 40px;
    font-size: 1.6rem;
    border: 2px solid #fff;
}
#top #mainVisual .btn-products span{
	font-size: 1.4rem;
}

/*取扱商品*/
#top #products {
	margin-top: 89px;
	background-color: var(--c-b-bg);
	padding: 60px 0;
}
#top #products .cntBox {
	margin: 39px auto 0;
	width: 1190px;
	max-width: 100%;
}
#top #products .cntTextWrapper {
	padding-left: 25px;
	padding-right: 25px;
}
#top #products .cntText {
	position: relative;
  padding: 22px 10px;
	width: 895px;
  max-width: 100%;
  color: #222;
  font-size: 28px;
  border: solid 1.5px #222;
  margin:  0 auto;
	text-align: center;
}
#top #products .cntText::before {
	content: "";
  position: absolute;
  bottom: -27px;
  left: 50%;
  margin-left: -16px;
  border: 14px solid transparent;
  border-top: 14px solid #FDF8F0;
  z-index: 2;
}
#top #products .cntText::after {
	content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 15px solid transparent;
  border-top: 15px solid #222;
  z-index: 1;
}
@media screen and (max-width: 767px){
	#top #products .cntText::before {
		bottom: -28px;
	}
	#top #products .cntText::after{
		bottom: -31px;
	}
}
#top #products .cntImgBox {
	margin-top: 28px;
	display: flex;
	flex-wrap: wrap;
	gap:10px;
	justify-content: center;
}
.cntLabel {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 14px;
	color: #fff;
	letter-spacing: 0.05em;
	background-color: var(--c-key2);
	border-radius: 11px;
	padding: 0 15px;
	line-height: 1.75;
}
#top #products .cntImgBox > div{
	width: calc(33.3% - 10px);
	position: relative;
	height: 245px;
}
#top #products .cntImgBox > div img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}
/*#top #products .cntImg01 {
	width: 300px;
	max-width: 100%;
	position: relative;
}
#top #products .cntImg01::before {
	content: "";
	display: block;
	padding-top: 166.66%;
}
#top #products .cntImg01 img {
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}
#top #products .cntImgSubBoxWrapper {
	width: 74%;
	max-width: 100%;
	margin-left: 10px;
}
#top #products .cntImgSubBox {
	display: flex;
}
#top #products .cntImg02 {
	width: 435px;
	max-width: 100%;
	position: relative;
}
#top #products .cntImg02::before {
	content: "";
	display: block;
	padding-top: 56.3218%;
}
#top #products .cntImg02 img {
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}
#top #products .cntImg03 {
	width: 435px;
	max-width: 100%;
	margin-left: 10px;
	position: relative;
}
#top #products .cntImg03::before {
	content: "";
	display: block;
	padding-top: 56.3218%;
}
#top #products .cntImg03 img {
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}
#top #products .cntImg04 {
	width: 880px;
	max-width: 100%;
	margin-top: 10px;
	position: relative;
}
#top #products .cntImg04::before {
	content: "";
	display: block;
	padding-top: 27.84%;
}
#top #products .cntImg04 img {
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}*/
#top #products .cntBtn {
	margin-top: 60px;
	display: flex;
	justify-content: center;
}


@media screen and (max-width: 767px) {
	#top #products {
		margin-top: 50px;
		padding: 30px 0;
	}
	#top #products .cntText {
		padding-left: 20px;
		padding-right: 20px;
	}
	#top #products .cntText {
		font-size: 18px;
		line-height: 1.6666;
	}
	#top #products .cntImgBox {
		margin-top: 50px;
	}
	/*#top #products .cntImgSubBoxWrapper {
		margin-left: 3px;
	}
	#top #products .cntImg01::before {
		padding-top: 520.833%;
	}
	#top #products .cntImg02::before {
		padding-top: 181.48%;
	}
	#top #products .cntImg03 {
		margin-left: 3px;
	}
	#top #products .cntImg03::before {
		padding-top: 181.48%;
	}
	#top #products .cntImg04 {
		margin-top: 3px;
	}
	#top #products .cntImg04::before {
		padding-top: 91.6363%;
	}*/
.cntLabel {
		font-size: 12px;
		padding: 2px 10px;
		top: 8px;
		/*left: 2px;*/
		line-height: 1.3;
		text-align: center;
	}
	#top #products .cntBtn {
		margin-top: 30px;
	}
	#top #products .cntImgBox{
		gap: 5px;
	}
	#top #products .cntImgBox > div {
		width: calc(50% - 10px);
		height: 200px;
	}	
}

/*------------------------------
ABOUT CSS
------------------------------*/
/*下層アバウトページ*/

/*ごあいさつ message*/
#about #message {
	margin-top: 100px;
	padding-bottom: 150px;
	background: url('../img/aboutus/about_philosophy_bg.png')center 140% / 800px auto no-repeat;
}
#about #message .cntBox {
	text-align: center;
	margin-top: 52px;
}
#about #message .cntCopy {
	font-size: 39px;
	letter-spacing: 0.05em;
	line-height: 1.71794;
	color: #222;
	position: relative;
	z-index: 1;
}
#about .message-text-wrapper{
	max-width: 850px;
  	margin: 0 auto;
  	width: 90%;
	margin-top: 60px;
	line-height: 1.8;
}
#about .message-text-wrapper p{
	margin-bottom: 20px;
	text-align: left;
}
#about .message-text-wrapper .name{
	text-align: right!important;
	margin-top: 20px;
}
#about .message-text{
	text-align: left;
	max-width: 844px;
	position: relative;
	font-size: 18px;
	color: #444444;
	line-height: 2;
	margin: 0 auto 35px;
}
#about .message-text::before{
	content: "";
	display: inline-block;
	height: 2px;
	width: 17px;
	border-radius: 1px;
	position: absolute;
	left: -30px;
  top: 18px;
}
/*#about .message-text01::before{
	background-color: #1283CC;
}
#about .message-text02::before{
	background-color: #B82C69;
}
#about .message-text03::before{
	background-color: #3A7F40;
}
#about .message-text04::before{
	background-color: #E3A623;
}*/
#about #message .cntText {
	margin-top: 56px;
	line-height: 2.5;
	color: #444;
	position: relative;
	z-index: 1;
}
#about #message .cntImg {
	width: 100%;
	position: relative;
	margin-top: -60px;
}
#about #message .cntImg::before {
	content: "";
	display: block;
	padding-top: 20.2049%;
}
#about #message .cntImg img {
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

@media screen and (max-width: 767px) {
	#about #message {
		margin-top: 50px;
		padding-bottom: 50px;
		background: url(../img/aboutus/about_philosophy_bg.png) center 112% / 400px auto no-repeat;
	}
	#about #message .cntBox {
		margin-top: 26px;
	}
	#about #message .cntCopy {
		font-size: 2.6rem;
		display: inline-block;
		padding-left: 20px;
		padding-right: 20px;
	}
	#about #message .cntCopy::before {
		top: 30px;
		width: 93%;
		transform: translateX(0);
		left: 4%;
		height: 10px;
	}
	#about #message .cntCopy::after {
		bottom: 51px;
		width: 93%;
		transform: translateX(0);
		left: 4%;
		height: 10px;
	}
	#about #message .cntText {
		margin-top: 28px;
		padding-right: 20px;
		padding-left: 20px;
	}
	#about #message .cntImg {
		margin-top: 20px;
	}
	#about .message-text-wrapper{
		max-width: 85%;
		margin-top: 40px;
	}
	#about .message-text{
		font-size: 16px;
	}
	#about .message-text::before{
		left: -23px;
	}
}

/*資格保有者 QUALIFIED PERSON*/
#about #qualified{
	padding-top: 0;
	padding-bottom: 80px;
}
#about #qualified .cntBox{
	border: 1px solid var(--c-key2);
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	gap:30px;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
#about #qualified .cntBox .cntText{
	flex: 1.5;
	display: flex;
	flex-flow: column;
	gap: 20px;
	justify-content: space-around;
}
#about #qualified .cntBox .cntDesc{
	display: flex;
  flex-flow: column;
  gap: 20px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
#about #qualified .cntBox .cntImg{
	flex: 1;
}
#about #qualified .cntBox .cntSub{
	display: flex;
	gap:20px;
	padding: 15px;
	background: var(--c-b-bg);
	line-height: 1.6;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	#about #qualified .cntBox{
		flex-flow: column;
	}
	#about #qualified .cntBox .cntSub{
		flex-flow: column;
		align-items: center;
	}
}


/*会社概要 company*/
#about #company {
	padding-top: 58px;
	padding-bottom: 80px;
	background-color: var(--c-b-bg);
}
#about #company .cntBox {
	width: 928px;
	max-width: 100%;
	margin: 60px auto 0;
	padding-left: 25px;
	padding-right: 25px;
}
#about #company .cntRow:first-child {
	border-top: 1px solid #9B9B9B;
}
#about #company .cntRow {
	display: flex;
	align-items: baseline;
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #9B9B9B;
}
#about #company .cntDt {
	letter-spacing: 0.05em;
	color: #222;
	width: 196px;
}
#about #company .cntDd {
	line-height: 1.53;
	width: calc(100% - 196px);
	color: #222;
}
#about #company .cntBtn {
	margin-top: 60px;
	display: flex;
	justify-content: center;
}
#about #company .cntBtn a {
	background-color: #3A7F40;	
}
#about #company .cntCopy {
	margin-top: 17px;
	text-align: center;
	font-size: 14px;
}
@media screen and (max-width: 767px) {
	#about #company {
		padding-top: 29px;
		padding-bottom: 40px;
	}
	#about #company .cntBox {
		margin-top: 30px;
		padding-left: 20px;
		padding-right: 20px;
	}
	#about #company .cntDt {
		width: 120px;
	}
	#about #company .cntDd {
		width: calc(100% - 120px);
	}
	#about #company .cntDt{
		padding-left: 5px;
		font-size: 1.4rem;
	}
	#about #company .cntDd{
		font-size: 1.4rem;
	}
}
/*沿革 history*/
#about #history{
	padding-top: 80px;
	width: 90%;
	margin: 0 auto;
	max-width: 1200px;
}
#about #history .cntBox{
	margin-top: 60px;
}
#about #history .cntBox li{
	display: flex;
	padding: 0 30px;
	border-bottom: 1px solid #9B9B9B;
	align-items: start;
}
#about #history .cntBox li:last-child{
	border-bottom: none;
}
#about #history .cntBox li .year{
	font-size: 78px;
	color: var(--c-key2);
	opacity: 0.2;
	margin-right: 100px;
	width: 150px;
	margin-top: 10px;
}
#about #history .cntBox li .month{
	color: var(--c-key1);
	font-weight: bold;
	margin-right: 30px;
	min-width: 50px;
}
#about #history .cntBox li p.h-cnt{
	position: relative;
	height: 100px;
	display: flex;
	align-items: center;
}
#about #history .cntBox li p.h-cnt::before{
	content:'';
	width: 12px;
	height: 12px;
	border-radius: 6px;
	background: var(--c-key1);
	position: absolute;
	left: -50px;
}
#about #history .cntBox li p.h-cnt::after{
	content: '';
	width: 2px;
	height: 101%;
	background: var(--c-key1);
	position: absolute;
	left: -45px;
	z-index: 2;
	top: 50%;
}
@media screen and (max-width: 767px) {
	#about #history{
		width: 85%;
		padding-top: 50px;
	}
	#about #history .cntBox{
		margin-top: 30px;
	}
	#about #history .cntBox li{
		flex-wrap: wrap;
	}
	#about #history .cntBox li .year{
		font-size: 60px;
	}
	#about #history .cntBox li p.h-cnt{
		height: 60px;
		line-height: 1.5;
		font-size: 14px;
	}
	#about #history .cntBox li .month{
		margin-right: 20px;
		min-width: 40px;
	}
	#about #history .cntBox li p.h-cnt::after{
		height: calc(225% + 20px);
	}
	#about #history .cntBox li:last-child p.h-cnt::after{
		height: 60px;
	}
	#about #history .cntBox li{
		padding: 10px 10px;
	}
	#about #history .cntBox li p.h-cnt::before{
		left: -30px;
	}
	#about #history .cntBox li p.h-cnt::after{
		left: -25px;
	}
}
/* アクセス access */
#about #access{
	padding: 120px 0 60px;
}
#about div.map-section{
	display: flex;
	justify-content: center;
	gap: 30px;
	width: 90%;
	max-width: 1200px;
	margin: 60px auto;
}
#about div.map-section > div{
	flex: 1;
}
#about div.map{
	border: 2px solid var(--c-key1);
	background-color: var(--c-key2);
	width: 100%;
	max-width:800px;
	height:373px;
	margin: 0 auto 30px;
	text-align: center;
}
#about div.map iframe{
	mix-blend-mode: hard-light;
}
#about div.map-section p,#about div.map-section h4{
	text-align: center;
}
#about div.map-section h4{
	font-size: 18px;
	margin-bottom: 10px;
}
#about .cntBtn-map{
	width: 300px;
	margin: 20px auto 0;
}
#about .cntBtn-map a svg {
	fill: #FFF;
	transition: all .3s ease 0s;
	vertical-align: -2px;
	margin-right: 5px;
}
#about .cntBtn-map a:hover svg{
	fill: var(--c-key2);
}
@media screen and (max-width: 767px) {
	#about #access{
		padding: 80px 0 30px;
	}
	#about div.map{
		height: 250px;
	}
	#about div.map-section{
		flex-flow: column;
		margin: 30px auto;
		gap: 40px;
	}
}
/* 所属団体情報 organization */
#organization .cntBox{
	margin: 60px auto;
	width: 90%;
	max-width: 1000px;
	padding: 30px 2.5%;
	border: 1px solid var(--c-key1);
	overflow-x: auto;
}
#organization table {
	width: 100%;
}
#organization table tr{
	border-bottom: 1px solid var(--c-key1);
}
#organization table th{
	padding: 20px 5px 15px;
	text-align: left;
	color: var(--c-key1);
}
#organization table td{
	padding: 25px 5px;
	min-width: 165px;
}
#organization table td:first-child{
	width: 40%;
	min-width: 300px;
}
@media screen and (max-width: 767px) {
	#organization .cntBox{
		margin: 30px auto;
		padding: 10px 2.5% 40px;
	}
	#organization table{
		font-size: 14px;
	}
	#organization table td{
		padding: 15px 5px;
	}
}

/*------------------------------
PRODUCTS CSS
------------------------------*/
/* 製品の特長 */
#products #feature {
	margin-top: 98px;
	position: relative;
	overflow: hidden;
}
#products #feature::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: var(--c-b-bg);
	width: 100%;
	height: calc(100% - 11%);
	z-index: -1;
}
#products #feature::after {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 15px;
	background: linear-gradient(90deg,var(--c-key1) 0%,var(--c-key1) 50%,var(--c-key2) 50%,var(--c-key2) 100%);
}
#products #feature .cntBox {
	margin: 66px auto 0;
	width: 1240px;
	max-width: 90%;
}
#products #feature .cntCopy {
	color: #222;
	font-size: 39px;
	text-align: center;
	line-height: 1.5;
}
#products #feature .cntText {
	margin-top: 55px;
	text-align: center;
	color: #444;
	line-height: 2.1285;
}
#products #feature .cntImg {
	width: 100%;
	position: relative;
	margin-top: 40px;
	-webkit-animation: slide 60s linear infinite;
    animation: slide 60s linear infinite;
    z-index: 2;
}
#products #feature .cntImg div {
	background-image: url('../img/products/products_slideImg.png');
	height: 250px;
    width: 9999px;
    background-repeat: repeat-x;
    /* background-attachment: fixed; */
    background-size: auto 100%;
    background-position: 0 -1px;
    -webkit-animation: slide 120s linear infinite;
    animation: slide 120s linear infinite;
		position: relative;
}
@keyframes slide {
  0% {
  	-webkit-transform: translate3d(0, 0, 0);
  	transform: translate3d(0, 0, 0);
  }
  100% {
  	-webkit-transform: translate3d(-1692px, 0, 0);
  	transform: translate3d(-1692px, 0, 0);
  }
 }
 @media screen and (max-width: 767px) {
	#products #feature {
		margin-top: 49px;
	}
	#products #feature::before {
    height: calc(100% - 9%);
	}
	#products #feature::after {
		height: 7px;
	}
	#products #feature .cntBox {
		margin-top: 40px;
		font-size: 1.5rem;
	}
	#products #feature .cntCopy {
		font-size: 23px;
		line-height: 1.717;
	}
	#products #feature .cntText {
		margin-top: 27px;
	}
	#products #feature .cntImg div {
		height: 150px;
	}
 }
 #products .featureList{
 	width: 90%;
 	margin: 60px auto;
 	max-width: 1000px;
 	padding: 40px;
 	border: 1px solid var(--c-key2);
 	background: #fff;
 }
#products .featureList .cntHeading{
	display: flex;
	gap: 20px;
	align-items: center;
}
#products .featureList .cntItem{
	margin-bottom: 30px;
}
#products .featureList .cntItem:last-child{
	margin-bottom: 0;
}
#products #feature .featureList .cntCopy{ 
	font-size: 30px;
	text-align: left;
}
#products #feature .featureList .cntText{
	text-align: left;
	margin-top: 10px;
}
#products #feature .featureList .cntText a{
	color: var(--c-key2);
	border-bottom: 1px solid var(--c-key2);
}
#products .featureList .cntNumber {
	font-size: 28px;
	color: #222;
	position: relative;
	padding: 10px 6px;
	border-left: 2px solid var(--c-key1);
	border-right: 2px solid var(--c-key2);
	width: 50px;
	height: 50px;
	text-align: center;
}
#products .featureList .cntNumber::before {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg,var(--c-key1) 0%,var(--c-key1) 50%,var(--c-key2) 50%,var(--c-key2) 100%);
}
#products .featureList .cntNumber::after {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg,var(--c-key1) 0%,var(--c-key1) 50%,var(--c-key2) 50%,var(--c-key2) 100%);
}
@media screen and (max-width: 767px) {
	#products .featureList{
		margin-top: 40px;
		padding: 20px;
	}
	#products #feature .featureList .cntCopy{
		font-size: 22px;
		line-height: 1.4;
	}
	#products .featureList .cntHeading{
		gap: 10px;
	}
	#products #feature .cntText{
		line-height: 1.8;
	}
}

/* 製品一覧 */
#products #items{
	padding: 100px 0;
}
#products #items .cntBox{
	margin: 60px auto 0;
	width: 90%;
	max-width: 1200px;
}
#products #items .itemCateBox{
	margin-bottom: 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px 10px;
}
#products #items .itemCateBox:last-child{
	margin-bottom: 0;
}
#products #items .itemCateBox h3{
	width: 100%;
	font-size: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--c-key2);
}
#products #items .item{
	width: calc(33.3% - 10px);
	position: relative;
}
#products #items .item .item-img{
	border: 1px solid var(--c-gray);
}
#products #items .item .item-cate{
	position: static;
	display: inline-block;
	margin: 20px 0;
	font-size: 17px;
	border-radius: 20px;
	padding-bottom: 2px;
}
#products #items .item .item-desc li{
    padding-left: 22px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    position: relative;
    margin-bottom: 15px;
    padding-right: 10px;
}
#products #items .item .item-desc li::before {
    content: '';
    width: 15px;
    height: 2px;
    background: var(--c-key2);
    position: absolute;
    left: 0;
    top: 12px;
}
#products #items .item .cntBtn{
	margin-top: 30px;
}
#products #items .item .cntBtn .btn{
	width: 100%;
}
@media screen and (max-width: 767px) {
	#products #items{
		padding: 60px 0;
	}
	#products #items .cntBox{
		margin: 40px auto 0;
	}
	#products #items .itemCateBox{
		margin-bottom: 40px;
		gap: 20px 10px;
		flex-flow: column;
	}
	#products #items .item{
		width: 100%;
	}
	#products #items .item .item-cate{
		margin: 15px 0;
	}
	#products #items .item .item-desc li{
    margin-bottom: 10px;
    font-size: 14px;
	}
	#products #items .item .cntBtn{
		margin-top: 15px;
		margin-bottom: 10px;
	}
}

/*------------------------------
FACILITIES CSS
------------------------------*/
/* 工場設備紹介 */
#facilities #equpment::before {
	content: "";
	position: absolute;
	top: 44%;
	left: 0;
	background-color: var(--c-b-bg);
	width: 100%;
	height: 55%;
	z-index: -1;
}
#facilities #equpment {
	margin-top: 98px;
	padding-bottom: 60px;
	position: relative;
}
#facilities #equpment .cntBox {
	width: 1366px;
	max-width: 100%;
	margin: 52px auto 0;
	padding-left: 25px;
	padding-right: 25px;
	position: relative;
}
#facilities #equpment .cntCopy {
	color: #222;
	font-size: 39px;
	letter-spacing: 0.05em;
	text-align: center;
	line-height: 1.6;
}
#facilities #equpment .cntImg {
	width: 1000px;
	max-width: 90%;
	margin: 60px auto 0;
	position: relative;
}
#facilities #equpment .cntImg::before {
	content: "";
	display: block;
	padding-top: 42%;
}
#facilities #equpment .cntImg img {
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}
#facilities #equpment .cntImgCommon {
	position: absolute;
}
#facilities #equpment .cntImg01 {
	top: 18%;
	left: 4%;
}
#facilities #equpment .cntImg01 img {
	width: 158px;
	height: 158px;
}
#facilities #equpment .cntImg02 {
	top: 43%;
	left: 1%;
}
#facilities #equpment .cntImg02 img {
	width: 190px;
	height: 190px;
}
#facilities #equpment .cntImg03 {
	bottom: -19%;
	left: 5%;
}
#facilities #equpment .cntImg03 img {
	width: 158px;
	height: 158px;
}
#facilities #equpment .cntImg04 {
	top: 13%;
	right: 10%;
}
#facilities #equpment .cntImg04 img {
	width: 158px;
	height: 158px;
}
#facilities #equpment .cntImg05 {
	top: 24%;
	right: 2%;
}
#facilities #equpment .cntImg05 img {
	width: 190px;
	height: 190px;
}
#facilities #equpment .cntImg06 {
	bottom: 3%;
	right: 5%;
}
#facilities #equpment .cntImg06 img {
	width: 158px;
	height: 158px;
}
#facilities #equpment .cntBtn {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}
@media screen and (max-width: 767px) {
	#facilities #equpment {
		margin-top: 49px;
		padding-bottom: 30px;
	}
	#facilities #equpment::before{
		top:143px;
	}
	#facilities #equpment .cntBox{
		margin-top: 30px;
	}
	#facilities #equpment .cntCopy {
		font-size: 24px;
		line-height: 1.717;
	}
	#facilities #equpment .cntImg{
		margin-top: 40px;
	}
	#facilities #equpment .cntImg01 {
		top: 37%;
		left: 2%;
	}
	#facilities #equpment .cntImg01 img {
		width: 60px;
		height: 60px;
	}
	#facilities #equpment .cntImg02 {
		top: 58%;
		left: 0%;
	}
	#facilities #equpment .cntImg02 img {
		width: 62px;
		height: 62px;
	}
	#facilities #equpment .cntImg03 {
		bottom: -12%;
		left: 4%;
	}
	#facilities #equpment .cntImg03 img {
		width: 60px;
		height: 60px;
	}
	#facilities #equpment .cntImg04 {
		top: 38%;
		right: 3%;
	}
	#facilities #equpment .cntImg04 img {
		width: 60px;
		height: 60px;
	}
	#facilities #equpment .cntImg05 {
	    top: 56%;
  	  right: -2%;
	}
	#facilities #equpment .cntImg05 img {
		width: 60px;
		height: 60px;
	}
	#facilities #equpment .cntImg06 {
		bottom: -17%;
		right: 3%;
	}
	#facilities #equpment .cntImg06 img {
		width: 63px;
		height: 63px;
	}
	#facilities #equpment .cntBtn {
		margin-top: 30px;
	}
}
/* 工場一覧 */
#facilities #factory {
	width: 1240px;
  max-width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin: 100px auto;
}
#facilities #factory .factoryBox{
	margin-top: 100px;
}
#facilities #factory .cntBox{
	max-width: 1000px;
	margin: 60px auto;
}
#facilities #factory .cntImg{
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	grid-template-rows: repeat(2, 260px);
	grid-column-gap: 15px;
	grid-row-gap: 15px;
}
#facilities #factory .cntImg .main { grid-area: 1 / 1 / 3 / 2; }
#facilities #factory .cntImg .sub01 { grid-area: 1 / 2 / 2 / 3; }
#facilities #factory .cntImg .sub02 { grid-area: 2 / 2 / 3 / 3; }

#facilities #factory .cntInfo{
	padding: 30px 2.5%;
  border: 1px solid var(--c-key1);
  margin-top: 40px;
}
#facilities #factory .cntInfo table {
    width: 100%;
    line-height: 1.3;
}
#facilities #factory .cntInfo table tr {
    border-bottom: 1px solid var(--c-key1);
    text-align: center;
}
#facilities #factory .cntInfo table th {
    padding: 20px 5px 15px;
    text-align: left;
    color: var(--c-key1);
    text-align: center;
}
#facilities #factory .cntInfo table td {
    padding: 25px 5px;
    min-width: 165px;
    vertical-align: middle;
}
#facilities #factory .cntInfo table th:first-child,#facilities #factory .cntInfo table td:first-child{
	text-align: left;
}
#facilities #factory .caution{
	font-size: 14px;
	margin-top: 10px;
	display: flex;
	justify-content: end;
	line-height: 1.4;
}
@media screen and (max-width: 767px) {
	#facilities #factory{
		margin: 60px auto;
	}
	#facilities #factory .factoryBox{
		margin-top: 0;
	}
	#facilities #factory .cntBox{
		margin-top: 30px;
	}
	#facilities #factory .cntImg{
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	#facilities #factory .cntImg .main { width: 100%; aspect-ratio: 5 / 3;}
	#facilities #factory .cntImg .sub01 { width: calc(50% - 5px); aspect-ratio: 4 / 3; }
	#facilities #factory .cntImg .sub02 { width: calc(50% - 5px); aspect-ratio: 4 / 3; }
	#facilities #factory .cntInfo{
		margin-top: 20px;
	}
  #facilities #factory .cntInfo {
    margin: 20px auto 10px;
    padding: 10px 2.5% 40px;
	}
	#facilities #factory .cntInfo table{
		font-size: 14px;
	}
	#facilities #factory .cntInfo table td {
		padding: 15px 5px;
	}
	#facilities #factory .caution{
		font-size: 12px;
	}
}

/* 工場認可情報 */
#facilities #certification{
	width: 1240px;
  max-width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin: 100px auto;
}
#facilities #certification .cntBox{
	max-width: 1000px;
	margin: 60px auto;
	padding: 30px 2.5%;
  border: 1px solid var(--c-key1);
  margin-top: 40px;
}
#facilities #certification .cntBox table {
    width: 100%;
    line-height: 1.3;
}
#facilities #certification .cntBox table tr {
    border-bottom: 1px solid var(--c-key1);
    text-align: center;
}
#facilities #certification .cntBox table th {
    padding: 20px 5px 15px;
    text-align: left;
    color: var(--c-key1);
    text-align: center;
}
#facilities #certification .cntBox table td {
    padding: 25px 5px;
    min-width: 150px;
    vertical-align: middle;
}
@media screen and (max-width: 767px) {
	#facilities #certification{
		margin: 60px 0 auto;
	}
	#facilities #certification .cntBox{
		margin: 30px auto 60px;
    padding: 10px 2.5% 40px;
	}
	#facilities #certification .cntBox table{
		font-size: 14px;
	}
	#facilities #certification .cntBox table td {
		padding: 15px 5px;
	}
}

/*------------------------------
CONTACT CSS
------------------------------*/
#contact-page #mail {
	margin-top: 60px;
	margin-bottom: 80px;
}
#contact-page #mail .cntBox {
	margin-top: 40px;
	padding-left: 25px;
	padding-right: 25px;
}
#contact-page #mail .cntCopy {
	font-size: 32px;
	letter-spacing: 0.05em;
	line-height: 1.6;
	position: relative;
	z-index: 1;
	text-align: center;
}
#contact-page #mail .cntCopyBorder {
	display: none;
}
#contact-page #mail .cntText {
	margin-top: 40px;
	line-height: 2;
	text-align: center;
}
#contact-page #mail .cntText a{
	border-bottom: 1px solid var(--c-key2);
}
#contact-page #mail .cntImg {
	width: 100%;
	position: relative;
	margin-top: -60px;
}
#contact-page #mail .cntImg::before {
	content: "";
	display: block;
	padding-top: 20.2049%;
}
#contact-page #mail .cntImg img {
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

@media screen and (max-width: 767px) {
	#contact-page #mail {
		margin-top: 50px;
		margin-bottom: 40px;
	}
	#contact-page #mail .cntBox {
		padding-left: 20px;
		padding-right: 20px;
		margin-top: 26px;
	}
	#contact-page #mail .cntCopy {
		font-size: 24px;
	}
	#contact-page #mail .cntCopy::before {
		top: 25px;
		width: 345px;
		height: 12px;
	}
	#contact-page#contact-page #mail .cntCopy::after {
		bottom: 44px;
		height: 12px;
		transform: translateX(-50%);
		width: 345px;
	}
	/* #contact-page #mail .cntCopyBorder {
		content: "";
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 3px;
		background-color: #E6E6E6;
		width: 170px;
		height: 12px;
		z-index: -1;
	} */
	#contact-page #mail .cntText {
		margin-top: 28px;
	}
}

#contact-page .contact-form__wrapper {
  background: var(--c-b-bg);
	margin: 60px auto 0;
	padding-top: 60px;
	padding-bottom: 60px;
	width: 1190px;
	max-width: 100%;
	border: 1px solid var(--c-key1);
}

@media screen and (max-width: 767px) {
	#contact-page .contact-form__wrapper {
		margin-top: 30px;
		padding-top: 0;
		padding-bottom: 30px;
	}
}

.contact-form {
  margin: 0 auto;
  width: 967px;
  max-width: 100%;
	padding-left: 25px;
	padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    margin-top: 40px;
		padding-left: 20px;
		padding-right: 20px;
  }
}
.contact-form__dl {
  margin-top: 1px;
}

.contact-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .contact-form__row {
    display: block;
  }
}
.contact-form__row:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .contact-form__row:not(:first-child) {
    margin-top: 20px;
  }
}

.contact-form__label {
  width: 267px;
  padding-top: 2px;
}
.contact-form__label label {
  margin-top: 5px;
}
.contact-form__label label.is-required {
  position: relative;
  display: inline-block;
}
.contact-form__label label.is-required::after {
  position: absolute;
  content: "必須";
  right: -50px;
  font-size: 14px;
  font-weight: 700;
  background: var(--c-key1);
  line-height: 1;
  padding: 2px 8px 3px;
  border-radius: 10px;
  color: #FFFFFF;
  text-align: center;
  top: -1px;
}

/*20211123追記*/
.telBox{
	text-align: center;
	margin: 30px auto;
	max-width: 400px;
	width: 100%;
}
@media screen and (max-width: 767px) {
	.telBox{
		margin: 20px auto;
	}
}

@media screen and (max-width: 767px) {
  .contact-form__label label.is-required::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: calc(100% + 6px);
    width: 50px;
  }
}

.contact-form__input {
  width: calc(100% - 267px);
}
@media screen and (max-width: 767px) {
  .contact-form__input {
    width: 100%;
		margin-top: 15px;
  }
}
.contact-form__input [type=text],.contact-form__input [type=email],.contact-form__input [type=tel],.contact-form__input textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background: #FFFFFF;
  padding: 19px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
	outline: none;
  color: inherit;
  font-size: 16px;
  width: 100%;
  letter-spacing: 0.05em;
}
.contact-form__input textarea {
  height: 200px;
}
@media screen and (max-width: 767px) {
  .contact-form__input textarea {
    height: 160px;
  }
}
.contact-form__check {
	font-size: 16px;
	margin-top: 30px;
	color: #000;
	text-align: center;
}
.contact-form__check a{
	border-bottom: 1px solid #333333;
}
@media screen and (max-width: 767px) {
  .contact-form__check {
    font-size: 13px;
		margin-top: 15px;
  }
}
.contact-form__button {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-form__button {
		margin-top: 15px;
  }
}
.contact-form__button input[type=submit] {
  color: #fff;
  padding: 12px 117px;
  border-radius: 25px;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: inline-block;
  width: 300px;
  cursor: pointer;
  position: relative;
  font-size: inherit;
	background-color: var(--c-key1);
	border: 2px solid var(--c-key1);
	transition: all .3s ease 0s;
	/*pointer-events: none;*/
}
.contact-form__button:hover{
	cursor: pointer;	
}
.contact-form__button:hover input[type=submit] {
	background-color: #fff;
	color: var(--c-key1);
	font-weight: bold;
}
.privacy-check{
	text-align: center;
	margin:30px auto;
	line-height: 1.6;
}
.privacy-policy {
  border: 1px solid #ccc;
  padding: 10px;
  overflow-y: scroll;
  height: 200px;
  margin: 20px 0;
  background-color: #fff;
}
.privacy-policy .section-title {
    font-size: 16px;
    text-align: center;
}
.privacy__copy {
    font-size: 14px;
    font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    line-height: 31px;
    line-height: 1.5;
    margin-top: 20px;
}
.privacy__items {
    margin-top: 20px;
}
.privacy__item:not(:first-child) {
    margin-top: 20px;
}
.privacy-block__head {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 10px;
}
.privacy-block__text {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 10px;
    font-weight: 400;
}


/*------------------------------
NEWS CSS
------------------------------*/

/*下層お知らせページ*/
#news #newsSubBox {
	margin-top: 80px;
	margin-bottom: 80px;
}
#news #newsSubBox .cntBox {
	width: 1000px;
	max-width: 100%;
	padding-left: 25px;
	padding-right: 25px;
	margin: 0 auto;
}
#news #newsSubBox .cntTitle {
	display: flex;
	align-items: center;
	position: relative;
	padding-top: 6px;
	padding-left: 16px;
}
#news #newsSubBox .cntTitle::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--c-key1);
	width: 3px;
	height: 30px;
}
#news #newsSubBox .cntTitle::after {
	content: "";
	position: absolute;
	top: 0;
	left: 5px;
	background-color: var(--c-key2);
	width: 3px;
	height: 30px;
}
#news #newsSubBox .cntTitle h2 {
	font-size: 13px;
	letter-spacing: 0.05em;
	margin-left: 5px;
}
#news #newsSubBox .cntTitle h2 span {
	font-size: 20px;
}
#news #newsSubBox .cntSubBox {
  border: 1px solid var(--c-key1);
	margin-top: 20px;
}
#news #newsSubBox .cntSubBox ul {
	padding: 60px 5%;
}
#news #newsSubBox .cntSubBox li:not(:first-child) {
	margin-top: 50px;
}
#news #newsSubBox .cntSubBox a {
	letter-spacing: 0.03em;
	display: flex;
	align-items: center;
	transition: all .3s ease 0s;
}
#news #newsSubBox .cntSubBox a:hover {
	opacity: 0.7;
}
#news #newsSubBox .cntSubBox .newsDate {
	color: var(--c-key1);
	width: 171px;
}
#news #newsSubBox .cntSubBox .newsTitle {
	font-size: 16px;
	line-height: 1.444;
	width: calc(100% - 171px);
}
#news #newsSubBox .pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}
#news #newsSubBox .pagination a{
	background-color: var(--c-key1);
	font-size: 14px;
	letter-spacing: 0.03em;
	width: 200px;
	color: #fff;
	text-align: center;
	position: relative;
	transition:  all .3s ease 0s;
	font-weight: bold;
	display: block;
}
#news #newsSubBox .pagination a:hover {
	opacity: 0.7;
}
#news #newsSubBox .paginationPrev a{
	padding: 25px 0 25px 15px;	
}
#news #newsSubBox .paginationPrev a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 45px;
	transform: translateY(-50%);
	background: url(../img/common/prev.png) no-repeat center center / contain;
	width: 16px;
	height: 16px;
}
#news #newsSubBox .paginationNext a{
	padding: 25px 15px 25px 0;
	margin-left: 20px;
}
#news #newsSubBox .paginationNext a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 45px;
	transform: translateY(-50%);
	background: url(../img/common/next.png) no-repeat center center / contain;
	width: 16px;
	height: 16px;
}

/*投稿ページ*/
#news #newsSubBox #newsCntBox{
	width: 90%;
	max-width: 780px;
	padding-left: 0;
	padding-right: 0;
}
#news #newsCntBox .cntTitle{
	flex-flow: column;
	align-items: flex-start;
	padding: 33px 3% 28px;
    border: 1px solid var(--c-key2);
}
#news #newsCntBox .cntTitle::before,#news #newsCntBox .cntTitle::after{
	display: none;
}
#news #newsCntBox .newsDate{
	position: absolute;
    font-size: 1.6rem;
    top: -10px;
    background: var(--c-key2);
    padding: 4px 0 6px;
    color: #fff;
    margin: auto;
    width: 200px;
    text-align: center;
}
#news #newsCntBox .cntTitle h2{
	font-size: 2.8rem;
	margin-left: 0;
	line-height: 1.5;
}
#news #newsCntBox .cnt{
	margin: 30px auto 60px;
	padding: 0 10px;
}
/*投稿スタイル*/
#news #newsCntBox .cnt p, #news #newsCntBox .cnt li,#news #newsCntBox .cnt a{
  line-height: 1.8;
}
#news #newsCntBox .cnt p{
  margin-bottom: 20px;
}
#news #newsCntBox .cnt ul,#news #newsCntBox .cnt ol{
  padding-left: 25px;
  margin: 20px 0;
}
#news #newsCntBox .cnt ul li{
  list-style-type: disc;
  padding-left: 5px;
}
#news #newsCntBox .cnt ol li{
  list-style-type: decimal;
  padding-left: 5px;
}
#news #newsCntBox .cnt a{
  color: var(--c-key2);
  border-bottom: 1px solid var(--c-key2);
  font-weight: bold;
}
#news #newsCntBox .cnt h2{
  font-size: 2.5rem;
  line-height: 40px;
  margin: 30px 0 20px;
  font-family: noto-sans-cjk-jp,sans-serif;
  letter-spacing: .08em;
  font-weight: bold;
}
#news #newsCntBox .cnt h3{
  font-size: 2rem;
  line-height: 34px;
  margin: 20px 0;
  font-family: noto-sans-cjk-jp,sans-serif;
  letter-spacing: .05em;
  font-weight: bold;
}
#news #newsCntBox .cnt h4,#news #newsCntBox .cnt h5{
  font-size: 1.8rem;
  line-height: 30px;
  margin: 20px 0;
  font-family: noto-sans-cjk-jp,sans-serif;
  letter-spacing: .05em;
  font-weight: bold;
}
#news #newsCntBox .cnt h6{
	margin: 20px 0;
	font-weight: bold;
}
#news #newsCntBox .cnt img{
  max-width: 780px;
  width: 100%;
  margin: 20px 0;
  height: auto;
}
#news #newsCntBox .backBtn a{
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#news #newsSubBox {
		margin-top: 55px;
		margin-bottom: 40px;
	}
	#news #newsSubBox .cntBox {
		padding-left: 20px;
		padding-right: 20px;
	}
	#news #newsSubBox .cntSubBox ul {
		padding: 30px 14px;
	}
	#news #newsSubBox .cntSubBox a {
		display: block;
	}
	#news #newsSubBox .cntSubBox .newsDate {
		width: 100%;
		font-size: 14px;
	}
	#news #newsSubBox .cntSubBox .newsTitle {
		width: 100%;
		margin-top: 5px;
		font-size: 16px;
	}
	#news #newsSubBox .cntSubBox li:not(:first-child) {
		margin-top: 20px;
	}
	#news #newsSubBox .paginationPrev a::before {
		left: 24px;
	}
	#news #newsSubBox .paginationNext a::before {
		right: 24px;
	}
	#news #newsSubBox .pagination {
		margin-top: 20px;
	}
	/*投稿ページ*/
	#news #newsCntBox .cntTitle{
		padding: 25px 3% 20px; 
	}
	#news #newsCntBox .newsDate{
		top: -13px;
		padding: 4px 10px 6px;
		/*width: 150px;*/
		font-size: 1.5rem;
	}
	#news #newsCntBox .cnt{
		margin: 0px auto 30px;
	}
	#news #newsCntBox .cnt ul li,#news #newsCntBox .cnt ol li{
		padding-left: 0;
	}
	#news #newsCntBox .cntTitle h2{
		font-size: 2.1rem;
	}
}

#notfound .mainCntBox#notFound{
	padding: 100px 0;
}
#notfound .mainCntBox#notFound .cntTitleWrapper{
	margin-bottom: 60px;
}
#notfound .mainCntBox#notFound .cntText{
	line-height: 1.8;
}
#notfound .mainCntBox#notFound .cntBtn a{
	margin: 40px auto 20px;
}