@charset "UTF-8";

html {
  font-size: 100%;
}
body {
  background-color: #F2EBE0;
  color: #000;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

/* 横幅設定用のクラス */
.wrapper {
  max-width: 940px;
  padding: 0 20px;
  margin: 0 auto;
}
.wrapper-1080 {
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}
.wrapper-white {
  max-width: 940px;
  padding: 100px;
  margin: 0 auto;
  background-color: white
}

/* セクションタイトル */
.section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
}
.section-title::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: #000;
  margin: 0 auto;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
}

/* 下層ページのページヘッダー部 */
.page-header {
  background-color: #93AC6F;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  padding: 60px 0 100px;
  text-align: center;
}
.page-header .page-title .en {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #fff;
}
.page-header .page-title .ja {
  display: block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

/* 下層ページのページヘッダー下テキスト部 */
.page-head-text {
  max-width: 700px;
  padding: 50px 0;
  text-align: center;
}
.page-head-text .title {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 30px;
}
.page-head-text .text {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

/* マーカー */
.highlight {
  background: linear-gradient(transparent 50%, #fff390 50%);
  font-weight: 700;
}

/*-------------------------------------------
見出し
-------------------------------------------*/
h3 {
  color: #4E6C37;
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

/*-------------------------------------------
Header
-------------------------------------------*/
#header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #D8E9C3;
  padding: 0 20px;
  position: fixed;
  top: 0px;
  z-index: 9999;
}
#header .logo {
  width: 100%;
  max-width: 150px;
}
#header .logo a {
  display: block;
}
#header .navi .menu {
  display: flex;
  align-items: center;
}
#header .navi .menu li {
  color: #fff;
  font-size: 14px;
  margin-left: 40px;
}
#header .btn {
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 10px 30px;
  position: relative;
}
#header .btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  right: 18px;
}

/*-------------------------------------------
イントロ共通
-------------------------------------------*/
.introduction {
  margin: 50px;
  text-align: center;
}
.introduction .catchphrase {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}
.introduction .read {
  font-size: 16px;
}
.introduction .text {
  font-size: 14px;
}

/*-------------------------------------------
メインイメージ
-------------------------------------------*/
.mainimg {
  position: relative;
}

/*-------------------------------------------
Card A
-------------------------------------------*/
.carda {
  background-color: #b07924;
  clip-path: polygon(0 0, 100% 20%, 100% 80%, 0 100%);
  padding: 120px 0;
}

/*-------------------------------------------
cardb
-------------------------------------------*/
.cardb {
  background-color: #b07924;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
  padding: 120px 0;
  margin: -80px 0 80px;
}

/*-------------------------------------------
Card A Card B 共通
-------------------------------------------*/
.carda-cardb-item {
  display: flex;
}
.carda-cardb-item .img {
  width: 50%;
}
.carda-cardb-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carda-cardb-item .text {
  width: 50%;
  background-color: #fff;
  padding: 20px 30px;
}
.carda-cardb-item .text .section-title-l {
  margin-bottom: 20px;
}
.carda-cardb-item .text .section-title-l .ja {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.carda-cardb-item .text .section-title-l .en {
  display: block;
  font-size: 12px;
  font-weight: 400;
}
.carda-cardb-item .description {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.carda-cardb-item .btn {
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 10px 30px;
  position: relative;
}
.carda-cardb-item .btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  right: 18px;
}

/*-------------------------------------------
Caption
-------------------------------------------*/
.caption {
  clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 100%);
  padding: 50px 0;
  margin: -30px 0 20px;
}

/*-------------------------------------------
Caption 共通
-------------------------------------------*/
.caption-item {
  display: flex;
}
.caption-item .img {
  width: 50%;
}
.caption-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caption-item .text {
  width: 50%;
  background-color: #fff;
  padding: 20px 30px;
}
.caption-item .text .section-title-l {
  margin-bottom: 20px;
}
.caption-item .text .section-title-l .ja {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.caption-item .text .section-title-l .en {
  display: block;
  font-size: 12px;
  font-weight: 400;
}
.caption-item .description {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.caption-item .btn {
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 10px 30px;
  position: relative;
}
.caption-item .btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  right: 18px;
}

/*-------------------------------------------
Profile
-------------------------------------------*/
#profile {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
}
#profile .img {
  width: 50%;
}
#profile .detail {
  width: 50%;
  padding-left: 80px;
}
#profile .detail p {
  font-size: 14px;
  line-height: 2;
}

