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

body{
	position: relative;
	font-family:'Montserrat',"Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic Medium",sans-serif;
	letter-spacing: 1px;
	font-weight: 400;
	line-height: 1.5;
	display:flex;
  	flex-direction:column;
 	min-height: 100vh;
}

.pc{
	display: block;
}
.sp{
	display: none;
}

@media screen and (max-width: 960px) {

	.pc{
		display: none;
	}

	.sp{
		display: block;
	}
	
}

/* ヘッダー */

.header {
	background: none;
	width: 100%;
	height: auto;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

.header__inner {
	padding: 20px;
	position: relative;
	background: rgba(255,255,255,0.9);
}

@media screen and (min-width: 960px) {
	.header__inner {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  height: inherit;
	}

	.header {
	  height: 100px;
	}
}


/* ヘッダーのロゴ部分 */
.header__title {
	width: 80px;
	margin: 0 auto;
	z-index: 9999;
	position: relative;
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease .4s;
}


@media screen and (min-width: 960px) {
	.header__title {
		width: 100px;
		margin: 0;
	}
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 45%;
  }
}


@media screen and (min-width: 960px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-evenly;
  }
}

.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
	color: #fff;
}


@media screen and (min-width: 960px) {
  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(30px, 0);

  }
}

/* ナビのリンク */
.nav-items__item a {
  color: #000;
  width: fit-content;
  display: block;
  text-align: center;
  font-size: 1em;
  margin: 0 auto 24px;
	letter-spacing: 2px;
	padding: 0.6em 0;
}

.nav-items__item a:hover {
	color: #937630;
}

.nav-contact a{
	padding: 0.8em 2em;
    border-radius: 50px;
    background: #937630;
    color: #fff;
	font-size: 0.9em;
	margin-top: 3em;
}

