@charset "UTF-8";
/*====================================================================================
1. START COMMON ONLY CHILD PAGE.
====================================================================================*/
/*---------- START BREADCRUMB ----------*/
.breadcrumb {
  position: relative;
  padding: 1.2rem 0 6rem;
  z-index: 3;
}
.breadcrumb ul {
  display: flex;
  justify-content: flex-end;
}
.breadcrumb ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 3.5rem;
  font-weight: 500;
  line-height: 1;
}
.breadcrumb ul li:after {
  position: absolute;
  content: "";
  top: 2px;
  bottom: 0;
  right: 1.5rem;
  margin: auto;
  width: 0;
  height: 0;
  border: solid #000;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.breadcrumb ul li:first-child {
  font-family: var(--font-Jost);
}
.breadcrumb ul li:last-child {
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-right: 0;
}
.breadcrumb ul li:last-child:after {
  content: none;
}
.breadcrumb ul li:nth-child(2) {
  white-space: nowrap;
}
.breadcrumb ul li a {
  line-height: 1.2;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}

/*---------- START TITLE PAGE ----------*/
.ttl-page {
  height: 12rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-mint);
}
.ttl-page .cm-title01 {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 767px) {
  .ttl-page {
    margin-bottom: 3rem;
  }
  .ttl-page .cm-title01 .txt-jp {
    font-size: 2.6rem;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 768px) {
  .ttl-page {
    height: 22rem;
  }
}

/*---------- PADDING SECTION ----------*/
.sec-cont {
  padding: 3.5rem 0;
}
@media only screen and (min-width: 768px) {
  .sec-cont {
    padding: 7.5rem 0;
  }
}

/*---------- START TITLE ----------*/
.cm-ttl-green {
  text-align: center;
  color: var(--color-green);
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}
.cm-ttl-green.ttl-sm {
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .cm-ttl-green {
    font-size: 3.6rem;
    margin-bottom: 3rem;
  }
  .cm-ttl-green.ttl-sm {
    font-size: 3rem;
  }
}

.cm-txt01 {
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .cm-txt01 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

.sub-dot_green {
  color: var(--color-green);
}

/*---------- list-indent ----------*/
.list-indent01 li {
  text-indent: -1.5rem;
  margin-left: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .list-indent01 li {
    text-indent: -1.7rem;
    margin-left: 1.7rem;
  }
}

/*====================================================================================
2. START PAGE topics
====================================================================================*/
.list-topics .box-topics {
  width: 100%;
  padding: 3rem 0;
  border-bottom: 3px solid #636363;
}
.list-topics .box-topics:first-child {
  padding-top: 0;
}
.list-topics .box-topics:last-child {
  border-bottom: none;
}
.list-topics .box-topics__head {
  border-bottom: 1px solid #8e8e8e;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.list-topics .box-topics__date {
  font-weight: 500;
}
.list-topics .box-topics__ttl {
  font-size: 1.6rem;
  font-weight: 500;
}
.list-topics .box-topics__img {
  width: 100%;
}
.list-topics .box-topics__img img {
  width: 100%;
}
.list-topics .box-topics__txt {
  width: 100%;
}
.list-topics .box-topics__txt ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.list-topics .box-topics__txt ul li:after {
  position: absolute;
  content: "";
  top: 1.6rem;
  left: 0;
  background: #383838;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
}
.list-topics .box-topics__txt ol {
  list-style-type: decimal-leading-zero;
  counter-reset: section;
}
.list-topics .box-topics__txt ol li {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5rem;
}
.list-topics .box-topics__txt ol > li {
  position: relative;
  counter-increment: section;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.list-topics .box-topics__txt ol > li:before {
  content: counter(section) ".";
}
.list-topics .box-topics__txt ol > li > ol {
  counter-reset: subsection;
  list-style-type: none;
  margin-top: 0.5rem;
  margin-left: 2rem;
}
.list-topics .box-topics__txt ol > li > ol > li {
  position: relative;
  counter-increment: subsection;
  font-size: 1.4rem;
  font-weight: normal;
}
.list-topics .box-topics__txt ol > li > ol > li:before {
  content: counter(section) "." counter(subsection) " ";
}
@media only screen and (max-width: 767px) {
  .list-topics .box-topics__img {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .list-topics .box-topics {
    padding: 6rem 0;
  }
  .list-topics .box-topics__head {
    padding-bottom: 2rem;
    margin-bottom: 3rem;
  }
  .list-topics .box-topics__ttl {
    font-size: 1.8rem;
  }
  .list-topics .box-topics__body {
    display: flex;
    justify-content: space-between;
  }
  .list-topics .box-topics__body.box-reverse {
    flex-direction: row-reverse;
  }
  .list-topics .box-topics__img {
    width: auto;
    min-width: 44%;
    max-width: 44%;
    margin-right: 3%;
  }
  .list-topics .box-topics__img.img-right {
    margin-right: 0;
    margin-left: 3%;
  }
}

/*---------- START pagination ----------*/
.pagination {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: var(--bg-mint);
  gap: 1rem;
  padding: 2rem;
}
.pagination a {
  position: relative;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
  font-size: 1.6rem;
  text-decoration: none;
  border: none;
}
.pagination a.prev:before, .pagination a.next:before {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  border-radius: 0.2rem;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto;
}
.pagination a.next {
  padding-right: 2rem;
}
.pagination a.next:before {
  transform: rotate(45deg);
  right: 0;
}
.pagination a.prev {
  padding-left: 2rem;
}
.pagination a.prev:before {
  transform: rotate(-135deg);
  left: 0;
}
@media only screen and (min-width: 768px) {
  .pagination a {
    font-size: 1.8rem;
  }
  .pagination a:hover {
    color: var(--color-green);
  }
  .pagination a.prev:hover, .pagination a.next:hover {
    background: none;
  }
  .pagination a.prev:hover:before, .pagination a.next:hover:before {
    border-color: var(--color-green);
  }
  .pagination a.next {
    padding-right: 2.5rem;
  }
  .pagination a.prev {
    padding-left: 2.5rem;
  }
}

/*====================================================================================
3. START PAGE recruit
====================================================================================*/
.list-recruit__item {
  width: 100%;
  background: #fff;
  padding: 1.2rem;
  margin-bottom: 2rem;
}
.list-recruit__item:last-child {
  margin-bottom: 0;
}
.list-recruit__ttl {
  color: var(--color-green);
  font-size: 1.8rem;
  border-bottom: 2px solid #f0f3f0;
  padding-bottom: 0.7rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .list-recruit__item {
    padding: 5rem 6rem;
    margin-bottom: 3rem;
  }
  .list-recruit__ttl {
    font-size: 2.4rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
  }
}

/*====================================================================================
2. START PAGE contact
====================================================================================*/
/*---------- START tabs ----------*/
.sec-tab {
  position: relative;
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .sec-tab {
    margin-top: 5rem;
  }
  .sec-tab:before {
    display: block;
  }
}

.tabs {
  display: flex;
  gap: 0.5rem;
}
.tabs .tab {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #efefef;
  width: calc((100% - 0.5rem) / 2);
  height: 5rem;
  text-align: center;
  font-weight: 500;
  font-size: 1.6rem;
  cursor: pointer;
}
.tabs .tab.active {
  background: var(--bg-green);
  color: #fff;
}
.tabs .tab.active:after {
  position: absolute;
  content: "";
  background: var(--bg-green);
  width: 2rem;
  height: 1.5rem;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  bottom: -1.4rem;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .tabs .tab {
    width: 32rem;
    height: 7rem;
    font-size: 1.8rem;
  }
  .tabs .tab.active:after {
    width: 3rem;
    height: 2rem;
    bottom: -1.9rem;
  }
}

/*---------- START tab-content ----------*/
.tab-content {
  display: none;
  margin-top: 2rem;
}
.tab-content.active {
  display: block;
}
@media only screen and (min-width: 768px) {
  .tab-content {
    margin-top: 3rem;
  }
}

/*---------- START form ----------*/
.form {
  display: block;
  width: 100%;
}
.form .form-content__dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #D8D5D5;
}
.form .form-content__dt {
  position: relative;
  display: flex;
  align-items: flex-start;
  font-weight: bold;
}
.form .form-content__dd {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.form .form-content__title {
  position: relative;
  width: 100%;
  font-weight: bold;
  padding-left: 5rem;
}
.form .form-content__title:after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  text-align: center;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  font-size: 1.4rem;
}
.form .form-content__title.hissu:after {
  background: var(--bg-green);
  content: "必須";
}
.form .form-content__title.ninni:after {
  background: #a6a6a6;
  content: "任意";
}
.form .form-content .list-radio01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 3rem;
}
.form .form-content .selectable {
  width: 22rem;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
.form .form-content .error {
  position: absolute;
  bottom: 0;
  left: 1rem;
  color: var(--color-green);
  font-size: 1.3rem;
  font-weight: 500;
}
.form .form-content .ipt-error {
  background: #d8f0de;
}
.form .form-content .p-postal-code {
  width: 14rem;
  margin: 0 1rem;
}
.form .form-content .sec-address {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.form .form-content .sec-address__item {
  display: flex;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .form {
    margin: 5rem auto 0;
  }
  .form .form-content__dt {
    width: 40%;
    padding: 3rem 2rem 3rem 0;
  }
  .form .form-content__dd {
    width: 60%;
    padding: 3rem 2rem 3rem 0;
  }
  .form .form-content__title {
    font-size: 1.8rem;
    padding-left: 8rem;
  }
  .form .form-content__title:after {
    width: 6rem;
    height: 2.5rem;
  }
  .form .form-content .list-cont {
    gap: 1rem 5rem;
  }
  .form .form-content .error {
    font-size: 1.6rem;
    left: 0;
  }
  .form .form-content .sec-address {
    display: flex;
    align-items: center;
    gap: 1rem 3rem;
  }
  .form .form-content .sec-address__item {
    width: auto;
  }
  .form .form-content .selectable {
    width: 30rem;
  }
  .form #formEnd {
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .form {
    margin: 2rem auto 0;
  }
  .form .form-content__dt, .form .form-content__dd {
    display: block;
    width: 100% !important;
    padding: 1rem;
  }
  .form .form-content dt:after {
    height: 2px;
  }
  .form .form-content__title {
    display: block;
    width: 100%;
    font-size: 1.5rem;
  }
  .form .form-content__title:after {
    width: 4rem;
    height: 2rem;
  }
  .form .form-content__dd {
    font-size: 1.6rem;
    padding-bottom: 2rem;
  }
  .form #formEnd {
    margin-top: 3rem;
  }
}

/*---------- START contact-group-btn ----------*/
.contact-group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem auto 0;
  gap: 2rem;
}
.contact-group-btn .contact-btn {
  position: relative;
  display: inline-block;
  width: auto;
  max-width: 100%;
  min-width: auto;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  padding: 0;
  margin-top: 0;
  z-index: 3;
}
.contact-group-btn .contact-btn input {
  outline: none;
  border: none;
  display: inline-block;
  width: 100%;
  background: none !important;
  font-weight: bold;
  cursor: pointer;
  line-height: 1.6;
}
.contact-group-btn #submitButton.disabled {
  background: none;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .contact-group-btn {
    margin: 5rem auto 0;
    gap: 5rem;
  }
  .contact-group-btn .contact-btn {
    width: 38rem;
  }
  .contact-group-btn .contact-btn input {
    padding: 2.6rem 4rem;
  }
  .contact-group-btn .cm-btn__link {
    width: 38rem;
    min-width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .contact-group-btn .contact-btn {
    width: 23rem;
  }
  .contact-group-btn .contact-btn input {
    padding: 1.3rem 2rem;
  }
}

/*---------- START box-pp ----------*/
.box-pp {
  margin-top: 3rem;
}
.box-pp__inner {
  border: 1px solid #000;
  height: 35rem;
  overflow: auto;
  padding: 2rem 1rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .box-pp {
    margin-top: 6rem;
  }
  .box-pp__inner {
    padding: 4rem 2rem;
  }
}

.list-decimal li {
  list-style: decimal;
  margin-left: 1.6rem;
}

/*====================================================================================
3. START PAGE line
====================================================================================*/
/*---------- START style-sec01 ----------*/
.style-sec01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.style-sec01__txt {
  width: 100%;
}
.style-sec01__img {
  width: 100%;
  overflow: hidden;
}
.style-sec01__img img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .style-sec01 {
    padding: 0 1.2rem;
  }
  .style-sec01__inner-txt {
    padding-left: 0 !important;
  }
  .style-sec01__img {
    height: auto !important;
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .style-sec01__txt {
    width: 53%;
    margin-right: -3%;
  }
  .style-sec01__inner-txt {
    max-width: 66rem;
    margin-left: auto;
    padding-top: 10%;
  }
  .style-sec01__img {
    width: 50%;
    height: 65rem;
  }
  .style-sec01__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@media only screen and (max-width: 1366px) {
  .style-sec01__inner-txt {
    padding-left: 2rem;
  }
  .style-sec01__img {
    height: 50rem;
  }
}

/*---------- START style-table01 ----------*/
.style-table01 {
  width: 100%;
  margin-top: 2.5rem;
}
.style-table01 tr th,
.style-table01 tr td {
  padding: 1rem;
}
.style-table01 tr th:first-child,
.style-table01 tr td:first-child {
  width: 70%;
  border-right: 1px solid #cfcfcf;
}
.style-table01 tr td:nth-child(2) {
  text-align: center;
}
.style-table01 thead th {
  background: #4f6a56;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
}
.style-table01 tbody tr:nth-child(even) {
  background: #f0f0f0;
}
.style-table01 tbody td {
  font-size: 1.6rem;
}
.style-table01 tfoot {
  border-top: 2px solid #fff;
}
.style-table01 tfoot td {
  background: #faf7ed;
  font-weight: 500;
  font-size: 1.8rem;
  border-right: none !important;
}
@media only screen and (min-width: 768px) {
  .style-table01 {
    max-width: 89rem;
    margin: 5rem auto 0;
  }
  .style-table01 tbody td {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
  }
  .style-table01 thead th {
    padding: 1.5rem 3rem;
    font-size: 2rem;
  }
  .style-table01 tfoot td {
    padding: 1.5rem;
  }
  .style-table01 tfoot td:first-child {
    padding-left: 10rem;
  }
}

/*---------- START list-two_column ----------*/
.list-two_column {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.list-two_column__item {
  width: 100%;
}
.list-two_column__img {
  width: 100%;
  margin-bottom: 1rem;
}
.list-two_column__img img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .list-two_column {
    gap: 4rem 6rem;
  }
  .list-two_column__item {
    width: calc((100% - 6rem) / 2);
  }
}

/*---------- START sec-schedule ----------*/
.sec-schedule {
  max-width: 89rem;
  margin: 2.5rem auto 0 auto;
}
.sec-schedule__ttl {
  position: relative;
  background: url("../line/images/bg-green_img.webp");
  color: #fff;
  text-align: center;
  padding: 2rem;
}
.sec-schedule__ttl:after {
  position: absolute;
  content: "";
  width: 3.5rem;
  height: 2.2rem;
  background: url("../line/images/bg-green_img.webp");
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  left: 0;
  right: 0;
  bottom: -2.1rem;
  margin: auto;
}
.sec-schedule__body {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 4.5rem;
}
.sec-schedule__txt {
  width: 55%;
}
.sec-schedule__item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}
.sec-schedule__item:after {
  position: absolute;
  content: "";
  background: #000;
  width: 2px;
  height: 100%;
  left: 2.4rem;
  bottom: 0;
  margin: auto;
  z-index: -1;
}
.sec-schedule__item dt {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../line/images/bg-green_img.webp");
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  color: #fff;
  font-size: 1.6rem;
}
.sec-schedule__item dd {
  font-size: 1.4rem;
  padding-left: 0.5rem;
}
.sec-schedule__item:last-child:after {
  display: none;
}
.sec-schedule__img {
  width: 45%;
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
}
.sec-schedule__img img {
  width: 100%;
}
.sec-schedule.bg-green_img2 .sec-schedule__ttl,
.sec-schedule.bg-green_img2 .sec-schedule__list-item {
  background: url("../line/images/bg-green_img2.webp");
}
.sec-schedule.bg-green_img2 .sec-schedule__ttl:after,
.sec-schedule.bg-green_img2 .sec-schedule__list-item:after {
  background: url("../line/images/bg-green_img2.webp");
}
.sec-schedule.bg-green_img2 .sec-schedule__item dt {
  background: url("../line/images/bg-green_img2.webp");
}
.sec-schedule__list {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 2.5rem;
}
.sec-schedule__list-item {
  position: relative;
  width: 100%;
  background: url("../line/images/bg-green_img.webp");
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
}
.sec-schedule__list-item:after {
  position: absolute;
  content: "";
  width: 3.5rem;
  height: 2.2rem;
  background: url("../line/images/bg-green_img.webp");
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  left: 0;
  right: 0;
  bottom: -2.1rem;
  margin: auto;
}
.sec-schedule__list-item:last-child:after {
  display: none;
}
.sec-schedule__list-item .time {
  width: 20%;
  text-align: center;
}
.sec-schedule__list-item .txt {
  width: 40%;
  text-align: center;
}
.sec-schedule__list-item .icon {
  width: 20%;
  text-align: center;
  margin: -1rem 0;
}
@media only screen and (max-width: 767px) {
  .sec-schedule__list-item {
    padding: 0.5rem 0;
  }
  .sec-schedule__list-item:after {
    width: 2rem;
    height: 1.5rem;
    bottom: -1.5rem;
  }
  .sec-schedule__list-item .time {
    width: 5.5rem;
  }
  .sec-schedule__list-item .txt {
    width: calc(100% - 12rem);
  }
  .sec-schedule__list-item .icon {
    width: 5rem;
  }
  .sec-schedule__list-item .icon img {
    width: 5rem;
  }
}
@media only screen and (min-width: 768px) {
  .sec-schedule {
    margin-top: 5rem;
  }
  .sec-schedule__ttl {
    padding: 4rem;
  }
  .sec-schedule__ttl:after {
    width: 5.6rem;
    height: 3.5rem;
    bottom: -3.4rem;
  }
  .sec-schedule__body {
    margin-top: 9rem;
  }
  .sec-schedule__txt {
    width: 45%;
  }
  .sec-schedule__item {
    padding-bottom: 6rem;
  }
  .sec-schedule__item:after {
    left: 4.6rem;
  }
  .sec-schedule__item dt {
    width: 9.5rem;
    height: 9.5rem;
    min-width: 9.5rem;
    font-size: 2rem;
  }
  .sec-schedule__item dd {
    font-size: 1.8rem;
    font-weight: 500;
    padding-left: 3rem;
  }
  .sec-schedule__img {
    width: 41%;
    gap: 3rem;
  }
  .sec-schedule__list {
    gap: 5rem;
  }
  .sec-schedule__list-item {
    font-size: 2rem;
  }
}

/*====================================================================================
4. START PAGE company
====================================================================================*/
.p-company #cm-main .main-cont {
  padding-bottom: 0 !important;
}
.p-company #history {
  background: url("../company/images/s2-bg.webp") no-repeat bottom center;
}
.p-company #kind_company {
  background: url("../company/images/s5-bg.webp");
  color: #fff;
}

