@charset "utf-8";
/* CSS Document */

/*　フォント読み込み　*/

@font-face {
	font-family: "Noto Sans Japanese";
	src: url("font/Noto_Sans_JP/NotoSansJP-Regular.ttf") format("truetype");
}

@font-face {
	font-family: "Noto Sans Japanese Black";
	src: url("font/Noto_Sans_JP/NotoSansJP-Black.ttf") format("truetype");
}

@font-face {
	font-family: "Rubik";
	src: url("font/Rubik/Rubik-Regular.ttf") format("truetype");
}

@font-face {
	font-family: "Rubik Bold";
	src: url("font/Rubik/Rubik-Bold.ttf") format("truetype");
}

/*　共通設定　*/

html {
	width: 100%;
	scroll-behavior: smooth;
}

html::-webkit-scrollbar {
	width: 16px;
	background: #f8f8f8;
}

html::-webkit-scrollbar-button:single-button {
	width: 16px;
	height: 16px;
	display: block;
	background: #827E77;
	border-radius: 5px;
}

html::-webkit-scrollbar-thumb {
	background: #ff9376;
	border-radius: 10px;
}

@-moz-document url-prefix(){
	html{
		scrollbar-width: auto;
		scrollbar-color: #ff9376 #f8f8f8;
	}
}

* {
	box-sizing: border-box;
	line-height: 1.5;
	line-break: strict;
	text-align: justify;
}

body {
	width: 100%;
	position: relative;
	color: #333;
	font-family: "Noto Sans Japanese", sans-serif;
	font-weight: 400;
	font-style: normal;
	counter-reset: number 0;
	overflow: hidden;
}

ul,ol {
	margin: 0 0 40px 0;
	padding: 0;
	list-style: none;
}

p {
	width: 100%;
	margin: 0 0 40px 0;
}

a {
	width: 100%;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
}

a:hover {
	color: #FF9376;
}

strong {
	font-weight: bold;
}

figure {
	margin: 0 0 40px 0;
	text-align: center;
}

img {
	width: 100%;
	vertical-align: bottom;
}

a img {
	transition: all 0.3s;
}

a:hover img {
	opacity: 0.7;
}

/* テーブル */

table {
	width: 100%;
	margin: 0 0 40px 0;
}

table tr {
	margin: 0 0 2px 0;
}

table th,
table td {
	padding: 15px 20px;
	border-right: solid 1px #fff;
}

table tr th:first-child,
table tr td:first-child {
	border-radius: 10px 0 0 10px;
}

table tr th:last-child,
table tr td:last-child {
	border-right: none;
	border-radius: 0 10px 10px 0;
}

table th {
	color: #fff;
	background: #FF793E;
	font-weight: bold;
	text-align: center;
}

table tr:nth-child(even) td {
	background: #f8f8f8;
}

table tr:nth-child(odd) td {
	background: #e7e7e7;
}


/* ヘッダー */

header {
	width: 100%;
	background: url("../img/top_bg.jpg") no-repeat center;
	background-size: cover;
}

#top header {
	padding: 30px 30px 50px 30px;
}

#content header {
	padding: 30px 50px;
}

header h1 {
	width: 100%;
	margin: 0 0 30px 0;
	text-align: center;
}

header h1 img {
	max-width: 600px;
}

header .spMenu {
	display: none;
}

header nav {
	width: 100%;
	max-width: 1200px;
}

#top header nav {
	margin: 0 auto 25px;
	padding: 0 20px;
}

header nav ul {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

header ul li.home {
	display: none;
}

header ul li a {
	padding: 5px 10px;
	display: inline-block;
	text-align: center;
	font-size: 1.2rem;
	color: #fff;
	letter-spacing: 2px;
	font-weight: bold;
	border-bottom: solid 1px rgba(255,255,255,0);
}

header nav ul li.current a,
header nav ul li a:hover {
	border-bottom: solid 1px #fff;
}

header nav ul li a:hover {
	color: #fff;
}

header .slider {
	width: 100%;
	position: relative;
}

header .slider,
header .swiper,
header .swiper-wrapper,
header .swiper-slide,
header .swiper img {
	border-radius: 30px;
}

header .swiper img {
	object-fit: cover;
	object-position: center;
}

header .swiper img.sp {
	display: none;
}

header .swiper .cCopy {
	width: calc(100% - 160px);
	margin: 0;
	position: absolute;
	left: 80px;
	bottom: 80px;
	font-size: 2rem;
	color: #fff;
	font-weight: bold;
	letter-spacing: 3px;
	text-shadow: 0 0 3px #333;
}

header .slider .swiper-pagination {
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translate(0,-50%);
}

.swiper-pagination-bullet {
	display: inline-block;
	margin: 0 0 15px 0!important;
	background-color: transparent;
	border: solid 3px #fff;
	opacity: 1;
	border-radius: 5px;
	width: 20px;
	height: 20px;
	box-shadow: 0 0 3px rgba(51,51,51,0.7);
}

.swiper-pagination-bullet:last-child {
	margin: 0!important;
}

.swiper-pagination-bullet-active {
	background-color: #FF793E;
	border: none;
}

/*　コンテンツ部分　*/

/*　見出し　共通　*/

h2 {
	margin: 0 0 50px 0;
	padding: 0 0 0 2.4rem;
	position: relative;
	color: transparent;
	font-size: 5.5rem;
	font-family: "Rubik Bold", sans-serif;
	text-transform: uppercase;
	-webkit-text-stroke: 1px #ff9376;
	letter-spacing: 3px;
	line-height: 1;
}

#content main h2 {
	margin: 0;
}

