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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.c-footer {
  background: #314F18;
  padding-bottom: 24px;
}
.c-footer__inner {
  color: #fff;
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-footer__inner {
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 24px;
  }
}
.c-footer__inner a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-footer__inner a {
    font-size: 1.2rem;
  }
}
.c-footer__info p:nth-of-type(1) {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.c-footer__info p:nth-of-type(2) {
  font-size: 1.2rem;
}
.c-footer__menu {
  display: flex;
  gap: 32px;
  font-size: 1.4rem;
}
.c-footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-footer__menu ul li ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-footer__copy {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
}

.c-head {
  background: #47B39D;
  color: #fff;
  font-weight: 600;
}
.c-head br {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-head br {
    display: block;
  }
}
.c-head h1 {
  display: flex;
  font-size: 1.6rem;
  gap: 40px;
  justify-content: center;
  padding: 4px 16px;
}
@media screen and (max-width: 960px) {
  .c-head h1 {
    font-size: 1.4rem;
    padding: 4px 12px;
  }
}
@media screen and (max-width: 768px) {
  .c-head h1 {
    flex-direction: column;
    font-size: 1.2rem;
    gap: 8px;
    text-align: center;
    padding: 4px;
    display: none;
  }
}

.l-wrapper {
  margin: auto;
  width: 100%;
  height: 100vh;
  position: relative;
}

.l-inner {
  margin: auto;
  position: relative;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .l-inner {
    flex-direction: column;
    gap: 16px;
  }
}

.l-title {
  background: url("../img/bg-title-pc.png") no-repeat;
  background-size: cover;
  width: 24vw;
  max-width: 400px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-title {
    background: url("../img/bg-title-sp.png") no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 100%;
    padding: 24px;
  }
}
@media screen and (max-width: 768px) {
  .l-title {
    padding: 16px;
  }
}
.l-title h2 {
  background: #fff;
  font-size: 2rem;
  font-weight: bold;
  width: 180px;
  border-left: 12px #314F18 solid;
  text-align: center;
  position: absolute;
  right: 0;
  padding: 12px;
  top: 56px;
}
@media screen and (max-width: 960px) {
  .l-title h2 {
    background: none;
    font-size: 1.6rem;
    border-left: 8px #314F18 solid;
    position: relative;
    top: auto;
    text-align: left;
    padding: 8px;
  }
}
@media screen and (max-width: 768px) {
  .l-title h2 {
    border-left: 6px #314F18 solid;
    padding: 4px 8px;
  }
}

.l-main {
  width: calc(76vw - 40px);
  max-width: 1000px;
  margin-right: 20px;
}
@media screen and (max-width: 960px) {
  .l-main {
    margin: auto;
    width: 95%;
    max-width: 100%;
  }
}

.c-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1024px;
  padding-left: 24px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .c-nav {
    padding-left: 16px;
  }
}
.c-nav__logo {
  width: 220px;
}
@media screen and (max-width: 768px) {
  .c-nav__logo {
    width: 180px;
  }
}
.c-nav__logo img {
  width: 100%;
}
.c-nav__menu {
  align-items: center;
  display: flex;
  gap: 32px;
}
.c-nav__menu .List {
  display: flex;
  gap: 32px;
  justify-content: right;
}
.c-nav__menu .List li {
  border-bottom: 2px #fff solid;
}
.c-nav__menu .List a {
  color: #363636;
  font-weight: 400;
}
.c-nav__menu .List a:hover {
  color: #314F18;
  border-bottom: 2px #314F18 solid;
}
.c-nav__menu .List .is-active {
  color: #314F18;
  border-bottom: 2px #314F18 solid;
}
.c-nav__menu .Contact a {
  background: #314F18;
  color: #fff;
  font-size: 1.4rem;
  display: block;
  text-align: center;
  padding: 10px 16px;
}
.c-nav__menu .Contact i {
  font-size: 2.4rem;
  display: block;
  padding-bottom: 4px;
}
@media screen and (max-width: 960px) {
  .c-nav__menu {
    display: none;
  }
}
.c-nav__hbm {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .c-nav__hbm {
    background: #314F18;
    color: #fff;
    font-size: 2.4rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .c-nav__hbm {
    font-size: 2rem;
    width: 48px;
    height: 48px;
  }
}

.c-nav-spmenu {
  background: #314F18;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  display: none;
  cursor: pointer;
  z-index: 999;
}
.c-nav-spmenu__hbm {
  position: absolute;
  right: 0;
  color: #fff;
  font-size: 2.4rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-nav-spmenu__hbm {
    font-size: 2rem;
    width: 48px;
    height: 48px;
  }
}
.c-nav-spmenu .c-head {
  background: none;
}
.c-nav-spmenu .List {
  text-align: center;
  margin-top: 64px;
  border-top: 1px rgba(255, 255, 255, 0.3) solid;
  margin-left: 20px;
  margin-right: 20px;
}
.c-nav-spmenu .List li {
  border-bottom: 1px rgba(255, 255, 255, 0.3) solid;
}
.c-nav-spmenu .List a {
  color: #fff;
  font-size: 1.8rem;
  padding: 16px;
  display: block;
}

.c-breadcrumbs {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .c-breadcrumbs {
    margin: 0 24px 16px;
  }
}
@media screen and (max-width: 768px) {
  .c-breadcrumbs {
    margin: 0 16px 16px;
  }
}
.c-breadcrumbs ul {
  display: flex;
  gap: 8px;
}
.c-breadcrumbs a {
  color: #363636;
  text-decoration: underline;
}

.c-tab {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.c-tab div,
.c-tab a {
  font-size: 1.8rem;
  font-weight: 400;
  border-bottom: 2px solid #314F18;
  padding: 8px 32px;
  color: #314F18;
}
@media screen and (max-width: 768px) {
  .c-tab div,
  .c-tab a {
    font-size: 1.4rem;
    padding: 8px 16px;
  }
}
.c-tab a {
  color: #47B39D;
  border-bottom: 2px solid #47B39D;
}
.c-tab a:hover {
  color: #314F18;
  border-bottom: 2px solid #314F18;
  position: relative;
}
.c-tab a:hover::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 8px solid #314F18;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
.c-tab div {
  position: relative;
}
.c-tab div::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 8px solid #314F18;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.c-company {
  padding-bottom: 80px;
}
.c-company__caption {
  font-size: 2rem;
  position: relative;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .c-company__caption {
    font-size: 1.6rem;
  }
}
.c-company__caption::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  width: 64px;
  height: 1px;
  border-bottom: 2px #314F18 solid;
}
@media screen and (max-width: 768px) {
  .c-company__caption::after {
    width: 48px;
  }
}
.c-company dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-company dl {
    font-size: 1.4rem;
    flex-direction: column;
  }
}
.c-company dt,
.c-company dd {
  padding: 16px;
}
.c-company dt {
  width: 160px;
  border-bottom: 1px #314F18 solid;
}
@media screen and (max-width: 768px) {
  .c-company dt {
    font-size: 1.2rem;
    font-weight: 600;
    color: #999;
    padding: 8px 16px 2px;
    border-bottom: none;
    width: 100%;
  }
}
.c-company dd {
  width: calc(100% - 160px);
  border-bottom: 1px #efefef solid;
}
@media screen and (max-width: 768px) {
  .c-company dd {
    padding: 2px 16px 8px;
    width: 100%;
  }
}

