@charset "UTF-8";
/* CSS Document */
/*-------------------------------*/

/* 	PC */

/*------------------------------*/
.inner{
	max-width: 1000px;
	margin: 0 auto;
}
.flex{
	display: flex;
}
.center{
	text-align: center;
}
.right{
	float: right;
}
.left{
	float: left;
}
.clearfix::after{
	content: "";
	display: block;
	clear: both;
}
.bg01,
.headerBg{
	background-color: #FAF8EB;
}
.bg02{
	background-color: #F1E9DC;
}
img{
	width: 100%;
	height: auto;
}
.logo img{
	width: 200px;
	/* padding: .4em 0 0 .4em; */
}
p{
	text-align: justify;
}
ul li {
	list-style-type: none;
	white-space: nowrap;
}




/*----------------facebook icon---------------------*/
.fa-facebook{
	color: #444444;
}
/*----------------header---------------------*/
.sns{
	display: flex;
	justify-content: center;
}
.sns li{
	margin: 0 1em;
}
#pcNav{
	justify-content: space-between;
	align-items: center;
	line-height: 58px;
}
#pcNav ul li{
	margin: 0 2.2rem 0 0;
}
.hoverLine{
	position: relative;
	display: inline-block;
}
.hoverLine:hover:before{
	width: 100%;
}
#navToggle {
	position: fixed;
	top: 20px;
	right: 20px;
	height: 32px;
	cursor: pointer;
	display: none;
}
#navToggle div {
	width: 36px;
	position: relative;
}
#navToggle div span {
	width: 90%;
	height: 1.4px;
	left: 0;
	display: block;
	background: #545454;
	position: absolute;
	transition: transform .6s ease-in-out, top .5s ease;
}
#navToggle div span:nth-child(1) {
	top: 0;
}
#navToggle div span:nth-child(2) {
	top: 12px;
}
#navToggle div span:nth-child(3) {
	top: 24px;
}

#navToggle div span:hover span:nth-child(1) {
	top: 4px;
}
#navToggle div span:hover span:nth-child(3) {
	top: 23px;
}

.open #navToggle span {
	background: #545454;
}
.open #navToggle span:nth-child(1) {
	top: 15px;
	transform: rotate(-45deg);
}
.open #navToggle span:nth-child(2) {
	top: 15px;
	width: 0;
	left: 50%;
}
.open #navToggle span:nth-child(3) {
	top: 15px;
	transform: rotate(45deg);
}

#navToggle {
	z-index: 1000;
}
#gNav {
	background: #faf8eb;
	padding-top: 3em;
	padding-bottom: 3em;
	overflow-y: auto;

	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	z-index: 990;

	text-align: center;

	display: flex;
	visibility: hidden;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	font-size: 18px;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;
}
#gNav .nav a {
	display: block;
	color: #545454;
	transition: color .6s ease;
	border-bottom: 1px solid #ff5c44;
	padding-bottom: 0.3rem;
}
#gNav ul li {
	opacity: 0;
	transform: translateX(200px);
	transition:  transform .6s ease, opacity .2s ease;
	padding: 7px 0;
}
#gNav ul li:nth-child(2) {
	transition-delay: .15s;
}
#gNav ul li:nth-child(3) {
	transition-delay: .3s;
}
#gNav ul li:nth-child(4) {
	transition-delay: .45s;
}
#gNav ul li:nth-child(5) {
	transition-delay: .6s;
}
#gNav.small{
	font-size: 14px;
}

/*----------------open---------------------*/
.open {
	overflow: hidden;
}
.open #gNav {
	visibility: visible;
	opacity: 1;
}
.open #gNav li {
	opacity: 1;
	transform: translateX(0);
	transition:  transform 1s ease, opacity .9s ease;
}



/*-------------------------------*/

/* ケーアイシステム 修正 Ishino */
/* 2025/06/19 */

/*------------------------------*/
:root{
	--header-height: 84px;
	--header-height-is-change: 60px;

	@media(max-width:768px){
		--header-height: 60px;
	}
}