h2 span {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2.4rem;
	font-family: "Noto Sans Japanese Black", sans-serif;
	color: #333;
	text-shadow: 0 0 2px rgba(51,51,51,0.7);
	-webkit-text-stroke: 0;
	letter-spacing: 1px;
}

h2.wh span {
	color: #fff;
}

h2 span::first-letter {
	color: #FF793E;
}

h3 {
	margin: 80px 0 70px;
	text-align: center;
	letter-spacing: 1px;
}

section > h3:first-child {
	margin: 0 0 70px 0;
}

h3 > span {
	--b: 10px;   /* thickness of the border */
	--c: #FF793E;   /* color of the border */
	--w: 24px;  /* width of border */
	--r: 15px;  /* radius */
	padding: 20px 80px;
	display: inline-block;
	position: relative;
	border-radius: 9px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	color: #FF793E;
	background: rgba(255,255,255,0.6);
}

h3 > span:before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--c,#FF793E);
	padding: calc(var(--b));
	border-radius: var(--r);
	-webkit-mask:
		linear-gradient(  0deg,#000 calc(2*var(--b)),#0000 0) 50% calc(var(--b))/calc(100% - 2*var(--w)) 100% repeat-y,
		linear-gradient(-90deg,#000 calc(2*var(--b)),#0000 0) calc(var(--b)) 50%/100% calc(100% - 2*var(--w)) repeat-x,
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: destination-out;
		mask-composite: exclude;
}

h4 {
	margin: 0 0 20px 0;
	font-size: 1.4rem;
	font-weight: bold;
}

h4:before {
	width: 1.1rem;
	height: 1.1rem;
	display: inline-block;
	margin: 3px 10px 0 0;
	content: '';
	background: #FF793E;
	border-radius: 5px;
}

h5 {
	display: inline-block;
	margin: 0 0 20px 0;
	padding: 0 0 5px 0;
	border-bottom: solid 1px #FF793E;
	font-weight: bold;
}

/*　共通：要素間の余白関連　*/

p + p,
figure + figure,
table + table {
	margin-top: -20px;
}

/*　アニメーション　*/

/* 下から上にフェードイン */
.fadeInUp,
h2 span {
	opacity: 0;
	transform: translateY(70px);
}
/* 上から下にフェードイン */
.fadeInDown {
	opacity: 0;
	transform: translateY(-70px);
}
/* 右から左にフェードイン */
.fadeInLeft {
	opacity: 0;
	transform: translate(-70px, 0);
}
/* 左から右にフェードイン */
.fadeInRight {
	opacity: 0;
	transform: translateX(70px);
}

/* その場でフェードイン */
.fadeInSpot {
	opacity: 0;
}

/* フェードインアニメーション */
@keyframes fadeIn {
	0% {
	}
	100% {
		opacity: 1;
		transform: translate(0);
	}
}

@keyframes fadeIn02 {
	0% {
	}
	100% {
		opacity: 1;
		transform: translate(0,-50%);
	}
}
/* フェードインさせるクラス */
.fadeIn {
	animation-name: fadeIn;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}

h2 span.fadeIn {
	animation-name: fadeIn02;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}

#top #about h3.fadeIn,
#top #topics .topicsList.fadeInUp.fadeIn {
	animation-delay: 0.4s;
}

#top #about .challengeList li.fadeInSpot.fadeIn:first-child {
	animation-delay: 0.3s;
}

#top #about .challengeList li.fadeInSpot.fadeIn:nth-child(2) {
	animation-delay: 0.6s;
}

#top #about .challengeList li.fadeInSpot.fadeIn:last-child {
	animation-delay: 0.9s;
}


/*　トップのコンテンツ　*/

#top #about {
	padding: 80px 50px;
	background: url("../img/con_bg.png") no-repeat;
	background-size: 70%;
	background-position: right;
	background-color: #fff;
}

