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

/* Browser reset to zero out margins, padding, and sizing */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {

	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
display: block;
}

body {
	line-height: 1;
}

img {
	vertical-align: bottom;
}


/* common area
----------------------------------------------------- */

/* heading font */
.sedan-sc-regular {
    font-family: "Sedan SC", serif;
    font-weight: 400;
    font-style: normal;
  }
  
/* body font */
.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* Color Theme Swatches in Hex */
.Beautiful-morning-in-the-forest-1-hex { color: #95A614; } /*green tea*/
.Beautiful-morning-in-the-forest-2-hex { color: #B4BF60; } /*light green tea*/
.Beautiful-morning-in-the-forest-3-hex { color: #D4D9B4; } /*light pale green*/
.Beautiful-morning-in-the-forest-4-hex { color: #575925; } /*dark green*/
.Beautiful-morning-in-the-forest-5-hex { color: #262611; } /*very dark green*/

/* Color Theme Swatches in RGBA */
.Beautiful-morning-in-the-forest-1-rgba { color: rgba(149, 166, 20, 1); }
.Beautiful-morning-in-the-forest-2-rgba { color: rgba(180, 191, 96, 1); }
.Beautiful-morning-in-the-forest-3-rgba { color: rgba(212, 217, 180, 1); }
.Beautiful-morning-in-the-forest-4-rgba { color: rgba(87, 89, 37, 1); }
.Beautiful-morning-in-the-forest-5-rgba { color: rgba(38, 38, 17, 1); }

/* Color Theme Swatches in HSLA */
.Beautiful-morning-in-the-forest-1-hsla { color: hsla(66, 78, 36, 1); }
.Beautiful-morning-in-the-forest-2-hsla { color: hsla(66, 42, 56, 1); }
.Beautiful-morning-in-the-forest-3-hsla { color: hsla(68, 32, 77, 1); }
.Beautiful-morning-in-the-forest-4-hsla { color: hsla(62, 41, 24, 1); }
.Beautiful-morning-in-the-forest-5-hsla { color: hsla(60, 38, 10, 1); }


  * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-family: "Open Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-size: 13px;
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;
}

body {
	background-color: #faf9f8;
}

ul, ol {
	list-style: none;
}


h1, h2, h3 {
	font-family: "Sedan SC", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}


h1 {
	font-size: 36px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 23px;
}

a {
	text-decoration: none;
}

a:hover {
	color: #575925;
/*	color: #D4D9B4;*/
/*	background-color: #575925;*/
	text-decoration: none;
	cursor: pointer;
	opacity: .7;
  }

button {
	font-family: "Sedan SC", serif;
    font-weight: 400;
    font-style: normal;
	font-size: 20px;
}



@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .smp {
    display: none !important;
  }
}

/* HEADER && NAVIGATION
-----------------------------------------------------------*/
.page-header {
	/* display: flex; */
	/* justify-content: space-between; */
	width: 100vw;
	height: auto;
	padding: 0 0 0 2.5vw;
	position: fixed;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(6px);
}

.header_inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header_logo img {
	width: 6.5vw;
	height: 6.5vw;
}

.main-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	right: 5.5vw;
	line-height: 4.5vw;
}

.main-nav-item {
	margin-left: 2.75vw;
}

nav ul {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 5.5vw;
    line-height: 4.5vw;
	list-style: none;
}

nav li {
	display: list-item;
	text-align: -webkit-match-parent;
}

.main-nav a {
	color: #575925;
	font-family: "Sedan SC", serif;
	font-size: 1.4vw;
	font-weight: 700;
	font-style: normal;
	letter-spacing: .1em;
	text-shadow: 2px 3px 3px rgba(212, 217, 180, 1);
}


/* nav responsive -----------------------------------------------------------*/
@media (max-width: 768px) {
	.page-header {
	  padding: 0 5vw 0;
	}
    .drawer{
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		position: relative;
		height: 70px;
		padding: 0 1em;
		
    }
    .main-nav {
        display: block;
	    margin: 0;
        /* font-size: 1rem; */
        transition: 0.5s ease;
        -webkit-transform: translateX(100%); 
		
    }
    .main-nav li {
        margin-left: 0;
    }

    .main-nav a {
        width: 100%;
	    font-size: 3vw;
	    line-height: 10.5vw;
        padding: 0 2rem;
		
    }
    .header_logo img {
        width: 10.5vw;
	    height: 10.5vw;
    }

   /*open*/
   .main-nav.open {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*メニューを元の位置へ戻す*/
}
/*トグルボタンのスタイルを指定*/
.hamburger {
    display: block; 
    position: fixed;    /* bodyに対しての絶対位置指定 */
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
    right:15px;
}
.hamburger span {
    display: block;
    position: absolute;
    width: 50px;
    border-bottom: solid 4px #575925;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
}

/*各ボーダー少しずつずらす*/
.hamburger span:nth-child(1) {
    top:5px;
}
.hamburger span:nth-child(2) {
    top: 18px;
}
.hamburger span:nth-child(3) {
    top: 32px;
}
.hamburger.active span:nth-child(1) {
    top: 18px;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
top: 18px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
transform: rotate(45deg);
}

}


  /*    FOOTER
------------------------------------------------------------ */

.footer {
    z-index: 3;
	background: #575925;
	padding: 13px 0;
	width: 100%;
	height: 5vw;
	display: block;
    bottom: 0;
    left: 0;
	position: fixed;
    text-align: center;
}

.footer_inner {
    z-index: 2;
    width: 100%;
    height: 100%;
     padding: 0 60px; 
}

.footer_inner_copy{
	font-family: "Sedan SC", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: #D4D9B4;
	font-size: 1.3vw;
	letter-spacing: .1em;
	display: inline-block;
	position: absolute;
    top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
	.footer {
	  height: 10vw;
	}
	.footer_inner_copy {
        width: 100vw;
	  text-align: center;
	  font-size: 2.7vw;
	}
  }

/* sector
------------------------------------------------    */

.sector {
	z-index: 3;
	width: 92vw;
	margin: 160px auto 10px;
	border-bottom: solid #95A614;
	border-bottom-width: medium;
}

.sector2 {
	z-index: 3;
	width: 90vw;
	margin: 10px auto 10px;
	border-bottom: solid #B4BF60;
	border-bottom-width: medium;
}

@media (max-width: 768px) {
	.sector {
		margin: 80px auto 10px;
	}
	.sector2 {
		margin: 5px auto 10px
	}
}

/*main visual
----------------------------------------------------        */
.mainVisual {
	width: 100vw;
	margin-top: 100px;
/*	margin: 100px 8% 164px 3%;*/
	display: flex;
	justify-content: space-around;
	align-items: center;
	
}

.mainVisual-text {
	font-family: "Sedan SC", serif;
/*	font-optical-sizing: auto;/*/
	font-weight: 400;
	font-style: normal;
	text-align: justify;
	text-align-last: left;
	margin: 5%;
/*	font-size: 36px;*/
	line-height: 1;
}


.mainVisual-image {
	width: 100%;
	margin-left: 3%;
}

@media (max-width: 768px) {
	.mainVisual {
		width: 100vw;
		height: 100vh;
		margin-top: 65px;
		flex-direction: column;
		
	}
	.mainVisual-text {
	font-family: "Sedan SC", serif;
	margin: 0 3%;
	font-size: 23px;
	line-height: 1;
}
	.mainVisual-image {
	width: 100%;
	margin: 0;
}
}

.mainvisual__scroll {
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 134px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    font-size: 90%;
    color: #262611; 
}

 @media (max-width: 768px) {
.mainvisual__scroll {
	position: absolute;
	bottom: 0;
	left: 30px;
	font-size: 90%; 
	 } }

.mainvisual__scroll::after {
      z-index: 2;
      width: 1px;
      height: 130px;
      margin-top: 5px;
	margin-bottom: 70px;
      content: "";
      background: #262611; 
}

@media (max-width: 768px) {
	.mainvisual__scroll::after {
          height: 100px; 
	} }


/* ABOUT section
------------------------------------------------------------------------*/
.about {
	width: 100vw;
/*	margin: 150px auto 0;*/
/*	padding: 100px 0 0;*/
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.text--aboutArea {
	width: 40%;
	margin: 3% 5%;
	flex-direction: column;
}

.heading--about {
	top: 14px;
	left: 10px;
	margin-bottom: 3%;
}

.text--about {
	text-align: left;
	font-size: 13px;
	line-height: 1.4;
	margin: 3% 0;
}

.cta--about {
	margin-top: 20px;
	padding: 3% 5%;
	color: #575924;
	background-color: #D4D9B4;
	border-radius: 32px;
	text-decoration: none;
}

.image--aboutArea {
	width: 50%;
	display: flex;
	margin: 0 3%;
}

.about-image01 {
	margin-top: 50px;
	margin-right: 5px;
	width: 100%;
}

.about-image02 {
	margin-bottom: 50px;
	margin-left: 5px;
	width: 100%;
}

@media (max-width: 768px) {
	.about {
	width: 100vw;
/*	margin: 100px auto;*/
/*	padding: 50px 0;*/
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.text--aboutArea {
	width: 100%;
	padding: 3% 5%;
	flex-direction: column;
}

.heading--about {
	top: 14px;
	left: 10px;
	margin-bottom: 3%;
}

.text--about {
	font-size: 17px;
	text-align: left;
	line-height: 1.4;
	padding: 3% 0;
}

.cta--about {
	margin-top: 20px;
	padding: 1.5% 2.5%;
	font-size: 17px;
}

.image--aboutArea {
	width: 100%;
	display: flex;
/*	margin: 0 3%;*/
}

.about-image01 {
	margin-top: 25px;
	margin-right: 2.5px;
	width: 100%;
}

.about-image02 {
	margin-bottom: 25px;
	margin-left: 2.5px;
	width: 100%;
}}


/* CLIENTS section
-------------------------------------------------------*/
.client {
	width: 100vw;
/*	margin: 150px auto 0;*/
	padding: 3% 5%;
}

.heading--client {
	top: 14px;
	left: 10px;
/*	padding-top: 15px;*/
	margin-bottom: 3%;
}

.clientList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	align-content: center;
	padding: 10px 10px 0;
}

.client-listItem {
	font-size: 20px;
	letter-spacing: inherit;
	line-height: 1.7;
	margin: 5px 5px;
	text-decoration: underline 2px rgba(180, 191, 96, .8);;
}

@media (max-width: 768px) {	
.client {
	width: 100vw;
	padding: 3% 5%;
}

.heading--client {
	top: 14px;
	left: 10px;
	margin-bottom: 3%;
}

.clientList {
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	align-content: center;
	padding: 10px 10px;
}

.client-listItem {
	font-size: 17px;
	letter-spacing: inherit;
	line-height: 1.7;
	margin: 5px 5px;
}}


/* CONATCT section 
-----------------------------------------------------*/

.contact {
	width: 100vw;
/*	margin: 150px auto 0;*/
	padding: 3% 5%;
}

.heading--client {
	top: 14px;
	left: 10px;
/*	padding-top: 15px;*/
	margin-bottom: 1%;
}

.text-contactArea {
	width: 72vw;
	padding: 3% 5%;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	align-content: center;
	margin-bottom: 80px;
}

.subject--contact {
	margin-top: 10px;
	padding: 0 5%;
	line-height: 1;
	font-family: "Sedan SC", serif;
	font-size: 20px;
	font-weight: 400;
}

.info--contact {
	margin: 2px auto 5px;
	padding: .5% 5% 5px;
	line-height: .7;
	font-size: 15px;
	font-weight: 400;
}


/*        Services
------------------------------------------------------------*/
.service--mainVisual {
	width: 100%;
	height: 100vh;
}

.privateService {
	width: 100vw;
	padding: 3% 5%;
}

.heading--private {
	top: 14px;
	left: 10px;
	margin-bottom: 3%;
}

.text--private {
	text-align: left;
	font-size: 17px;
	line-height: 1.4;
	margin: 3% 0;
}

.text--privateArea {
	width: 100%;
	padding: 3% 5%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: stretch;
	align-content: center;
}

.plivateSector-item {
	width: 30%;
	height: 30%;
	margin: 3px 10px 10px 5px;
}

.plivateSector-item h2 {
	margin: 3% 0 5%;
	color: #95A614;
}

.plivateSector-item p {
	text-align: left;
	margin-bottom: 5%;
	line-height: 1.5;
	text-decoration: underline 2px #D4D9B4;
}

@media (max-width: 768px) {
.privateService {
	width: 100vw;
	padding: 3% 5%;
}

.heading--private {
	top: 14px;
	left: 10px;
	margin-bottom: 3%;
}

.text--private {
	text-align: left;
	font-size: 14px;
	line-height: 1.4;
	margin: 3% 0;
}

.text--privateArea {
	width: 100%;
	padding: 3% 5%;
	flex-direction: column;
	justify-content: space-around;
	align-items: stretch;
	align-content: center;
}

.plivateSector-item {
	width: 80%;
	height: 30%;
	margin: 3px 10px 10px 5px;
}

.plivateSector-item h2 {
	margin: 3% 0;
	font-size: 27px;
	color: #95A614;
}

.plivateSector-item p {
	text-align: left;
	margin-bottom: 5%;
	line-height: 1;
	text-decoration: underline 2px #D4D9B4;
}}

.publicService {
	width: 100vw;
	padding: 3% 5%;
}

.heading--public {
	top: 14px;
	left: 10px;
	margin-bottom: 3%;
}

.text--public {
	text-align: left;
	font-size: 17px;
	line-height: 1.4;
	margin: 3% 0;
}

.text--publicArea {
	width: 100%;
	padding: 3% 5%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: stretch;
	align-content: center;
}

.publicSector-item {
	width: 30%;
	height: 30%;
	margin: 3px 10px 10px 5px;
}

.publicSector-item h2 {
	line-height: 1.2;
	margin: 3% 0 5%;
	color: #95A614;
}

.publicSector-item p {
	text-align: left;
	margin-bottom: 5%;
	line-height: 1.5;
	text-decoration: underline 2px #D4D9B4;
}

@media (max-width: 768px) {
.publicService {
	width: 100vw;
	padding: 3% 5%;
}

.heading--public {
	top: 14px;
	left: 10px;
	margin-bottom: 3%;
}

.text--public {
	text-align: left;
	font-size: 14px;
	line-height: 1.4;
	margin: 3% 0;
}

.text--publicArea {
	width: 100%;
	padding: 3% 5%;
	flex-direction: column;
	justify-content: space-around;
	align-items: stretch;
	align-content: center;
}

.publicSector-item {
	width: 80%;
	height: 30%;
	margin: 3px 10px 10px 5px;
}

.publicSector-item h2 {
	margin: 3% 0;
	font-size: 27px;
	color: #95A614;
}

.publicSector-item p {
	text-align: left;
	margin-bottom: 5%;
	line-height: 1;
	text-decoration: underline 2px #D4D9B4;
}}

/*  TEAM
-------------------------------------------------------*/
.team {
	width: 100vw;
	padding: 3% 5%;
}

.heading--team {
	top: 14px;
	left: 10px;
	margin-bottom: 1%;
}

.text--team {
	text-align: left;
	font-size: 17px;
	line-height: 1.4;
	margin: 3% 0;
}

.text--teamArea {
	width: 100%;
	margin: 3% 0;
	padding: 3% 5%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
	align-content: center;
	background-color: rgba(212, 217, 180, .8);
}

.gr-d2--teamArea {
	width: 30%;
	height: 30%;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	
}

.teaminfo--grid2 {
	margin-bottom: 5%;
}

.photo--teamItem {
	-webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
		clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.text--teamItem {
	text-align: left;
	line-height: 1.7;
}

@media (max-width: 768px) {
.team {
	width: 100vw;
	padding: 3% 5%;
}

.heading--team {
	top: 14px;
	left: 10px;
	margin-bottom: 3%;
}

.text--team {
	text-align: left;
	font-size: 14px;
	line-height: 1.4;
	margin: 3% 0 8%;
}

.text--teamArea {
	width: 100%;
	margin: 5% 0;
	padding: 3% 5%;
	flex-direction: column;
	
	justify-content: space-around;
	align-items: stretch;
	align-content: center;
	background-color: rgba(212, 217, 180, .8);
}

.gr-d2--teamArea {
	width: 30%;
	height: 30%;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	
}

.teaminfo--grid2 {
	margin-bottom: 5%;
}

.photo--teamItem {
	-webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
		clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.text--teamItem {
	text-align: left;
	line-height: 1.7;
}}