.c-message__block {
  background-image: url("../img/bg_company.png");
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  margin-bottom: 80px;
  height: 468px;
  padding: 40px;
  overflow: scroll;
}
.c-message__catch {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-message__catch {
    font-size: 1.6rem;
  }
}
.c-message__comment {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c-message__comment {
    font-size: 1.4rem;
  }
}
.c-message__ceo {
  text-align: right;
}

.c-partner {
  padding-bottom: 40px;
}
.c-partner h4 {
  background: #efefef;
  padding: 8px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.c-partner ul {
  padding-bottom: 40px;
}
.c-partner li {
  font-size: 1.6rem;
  padding: 12px 40px;
  border-bottom: 1px #efefef dotted;
}

.c-top {
  background: #f6f6f6;
  padding: 0;
  margin-bottom: 80px;
}

.c-top-main img {
  width: 100%;
  height: calc(100vh - 30px - 68px);
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .c-top-main img {
    height: calc(100vh - 28px - 64px);
  }
}
@media screen and (max-width: 768px) {
  .c-top-main img {
    height: calc(35vh - 48px);
  }
}

.c-top-news {
  background: #fff;
}
.c-top-news__caption {
  border-top: 1px #e5e5e5 solid;
  border-bottom: 1px #e5e5e5 solid;
  font-size: 2rem;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .c-top-news__caption {
    font-size: 1.6rem;
    padding: 16px;
  }
}
.c-top-news__container {
  max-width: 1040px;
  width: 100%;
  padding: 40px 20px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .c-top-news__container {
    padding: 24px 20px;
  }
}
.c-top-news__sns {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-top-news__sns {
    flex-direction: column;
    gap: 24px;
  }
  .c-top-news__sns li {
    max-width: 240px;
    width: 100%;
    margin: auto;
  }
}

.c-top-content {
  width: 100%;
  padding: 64px 0;
}
.c-top-content__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-top-content__inner {
    flex-direction: column;
    align-items: center;
  }
}
.c-top-content__inner a {
  background: #000;
  height: 340px;
  width: calc(50% - 10px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-top-content__inner a {
    max-width: 350px;
    width: 100%;
  }
}
.c-top-content__inner a p {
  color: #fff;
  font-size: 2.4rem;
  border-bottom: 1px solid #fff;
  padding: 0 24px 8px 80px;
  display: inline;
  position: absolute;
  right: 0;
  bottom: 32px;
}
@media screen and (max-width: 768px) {
  .c-top-content__inner a p {
    font-size: 1.6rem;
    padding: 0 16px 8px 48px;
  }
}
.c-top-content__inner a:nth-child(1) {
  background: url("../img/img_content01.png") no-repeat;
  background-size: cover;
}
.c-top-content__inner a:nth-child(2) {
  background: url("../img/img_content02.png") no-repeat;
  background-size: cover;
}
.c-top-content__inner a:nth-child(3) {
  background: url("../img/img_content03.png") no-repeat;
  background-size: cover;
}
.c-top-content__inner a:nth-child(4) {
  background: url("../img/img_content04.png") no-repeat;
  background-size: cover;
}

.c-recruit-title {
  position: relative;
  margin-bottom: 40px;
}
.c-recruit-title img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-recruit-title img {
    height: 280px;
    object-fit: cover;
  }
}
.c-recruit-title__info {
  background: #fff;
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 8px;
  font-size: 1.2rem;
}
.c-recruit-title__info span {
  color: #47B39D;
  font-size: 2.4rem;
  font-weight: bold;
}

