@charset "utf-8";

/* *****************
	スクロールすると現れる
***************** */
/* 初期状態（非表示＆少し下にオフセット） */
.scroll_up {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .8s ease-in-out;
  will-change: opacity;
  pointer-events: none;
}

.scroll_up.on {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .scroll_up {
    transition: none;
  }
}

/* *****************
	にゅっと出るタイトル
***************** */
.inner h1,
.innerPost h1 {
	text-align: center;
	font-size: 2em;
	font-family: "brother-xl", sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: .02em;
	margin-bottom: 50px;
	animation: fadeIn 1.6s ease 0s 1 normal;
}
.inner h1 span,
.innerPost h1 span {
	display: inline-block;
	margin-left: 2em;
	font-size: .6em;
	font-weight: normal;
	animation: fadeIn 1.6s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
     opacity: 0;
     transform: translateY(10px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}


/* *****************
	全体CSS
***************** */
/*  MEMO  */
.chevron-right{	
--size: .8em; /* 全体スケール */	
--stroke: .1em; /* 線の太さ */	
position: relative;	
display: inline-block;	
width: calc(var(--size) * 2.2);	
height: var(--stroke);	
background: currentColor;	
margin: auto .4em .2em;	
}	
/* 矢尻（›） */	
.chevron-right::after{	
content:"";	
position:absolute;	
right:0;	
top:50%;	
width: .46em;	
height:.46em;	
transform: translateY(-50%) rotate(45deg);	
border-top: var(--stroke) solid currentColor;	
border-right: var(--stroke) solid currentColor;	
}	
/* FONT */
.bros {
	font-family: "brother-xl", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.brosB {
	font-family: "brother-xl", sans-serif;
	font-weight: 700;
	font-style: normal;
}
/* ********* */

* {
	margin: 0;
	padding: 0;
  font-family:
    "Zen Kaku Gothic New",
    "Yu Gothic",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    system-ui,
    sans-serif;
  font-weight: 500;
  letter-spacing: .02em;
	text-decoration: none;
	box-sizing: border-box;
	font-size: 100%;
}
*::before, *::after {
	box-sizing: border-box;
}
body {
	background: #fff;
}
.top,
.aboutus,
.news,
.access {
	width: 100%;
	margin: 0 auto;
}
.top.scroll_up.on,
.aboutus.scroll_up.on {
	background: #fff;
}
.news.scroll_up.on,
.access.scroll_up.on {
	background: #f4f4f0;
}

.lineArea.topScroll > svg {
	margin-top: 220px;
}
@media (max-width: 768px) {
	.lineArea.topScroll > svg {
		margin-top: 120px;
	}
}
.scroll_up .gridder {
	display: grid;
	grid-template-rows: 1fr auto; /* 上:可変, 下:コンテンツ */
	width: 99svw;
	margin: 0 auto;
}
.news.scroll_up.on .gridder::before,
.access.scroll_up.on .gridder::before {
	display: block;
	width: 100%;
	margin: 0 auto;
	height: 1.75rem;
	position: absolute;
	top: 0;
	background: #fff;
	content: " ";
	z-index: -1;
}
@media (max-width: 768px) {
	.news.scroll_up.on .gridder::before,
	.access.scroll_up.on .gridder::before {
		height: 25px;
	}
}
.news.scroll_up.on .gridder::after {
	display: block;
	width: 100%;
	margin: 0 auto;
	height: 100px;
	position: absolute;
	bottom: 0px;
	background: #fff;
	content: " ";
	z-index: -1;
}

.scroll_up .gridder .innerTop,
.scroll_up .gridder .lineArea {
	grid-area: 1 / 1;
	width: 99vw;
	height: auto;
	z-index: 0;
  overflow-y: hidden;
  overflow-x: clip;
}
top .scroll_up .gridder .lineArea {
	align-self: end; /* 下ぞろえ */
}
.lineArea svg{
	width: 100%;
	height: auto;
	display: block;
}
.scroll_up .gridder .inner {
	grid-area: 1 / 1;
	width: 100%;
	max-width: 960px;
	height: auto;
	margin: 0 auto;
	overflow: visible;
	z-index: 1;
}

.inner {
	width: 100%;
	max-width: 960px;
}
	
.inner h2 {
	font-size: 1em;
	padding: 20px 0;
}

.inner .nextBtn {
	display: block;
	text-align: center;
	margin: 50px auto;
}
.inner .nextBtn a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .4em;
	margin: 30px auto;
	width: 220px;
	height: 40px;
	border-radius: 9999px;
	background: #4a3f35;
	font-family: "brother-xl", sans-serif;
/*	font-weight: 700; */
	font-size: 1.125rem;
	line-height: 1;
	color: #fff;
}
.inner .nextBtn a::after {
    content: "\2192";
    color: #fff;
    display: inline-block;
    font-size: 1.667rem;
	line-height: 1;
}



@media (max-width: 768px) {
	.inner .nextBtn a {
/*		width: 375px; */
/*		height: 75px; */
	}
}

.inner .nextBtn a:hover,
.inner .nextBtn a:active,
.inner .nextBtn a:visited {
	color: #fff;
	opacity: 0.6;
}

.aboutus .inner p.about {
	text-align: center;
	font-size: 1.333rem;
	line-height: 2em;
}

.map {
	margin-top: 20px;
	padding: 20px 0;
}
.map dl {
	display: flex;
	margin: 0 auto;
}
.map dl dt {
	width: 240px;
	padding: 20px 10px 0 0;
	border-right: 1px #ccc solid;
	font-size: 1.333rem;

}
.map dl dd {
	padding: 10px;
	font-size: 1.250rem;
	line-height: 1.5em;
}
.google-map {
	border: 1px #231815 solid;
  border-radius: 20px;
  overflow: hidden;
  width: 90vw;
  max-width: 960px;
  margin: 0 auto;
}
/* レスポンシブ比率 */
.google-map iframe{
  display: block;
  width: 100%;
  aspect-ratio: 96 / 37;    /* 高さは比率で自動 */
  border: 0;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}
/* *** ヘッダー *** */

/* =====================
   TOP：浮いてるヘッダー
   ================== */
#header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 3;
  background: transparent;   /* transparent / 半透明 / blur など自由 */
  padding: 0;
}