/***** ロゴ *****/
.logo{
	width: 200px;
}
.logo > a{
	width: 100%;
}
.logo img{
	width: 100%;
	padding: 0;
}
/* 全体コンテナ */
header{
	background-color: rgba(255,255,255,0.7);
	box-shadow: 0px 3px 3px -3px rgba(0,0,0,0.3);
	height: var(--header-height);

	align-items: center;
	justify-content: space-between;
	position: fixed;
	z-index: 960;
	width: 100%;
}
#pcNav{
	width: 100%;
	height: 100%;

	line-height: 1;
}
/***** メニュー *****/
/* メニューコンテナ */
.fixed-nav__wrapper{
	width: 650px;
	max-width: 700px;
	height: 100%;

	display: flex;
	align-items: center;
}
/* リスト */
.fixed-nav__wrapper ul {
	width: 100%;
	height: 100%;

	display: flex;
	flex-wrap: wrap;

	align-content: center;
	align-items: center;

	column-gap: 1em;
	row-gap: 1em;

	box-sizing: border-box;
}
/* アイテム */
#pcNav ul li{
	margin: 0;
}
.fixed-nav__wrapper ul li{
	width: calc((100% - 4em) / 5);
	height: 1em;

	display: flex;
	align-items: center;

	box-sizing: border-box;
}
.fixed-nav__wrapper ul li > a{
	display: block;
	width: 100%;
	height: 100%;

	font-size: calc(14rem/16);
    font-family: "Noto Serif JP", serif;
	color: #545454;
}
/* Facebookメニュー */
.fixed-nav__wrapper ul li:last-of-type{
	flex-grow: 0;
}
.fixed-nav__wrapper ul li:last-of-type > a{
	width: auto;
	padding-bottom: 0.2em;
	font-size: 15px;

	display: flex;
	align-items: center;
	gap: 0.5em;

	transition: opacity 0.2s ease-in-out;
}
/* Facebookアイコン */
.fixed-nav__wrapper ul li:last-of-type > a > .fa-facebook{
	display: inline-block;
	font-size: 20px;
	padding-bottom: 0.1em;
}
.fixed-nav__wrapper ul li:last-of-type > a:hover{
	opacity: 0.6;
}
/***** 線 *****/
.hoverLine{
	position: relative;
	display: block;
	padding-bottom: 0;
}
.hoverLine::before{
	position:absolute;
	bottom: -0.2em;
	left: -2%;
	content: "";
	display: inline-block;
	width: 0;
	height: 1px;
	background: #eb6438;
	transition: .6s;
}
/* コンテンツ */
.topBlank{
	padding-top: calc(var(--header-height) + 20px);
}
/*------------------------------*/
/* ナビアニメーション */
/*-----------------------------*/
#header.is-change {
	height: var(--header-height-is-change);

	animation-duration: 1s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	z-index: 10;
}
#header.is-change[data-is-change='true'] {
	animation-name: header-shrink;
}
#header.is-change[data-is-change='false'] {
	animation-name: header-expand;
}
@keyframes header-shrink {
	from {
		height: var(--header-height);
	}
	to {
		height: var(--header-height-is-change);
	}
}
@keyframes header-expand {
	from {
		height: var(--header-height-is-change);
	}
	to {
		height: var(--header-height);
	}
}



/*-------------------------------*/

/* Tablet 768px */

/*------------------------------*/
@media(max-width:768px){
	header{
		height: var(--header-height);
	}
	/* 線 */
	hr{
		margin: 1em 0;
		opacity: 0;
	}
	/* pc非表示 */
	#pcNav div ul{
		display: none;
	}
	#gNav ul.sns{
		margin-top: 0;
	}
	#navToggle{
		display: block;
	}
	/* アイテム */
	#gNav ul li.small{
		padding: 0;
	}
	#gNav ul li.small + li.small{
		margin-top: 0.5em;
	}
	#gNav ul.nav li > a{
		font-size: calc(18rem/16);
    	font-family: "Noto Serif JP", serif;
		color: #545454;
	}
	#gNav ul li.small > a{
		font-size: calc(16rem/16);
		font-family: "Noto Serif JP", serif;
		color: #545454;
	}
	/* ロゴ */
	.logo img{
		width: 180px;
		margin-left: 0.6em;
	}
	.title{
		padding-bottom: 5rem;
	}
	.tateText{
		width:35%;
	}
	.col-sm-1{grid-column: 1 span;}
	.col-sm-2{grid-column: 2 span;}
	.col-sm-3{grid-column: 3 span;}
	.col-sm-4{grid-column: 4 span;}
	.col-sm-5{grid-column: 5 span;}
	.col-sm-6{grid-column: 6 span;}
	.col-sm-7{grid-column: 7 span;}
	.col-sm-8{grid-column: 8 span;}
	.col-sm-9{grid-column: 9 span;}
	.col-sm-10{grid-column: 10 span;}
	.col-sm-11{grid-column: 11 span;}
	.col-sm-12{grid-column: 12 span;}
	.redLine{
		margin-left: 8rem;
		margin-right: 2.4rem;
	}
	.banner img{
		width: 100px;
	}
	.bnr ul li{
		padding: 1.8rem 0;
	}
	.sdgsBnr img{
		width: 280px;
		height: 80px;
	}
	.m10{
		padding: 6rem 0;
	}
	#fNav{
		display: none;
	}
	a[href^="tel:"] {
			pointer-events: auto;
	}
	/* follow us */
	#gNav h5{
		font-size: calc(12rem/16);
		font-family: "Noto Serif JP", serif;
		color: #545454;
	}
}



/*-------------------------------*/

/* Smartphone 480px */

/*------------------------------*/
@media(max-width:480px){
	header{
		height: var(--header-height);
	}
	.tateText{
		width:65vw;
	}
}



/* iPhone SE 以下 */
@media (max-width: 375px) {
  #gNav{
    justify-content: flex-start;
    overflow-y: auto;
    
    padding-top: 2em;
    padding-bottom: 3em;
  }

  #gNav ul.nav{
    margin-top: 1.5em;
  }
}