@charset "utf-8";
@import url("root.css");

/***************************************
-------------- PURCHASE --------------
***************************************/

.company_wrap {
	
	display: flex;
flex-direction: column;
	width: 100%;
}

.company_wrap {}


.company_wrap table {
  border-collapse:collapse;
  border-spacing:0;
  width: 100%;
  margin: 0 0 0rem;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
  border-top: 1px solid #CCC;
}
.company_wrap table tr {
  border-bottom: 1px solid #CCC;
}
.company_wrap table th {
  vertical-align: middle !important;
  padding: 10px 15px;
  /*white-space: nowrap;*/
  width: 24%;
  text-align: left;
  font-weight: 500;
  background-color: #f5f6ff;
}
.company_wrap table td {
  padding: 10px 15px;
  text-indent: 0px;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .company_wrap table {
    width: 100%;
  }
  .company_wrap table th,
  .company_wrap table td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
  .company_wrap table th {
    padding: 10px 10px 10px;
    background-color: #f5f6ff;
  }
  .company_wrap table td {
    padding: 10px 10px 10px;
  }
}

/*------------------------------*/


.about_Wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  .about_txt {
    width: 60%;
  }
  .about_slider_wrap {
    width: 36%;
  }
}

@media (max-width: 599.98px) {
  .about_Wrap {
    .about_txt {
      width: 100%;
      order: 2;
    }
    .about_slider_wrap {
      width: 100%;
      order: 1;
      margin-bottom: clamp(10px, 2vw, 20px);
    }
  }
}

.access_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(15px, 3vw, 30px) 4%;
  counter-reset: listnum;
  list-style: none;
}
.access_box {
  width: calc(92% / 3);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  .access_txt {
    margin-top: clamp(5px, 1vw, 10px);
  }
  .access_txt::before{
    font-size: clamp(2.4rem, 4.5vw, 3.2rem);
    font-style: italic;
    font-weight: 600;
    color: #b4b4e4;
    line-height: 1.0;
    counter-increment: listnum;
    content: counter(listnum);
    margin-right: 5px;
  }
}

.access_img {
  width: 100%;
  img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 599.98px) {
  .access_box {
    width: calc(96% / 2);
  }
}


.about_slider_thumb .slick-track {
  transform:unset!important;
}


/* =======================
  PC
======================== */
@media screen and (min-width: 1200px) {
}

/* =======================
  TABLET
======================== */
@media screen and (max-width: 1199px) {
}

/* =======================
  SP
======================== */