#top #about .challengeList {
	width: 100%;
	margin: 0 0 60px 0;
	display: flex;
	flex-wrap: wrap;
}

#top #about .challengeList li {
	width: calc(33.3% - 50px);
	margin: 0 75px 40px 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}

#top #about .challengeList li:nth-child(3n) {
	width: calc(33.4% - 50px);
	margin: 0 0 40px 0;
}

#top #about .challengeList li h4,
#top #about .challengeList li p {
	flex-grow: 1;
}

#top #about .challengeList li h4 {
	display: flex;
	align-items: center;
}

#top .challengeList li h4:before {
	margin: 0 15px 0 0;
	display: inline-block;
	color: #FF793E;
	counter-increment: number 1;
	content: counter(number) " ";
	font-size: 2.4rem;
	width: auto;
	height: auto;
	background: none;
	border-radius: 0;
}

#top .challengeList li h4 span {
	font-weight: bold;
	line-height: 1;
}

#top #about .challengeList li p {
	width: auto;
	margin: 0 0 20px 0;
}

#top #about .challengeList li img {
	border-radius: 20px;
}

#top #about .challengeList li img.whBg {
	background: #fff;
	border: solid 1px rgba(51, 51, 51, 0.3);
	box-shadow: inset 0px 0px 10px 0px rgba(51, 51, 51, 0.3);
}

#top #topics {
	padding: 80px 50px;
	background: url("../img/con_pic_bg.jpg") no-repeat;
	background-size: cover;
	background-color:rgba(0,0,0,0.2);
	background-blend-mode: multiply;
	background-attachment: fixed;
}

/*　Safariでパララックス　*/

::-webkit-full-page-media, :future, :root #top #topics {
	background: none;
	position: relative;
}

::-webkit-full-page-media, :future, :root #top #topics:before {
	content: '';
	display: block;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
	background: url("../img/con_pic_bg.jpg") no-repeat;
	background-size: cover;
	background-color:rgba(0,0,0,0.2);
	background-blend-mode: multiply;
	background-position: center;
}

#top #topics .topicsList {
	width: 70%;
	max-width: 1000px;
	margin: 0 30% 100px 0;
	padding: 10px 50px;
	background: rgba(255,255,255,0.9);
	border-radius: 20px;
}

.topicsList li {
	border-bottom: solid 1px #333;
}

#content main ul.topicsList li {
	margin: 0;
}

.topicsList li a,
.topicsList li.linkNon {
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.topicsList li:first-child a,
.topicsList li:first-child.linkNon {
	padding-top: 0;
}

.topicsList li:last-child a,
.topicsList li:last-child.linkNon {
	padding-bottom: 0;
}

.topicsList li a {
	position: relative;
}

.topicsList li a:after {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 700;
	transition: font-size 0.2s;
}

.topicsList li a:hover:after {
	font-size: 1.2rem;
}

.topicsList li a:hover .date {
	color: #333;
}

.topicsList li:last-child {
	border: none;
}

.topicsList li .date {
	width: calc(15% - 30px);
	margin: 0 30px 0 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	font-family: "Rubik Bold", sans-serif;
	font-size: 1.5rem;
	line-height: 1;
	color: #333;
}

.topicsList li .date span {
	font-size: 1.2rem;
	color: #FF793E;
}

.topicsList li .title {
	width: 85%;
	padding: 0 40px 0 0;
	display: inline-block;
}

.moreBtn {
	text-align: right;
}

.moreBtn a {
	width: auto;
	padding: 8px 20px 8px 15px;
	display: inline-block;
	border: solid 1px #333;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	text-decoration: none!important;
}

.moreBtn.wh a {
	border: solid 1px #fff;
	color: #fff;
	background: rgba(0,0,0,0.4);
}

.moreBtn a:after {
	width: 100%;
	height: 100%;
	background: #FF793E;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}

.moreBtn a:hover {
	color: #fff;
	border: solid 1px #FF793E;
}

.moreBtn a:hover:after {
	transform: scale(1, 1);
}

.moreBtn a span:after {
	margin: 0 0 0 12px;
	display: inline-block;
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 700;
	transition: transform 0.4s;
}

.moreBtn a:hover span:after {
	transform: translateX(5px);
}

/*　コンテンツページ　*/

#content main ul li,
#content main ol li {
	margin: 0 0 20px 0;
}

#content main a {
	text-decoration: underline;
}

#content main img {
	border-radius: 20px;
}

#content header {
	background: #FF793E;
}

#content header nav {
	margin: 0 auto;
}

#content main {
	min-height: 70vh;
	padding: 80px 50px;
}

#content article {
	max-width: 1200px;
	margin: 0 auto;
	padding: 90px 0 0 0;
}

