html,body{
  font-family: 'Quicksand', 'Zen Kaku Gothic New', 'Hiragino Sans' , 'ヒラギノ角ゴ ProN', Hiragino Kaku Gothic ProN, 'メイリオ', Meiryo, '游ゴシック Medium', YuGothic, YuGothicM, sans-serif;
  font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #4D4D4D;
	line-height: 1.7;
}
a{
  color: #4D4D4D;
  transition: opacity 0.3s, color 0.3s;
}
a:hover{ opacity: 0.7; }
img,picture{
	max-width: 100%;
	display: block;
}
.overflow{ overflow: hidden; }




.anchor{
  padding-top: 10rem;
  margin-top: -10rem;
}


.nav{
  position: relative;
}
.nav a.logo{
  display: block;
  width: 4.8rem;
  position: absolute;
  left: 3.2rem;
  top: 3.2rem;
  z-index: 2;
}
.nav ul.nav-li{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 20rem);
  min-width: 100rem;
  height: 10rem;

  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.nav ul.nav-li li a{
  font-size: 1.6rem;
  font-weight: 700;
}
.nav ul.nav-li li + li{
  margin-left: 4.6rem;
}


.content{
  position: relative;
  z-index: 1;
}


.h-1{
  font-size: 1.8rem;
  margin-bottom: 4rem;
}


.fv{
  padding: 10rem 0;
  position: relative;
}
.fv::before,
.fv::after{
  content: "";
  display: block;
  position: absolute;
}
.fv::before{
  width: 21.2rem;
  height: 21.2rem;
  background: linear-gradient(to right,#8AD3DB,#A1DDA9);
  left: 0;
  top: 0;
  z-index: 0;
}
.fv::after{
  width: 45.2rem;
  height: 45.2rem;
  background: #F6F8F8;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.fv .box{
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 20rem);
  min-width: 100rem;
  height: 72.5rem;
  margin: 0 auto;
  background: url(../images/fv-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.fv .box h1 img{
  width: 54.5rem;
}


.concept{
  padding: 3.5rem 0 8rem;
  position: relative;
}
.concept::before{
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 20.4rem);
  background: url(../images/concept-bg.jpg) center center no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.concept .content{
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.concept img.img{
  width: 34.4rem;
}
.concept .txt{
  width: 40rem;
  margin-left: 12rem;
}
.concept h3{
  line-height: 1.7;
  margin-top: 1.7em;
}


.business{
  padding: 0 0 12rem;
}
.business ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}
.business ul li{
  display: block;
}
.business ul li h3{
  font-size: 1.8rem;
  margin: 2.8rem 0;
}


.company{
  padding: 0 0 12rem;
}
.company .content{
  display: flex;
  justify-content: space-between;
}
.company .txt{
  width: 46rem;
}
.company img.img{
  width: 42rem;
}
.company .txt img.logo{
  width: 22.8rem;
  margin-bottom: 4rem;
}
.company .txt dl{
  display: grid;
  grid-template-columns: 13.6rem 1fr;
  border-top: 1px solid #DBDBDB;
}
.company .txt dl dt,
.company .txt dl dd{
  padding: 2rem 0;
  border-bottom: 1px solid #DBDBDB;
}


.news{
  background: #F7F8FA;
  padding: 8rem 0;
}
.news h2.h-1{
  margin-bottom: 2rem;
}
ul.news-li{
  border-top: 1px solid #DBDBDB;
}
ul.news-li li{
  display: grid;
  grid-template-columns: 10.4rem 1fr;
  padding: 2rem 0;
  border-bottom: 1px solid #DBDBDB;
}
ul.news-li li .day{
  font-weight: 700;
}
ul.news-li li h3{
  font-weight: 400;
}


footer{
  background: #333333;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 4rem 0;
}
footer a{ color: #fff; }
footer img.logo{
  width: 14rem;
  margin: 0 auto 2rem;
}
footer .copy{
  opacity: 0.5;
}




/* ロード画面 */
#loading {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading img {
  width: 20rem;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
}


/* ページトップ */
#pagetop {
  display: none;
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 997;
}
#pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to right,#8AD3DB,#A1DDA9);
}
#pagetop a img {
  width: 1.6rem;
  margin-top: -0.2rem;
}