.c-charm {
  padding-bottom: 80px;
}
.c-charm__catch {
  display: flex;
  justify-content: left;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-charm__catch {
    flex-direction: column;
  }
}
.c-charm__thumb {
  width: 320px;
}
@media screen and (max-width: 768px) {
  .c-charm__thumb {
    width: 100%;
    display: none;
  }
}
.c-charm__thumb img {
  width: 100%;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width: 768px) {
  .c-charm__thumb img {
    height: 180px;
  }
}
.c-charm__info {
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  .c-charm__info {
    width: 100%;
  }
}
.c-charm__info ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-charm__info li {
  display: flex;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-charm__info li {
    font-size: 1.4rem;
  }
}
.c-charm__info li p:nth-child(1) {
  background: #314F18;
  color: #fff;
  width: 64px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.c-charm__info li p:nth-child(2) {
  background: #F8F8F8;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.c-charm__info li p span {
  background: #FFC000;
  font-weight: bold;
}
.c-charm__point {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .c-charm__point {
    font-size: 2rem;
    text-align: center;
  }
}
.c-charm__point span {
  font-size: 3.2rem;
  font-weight: bold;
  color: #47B39D;
}
@media screen and (max-width: 768px) {
  .c-charm__point span {
    font-size: 2.8rem;
  }
}

.c-charm-swiper .swiper-slide {
  width: 100%;
  height: 480px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-charm-swiper .swiper-slide {
    height: 300px;
  }
}
.c-charm-swiper .swiper-slide img {
  background-size: cover;
  object-fit: cover;
}
.c-charm-swiper .swiper-slide .caption {
  background: #314F18;
  color: #fff;
  padding: 8px 16px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-charm-swiper .swiper-slide .caption {
    font-size: 1.6rem;
  }
}
.c-charm-swiper .swiper-slide .description {
  background: rgba(71, 179, 157, 0.6);
  padding: 16px;
  font-size: 2rem;
  color: #fff;
  width: 80%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .c-charm-swiper .swiper-slide .description {
    width: 75%;
    font-size: 1.4rem;
    padding: 8px;
  }
}
.c-charm-swiper__slide01 {
  background: url("../img/slide_charm01.png") no-repeat center center;
  background-size: cover;
}
.c-charm-swiper__slide02 {
  background: url("../img/slide_charm02.png") no-repeat center center;
  background-size: cover;
}
.c-charm-swiper__slide03 {
  background: url("../img/slide_charm03.png") no-repeat center center;
  background-size: cover;
}
.c-charm-swiper__slide04 {
  background: url("../img/slide_charm04.png") no-repeat center center;
  background-size: cover;
}
.c-charm-swiper__slide05 {
  background: url("../img/slide_charm05.png") no-repeat center center;
  background-size: cover;
}
.c-charm-swiper .swiper-button-next,
.c-charm-swiper .swiper-button-prev {
  color: #fff;
}
.c-charm-swiper .swiper-button-next::after,
.c-charm-swiper .swiper-button-prev::after {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-charm-swiper .swiper-button-next::after,
  .c-charm-swiper .swiper-button-prev::after {
    font-size: 2.4rem;
  }
}

.c-voice {
  padding-bottom: 80px;
}
.c-voice__catch {
  display: flex;
  justify-content: left;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-voice__catch {
    flex-direction: column;
  }
}
.c-voice__thumb {
  width: 320px;
}
@media screen and (max-width: 768px) {
  .c-voice__thumb {
    width: 100%;
    display: none;
  }
}
.c-voice__thumb img {
  width: 100%;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width: 768px) {
  .c-voice__thumb img {
    height: 180px;
  }
}
.c-voice__info {
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  .c-voice__info {
    width: 100%;
  }
}
.c-voice__info ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-voice__info li {
  display: flex;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-voice__info li {
    font-size: 1.4rem;
  }
}
.c-voice__info li p:nth-child(1) {
  background: #314F18;
  color: #fff;
  width: 64px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.c-voice__info li p:nth-child(2) {
  background: #F8F8F8;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.c-voice__info li p span {
  background: #FFC000;
  font-weight: bold;
}
.c-voice__point {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .c-voice__point {
    font-size: 2rem;
    text-align: center;
  }
}
.c-voice__point span {
  font-size: 3.2rem;
  font-weight: bold;
  color: #47B39D;
}
@media screen and (max-width: 768px) {
  .c-voice__point span {
    font-size: 2.8rem;
  }
}

.c-voice-swiper .swiper-slide {
  width: 100%;
  height: 480px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-voice-swiper .swiper-slide {
    height: 300px;
  }
}
.c-voice-swiper .swiper-slide img {
  background-size: cover;
  object-fit: cover;
}
.c-voice-swiper .swiper-slide .caption {
  border-left: 6px solid #314F18;
  color: #363636;
  padding: 8px 16px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-voice-swiper .swiper-slide .caption {
    font-size: 1.6rem;
  }
}
.c-voice-swiper .swiper-slide .description {
  background: rgba(71, 179, 157, 0.6);
  padding: 16px;
  font-size: 2rem;
  color: #fff;
  width: 80%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  margin: auto;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .c-voice-swiper .swiper-slide .description {
    width: 75%;
    font-size: 1.4rem;
    padding: 8px;
  }
}
.c-voice-swiper__slide01 {
  background: url("../img/slide_voice01.png") no-repeat top 56px center;
  background-size: cover;
}
.c-voice-swiper__slide02 {
  background: url("../img/slide_voice02.png") no-repeat top 56px center;
  background-size: cover;
}
.c-voice-swiper__slide03 {
  background: url("../img/slide_voice03.png") no-repeat top 56px center;
  background-size: cover;
}
.c-voice-swiper .swiper-button-next,
.c-voice-swiper .swiper-button-prev {
  color: #fff;
}
.c-voice-swiper .swiper-button-next::after,
.c-voice-swiper .swiper-button-prev::after {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-voice-swiper .swiper-button-next::after,
  .c-voice-swiper .swiper-button-prev::after {
    font-size: 2.4rem;
  }
}

.c-requirements {
  padding-bottom: 80px;
}
.c-requirements__caption {
  font-size: 2rem;
  position: relative;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .c-requirements__caption {
    font-size: 1.6rem;
  }
}
.c-requirements__caption::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  width: 64px;
  height: 1px;
  border-bottom: 2px #314F18 solid;
}
@media screen and (max-width: 768px) {
  .c-requirements__caption::after {
    width: 48px;
  }
}
.c-requirements dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-requirements dl {
    font-size: 1.4rem;
    flex-direction: column;
  }
}
.c-requirements dl span {
  color: #666;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-requirements dl span {
    font-size: 1.2rem;
  }
}
.c-requirements dl b {
  color: #47B39D;
  font-weight: bold;
}
.c-requirements dt,
.c-requirements dd {
  padding: 16px;
}
.c-requirements dt {
  width: 160px;
  border-bottom: 1px #314F18 solid;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-requirements dt {
    font-size: 1.2rem;
    font-weight: 600;
    color: #999;
    padding: 8px 16px 2px;
    border-bottom: none;
    width: 100%;
  }
}
.c-requirements dd {
  width: calc(100% - 160px);
  border-bottom: 1px #efefef solid;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-requirements dd {
    padding: 2px 16px 8px;
    width: 100%;
  }
}