#content .topicsList li a {
	text-decoration: none;
}

/* 商品施工例 */

.thumbSlider .js-swiper-main {
	margin: 0 0 5px 0;
}

.thumbSlider .js-swiper-main .swiper-wrapper .swiper-slide {
	background: #827E77;
	border-radius: 20px;
}

.thumbSlider .js-swiper-main .swiper-wrapper .swiper-slide img {
	height: 350px;
	object-fit: contain;
}

.thumbSlider.h600 .js-swiper-main .swiper-wrapper .swiper-slide img {
	height: 600px;
}

.thumbSlider .js-swiper-thumbs .swiper-wrapper .swiper-slide img {
	height: 120px;
	object-fit: cover;
	cursor: pointer;
}

.thumbSlider .swiper-button-next,
.thumbSlider .swiper-button-prev {
	color: #fff;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/*　会員一覧　*/

.memberList th,
.memberList td {
	vertical-align: middle;
}

.memberList tr td:nth-child(2),
.memberList tr td:nth-child(4) {
	text-align: center;
}

.memberList tr td:nth-child(2) a[href^="tel:"] {
	pointer-events: none;
	text-decoration: none!important;
}/* 郵便番号にリンクが付いてしまうのを回避 */


footer {
	width: 100%;
	padding: 50px 50px 10px;
	background: #827E77;
	color: #fff;
}

footer a {
	color: #fff;
}

footer .footerConWrapper {
	width: 100%;
	margin: 0 0 60px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

footer .footerConWrapper .adress {
	padding: 0 20px 0 0;
	display: flex;
	align-items: baseline;
}

footer .footerConWrapper .adress p:first-child {
	--con-width: auto;
	width: auto;
	margin: 0 20px 0 0;
	font-size: 1.1rem;
}

footer .footerConWrapper .adress p:last-child {
	width: calc(100% - var(--con-width) - 20px);
	line-height: 2;
}

footer .footerConWrapper .adress p:last-child a {
	text-decoration: underline;
}

footer .footerConWrapper .footerNav ul li a {
	padding: 8px 15px 8px 0;
	display: inline-block;
	text-align: right;
	border-right: solid 4px #ff9376;
}

footer .footerConWrapper .footerNav ul li.current a,
footer .footerConWrapper .footerNav ul li a:hover {
	color: #ff9376;
	border-right: solid 4px #fff;
}

footer p.copyRight {
	margin: 0;
	text-align: center;
	font-size: 0.7rem;
}

#pageTop {
	position: fixed;
	bottom: 10px;
	right: 20px;
	z-index: 9700;
}

#pageTop a {
	width: 50px;
	height: 50px;
	display: inline-block;
	padding: 20px;
	background: #fff;
	border: solid 6px #FF793E;
	border-radius: 10px;
	box-shadow: 0 0 3px rgba(51,51,51,0.7);
	position: relative;
}

#pageTop a:after {
	content: '\f106';
	font-family: 'Font Awesome 5 Free';
	display: inline-block;
	color: #FF793E;
	font-size: 2.2rem;
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	line-height: 1;
}

#pageTop a:hover {
	background: #FF793E;
	transform: translateY(5px);
}

#pageTop a:hover:after {
	color: #fff;
}


@media screen and (max-width: 900px) {
	
	table th,
	table td {
	padding: 15px 10px;
}
	
	#top #about .challengeList li {
		width: calc(33.3% - 30px);
		margin: 0 45px 40px 0;
	}
	
	#top #about .challengeList li:nth-child(3n) {
		width: calc(33.4% - 30px);
		margin: 0 0 40px 0;
	}
	
	#top #topics .topicsList {
		width: 100%;
		margin: 0 0 100px 0;
	}
	
}

@media screen and (min-width: 769px) {
	
	header .slider,
	header .swiper,
	header .swiper-wrapper,
	header .swiper-slide,
	header .swiper img {
		height: 650px;
	}
	
}