/* ハンバーガーメニューのパネルが重なるように（必要なら） */
.menu-items{
  position: relative;
  z-index: 3;
}

/* --- 共通ナビ（PC 基本） --- */
nav ul{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  width: 100%;
  padding-right: 10px;
}

#header nav ul li{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 12px;
}


#header ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  height: 44px;
  font-size: 1rem;
  background-color: rgba(255,255,255,0.8);
  border: none;
}

#header ul li a.left{
  border-radius: 50px 0 0 50px;
  padding-left: 20px;
}
#header ul li a.right{
  border-radius: 0 50px 50px 0;
  padding-right: 20px;
}
#header ul li a.circle{
  width: 44px;
  margin: 0 0 0 8px;
  border-radius: 50px;
}

#header .headerMenu{
  margin-right: 5px;
  border-radius: 50px;
  background-color: rgba(255,255,255,0.8);
}

/* 画像アイコン */
nav ul li a img{
  display: flex;
  align-items: center;
  width: 1.333rem;
  height: auto;
  margin: 0 10px;
}
nav ul li a:hover img,
nav ul li a:active img{
  opacity: .6;
}

/* テキストリンク */
nav ul li a.txt{
  display: block;
  padding: 5px 14px;
  color: #3F3A34;
}
nav ul li a.txt:hover,
nav ul li a.txt:active{
  opacity: .6;
}

/* --- 個別 --- */

#header nav ul li.pcHide{ display: none; }

/* スマホ用の表示切替 */
@media (max-width: 768px){
  #header nav ul li.pcHide{ display: unset; }
  #header nav ul li.spHide{ display: none; }

  #header nav ul li{
    margin-top: 0;
    justify-content: normal;
  }
  #header ul li a{
    justify-content: normal;
    font-size: 1.3rem;
    background-color: unset;
  }
  #header ul li a.circle{ display: none; }

  #header .navBar .menu-items li{ width: 220px; }
  #header .navBar .menu-items .spIcons{ min-height: 118px; }

  .headerBtn{ padding-bottom: 20px; }
}