/*---------- START style-table02 ----------*/
.style-table02 {
  width: 100%;
}
.style-table02 th,
.style-table02 td {
  border: 1px solid #ccc;
  padding: 1rem;
  text-align: left;
}
.style-table02 th {
  background-color: #f0f3f1;
  font-weight: bold;
}
.style-table02 th {
  border-left: none;
}
.style-table02 td {
  border-right: none;
}
.style-table02 .map-iframe {
  width: 100%;
  height: 18rem;
  margin-top: 1rem;
}
.style-table02 .map-iframe iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .style-table02 th,
  .style-table02 td {
    display: block;
    width: 100%;
  }
  .style-table02 th {
    border-bottom: none;
    border-right: none;
  }
  .style-table02 td {
    border-left: none;
    border-bottom: none;
  }
}
@media only screen and (min-width: 768px) {
  .style-table02 th,
  .style-table02 td {
    padding: 1.8rem 3rem;
  }
  .style-table02 .map-iframe {
    margin-top: 1.5rem;
    height: 25rem;
  }
}

/*---------- START list-history  ----------*/
.list-history {
  width: 100%;
  max-width: 54rem;
  margin: auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-top: 4rem;
}
.list-history__item {
  position: relative;
  width: 100%;
  display: flex;
  padding-bottom: 3rem;
  line-height: 1.1;
}
.list-history__item dt {
  position: relative;
  color: var(--color-green);
  font-weight: bold;
  text-align: left;
  width: 10rem;
  min-width: 10rem;
}
.list-history__item dt:after, .list-history__item dt:before {
  position: absolute;
  content: "";
  background: var(--bg-green);
  top: 0;
}
.list-history__item dt:after {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  right: 0;
}
.list-history__item dt:before {
  width: 2px;
  height: calc(100% + 3rem);
  right: 0.6rem;
}
.list-history__item dt span {
  display: block;
  width: 100%;
  font-size: 1.6rem;
}
.list-history__item dd {
  padding-left: 1rem;
}
.list-history__item:last-child {
  padding-bottom: 3rem !important;
}
.list-history__item:last-child:after {
  position: absolute;
  content: "";
  background: var(--bg-green);
  width: 8px;
  height: 6px;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  bottom: -5px;
  left: 8.9rem;
}
.list-history__item:last-child dt:before {
  height: calc(100% + 3rem) !important;
}
@media only screen and (min-width: 768px) {
  .list-history {
    margin-top: 8rem;
  }
  .list-history__item {
    padding-bottom: 6rem;
  }
  .list-history__item dt {
    width: 16rem;
    min-width: 16rem;
  }
  .list-history__item dt:after {
    width: 2rem;
    height: 2rem;
  }
  .list-history__item dt:before {
    height: calc(100% + 6rem);
    right: 0.9rem;
  }
  .list-history__item dt span {
    font-size: 2.4rem;
  }
  .list-history__item dd {
    padding-left: 2.5rem;
  }
  .list-history__item:last-child:after {
    left: 14.6rem;
  }
}