@media screen and (max-width: 768px) {
	
	p,
	ul,
	ol,
	figure,
	table {
		margin: 0 0 30px;
	}
	
	header {
		position: relative;
	}
	
	#top header {
		padding: 85px 20px 20px 20px;
		background: url("../img/top_bg.jpg") no-repeat 20%;
		background-size: cover;
	}
	
	#content header {
		background: none;
	}
	
	header .headerTopWrapper {
		width: 100%;
		height: 85px;
		padding: 20px 40px;
		display: flex;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9800;
		background: #FF793E;
		border-radius: 0 0 20px 20px;
	}
	
	#content .headerTopWrapper {
		box-shadow: 0 2px 1px rgba(51,51,51,0.2);
	}
	
	header .headerTopWrapper h1 {
		width: calc(100% - 42px - 20px);
		margin: 0 20px 0 0;
		text-align: left;
	}
	
	header .headerTopWrapper h1 img {
		max-width: 400px;
	}
	
	header .headerTopWrapper .spMenu {
		width: 42px;
		height: 30px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		top: 30px;
		right: 20px;
		z-index: 10000;
		cursor: pointer;
	}
	
	header .headerTopWrapper .spMenu span {
		width: 100%;
		height: 4px;
		border-radius: 5px;
		display: inline-block;
		background: #6D6660;
		transition: all 0.3s;
	}
	
	header .headerTopWrapper.active .spMenu {
		justify-content: center;
	}
	
	header .headerTopWrapper.active .spMenu span {
		background: #fff;
	}
	
	header .headerTopWrapper.active .spMenu span:first-child {
		transform: translateY(calc(50% + 2px)) rotate(45deg);
	}
	
	header .headerTopWrapper.active .spMenu span:nth-child(2n) {
		transform: translateX(100px);
	}
	
	header .headerTopWrapper.active .spMenu span:last-child {
		transform: translateY(calc(-50% - 2px)) rotate(-45deg);
	}
	
	header .headerTopWrapper nav,
	#top header nav {
		padding: 0;
	}
	
	header .headerTopWrapper nav {
		height: 100vh;
		position: absolute;
		top: 0;
		left: 100vw;
		z-index: 9900;
		background: #827E77;
		background-image: url("../img/con_bg.png");
		background-repeat: no-repeat;
		background-blend-mode: multiply;
		background-position: center bottom;
		transition: all 0.3s;
		opacity: 0;
	}
	
	header .headerTopWrapper.active nav {
		opacity: 1;
	}
	
	header .headerTopWrapper nav:before {
		content: '';
		width: 100%;
		height: 80px;
		display: inline-block;
		 background-image: linear-gradient(0deg, rgba(51, 51, 51, 0), rgba(51, 51, 51, 0.8));
		position: absolute;
		top: 0;
	}
	
	header .headerTopWrapper.active nav {
		left: 0;
	}
	
	header .headerTopWrapper nav ul {
		margin:  80px 0 0 0;
	}
	
	header .headerTopWrapper nav ul li {
		width: 100%;
		margin: 0;
		border-bottom: solid 1px #FF9376;
	}
	
	header .headerTopWrapper nav ul li.home {
		display: block;
	}
	
	header .headerTopWrapper nav ul li:first-child {
		border-top: solid 1px #FF9376;
	}
	
	header .headerTopWrapper nav ul li a {
		border: none;
		padding: 30px 10px;
	}
	
	header .headerTopWrapper nav ul li.current a,
	header .headerTopWrapper nav ul li a:hover {
		background: rgba(51,51,51,0.3);
		color: #FF9376;
	}
	
	header .slider img {
		height: 600px;
		margin: 0 0 50px 0;
	}
	
	header .swiper img.pc {
		display: none;
	}
	
	header .swiper img.sp {
		display: block;
	}
	
	header .swiper .cCopy {
		width: calc(100% - 20px - 30px);
		left: 30px;
		font-size: 1.6rem;
	}
	
	header .slider .swiper-pagination {
		flex-direction: row;
		align-items: normal;
		top: inherit;
		left: 50%;
		transform: translate(-50%,0);
	}
	
	header .swiper-pagination-bullet,
	header .swiper-pagination-bullet:last-child {
		margin: 0 8px!important;
	}
	
	.swiper-pagination-bullet-active {
		background-color: #6D6660;
	}
	
	/*　コンテンツ部分　*/
	
	/*　見出し　共通　*/

	h2 {
		width: calc(100% - 2rem);
		margin: 0 0 40px 0;
		padding: 0 0 0 2rem;
		font-size: 15vw;
	}
	
	h2 span {
		font-size: 1.8rem;
	}
	
	h3 {
		margin: 60px 0 40px;
		text-align: center;
		letter-spacing: 1px;
	}
	
	h3 > span {
		--w: 22px;  /* width of border */
		padding: 24px 50px;
		font-size: 1.5rem;
	}
	
	/*　共通：要素間の余白関連　*/
	
	p + p,
	figure + figure {
		margin-top: 15px;
	}
	
	/*　アニメーション　*/
	
	.fadeIn {
		animation-duration: 0.4s;
	}
	
	h2 span.fadeIn {
		animation-duration: 0.4s;
	}
	
	#top #about h3.fadeIn,
	#top #topics .topicsList.fadeInUp.fadeIn {
		animation-delay: 0.4s;
	}
	
	#top #about .challengeList li.fadeInSpot.fadeIn:first-child {
		animation-delay: 0.6s;
	}
	
	#top #about .challengeList li.fadeInSpot.fadeIn:nth-child(2) {
		animation-delay: 0.5s;
	}
	
	#top #about .challengeList li.fadeInSpot.fadeIn:last-child {
		animation-delay: 0.6s;
	}
	
	/*　トップのコンテンツ　*/
	
	#top #about {
		padding: 60px 30px;
		background: url("../img/con_bg.png") no-repeat;
		background-size: 120%;
		background-position: center;
		background-color: #fff;
	}
	
	#top #about .challengeList {
		width: 100%;
		margin: 0 0 60px 0;
	}
	
	#top #about .challengeList li,
	#top #about .challengeList li:nth-child(3n) {
		width: 100%;
	}
	
	#top #about .challengeList li {
		margin: 0 0 40px 0;
	}
	
	#top #about .challengeList li:nth-child(3n) {
		margin: 0;
	}
	
	#top #about .challengeList li h4 {
		font-size: 1.3rem;
	}
	
	#top .challengeList li h4:before {
		font-size: 2.2rem;
	}
	
	#top #about .challengeList li img {
		max-width: 400px;
		border-radius: 20px;
	}
	
	#top #about .moreBtn {
		transform: translateX(10px);
	}
	
	#top #topics {
		padding: 60px 20px;
		background: url("../img/con_pic_bg.jpg") no-repeat;
		background-size: cover;
		background-position: center;
		background-color:rgba(0,0,0,0.2);
		background-blend-mode: multiply;
		background-attachment: fixed;
	}
	
	#top #topics .topicsList {
		margin: 0 0 30px 0;
		padding: 20px;
		border-radius: 10px;
	}
	
	.topicsList li a,
	.topicsList li.linkNon {
		padding: 10px;
	}
	
	.topicsList li a:after {
		right: 10px;
	}
	
	.topicsList li a:hover:after {
		font-size: 1.1rem;
	}
	
	.topicsList li .date {
		width: calc(13% - 25px);
		margin: 0 25px 0 0;
		font-size: 1.3rem;
	}
	
	.topicsList li .date span {
		font-size: 1rem;
	}
	
	.topicsList li .title {
		width: 87%;
	}
	
	/*　コンテンツページ　*/
	
	#content main {
		padding: 60px 20px;
	}
	
	#content main img,
	.thumbSlider .js-swiper-main .swiper-wrapper .swiper-slide {
		border-radius: 10px;
	}
	
	footer {
		padding: 40px 30px 10px;
	}
	
	footer .footerConWrapper {
		width: 100%;
		margin: 0 0 40px 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	footer .footerConWrapper .adress {
		width: 100%;
		margin: 0 0 40px 0;
		padding: 0;
	}
	
	footer .footerConWrapper .footerNav ul li a {
		padding: 10px 0 10px 15px;
		text-align: left;
		border-left: solid 4px #ff9376;
		border-right: none;
	}
	
	footer .footerConWrapper .footerNav ul li.current a,
	footer .footerConWrapper .footerNav ul li a:hover {
		border-left: solid 4px #fff;
		border-right: none;
	}
	
	footer p.copyRight {
		font-size: 0.6rem;
	}

}