.c-business {
  padding-bottom: 80px;
}
.c-business__catch {
  background-image: url("../img/bg_business.png");
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  font-size: 2rem;
  padding: 60px 0;
  font-weight: bold;
  line-height: 2.5;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-business__catch {
    font-size: 1.6rem;
    padding: 32px 0;
  }
}
.c-business__catch span {
  color: #47B39D;
}
@media screen and (max-width: 768px) {
  .c-business__catch {
    flex-direction: column;
  }
}
.c-business__tab {
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  padding: 12px 12px 0;
  border-bottom: 1px #314F18 solid;
}
@media screen and (max-width: 768px) {
  .c-business__tab {
    font-size: 1.4rem;
    padding: 8px 8px 0;
  }
}
.c-business__tab li {
  text-align: center;
  padding: 16px;
  width: 200px;
  border: 1px solid #fff;
  border-top: 3px solid #fff;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .c-business__tab li {
    width: 140px;
    padding: 12px;
  }
}
.c-business__tab li.is-active {
  border: 1px solid #314F18;
  border-top: 3px solid #314F18;
  border-bottom: none;
  background: white;
  border-radius: 8px 8px 0 0;
  color: #314F18;
  font-weight: bold;
  position: relative;
  bottom: -1px;
}
.c-business__content {
  padding: 16px;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-business__content {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.c-business__content h4 {
  font-size: 2.4rem;
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-weight: bold;
  color: #314F18;
}
@media screen and (max-width: 768px) {
  .c-business__content h4 {
    font-size: 2rem;
  }
}
.c-business__content > div {
  display: none;
}
.c-business__content .is-show {
  display: block;
}

.c-achievements {
  padding-bottom: 80px;
}
.c-achievements__list {
  margin-bottom: 40px;
}
.c-achievements__list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px 8px;
}
.c-achievements__list li {
  width: calc(25% - 8px);
}
@media screen and (max-width: 960px) {
  .c-achievements__list li {
    width: calc(33.3333333333% - 8px);
  }
}
@media screen and (max-width: 768px) {
  .c-achievements__list li {
    width: calc(50% - 8px);
  }
}
.c-achievements__list li img {
  object-fit: cover;
  width: 100%;
  height: 240px;
}
@media screen and (max-width: 768px) {
  .c-achievements__list li img {
    height: 200px;
  }
}
.c-achievements__list li p {
  font-size: 1.4rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 4px 2px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-achievements__other {
  background: #efefef;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.c-achievements__other > div {
  width: calc(33.3333333333% - 12px);
}
@media screen and (max-width: 960px) {
  .c-achievements__other > div {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 768px) {
  .c-achievements__other > div {
    width: 100%;
  }
}

.c-contact {
  padding-bottom: 80px;
}
.c-contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-contact input,
.c-contact textarea {
  font-size: 16px;
  padding: 8px;
  border-radius: 4px;
}
.c-contact input[type=submit] {
  background: #314F18;
  color: #fff;
  border: none;
  padding: 16px 32px;
  display: inline-block;
}
.c-contact span {
  font-size: 12px;
  font-weight: bold;
  color: #ff3333;
}

:root {
  font-size: 62.5%;
  --header: 90px;
  scroll-padding: var(--header);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  list-style: none;
}

body,
html {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #363636;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body,
  html {
    min-width: auto;
  }
}

img {
  vertical-align: bottom;
}

input,
a {
  -webkit-appearance: none;
}

a {
  text-decoration: none;
  outline: none;
  color: #3e3a39;
}
a:hover {
  transition: opacity 0.2s;
  opacity: 0.7;
}
a :focus {
  outline: none;
}

.js-default {
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .is-sp {
    display: none;
  }
  .is-pc {
    display: block;
  }
}
.is-md {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-md {
    display: block;
  }
}