/*-------------------------------------------
Contact
-------------------------------------------*/
.contact {
  background-color: #b07924;
  clip-path: polygon(0 20%, 100% 20%, 100% 80%, 0 80%);
  padding: 120px 0;
}

/*-------------------------------------------
Contact 共通
-------------------------------------------*/
.contact-item {
  display: flex;
}
.contact-item .img {
  width: 50%;
}
.contact-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-item .text {
  width: 50%;
  background-color: #fff;
  padding: 20px 30px;
}
.contact-item .text .section-title-l {
  margin-bottom: 20px;
}
.contact-item .text .section-title-l .ja {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.contact-item .text .section-title-l .en {
  display: block;
  font-size: 12px;
  font-weight: 400;
}
.contact-item .description {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.contact-item .btn {
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 10px 30px;
  position: relative;
}
.contact-item .btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  right: 18px;
}


/*-------------------------------------------
Footer
-------------------------------------------*/

#footer02 {
  background: #5F7F32;
}
 
.ie #footer02 .logo img,
#footer02 .logo {
  display: inline-block;
  width: 150px;
}
 
#footer02 .nav li a {
  font-size: 14px;
  padding: 15px;
  color: #fff;
}
 
#footer02 .btn {
  margin-left: 25px;
}

#footer02 .copyright {
  font-size: 12px;
  text-align: center;
  padding: 15px;
  color: #ccc;
}
#footer02 .btn {
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 10px 30px;
  position: relative;
}
#footer02 .btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  right: 18px;
}
@media screen and (min-width: 768px) {
  #footer02 .logo {
    padding: 10px;
	padding-left: 20px;
  }
 
  #footer02 .wrap {
    padding: 20px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
 
  #footer02 .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
 
  #footer02 .nav {
    display: inline-block;
  }
 
  #footer02 .nav li {
    display: inline-block;
  }
 
  #footer02 .nav li a:hover {
    color: #3F5231;
  }
}

/*-------------------------------------------
前空け
-------------------------------------------*/
.text-space { 
  margin-left: 50px;
  font-size: 12px;
  line-height: 1.7em;
}
/*-------------------------------------------
dlのスタイル
-------------------------------------------*/
.text-p {
 font-size: 14px;
 line-height: 1.7em;
}
.text-dt {
 font-size: 16px;
 font-weight: 500;
 color: #b07924;
 line-height: 1.7em;
 margin-top: 10px;
}
.text-dd {
 font-size: 14px;
 line-height: 1.7em;
}

