/* common parts */

.top-wrapper{
  margin-bottom: 100px;
}

.top-wrapper__image--page{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top-wrapper__image--page > img{
  min-width: 100%;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
}

.top-wrapper__image--page > .container{
  padding: 0 30px;
}

.breadcrumb{
  position: relative;
  margin-top: 140px;
  z-index: 5;
}

.breadcrumb > li{
  display: inline-block;
  font-size: 14px;
}

.breadcrumb > li::after{
  content: '/';
  display: inline-block;
  margin: 0 15px;
  color: #fff;
}

.breadcrumb > li:last-child::after{
  display: none;
}

.breadcrumb > li > a{
  color: #fff;
}

.page-title{
  position: relative;
  margin-top: 136px;
  color: #fff;
  font-size: 60px;
  z-index: 5;
}

h2{
  display: block;
  margin: 100px 20px 30px 0;
  font-size: 40px;
  font-family: 'Noto Sans JP', sans-serif;
}

h2:first-child{
  margin: 0 20px 30px 0;
}

h3{
  padding-left: 15px;
  margin: 50px 0 25px;
  border-left: 5px solid #67B330;
  line-height: 2;
  font-size: 25px;
  font-family: 'Noto Sans JP', sans-serif;
}

h4{
  position: relative;
  display: block;
  width: 100%;
  margin: 50px 0 40px;
  line-height: 1.5;
  color: #67B330;
  font-size: 23px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}

h4::before{
  content: '';
  position: absolute;
  top: -20px;
  left: 30px;
  width: 30px;
  height: 50px;
  border-top: 2px solid #67B330;
  border-left: 2px solid #67B330;
}

h4::after{
  content: '';
  position: absolute;
  bottom: -20px;
  right: 30px;
  width: 30px;
  height: 50px;
  border-right: 2px solid #67B330;
  border-bottom: 2px solid #67B330;
}

.main > p, .works__section > p{
  line-height: 2;
  font-size: 18px;
  font-weight: 300;
  font-family: 'Noto Sans JP', sans-serif;
}

.main{
  width: 750px;
}

.anker{
  position: sticky;
  top: 150px;
  z-index: 2;
  width: 250px;
  height: auto;
  font-weight: 700;
}

.anker__title{
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  line-height: 2;
  font-size: 25px;
}

.anker > ul > li{
  margin-bottom: 10px;
  font-size: 18px;
  
}

.anker > ul > li > a{
  line-height: 1.5;
  color: #000;
}

.anker > ul > li > .active{
  color: #67B330;
  transition: all 0.4s;
}

/* about */

.container--about{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 30px;
}

.about__section__table{
  width: 100%;
}

.about__section__table > tbody > tr{
  display: block;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 18px;
}

.about__section__table > tbody > tr:last-child{
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.about__section__table > tbody > tr > th{
  width: 130px;
  line-height: 1.5;
  text-align: left;
}

.about__section__table > tbody > tr > td{
  line-height: 2;
  font-weight: 300;
}

.about__section__table > tbody > tr > td > p{
  margin-left: 21px;
  text-indent: -21px;
}

.aim{
  color: #67B330;
  font-weight: 500;
}

/* news */

.container--news{
  padding: 0 30px;
}

.news-list > .page-section__title{
  margin-bottom: 40px;
}

.news-list > ul{
  width: calc(1200px - 60px);
}

.news-list > ul > li{
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 18px;
}

.news-list > ul > li > time{
  display: inline-block;
  width: 160px;
  font-weight: 700;
  letter-spacing: 1px;
}

.news-list > ul > li > a{
  color: #67B330;
  font-weight: 400;
  text-decoration: underline;
}

.news-list > ul > li > .nontext{
  color: #000;
  text-decoration: none;
}

.news-list > ul > li:last-child{
  margin-bottom: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.pagination{
  width: 300px;
  margin: 0 auto 150px;
  font-size: 40px;
  text-align: center;
}

.pagination > a{
  display: inline-block;
  margin: 0 12.5px;
  font-weight: 700;
  color: #000;
}

.pagination > span{
  display: inline-block;
  margin: 0 12.5px;
  font-weight: 700;
  color: #67B330;
}

/* works */

.container--works{
  padding: 0 30px;
}

.project-list > .page-section__title{
  margin-bottom: 40px;
}

.project > li{
  width: 100%;
  height: 225px;
  margin-bottom: 40px;
  box-shadow: 1px 1px 3px 4px rgba(0, 0, 0, 0.075);
  transition: all 0.25s;
}

.project > li:hover{
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 3px 4px rgba(0, 0, 0, 0);
  transform: translateY(2px);
}

.project > li > a{
  display: flex;
}

.project__image{
  width: 344px;
  height: 100%;
  margin-right: 50px;
}

.project__image > img{
  width: 100%;
}

.project__content{
  width: 60%;
  padding: 30px 0;
}

.project__sub-title{
  margin-bottom: 20px;
  color: #707070;
  font-size: 14px;
  font-weight: 300;
}

.project__title{
  margin-bottom: 15px;
  color: #000;
  font-size: 25px;
  font-weight: 700;
}

.project__desc{
  line-height: 2;
  color: #707070;
  font-size: 18px;
  font-weight: 300;
}

.works__section > h2:first-child{
  margin: 100px 20px 30px 0;
}

/* member */

.container--member{
  padding: 0 30px;
}

.member-list > .page-section__title{
  margin-bottom: 40px;
}

.member-list > ul > li{
  display: flex;
  margin-bottom: 80px;
}

.member__image{
  width: 240px;
  height: 320px;
  margin-right: 80px;
}

.member__image > img{
  width: 100%;
  height: 100%;
}

.member-list__table{
  width: 66%;
}

.member-list__table > tbody > tr{
  display: block;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 18px;
}

.member-list__table > tbody > tr:last-child{
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.member-list__table > tbody > tr > th{
  width: 180px;
}

.member-list__table > tbody > tr > td{
  line-height: 2;
  font-weight: 300;
}

/* contact */

.top-wrapper--contact{
  height: 340px;
}

.top-wrapper__image--page > img{
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top-wrapper--contact > .top-wrapper__image--page > .container > .page-title{
  margin: 30px 0;
  text-align: center;
}

.contact__section > .page-section__desc{
  margin-bottom: 60px;
}

.wpcf7{
  margin-top: 50px;
}

.wpcf7-form > p{
  position: relative;
}

.wpcf7-form > p > label{
  display: inline-block;
  margin: 0 30px 15px 0;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 700;
}

.required{
  display: inline-block;
  padding: 0 15px;
  border: 1px solid;
  line-height: 1.5;
  color: #67B330;
  font-size: 20px;
  font-weight: 300;
}

input[type="text"], input[type="email"], input[type="tel"], textarea{
  display: block;
  width: 100%;
  height: 45px;
  padding: 0 10px;
  margin-bottom: 30px;
  background-color: #F9F9F9;
  border: 1px solid rgba(112, 112, 112, 0.1);
  outline: none;
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
}

textarea{
  padding: 10px;
  margin-bottom: 80px;
  height: 300px;
}


input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus{
  border: 1px solid rgba(103, 179, 48, 0.5);
}

input[type="submit"]{
  display: block;
  width: 160px;
  height: 60px;
  margin: 0 auto 70px;
  background-color: #67B330;
  border: 1px solid #67B330;
  line-height: 60px;
  color: #fff;
  font-size: 25px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
}

input[type="submit"]:hover{
  background-color: #fff;
  color: #67B330;
}

.wpcf7-not-valid-tip{
  position: absolute;
  top: -5px;
  right: -200px;
  line-height: 2;
}

.wpcf7-response-output{
  line-height: 2;
  font-size: 20px;
}

/* footer */

.footer{
  margin-top: 150px; 
}