/* クリック透過 */
.navContainer{ pointer-events: none; }
.navContainer *{ pointer-events: auto; }

/* ハンバーガー用 */
.checkbox{ display: none; }

/* スマホ上部アイコン一列の最大幅 */
nav .menu-items .spIcons{ max-width: 310px; }


/* *** フッター *** */
#footArea {
	background: #3F3A34;
	width: 100%;
	color: #fff;
	font-size: 0.93em;
}
#footArea .footer {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 49px 20px 0 20px;
	display: flex;
	align-items: flex-start;
	justify-content:space-between; 
}
#footArea .footLink{ min-width:221px; }
#footArea .footBtn{  min-width:344px; }
#footArea .footer .footLogo {
/*	width: 287px; */
	display: flex;
}
#footArea .footer .footLogo a:hover img{
	opacity: 0.6;
	position: relative;
	top: 1px;
}
#footArea .footer .footLogo img {
	width: 93px;
	margin: 17px 20px 0 0; /* right 減らしてある */
}
#footArea .footer img.iconInsta {
	margin: 39px 18px 0 0;
	width: 21px;
}
#footArea .footer img.iconYoutube {
	width: 26px;
	margin: 41px 20px 0 0; /* right 減らしてある */
}
#footArea .footer .footLink {
	width: 221px;
	min-width: 140px;
	margin-left: auto;
	margin-right: 10px;
}
#footArea .footer .footLink ol {
	list-style: none;
}
#footArea .footer .footLink ol a {
	display: inline-block;
	color: #fff;
	padding: 2px;
	font-weight: 200;
}
#footArea .footer .footLink ol a:hover{
	opacity: 0.6;
	position: relative;
	top: 1px;
}
#footArea .footer .footBtn {
/* 	width: 452px; */
	display: flex;
	flex-wrap: nowrap;
}
#footArea .footer .footBtn a {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 8px;
	border-radius: 12px;
	background: #fff;
	color: #3F3A34;
	font-size: 0.8125rem;
}
#footArea .footer .footBtn a.corp {
	width: 260px;
	height: 94px;
}
#footArea .footer .footBtn a.corp:hover{
	opacity: 0.6;
	position: relative;
	top: 1px;
}
#footArea .footer .footBtn a.corp::after {
	content: "⟶";
	color: #3F3A34;
	display: block;
	width: 20px;
}
#footArea .footer .footBtn div {
	width: 170px;
	margin-left: 20px;
}

#footArea .footer .footBtn a.recN,
#footArea .footer .footBtn a.recC {
	width: 160px;
	height: 43px;
	margin-bottom: 8px;
}

#footArea .footer .footBtn a.recN:hover,
#footArea .footer .footBtn a.recC:hover {
	position: relative;
	top: 1px;
	opacity: 0.6;
}


#footArea .footer .footBtn a.recN::after,
#footArea .footer .footBtn a.recC::after {
	content: "⟶";
	color: #3F3A34;
	display: block;
	width: 20px;
}

#footArea .copy {
	text-align: center;
	padding: 40px 0;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-size: 0.625em;
}


/* *** 事例紹介 詳細ページ *** */
.post {
	width: 100%;
/*	max-width: 1200px; */
	min-height: 1vh;
	margin: 0 auto;
}

.innerPost {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding-bottom: 50px;
}