@media screen and (max-width: 600px) {
	
	header .slider img {
		height: 500px;
	}
	
}
	
@media screen and (max-width: 500px) {
	
	body {
		font-size: 14px;
	}
	
	#top header {
		padding: 70px 20px 20px 20px;
	}
	
	header .headerTopWrapper {
		height: 70px;
	}
	
	header .spMenu {
		width: 36px;
		height: 24px;
	}
	
	header .slider img {
		height: 400px;
	}
	
	header .swiper .cCopy {
		width: calc(100% - 10px - 10px);
		left: 10px;
		font-size: 1.2rem;
		line-height: 1.6;
		text-align: left;
		letter-spacing: 1px;
	}
	
	h2 span {
		font-size: 1.5rem;
	}
	
	h3 > span {
		font-size: 1.3rem;
	}
	
	#top #about {
		padding: 60px 20px;
	}
	
	#top #topics .topicsList {
		padding: 20px 10px;
	}
	
	#content article {
		padding: 70px 0 0 0;
	}
	
	.topicsList li .date {
		width: calc(20% - 25px);
		font-size: 1rem;
	}
	
	.topicsList li .date span {
		font-size: 0.8rem;
	}
	
	.topicsList li .title {
		width: 80%;
		padding: 0 24px 0 0;
	}
	
	footer {
		padding: 40px 20px 10px;
	}
	
}

/*　汎用設定　*/

/*　パソコンの時は非表示／スマートフォンで表示　*/

.spOnly {
	display: none;
}

/*　画像サイズ関連　*/

.mw200 {
	max-width: 200px;
}