/*　PC
------------------------------------------------------------------------------------------------*/
@media (min-width: 769px){
.sp{ display: none !important; }

html{ font-size: 10px; }
body{ font-size: 1.4rem; }

.content{
  width: 100%;
	max-width: 110rem;
  padding: 0 5rem;
	margin: 0 auto;
}




/*　タブレット
------------------------------------------------------------------------------------------------*/
@media (max-width: 1100px){

html{ font-size: 0.9vw; }




}/*　タブレットここまで */
}/*　PCここまで */




/*　スマホ
------------------------------------------------------------------------------------------------*/
@media (max-width: 768px){
.pc{ display: none !important; }

html{ font-size: 2.56vw; }
body{ font-size: 1.4rem; }

.content{
	width: 100%;
	padding: 0 4.8rem;
}


.anchor{
  padding-top: 8.2rem;
  margin-top: -8.2rem;
}


.nav a.logo{
  width: 4.2rem;
  left: 2rem;
  top: 2rem;
}


#nav-open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7.2rem;
  height: 8.2rem;
  cursor: pointer;
  margin-left: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
}
#nav-open span,#nav-open span:before,#nav-open span:after {
  content: "";
  display: block;
  background: #5F686E;
  height: 2px;
  width: 3.2rem;
  position: absolute;
  transition: .3s ease-in-out;
}
#nav-open span{
  background: transparent;
}
#nav-open span:before {
  bottom: 0.5rem;
  transform: rotate(0);
  transition: bottom .15s .15s, transform .15s;
}
#nav-open span:after {
  bottom: -0.5rem;
  transform: rotate(0);
  transition: bottom .15s .15s, transform .15s;
}

#nav-content {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5rem) brightness(1.2);
  -webkit-backdrop-filter: blur(5rem) brightness(1.2);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 998;

  overflow-y: scroll;
  overscroll-behavior: contain;
  -ms-overflow-style: none; /* バー非表示 IE・Edge用 */
  scrollbar-width: none; /* バー非表示 Firefox用 */

  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#nav-content::before{
  content: "";
  display: block;
  width: 1px;
  height: calc(100% + 1px);
  position: absolute;
  left: 0;
  top: 0;
}
/* バー非表示 Chrome・Safari用 */
#nav-content::-webkit-scrollbar{
  display: none;
}
#nav-content.active {
  opacity: 1;
  pointer-events: inherit;
}
#nav-open.active span {
  background: transparent;
}
#nav-open.active span:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom .15s, transform .15s .15s;
}
#nav-open.active span:after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom .15s, transform .15s .15s;
}


#nav-content .content{
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 100%;
  text-align: center;
  padding: 8.2rem 0 4rem;
}
#nav-content ul.sp-nav-li{
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-grow: 1;
}
#nav-content ul.sp-nav-li li{
  font-size: 2rem;
  font-weight: 700;
}
#nav-content ul.sp-nav-li li + li{
  margin-top: 1em;
}
#nav-content img.hum-logo{
  width: 14rem;
  margin: 8.2rem auto 2rem;
}
#nav-content .copy{
  font-size: 1.2rem;
}


.h-1{
  font-size: 1.8rem;
  margin-bottom: 4rem;
}


.fv{
  padding: 8.2rem 0 2rem;
}
.fv::before{
  width: 17.2rem;
  height: 17.2rem;
}
.fv::after{
  width: 17.2rem;
  height: 17.2rem;
}
.fv .box{
  width: calc(100% - 4rem);
  min-width: unset;
  height: 54.3rem;
  background: url(../images/fv-bg_sp.jpg) center center no-repeat;
  background-size: cover;
}
.fv .box h1 img{
  width: 25rem;
}


.concept{
  padding: 4rem 0 6rem;
}
.concept::before{
  height: calc(100% + 19.4rem);
  background: url(../images/concept-bg_sp.jpg) center center no-repeat;
  background-size: cover;
}
.concept .content{
  display: block;
}
.concept img.img,
.concept .txt{
  width: 100%;
}
.concept .txt{
  margin: 0 0 6rem;
}


.business{
  padding: 0 0 8rem;
}
.business ul{
  grid-template-columns: 1fr;
}


.company{
  padding: 0 0 8rem;
}
.company .content{
  display: block;
}
.company .txt,
.company img.img{
  width: 100%;
}
.company .txt dl{
  grid-template-columns: 8.8rem 1fr;
}


.news{
  padding: 4rem 0;
}
.news h2.h-1{
  margin-bottom: 4rem;
}
ul.news-li li{
  grid-template-columns: 1fr;
  gap: 0.5rem;
}


footer img.logo{
  width: 9rem;
}


#loading img {
  width: 14rem;
}




}/*　スマホここまで */