/*-------------------------------------------
区切り線
-------------------------------------------*/
.hr3 {
  border-top: 1px solid #64522D;
  margin-top: 20px;
  margin-bottom: 20px;
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  main {
    padding-top: 60px;
  }

  /* セクションタイトル */
  .section-title {
    font-size: 24px;
    margin-bottom: 60px;
  }
  .section-title::after {
    width: 60px;
  }

  /* 下層ページのページヘッダー部 */
  .page-header {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    padding: 30px 0 50px;
  }
  .page-header .page-title .en {
    font-size: 20px;
  }

  /* 下層ページのページヘッダー下テキスト部 */
  .page-head-text .title {
    font-size: 18px;
    padding: 0 40px 0 40px;
  }
  .page-head-text .text {
   padding: 0 40px 0 40px;
  }
	
  /*-------------------------------------------
  Header
  -------------------------------------------*/
  #header {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  #header .logo {
    max-width: 120px;
  }
  #header .navi {
    width: 80%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -80%;
    z-index: 20;
    transition: all 0.6s;
  }
  #header .navi.active {
    right: 0;
  }
  #header .navi .menu {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding: 60px 0;
    overflow: auto;
  }
  #header .navi .menu li {
    padding: 10px 0;
    margin-left: 0;
  }
  #header .hamburger {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: fixed;
    top: 5px;
    right: 10px;
    z-index: 30;
  }
  #header .hamburger span {
    width: 30px;
    height: 3px;
    background-color: #000;
    display: inline-block;
    position: absolute;
    left: 10px;
    transition: all 0.4s;
  }
  #header .hamburger span:nth-of-type(1) {
    top: 16px; 
  }
  #header .hamburger span:nth-of-type(2) {
    top: 25px;
  }
  #header .hamburger span:nth-of-type(3) {
    top: 34px;
  }
  #header .hamburger.active span:nth-of-type(1) {
    top: 24px;
    transform: rotate(-45deg);
  }
  #header .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  #header .hamburger.active span:nth-of-type(3) {
    top: 24px;
    transform: rotate(45deg);
  }
	
  /*-------------------------------------------
  padding調整
  -------------------------------------------*/	
  .wrapper-white {
    padding: 30px;
  }
	
  /*-------------------------------------------
  Introduction
  -------------------------------------------*/
  .introduction {
    margin-bottom: 50px;
  }
  .introduction .catchphrase {
    font-size: 16px;
  }
  .introduction .read {
    font-size: 14px;
  }
  .introduction .text {
    text-align: left;
  }	

  /*-------------------------------------------
  Profile
  -------------------------------------------*/
  #profile {
    flex-direction: column-reverse;
    margin-bottom: 60px;
  }
  #profile .img {
    width: 100%;
  }
  #profile .detail {
    width: 100%;
    padding-left: 0;
    margin-bottom: 20px;
  }
	
  /*-------------------------------------------
  carda
  -------------------------------------------*/
  .carda {
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
    padding: 80px 0;
  }
  .carda .carda-cardb-item {
    flex-direction: column;
  }

  /*-------------------------------------------
  cardb
  -------------------------------------------*/
  .cardb {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
    padding: 80px 0;
    margin: -45px 0 40px;
  }
  .cardb .carda-cardb-item {
    flex-direction: column-reverse;
  }

  /*-------------------------------------------
  carda-cardb 共通
  -------------------------------------------*/
  .carda-cardb-item .img {
    width: 100%;
  }
  .carda-cardb-item .img img {
    object-fit: contain;
  }
  .carda-cardb-item .text {
    width: 100%;
  }
	
  /*-------------------------------------------
  Caption
  -------------------------------------------*/
  .caption {
    clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 100%);
    padding: 50px 0;
    margin: -30px 0 20px;
  }
  .caption .caption-item {
    flex-direction: column-reverse;
  }
	
  /*-------------------------------------------
  Caption 共通
  -------------------------------------------*/
  .caption-item .img {
    width: 100%;
  }
  .caption-item .img img {
    object-fit: contain;
  }
  .caption-item .text {
    width: 100%;
  }
  /*-------------------------------------------
  Contact
  -------------------------------------------*/
  .contact {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    padding: 80px 0;
  }
  .contact .contact-item {
    flex-direction: column;
  }

  /*-------------------------------------------
  Contact 共通
  -------------------------------------------*/
  .contact-item .img {
    width: 100%;
  }
  .contact-item .img img {
    object-fit: contain;
  }
  .contact-item .text {
    width: 100%;
  }
  /*-------------------------------------------
  Footer
  -------------------------------------------*/
 
  #footer02 .inner-block {
    padding-top: 20px;
  }
 
  .ie #footer02 .logo img,
  #footer02 .logo {
    display: block;
    margin: 0 auto 20px;
  }
 
  #footer02 .btn {
    margin-bottom: 20px;
  }
 
  #footer02 .nav li {
    border-top: 1px solid #3F5231;
  }
 
  #footer02 .nav li a {
    padding: 12px 20px;
    display: block;
    background-size: 5px auto;
  }
  #footer02 .nav li:last-child {
    border-bottom: 1px solid #3F5231;
		}
}

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