* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
	  font-family: "Noto Sans JP", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5.h6,
p,
a {
  letter-spacing: 1.2px;
  line-height: 2;
}
.inline {
  display: inline-block;
}
.img-status {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*header*/
header {
  background: #216334;
  height: 100px;
  width: 100%;
}
.header-inner {
  width: 95%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header img {
  width: 100px;
}
.header-navwrap {
  display: flex;
  height: 100%;
  align-items: center;
}

.header-nav {
  height: 100%;
}
.nav-lists {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-lists li {
  margin-right: 1.5rem;
  color: #fff;
}

.entry-btn {
  background-color: #fff;
  height: 60%;
  display: flex;
  align-items: center;
  padding: 1rem;
  font-weight: bold;
  color: #216334;
}
.entry-btn img {
  width: 40px;
  margin-right: 1rem;
}

/*fv*/
.fv {
  height: calc(100vh - 100px);
  background-color: #216334;
  position: relative;
}
.top-gif {
  position: absolute;
  top: 45%;
  left: 5%;
  transform: translateY(-50%);
}
.top-gif picture {
  width: 80vw;
  display: block;
  max-width: 800px;
  min-width: 500px;
}
.top-gif img {
  display: block;
  width: 100%;
}
.top-btn {
  padding: 1rem;
  background-color: #fff;
  color: #236633;
  border-radius: 1rem;
  font-weight: bold;
  margin-left: 2.5rem;
}

/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: fixed;
  background: transparent;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 1rem;
  right: 1rem;
  border-radius: 5px;
  display: none;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: rgb(230, 230, 230);
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*seciton*/
.section-title {
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
}
.section-title span {
  padding: 0.5rem 0;
  display: inline-block;
}
.white-section {
  color: #236633;
  background-color: #fff;
}
.green-section {
  background-color: #236633;
  color: #fff;
}
.white-section .section-title::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 1px;
  background-color: #236633;
  bottom: 0;
  left: 0;
}
.green-section .section-title::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 0;
}
.more {
  padding: 0.5rem 2rem;
  background-color: #fff;
  color: #236633;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 2rem;
  font-weight: bold;
}
.section-titlewrap {
  text-align: center;
}
/*about*/

.about-contents {
  display: flex;
  width: 75%;
  margin: 3rem auto 0;
  justify-content: space-between;
  align-items: center;
}
.about-img {
  width: 30%;
  margin-bottom: -0.5rem;
}

.about-img img {
  width: 100%;
}
.about-textwrap {
  width: 55%;
}
.about-text {
  margin-top: 1.5rem;
}
/*business*/
.business {
  background: #236633;
  padding: 6rem 0;
}
.business .section-inner {
  width: 85%;
  margin: 0 auto;
}
.business-contents {
  margin-top: 3rem;
}
.business-item {
  display: flex;
  justify-content: space-between;
}
.business-item + .business-item {
  margin-top: 6rem;
}
.business-item-title {
  font-size: 1.7rem;
}
.business-img {
  width: 40%;
  padding: 0 2rem;
  min-width: 300px;
}
.business-textwrap {
  width: 50%;
}

/*strength*/

.strength {
  padding: 6rem 0;
}
.strength .strength-top-text {
  width: 90%;
  max-width: 700px;
  margin: 3rem auto;
}
.strength-contents {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  width: 80%;
  margin: 3rem auto;
}

.strength-item {
  padding: 1rem 3rem 0;
  border: 1px solid #000;
  height: auto;
}
.strength-item-title {
  text-align: center;
  font-size: 1.7rem;
}
.strength-item-img {
  height: 25%;
  margin: 1.5rem auto;
  display: block;
}
.strength-item-text {
  margin-top: 2rem;
}

/*achievement*/
.achievement .section-inner {
  padding: 6rem 0;
}
.achievement-contents {
  margin: 3rem auto;
  width: 80%;
}
.achievement-tabwrap {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
}
.achievement-tab {
  background-color: #757575;
  padding: 1rem;
  width: calc((100% - 20px) / 3);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.achievement-tab p {
  line-height: 1.2;
  font-size: 1.2rem;
}
.achievement-tab.active {
  background-color: #fff;
  color: #236633;
  font-weight: bold;
  position: relative;
}
.achievement-tab.active::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
}
.achievement-itemwrap {
  margin: 4rem auto 0;
  width: 90%;
  display: none;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 1.5s ease;
}
.achievement-itemwrap.active {
  display: block;
  opacity: 1;
}
.achievement-item {
  display: flex;
}
.achievement-item + .achievement-item {
  margin-top: 3rem;
}
.achievement-textwrap {
  display: flex;
  flex-direction: column;
}
.achievement-item-title {
  font-size: 1.6rem;
	padding-left:1.5rem;
	position:relative;
}
.achievement-item-title::before {
  content: "";
  height: 35px;
  width: 5px;
  background-color: #fff;
  margin-right: 1rem;
position:absolute;
	left:0;
	top:50%;
	transform:translatey(-50%);
}
.achievement-item-text {
  margin-top: 1rem;
}
.more-text {
  margin-left: auto;
}
.achievement-img {
  width: 40%;
}
.achievement-textwrap {
  width: 60%;
  padding: 1.5rem 2rem;
}

/*news*/
.news {
  padding: 6rem 0;
}
.news .section-inner {
  width: 80%;
  margin: 0 auto;
}
.news-contents {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}
.news-item {
  margin-top: 1rem;
}

.news-item-img {
  position: relative;
}
.genre {
  position: absolute;
	z-index:2;
  left: 0;
  padding: 0.5rem;
  background-color: #236633;
  color: #fff;
  font-size: 0.9rem;
}
.news-more {
  color: #fff;
  background-color: #236633;
  width: 90%;
  max-width: 400px;
  padding: 0.7rem;
  font-weight: bold;
  margin: 4rem auto 0;
  border-radius: 2rem;
  text-align: center;
  display: block;
}

/*qa*/
.qa .section-inner {
  padding: 6rem 0;
}
.qa-lists {
  width: 70%;
  margin: 2rem auto 0;
}
.qa-item {
  display: flex;
  align-items: center;
}
.qa-item::before {
  margin-right: 2rem;
}
.qa-item.q::before {
  content: "Q";
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #747373;
  border-radius: 1rem;
  font-size: 1.7rem;
  font-weight: bold;
  border: 1px solid #fff;
}
.qa-item.a::before {
  content: "A";
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #747373;
  color: #fff;
  border-radius: 1rem;
  font-size: 1.7rem;
  font-weight: bold;
  border: 1px solid #fff;
}
.qa-item + .qa-item {
  margin-top: 1rem;
}

.qa-item p {
  border-bottom: 1px solid rgb(255, 255, 255, 0.5);
  padding: 0.5rem 0;
  width: 90%;
}

/*contact*/
.contact .section-title::after {
  display: none;
}
.contact .section-inner {
  padding: 6rem 0;
}
.contact .section-titlewrap {
  position: relative;
}
.contact .section-titlewrap::after {
  content: "";
  width: 100%;
  max-width: 200px;
  position: absolute;
  height: 1px;
  background-color: #236633;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.contact-contents {
  width: 90%;
  max-width: 800px;
  margin: 6rem auto 0;
}
.form-item-label {
  font-size: 1.2rem;
}
input,
textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 0.5rem;
  outline: none;
  margin-top: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.4);
}
.submit-btnwrap {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.submit-btn {
  background-color: #236633;
  color: #fff;
  margin: 4rem auto 0;
  font-size: 1.2rem;
  border-radius: 2rem;
  width: 80%;
  max-width: 500px;
  cursor: pointer;
}
.submit-btn[disabled] {
  opacity: 0.8;
  cursor: not-allowed; /* クリック不可のカーソルを表示 */
}

.form-item-label-req {
  background-color: #236633;
  color: #fff;
  padding: 0.3rem 0.5rem;
  border-radius: 0.4rem;
  margin-left: 1rem;
  font-size: 1rem;
}

.form-item + .form-item {
  margin-top: 1rem;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  margin-top: 0.5rem;
}
.checkbox-wrap input {
  width: auto;
  margin-top: 0;
  border-radius: 0;
  width: 20px;
  height: 20px;
  margin-right: 1rem;
}

/*company*/
.company {
  padding: 4rem 0;
}
.company-table {
  border-collapse: collapse;
  margin: 4rem auto 0;
  width: 90%;
  max-width: 800px;
}
.company-table tr {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
}
.company-table tr:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.company-table th {
  text-align: left;
  width: 200px;
  background-color: #145b23;
}
.company-table th,
.company-table td {
  padding: 0.7rem 0.5rem;
}
.company-table td {
  width: 500px;
}

/*footer*/
footer {
  background-color: #236633;
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.pc-none-wrap,
.pc-none {
  display: none;
}