.nav-contact a:hover {
	color: #fff;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}


@media screen and (min-width: 960px) {
	
	.nav-items__item a {
		margin-bottom: 0;
 		font-size: 0.9em;
	}

	.nav-contact a{
	  margin-top: 0;
	}
}


/* ハンバーガーメニュー */

.header__hamburger {
	width: 25px;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
  background-color: #025134;
}

.hamburger span:nth-child(2) {
  margin: 6px 0;
  background-color: #937630;
}

.hamburger span:nth-child(3) {
  top: 0;
  background-color: #025134;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -11px;
  transform: rotate(-45deg);
}




/* メイン */

.main__fstvs{
	width: 100%;
	position: relative;
	background: #fff;
}

.main__fstvs-bg{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 25%;
	background: #025134;
}

.main__copy{
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.main__copy h1{
	width: 120px;
	margin: 10em auto 1.5em;
}

.main__copy h2{
	font-size: 1.6em;
	letter-spacing: 0.2em;
	text-indent: 1em;
}


.top__slider{
	width: 90%;
	margin: 3em auto 0;
}

.fstv__sl-con img{
	width: 100%;
}

.slick-dots{
	bottom: 10px !important;
}

.slick-dots li button:before{
	font-size: 7px !important;
	color: #FFF !important;
}

.slick-dotted.slick-slider{
	margin-bottom: 0 !important;
}


@media screen and (min-width: 960px) {
	.main__fstvs-bg{
		height: 30%;
	}

	.main__copy h1{
		width: 150px;
		margin: 15em auto 2em;
	}

	.main__copy h2{
		font-size: 3em;
	}

	.top__slider{
		width: 70%;
		margin: 5em auto 0;
	}

	.slick-dots{
		bottom: 20px !important;
	}

	.slick-dots li button:before{
		font-size: 10px !important;
	}
}


/* NEWS（お知らせ） */
.top__news{
	width: 100%;
	background: #025134;
	color: #fff;
}

.top__news-box{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	padding: 5em 0;
}

.top__news-ttl{
	width: 100%;
	text-align: center;
	margin-bottom: 2.5em;
}

.top__news-ttl h4{
	padding-bottom: 0.2em;
	border-bottom: 3px solid #937630;
	font-size: 1.3em;
	width: fit-content;
	margin: 0 auto;
	font-weight: 600;
}

.top__news-list{
	width: 100%;
	font-size: 0.8em;
	margin-bottom: 1.5em;
}

.top__news-list ul li{
	margin-bottom: 1.6em;
	padding-bottom: 1.6em;
	border-bottom: 0.5px dashed #fff;
}

.top__news-list ul li a{
	position: relative;
	display: block;
}

.top__news-list ul li a::after{
	content: '\f105';
	font: var(--fa-font-solid);
	position: absolute;
	top: 50%;
	right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.top__news-list ul li time{
	font-weight: 600;
}

.text{
	margin-top: 0.5em;
}


.more__news{
	position: absolute;
	bottom: 4em;
	right: 0;
}

.more__news a{
    position: relative;
    display: block;
    width: 75px;
    text-align: right;
    font-size: 0.7em;
}

.more__news a::before {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 0;
    width: 25px;
    height: 1px;
    background: #fff;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.more__news a::after {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 16px;
    width: 10px;
    height: 1px;
    background: #fff;
    transform: rotate(35deg);
}


@media screen and (min-width: 960px) {

	.top__news-box{
		display: flex;
		flex-wrap: wrap;
		margin: 0 auto;
		padding: 5em 0 7em;
	}

	.top__news-ttl{
		width: 20%;
		margin-right: 5%;
	}

	.top__news-ttl h4{
		padding-bottom: 0.5em;
		font-size: 1.6em;
	}

	.top__news-list{
		width: 75%;
		font-size: 0.8em;
		margin-bottom: 0;
	}

	.top__news-list ul li a{
		display: flex;
		flex-wrap: wrap;
	}

	.top__news-list ul li time{
		width: 20%;
	}

	.top__news-list ul li p{
		width: 80%;
	}
	
	.more__news{
		bottom: 6em;
	}
	
}


/* ページ（NEWS一覧） */

.page__news-box{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.page__news-box .top__news-list{
	width: 100%;
	margin: 5em 0 0;
}

.page__news-box .top__news-list ul li{
	border-bottom: 0.5px dashed #000;
}

@media screen and (min-width: 960px) {
	.page__news-box .top__news-list{
		margin: 10em 0 5em;
	}
}


/* ページ（NEWS内容） */

.page_news{
	width: 100%;
	padding: 5em 0;
}

.news__ttl{
	width: 100%;
	text-align: center;
	background: #025134;
	padding: 3em 1em;
	color: #fff;
}

.news__ttl h1{
	font-size: 2em;
	margin-bottom: 0.5em;
}

.news__ttl h2{
	font-size: 1em;
}

.news__txt{
	width: 90%;
	max-width: 1000px;
	margin: 5em auto 8em;
}

.news__txt p{
	font-size: 1em;
	line-height: 1.8;
}
 
.news__btn{
	margin: 0 auto;
	text-align: center;
	width: fit-content;
}

.news__btn a{
	background: #937630;
	padding: 1.3em 2em;
	color: #fff;
	border-radius: 50px;
	display: block;
}

.contact__btn{
	margin-top: 5em !important;
}

@media screen and (min-width: 960px) {
	.news__ttl h1{
		font-size: 2em;
	}

	.news__ttl h2{
		font-size: 1em;
	}

	.news__txt{
		width: 100%;
		max-width: 1000px;
		margin: 5em auto 8em;
	}

	.news__txt p{
		font-size: 1em;
		line-height: 1.8;
	}

	.news__btn{
		margin: 0 auto;
		text-align: center;
	}

	.news__btn a{
		background: #937630;
		padding: 1.5em 2em;
		color: #fff;
		border-radius: 50px;
	}
}




/* 共通タイトル */

.con__ttl{
	text-align: center;
	margin-bottom: 3em;
}

.con__ttl h1{
	font-size: 2em;
	color: #025134;
	font-weight: 600;
}

.con__ttl h2{
	font-size: 0.9em;
}

.top-con__ttl{
	text-align: center;
	margin-bottom: 3em;
}

.top-con__ttl h4{
	font-size: 2em;
	color: #025134;
	font-weight: 600;
}

.top-con__ttl p{
	font-size: 0.9em;
}


@media screen and (min-width: 960px) {
	.con__ttl h1{
		font-size: 2.7em;
	}

	.con__ttl h2{
		font-size: 1em;
	}
	
	.top-con__ttl h4{
		font-size: 2.7em;
	}

	.top-con__ttl p{
		font-size: 1em;
	}
}



/* ABOUT US */

.top__about{
	width: 100%;
	padding: 0 0 5em 0;
}

.top__about-txt-box{
	padding: 2em 2em 0;
}

.top__about-txt-box h4{
	color: #937630;
	font-size: 4em;
	font-weight: 600;
}

.top__about-txt-box h3{
	font-size: 1.1em;
	margin: 1.5em 0 1em;
	line-height: 1.7;
	letter-spacing: 0;
}

.top__about-txt-box h3 span{
	color: #937630;
}

.top__about-txt-box p{
	font-size: 0.9em;
	margin: 1.5em 0 0;
	line-height: 2;
}

@media screen and (min-width: 960px) {

	.top__about{
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 5em 0;
	}

	.top__about-img{
		width: 50%;
	}

	.top__about-txt-box{
		width: 50%;
		padding: 3em;
	}

	.top__about-txt-box h4{
		font-size: 5em;
	}

	.top__about-txt-box h3{
		font-size: 1.5em;
	}

	.top__about-txt-box p{
		font-size: 1em;
	}
	
}


/* SERVICES */

.top__services{
	width: 100%;
	padding: 5em 0;
	background: #F7F7F7;
}

.top__services-box{
	width: 70%;
	max-width: 1000px;
	margin: 0 auto;
}

.services__con{
	width: 100%;
	background: #fff;
	border: 2px solid #025134;
	padding: 2em;
	margin-bottom: 1.5em;
	position: relative;
}

.services__con-no{
	position: absolute;
	left: 0;
	top:0;
	border-right: 70px solid transparent;
	border-top: 70px solid #025134; 
	height: 0;
	width: 0;
	font-weight: 600;
}

.services__con-no::before{
	content: "1";
	color: #fff;
    position: relative;
    top: -65px;
    left: 14px;
    font-size: 1.5em;
}

.number-1::before{
	content: "1";
}

.number-2::before{
	content: "2";
}

.number-3::before{
	content: "3";
}

.services__con-icon{
	width: 50%;
	margin: 0 auto 1em;
}

.services__con h5{
	font-size: 1.3em;
	text-align: center;
	padding-bottom: 1em;
	margin-bottom: 1em;
	border-bottom: 1px solid #025134;
}

.services__con h5 span{
	font-size: 0.4em;
	color: #025134;
	display: block;
	font-weight: 600;
}

.services__con p{
	font-size: 0.8em;
}

.services__con p span{
	font-size: 0.7em;
	line-height: 1.5;
    display: block;
	padding-left: 1em;
}


@media screen and (min-width: 960px) {

	.top__services-box{
		display: flex;
		justify-content: space-between;
	}

	.services__con{
		width: 31%;
		background: #fff;
		border: 2px solid #025134;
		padding: 2em;
		margin-bottom: 1.5em;
		position: relative;
	}

	.services__con h5{
		font-size: 1.5em;
	}

	.services__con p{
		font-size: 1em;
	}

	.services__con p span{
		font-size: 0.7em;
	}
}




/* COMPANY */

.top__company{
	width: 100%;
	padding: 5em 0 0;
}

.top__company-info{
	width: 90%;
	max-width: 1000px;
	margin: 3em auto 0;
	font-size: 0.8em;
}

.top__company-info dl{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5em 0;
	border-bottom: 1px solid #D9D9D9;
	letter-spacing: 0;
}

.top__company-info dl:last-child{
	border-bottom: 0;
}

.top__company-info dl dt{
	width: 23%;
	text-align-last: justify;
	padding: 0 2em 0 0;
}

.top__company-info dl dd{
	width: 77%;
	float: right;
}

@media screen and (min-width: 960px) {
	.top__company-info{
		width: 100%;
		font-size: 0.9em;
	}

	.top__company-info dl{
		padding: 1.5em 0;
	}

	.top__company-info dl dt{
		width: 15%;
		padding: 0 3em 0 0;
	}

	.top__company-info dl dd{
		width: 80%;
		letter-spacing: 2px;
	}
}


.top__company-philo{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-align: center;
}

.top__company-philo-ttl{
	width: 100%;
	background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('../img/philo-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	padding: 5em 0;
	margin: 3em 0 0;
}

.top__company-philo-ttl h5{
	font-size: 1.3em;
	margin-bottom: 0.3em;
	letter-spacing: 5px;
}

.top__company-philo-ttl h6{
	font-size: 0.7em;
}

.top__company-philo-txt{
	width: 100%;
	font-size: 0.9em;
	line-height: 2.5;
	padding: 3em 0;
	background: #F2FAF0;
	color: #025134;
}

@media screen and (min-width: 960px) {
	.top__company-philo{
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		margin-top: 3em;
	}

	.top__company-philo-ttl{
		width: 50%;
		padding: 5em 3em;
		margin: 0;
		text-align: right;
		position: relative;
	}
	
	.company-philo-ttl-in{
		position: absolute;
		top: 50%;
		right: 3em;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}

	.top__company-philo-ttl h5{
		font-size: 1.5em;
	}

	.top__company-philo-txt{
		width: 50%;
		font-size: 1em;
		padding: 5em 3em;
		text-align: left;
	}
}





/* CONTACT */

.top__contact{
	width: 100%;
	padding: 5em 0;
}

.top__contact-box{
	width: 90%;
	max-width: 1000px;
	background: #025134;
	margin: 0 auto;
	text-align: center;
	border-radius: 20px;
	color: #fff;
	padding: 5em 2em;
}

.top__contact-ttl h4{
	font-size: 1.7em;
}

.top__contact-ttl b{
	font-size: 0.8em;
	font-weight: 600;
	border-bottom: 3px solid #937630;
	padding-bottom: 1em;
	display: block;
    width: fit-content;
    margin: 0.5em auto 1.5em;
}

.top__contact-ttl p{
	font-size: 0.9em;
}

.top__contact-btn{
	margin-top: 3em;
}

.top__contact-btn a{
	font-size: 1em;
	padding: 1.5em 2em;
	background: #937630;
	border-radius: 50px;
    display: block;
    text-align: left;
    position: relative;
}

.top__contact-btn a::before {
    content: '';
    position: absolute;
    bottom: 50%;
    right: 2em;
    width: 25px;
    height: 1px;
    background: #fff;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.top__contact-btn a::after {
    content: '';
    position: absolute;
    bottom: 55%;
    right: 2em;
    width: 8px;
    height: 1px;
    background: #fff;
    transform: rotate(35deg);
}

@media screen and (min-width: 960px) {
	.top__contact-box{
		display: flex;
		justify-content: space-between;
		padding: 5em;
		align-items: center;
	}

	.top__contact-ttl{
		width: 50%;
	}

	.top__contact-btn{
		width: 50%;
		margin-top: 0;
	}

	.top__contact-btn a{
		width: 350px;
	}
}



/* フッター */

.footer{
	width: 100%;
	background: #F7F7F7;
	padding: 5em 0 3em;
}

.footer__box{
	width: 90%;
	margin: 0 auto;
}

.footer__box-logo{
	margin-bottom: 2em;
	text-align: center;
}

.footer__box-logo div{
	width: 220px;
	margin: 0 auto 1em;
}

.footer__box-logo p{
	font-size: 0.8em;
}

.footer__box-menu{
	margin: 3em 0;
}

.footer__box-menu ul{
	display: flex;
	flex-wrap: wrap;
	width: 60%;
	margin: 0 auto;
}

.footer__box-menu ul li{
	width: 50%;
	font-size: 0.8em;
	color: #656565;
	text-align: center;
	margin-bottom: 1em
}

.footer__box-menu-contact{
	width: fit-content;
	margin: 1em auto 0;
}

.footer__box-menu-contact a{
	font-size: 0.8em;
	padding: 0.5em 2em;
	border: 1px solid #937630;
	border-radius: 50px;
    display: block;
	color: #937630;
}

address{
	font-size: 0.8em;
	text-align: center;
}

@media screen and (min-width: 960px) {
	.footer__box{
		display: flex;
		justify-content: space-between;
		align-items: end;
		margin-bottom: 3em
	}

	.footer__box-logo{
		margin-bottom: 0;
		text-align: left;
	}

	.footer__box-logo div{
		width: 220px;
		margin: 0 auto 1em;
	}
	
	.footer__box-menu{
		margin: 0;
	}

	.footer__box-menu ul{
		width: 100%;
	}

	.footer__box-menu ul li{
		width: fit-content;
		margin: 0 2em 0 0;
	}

	.footer__box-menu ul li:last-child{
		margin: 0;
	}

	.footer__box-menu-contact{
		width: fit-content;
		margin: 1em 0 0 auto;
	}

	.footer__box-menu-contact a{
		font-size: 0.8em;
		padding: 0.5em 2em;
		border: 1px solid #937630;
		border-radius: 50px;
		display: block;
		color: #937630;
	}
}



/* TOPへ戻るボタン */

#page_top {
	width: 70px;
    height: 70px;
    position: fixed;
	right: 20px;
	bottom: 20px;
	background: rgba(147, 118, 48, 0.8);
	border-radius: 50px;
}

#page_top a {
    position: relative;
	display: block;
	width: 70px;
	height: 70px;
	color: #fff;
	font-size: 0.7em;
	font-weight: 600;
}

#page_top a::before{
	content: "TOP";
	position: absolute;
	width: 50px;
	height: 15px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

@media screen and (min-width: 960px) {
	#page_top {
		right: 30px;
		bottom: 30px;
	}
}






/* ページ共通 */
.page_wrap{
	width: 100%;
	margin-top: 100px;
	flex: 1;
}


/* ページ（お問い合わせ） */

.page_contact{
	width: 90%;
	margin: 0 auto;
	padding: 5em 0;
}

.contact__att{
	font-size: 0.9em;
	text-align: justify;
	margin-bottom: 3em;
}

@media screen and (min-width: 960px) {
	.contact__att{
		text-align: center;
	}
}


/* お問い合わせフォーム */

#formWrap {
	width:100%;
	margin:0 auto;
	font-size:0.9em;
}
table.formTable{
	width:100%;
	max-width: 800px;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable tr{
	margin: 0.5em;
	text-align:left;
	margin-bottom: 1.5em;
	display: block;
}
table.formTable td,table.formTable th{
	width:auto;
	display:block;
}
table.formTable th{
	margin-bottom: 0.5em;
}
table.formTable th span{
	font-size: 0.8em;
}
table.formTable td{
	border: 1px solid #B2B2B2;
}
form input[type="text"], form textarea{
	width: 100%;
	padding: 1em;
}
table.formTable select{
	width: 100%;
	padding: 1em;
}
.form_put{
	margin: 0 auto;
	width: 200px;
	background: #937630;
	text-align: center;
	padding: 1.5em;
	color: #fff;
	margin-top: 2em;
	border-radius: 50px;
}

@media screen and (min-width:960px) {

	#formWrap {
		width:90%;
	}
}





/* 問い合わせ完了画面 */

.con__header{
	width: 100%;
	height: 70px;
	padding: 1em;
	text-align: center;
}

.con__header div img{
	width: 140px;
}

.con__text{
	width: 90%;
	max-width: 800px;
	margin: 5em auto;
	text-align: center;
}

.con__text input[type="button"]{
	padding: 1em 3em;
	border: 1px solid #000;
}



/* ふわっとフェードイン */

.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/*==================================================
下からふわっ
===================================*/

/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

.fadeUpTrigger{
    opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time02{
animation-delay: 0.2s;
}

.delay-time04{
animation-delay: 0.4s;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}