/*---------- START two-box  ----------*/
.two-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}
.two-box__item {
  background: #fff;
  width: 100%;
}
.two-box__ttl {
  background: #626262;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.two-box__body {
  padding: 2rem 1.2rem;
}
@media only screen and (min-width: 768px) {
  .two-box {
    gap: 6rem;
  }
  .two-box__item {
    width: calc((100% - 6rem) / 2);
  }
  .two-box__body {
    padding: 4rem 3rem;
  }
}

/*====================================================================================
5. START PAGE recruitment
====================================================================================*/
.p-recruitment .s1-img {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-recruitment .s1-img img {
  width: 100%;
}
.p-recruitment .s3-cont1 {
  position: relative;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .p-recruitment .s3-cont1 {
    margin: 2rem 0;
  }
}
@media only screen and (min-width: 768px) {
  .p-recruitment .s1-img img {
    width: 50%;
  }
  .p-recruitment .s3-cont1 {
    width: 72%;
    padding: 4rem 4rem 4rem 0;
    margin-top: -10rem;
  }
}

.s1-img01 {
  position: relative;
}
.s1-img01__txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  color: #fff;
  text-align: center;
  font-family: var(--font-Shippori_Mincho);
  line-height: 1.3;
  font-size: 3.6rem;
}
.s1-img01__txt small {
  font-size: 3.2rem;
}
@media only screen and (min-width: 768px) {
  .s1-img01__txt {
    font-size: 8.6rem;
  }
  .s1-img01__txt small {
    font-size: 7.4rem;
  }
}