.mw400 {
	max-width: 400px;
}

.mw600 {
	max-width: 600px;
}

.mw800 {
	max-width: 800px;
}


/*　画像の周り込み　*/
.floatL,
.floatR {
	width: 100%;
	margin: 0 0 40px 0;
}

.floatL:after,
.floatR:after {
	content: '';
	display: block;
	clear: both;
}

.floatL > *:first-child {
	float: left;
	margin: 0 30px 30px 0;
}

.floatR > *:first-child {
	float: right;
	margin: 0 0 30px 30px;
}

/*　画像の上下位置設定　*/

.opTop {
	object-position: top!important;
}

.opCenter {
	object-position: center!important;
}

.obBottom {
	object-position: bottom!important;
}

/*　リスト関係　*/

.disc {
	padding: 0 0 0 1.2rem;
}

.disc li {
	list-style: disc;
}

.numberList li {
	margin: 0 0 15px 0;
	position: relative;
	padding-left: calc(1.4em + 5px);
}

.numberList li:has(strong) {
	margin: 0 0 24px 0;
}

.numberList li:before {
	display: inline-block;
	position: absolute;
	top: -3px;
	left: 0;
	color: #FF793E;
	counter-increment: number 1;
	content: counter(number) " ";
	font-size: 1.4em;
	font-weight: bold;
}

.numberList li:has(strong) {
	top: -5px;
}

.numberList li strong {
	font-size: 1.2em;
}

/*　コンテンツを横並びにする（カラム設定）　*/
	
.conWrapper2clm,
.conWrapper3clm,
.conWrapper4clm {
	width: 100%;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

.conWrapper2clm .clmContent {
	width: calc(50% - 20px);
	margin: 0 40px 40px 0;
}

.conWrapper2clm .clmContent:nth-child(2n) {
	width: calc(50% - 20px);
	margin: 0 0 40px 0;
}

.conWrapper3clm .clmContent {
	width: calc(33.3% - 33px);
	margin: 0 40px 40px 0;
}

.conWrapper3clm .clmContent:nth-child(3n) {
	width: calc(33.4% - 33px);
	margin: 0 0 40px 0;
}

.conWrapper4clm .clmContent {
	width: calc(25% - 34px);
	margin: 0 40px 40px 0;
}

.conWrapper4clm .clmContent:nth-child(4n) {
	width: calc(25% - 34px);
	margin: 0 0 40px 0;
}

/* リンクのアイコン */

a[href$=".pdf"]:after,
a[href$=".doc"]:after,
a[href$=".docx"]:after,
a[href$=".xls"]:after,
a[href$=".xlsx"]:after,
a[href^="http"]:after {
	padding: 0 0 0 8px;
}

a[href$=".pdf"]:after {
	content: '\f1c1'!important;
	font-family: 'Font Awesome 5 Free';
}

a[href$=".doc"]:after,
a[href$=".docx"]:after {
	content: '\f1c2'!important;
	font-family: 'Font Awesome 5 Free';
}

a[href$=".xls"]:after,
a[href$=".xlsx"]:after {
	content: '\f1c3'!important;
	font-family: 'Font Awesome 5 Free';
}

a[href^="http"]:after {
	content: '\f08e'!important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 700;
	font-size: 0.9rem;
}

a[href^="http"]:has(img):after,
a[href$=".pdf"]:has(img):after,
a[href$=".doc"]:has(img):after,
a[href$=".docx"]:has(img):after,
a[href$=".xls"]:has(img):after,
a[href$=".xlsx"]:has(img):after,
a.noIcon[href^="http"]:after,
a.noIcon[href$=".pdf"]:after,
a.noIcon[href$=".doc"]:after,
a.noIcon[href$=".docx"]:after,
a.noIcon[href$=".xls"]:after,
a.noIcon[href$=".xlsx"]:after {
	content: none!important;
}

.moreBtn a[href^="http"]:after,
.moreBtn a[href$=".pdf"]:after,
.moreBtn a[href$=".doc"]:after,
.moreBtn a[href$=".docx"]:after,
.moreBtn a[href$=".xls"]:after,
.moreBtn a[href$=".xlsx"]:after {
	content: ''!important;
}

/*テキスト関連*/

.talL {
	text-align: left!important;
}

.talC {
	text-align: center!important;
}

.talR {
	text-align: right!important;
}

.valT {
	vertical-align: top;
}

.valM {
	vertical-align: middle;
}

.valB {
	vertical-align: bottom;
}

.txtSmaller {
	font-size: 0.6em;
}

.txtLarger {
	font-size: 1.2rem;
}

.txtRed {
	color: #C6002F !important;
}

.txtBlue {
	color: #186ba3 !important;
}

.txtBlue2 {
	color: #005c98 !important;
}

.txtNavy {
	color: #15295C !important;
}

.txtSky {
	color: #4291c9 !important;
}

.txtGray {
	color: #888 !important;
}

.txtPink {
	color: #C8446F !important;
}

.txtGreen {
	color: #006600 !important;
}

.txtBrown {
	color: #59310D!important;
}

.txtYellow {
	color: #ffe10d!important;
}

#content .txtUline {
	text-decoration:underline !important;
}