/* *** レスポンシブ MENU *** */
.pcHide{
	display: none;
}
@media screen and (max-width: 768px){
	.pcHide{
		display: block;
	}
	.spHide{
		display: none;
	}

	.mb70sp{
		margin-bottom: 70px;
	}
	header{
		padding: 0;
		overflow: visible;
	}
	.navBar {
		width: 100%;
		height: 100px;
	}

	.navContainer {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 62px;
	}

	.navBar .menu-items {
		display: flex;
	}

	.navBar .navContainer li {
		list-style: none;
	}

  .navBar .navContainer a {
  	position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    padding: 0.7rem;
  }
  .navBar .navContainer a.txt::before {
  	content: "⟶";
    color: #fff;
    display: block;
    position: absolute;
    top: 45%;
    left: -40px;
    width: auto;
    font-size: 2rem;
    transform: translateY(-50%);
  }
	.navBar .navContainer a:hover{
/*		font-weight: bolder; */
	}

	.navContainer {
		display: block;
		position: relative;
		height: 100vh;
		overflow-y: auto;
		overflow-x: hidden;
	}

	.navContainer .checkbox {
		position: absolute;
		display: block;
		height: 70px;
		width: 70px;
		top: 17px;
		right: 10px;
		z-index: 5;
		opacity: 0;
		cursor: pointer;
	}

	.navContainer .hamburgerLines {
		height: 70px;
		width: 70px;
		padding: 16px 16px 16px 18px;
		position: absolute;
		top: 17px;
		right: 16px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		background-color: #3f3a34;
		z-index: 3;
	}

	.navContainer .hamburgerLines .line {
		display: block;
		height: 1px;
		width: 100%;
		background: #fff;
	}

	.navContainer .hamburgerLines .line1 {
		transform-origin: 0% 0%;
		transition: transform 0.4s ease-in-out;
	}

	.navContainer .hamburgerLines .line2 {
		transition: transform 0.2s ease-in-out;
	}

	.navContainer .hamburgerLines .line3 {
		transform-origin: 0% 100%;
		transition: transform 0.4s ease-in-out;
	}
	nav .menu-items li img.spLogo {
    width: 100px;
    height: auto;
	}
	nav .menu-items .spIcons{
    display: flex;
    align-items: center;
    justify-content: center;
	}
	.navBar .menu-items .spIcons li{
		height: auto;
	}
	.navBar .menu-items {
    position: relative;
    z-index: 2;
    background: #3e4363;
		padding-top: 120px;
		height: 100vh;
		width: 100%;
		transform: translate(150%);
		display: flex;
		flex-direction: column;
		padding-right: 0;
		transition: transform 0.5s ease-in-out;
		text-align: left;
	}
	nav ul {
		justify-content: flex-start;
	}
		nav .menu-items li img {
	    width: 60px;
	    height: 60px;
	    object-fit: contain;
	}

	.navBar .menu-items li {
		font-size: 1.5rem;
		font-weight: 500;
		height: 50px;
		width: 100%;
	}
	.navBar .menu-items li{
		width: 190px;
    margin-left: 70px;
	}
	.navBar .menu-items .spIcons li{
		width: 100%;
    margin-left: 10px;
	}
	.headerBtn {
    width: calc(100% - 40px);
    flex-flow: column;
    display: flex;
  }
  .headerBtn a.corp {
  	display: block;
    position: relative;
    margin-top: 40px;
    width: auto;
    height: auto;
    padding: 20px 60px 20px 20px;
    font-size: 0.9rem;
		margin-right: 0;
		border-radius: 10px;
		line-height: 2em;
		background: #fff;
    color: #3f3a34;
	}
  .headerBtn a.corp::after {
  	content: "⟶";
    color: #3F3A34;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    left: inherit;
    width: auto;
    font-size: 2rem;
	transform-origin: 50% 50%;
    transform: translateY(-50%)
	}
	.headerBtn > div{
		display: flex;
    flex-flow: column;
		margin-bottom: 20px;
	}
	.headerBtn a.recC, 
	.headerBtn a.recN {
    display: flex;
    position: relative;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 20px auto 0 auto;
    line-height: inherit;
    font-size: 0.9rem;
    vertical-align: middle;
		border-radius: 10px;
		padding: 20px;
		color: #3F3A34;
		background: #fff;
  }
  .headerBtn a.recN::after, 
  .headerBtn a.recC::after {
  	content: "⟶";
    color: #3F3A34;
    display: block;
    position: absolute;
    top: 5%;
    right: 20px;
    left: inherit;
    width: auto;
    font-size: 2rem;
  }

	body:has(.navContainer input[type="checkbox"]:checked ~ .menu-items){
		position: fixed;
	}

	header:not(.headerIndex) nav ul li:nth-child(4) a.txt {
    margin-right: 0;
	}

	header:has(.navContainer input[type="checkbox"]:checked ~ .menu-items) {
		overflow: inherit;
	}

	.navContainer input[type="checkbox"]:checked ~ .hamburgerLines{
		background-color: #fff;
		transition : all 0.5s;
		z-index: 4;
	}

	.navContainer input[type="checkbox"]:checked ~ .menu-items {
		transform: translateX(0);
	}

	.navContainer input[type="checkbox"]:checked ~ .hamburgerLines .line1 {
		transform: rotate(30deg) translate(6px, 6px);
		background-color: #3e4363;
	}

	.navContainer input[type="checkbox"]:checked ~ .hamburgerLines .line2 {
		transform: scaleY(0);
	}

	.navContainer input[type="checkbox"]:checked ~ .hamburgerLines .line3 {
		transform: rotate(-30deg) translate(7px, -8px);
		background-color: #3e4363;
	}

	#footArea .footLink{ min-width:100px; }
	#footArea .footBtn{  min-width:100px; }
	#footArea .footer{
		flex-flow: column;
		padding: 49px 20px 0;
		width: 100%;
	}

	#footArea .footer .footLogo {
		width: 100%;
		margin-top: 30px;
	}

	#footArea .footer .footLogo > img{
		max-width: min(173px,50%);
		margin: 17px 10px 0 0;
	}

	#footArea .footer img.iconInsta {
		margin-left: 10px; /* 47px -20px */
		margin-right: 0;
		width: 60px;
    height: 60px;
	}
	#footArea .footer img.iconYoutube {
		margin-left: 10px; /* 49px -20px */
		margin-right: 0;
		width: 60px;
    height: 60px;
	}

	#footArea .footer .footLink {
		width: 100%;
		text-align: left;
		margin-top: 80px;
	}

	.footLink ol li {
		margin-top: 6px;
	}

	#footArea .footer .footBtn{
		width: 100%;
		flex-flow: column;
	}

	#footArea .footer .footBtn  div {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width: 100%;
		margin: 0;
	}

  #footArea .footer .footBtn a.corp {
  	position: relative;
    margin-top: 40px;
    width: auto;
    height: 84px; /* 204px - 120 */
    padding: 20px;
  	line-height: 2rem;
	}

	#footArea .footer .footBtn a.corp::after{
		width: auto;
	}

	#footArea .footer .footBtn a.recN, 
	#footArea .footer .footBtn a.recC {
		width: 100%;
		height: 33px; /* 93px - 60 */
		margin: 20px 0 0;
		padding: 20px;
	}

	#footArea .footer .footBtn a {
		margin-right: 0;
		border-radius: 10px;
	}
	#footArea .footer .footBtn a.recN::after, #footArea .footer .footBtn a.recC::after {
		width: auto;
	}
	#footArea .copy {
		padding: 65px 0 75px;
		font-size: .8rem;
	}

}
@media screen and (max-width: 360px) {
	.headerBtn a.corp br{
		display: none;
	}
}

/* 以下ウインドウ幅を狭める際のスマホ版メニューの挙動制御
 PC（768px超） ---------------------------------------- */
@media (min-width: 769px){
  .navBar .menu-items{
    position: static;
    transform: none;
    transition: none;
    visibility: visible;
  }
}
/* --- スマホ（～768px）：初期は非表示で右外、開く時だけアニメ --- */
@media (max-width: 768px){
  .navBar .menu-items{
    position: fixed;              /* 画面全体を覆う */
    inset: 0;
    z-index: 2;
    background: #3e4363;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow-y: scroll;

    /* 初期（閉じ） */
    transform: translate3d(100%,0,0);
    visibility: hidden;
    transition: none;
  }
  .navContainer input[type="checkbox"]:checked ~ .menu-items{
    transform: translate3d(0,0,0);
    visibility: visible;
    transition: transform .5s ease-in-out;
  }
}
/* --- アニメ配慮（開く時もアニメ無し） ----------------------- */
@media (max-width: 768px) and (prefers-reduced-motion: reduce){
  .navContainer input[type="checkbox"]:checked ~ .menu-items{
    transition: none;
  }
}