/*---------- START box-CEO  ----------*/
.box-CEO {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.box-CEO__txt {
  width: 100%;
}
.box-CEO__img {
  width: 100%;
}
.box-CEO__img img {
  width: 100%;
}
.box-CEO__img p {
  line-height: normal;
}
.box-CEO__img p .name {
  width: 16rem;
  display: inline-block;
}
.box-CEO__img p .name img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .box-CEO {
    flex-direction: column-reverse;
  }
  .box-CEO__img {
    margin-bottom: 2rem;
    overflow: hidden;
  }
  .box-CEO__img img {
    width: 100%;
    height: 35rem;
    object-fit: cover;
    object-position: top center;
  }
}
@media only screen and (min-width: 768px) {
  .box-CEO__txt {
    width: 62%;
  }
  .box-CEO__img {
    width: 35%;
  }
}

/*---------- START style-sec02 ----------*/
.style-sec02 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.style-sec02__txt {
  width: 100%;
}
.style-sec02__img {
  width: 100%;
  overflow: hidden;
}
.style-sec02__img img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .style-sec02 {
    gap: 0;
  }
  .style-sec02__txt {
    width: 56%;
  }
  .style-sec02__img {
    width: 41%;
  }
}

/*---------- START list-box_white ----------*/
.list-box_white {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 1rem;
}
.list-box_white__item {
  background: #fff;
  width: calc((100% - 1rem) / 2);
  text-align: center;
  padding: 1rem 0.5rem;
}
.list-box_white__ttl {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.list-box_white__img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7rem;
  margin-bottom: 1rem;
}
.list-box_white__txt {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
}
.list-box_white__txt .number {
  font-family: var(--font-Jost);
  font-size: 3rem;
  font-weight: 500;
}
.list-box_white__txt small {
  display: block;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .list-box_white {
    margin-top: 4rem;
    gap: 2rem;
  }
  .list-box_white__item {
    width: 26rem;
    padding: 2rem;
  }
  .list-box_white__ttl {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .list-box_white__img {
    margin-bottom: 1.5rem;
  }
  .list-box_white__txt {
    font-size: 3rem;
  }
  .list-box_white__txt .number {
    font-size: 5rem;
  }
}

/*====================================================================================
6. START PAGE interview
====================================================================================*/
/*---------- START list-box_white ----------*/
.list-anchor {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.list-anchor .cm-btn {
  width: calc((100% - 1rem) / 2);
}
.list-anchor .cm-btn__link {
  width: 100%;
  min-width: auto;
}
@media only screen and (min-width: 768px) {
  .list-anchor {
    gap: 7rem;
  }
  .list-anchor .cm-btn {
    width: 26rem;
  }
  .list-anchor .cm-btn__link {
    width: 100%;
    padding: 1.6rem 4rem;
  }
}

/*---------- START interview-infor ----------*/
.interview-infor {
  background: var(--bg-green);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.interview-infor__img {
  width: 60%;
}
.interview-infor__img img {
  width: 100%;
}
.interview-infor__txt {
  width: 40%;
  color: #fff;
  padding-left: 1rem;
}
.interview-infor__number {
  font-family: var(--font-Jost);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.interview-infor__name {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 1rem;
}
.interview-infor__name span {
  font-size: 2rem;
  padding-right: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .interview-infor__img {
    width: 64.5%;
  }
  .interview-infor__txt {
    width: 35.5%;
    padding-left: 5rem;
  }
  .interview-infor__number {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
  .interview-infor__name {
    font-size: 1.8rem;
    margin-top: 2rem;
  }
  .interview-infor__name span {
    font-size: 3rem;
    padding-right: 1rem;
  }
}

/*---------- START interview-infor ----------*/
.interview-detail {
  position: relative;
  padding-left: 3.5rem;
  margin-top: 3rem;
}
.interview-detail:after {
  position: absolute;
  content: "Q";
  background: var(--bg-green);
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-Jost);
  font-size: 1.8rem;
  font-weight: 500;
  top: 0;
  left: 0;
}
.interview-detail__ttl {
  padding: 0.5rem 0;
}
.interview-detail__body {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.interview-detail__txt {
  width: 100%;
}
.interview-detail__img {
  width: 100%;
}
.interview-detail__img img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .interview-detail__body {
    flex-direction: column-reverse;
  }
  .interview-detail__img {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .interview-detail {
    padding-left: 6.5rem;
    margin-top: 6rem;
  }
  .interview-detail:after {
    width: 5rem;
    height: 5rem;
    font-size: 2.4rem;
  }
  .interview-detail__txt {
    width: 48%;
  }
  .interview-detail__img {
    width: 48%;
  }
}

/*====================================================================================
7. START PAGE benefits
====================================================================================*/
.box-mint_dark {
  padding: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .box-mint_dark {
    padding: 4rem;
  }
}

/*---------- START interview-infor ----------*/
.style-table03 {
  margin-top: 3rem;
}
.style-table03__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.style-table03__row-th {
  width: 100%;
  background: var(--bg-green);
  display: flex;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  padding: 1.2rem;
}
.style-table03__row-td {
  width: 100%;
  background: #f3f6f4;
  padding: 1.2rem;
}
.style-table03__row-td p + h3 {
  margin-top: 1rem;
}
.style-table03.table-yellow .style-table03__row-th {
  background: #f1ba36;
}
@media only screen and (min-width: 768px) {
  .style-table03 {
    margin-top: 5rem;
  }
  .style-table03__row {
    margin-bottom: 2rem;
  }
  .style-table03__row-th {
    width: 26rem;
    font-size: 2.4rem;
    padding: 2rem;
  }
  .style-table03__row-td {
    width: calc(100% - 26rem);
    padding: 1.5rem 5rem;
  }
  .style-table03__row-td p + h3 {
    margin-top: 1.5rem;
  }
}