#content .txtStrike {
	text-decoration: line-through !important;
}

#content .txtItalic {
	font-style: italic !important;
}

.font10px {
	font-size: 10px !important;
}
.font11px {
	font-size: 11px !important;
}
.font12px {
	font-size: 12px !important;
}
.font16px {
	font-size: 16px !important;
}
.font18px {
	font-size: 18px !important;
}
.font20px {
	font-size: 20px !important;
}
.font22px {
	font-size: 22px !important;
}
.font28px {
	font-size: 28px !important;
}


/*余白関係*/
.mrgn10 {
	margin: 10px !important;
}
.mrgn20 {
	margin: 20px !important;
}

.mrgnB0 {
	margin-bottom:0 !important;
}
.mrgnB1 {
	margin-bottom:1px !important;
}

.mrgnB5 {
	margin-bottom:5px !important;
}

.mrgnB10 {
	margin-bottom:10px !important;
}

.mrgnB20 {
	margin-bottom:20px !important;
}

.mrgnB30 {
	margin-bottom:30px !important;
}

.mrgnB40 {
	margin-bottom:40px !important;
}

.mrgnB50 {
	margin-bottom:50px !important;
}

.mrgnB100 {
	margin-bottom:100px !important;
}

.mrgnT0 {
	margin-top:0 !important;
}

.mrgnT10 {
	margin-top:10px !important;
}

.mrgnT20 {
	margin-top:20px !important;
}

.mrgnT30 {
	margin-top:30px !important;
}

.mrgnT40 {
	margin-top:40px !important;
}

.mrgnT50 {
	margin-top:50px !important;
}

.mrgnR0 {
	margin-right: 0 !important;
}

.mrgnR10 {
	margin-right: 10px !important;
}

.mrgnR20 {
	margin-right: 20px !important;
}

.mrgnR30 {
	margin-right: 30px !important;
}

.mrgnR40 {
	margin-right: 40px !important;
}

.mrgnR50 {
	margin-right: 50px !important;
}
.mrgnL0 {
	margin-left: 0 !important;
}

.mrgnL10 {
	margin-left: 10px !important;
}

.mrgnL15 {
	margin-left: 15px !important;
}

.mrgnL20 {
	margin-left: 20px !important;
}

.mrgnL30 {
	margin-left: 30px !important;
}

.mrgnL40 {
	margin-left: 40px !important;
}

.mrgnL50 {
	margin-left: 50px !important;
}

.pdngT40 {
	padding-top:40px !important;
}

.pdngL0 {
	padding-left:0 !important;
}

.borderB0 {
	border-bottom: none !important;
}

/*背景関係*/
.bgBK {
	background: #282828 !important;
}

.bgYe {
	background-color: #FFFF00 !important;
}

.bgWh {
	background-color: #FFF !important;
}

@media screen and (max-width: 900px) {
	.conWrapper4clm .clmContent,
	.conWrapper4clm .clmContent:nth-child(4n) {
		width: calc(50% - 20px);
	}
	
	.conWrapper4clm .clmContent:nth-child(2n) {
		margin: 0 0 40px 0;
	}
	
}

@media screen and (max-width: 768px) {
	
	/*　パソコンの時は非表示／スマートフォンで表示　*/
	
	.pcOnly {
		display: none;
	}

	.spOnly {
		display: block;
	}
	
	.floatL > *:first-child,
	.floatR > *:first-child {
		float: none;
		margin: 0 0 30px 0;
	}
	
	#content .numberList li:before {
		top: -5px;
	}
	
	.conWrapper2clm .clmContent,
	.conWrapper2clm .clmContent:nth-child(2n),
	.conWrapper3clm .clmContent,
	.conWrapper3clm .clmContent:nth-child(3n),
	.conWrapper4clm .clmContent,
	.conWrapper4clm .clmContent:nth-child(2n),
	.conWrapper4clm .clmContent:nth-child(4n) {
		width: 100%;
		margin: 0 0 20px 0;
	}
	
	.conWrapper2clm .clmContent:last-child,
	.conWrapper3clm .clmContent:last-child,
	.conWrapper4clm .clmContent:last-child {
		margin: 0 0 40px 0;
	}
	
	.clmContent figure {
		margin: 0;
	}
	
	
}