/* ------------------------------------------------------------
// ABOUT US
------------------------------------------------------------ */
.content-ttl-img {
  display: flex;
  align-items: center;
  width: 100%;
  height: 300px;
  padding: 0 20px;
  background: url(../images/about/content-ttl-img.png) no-repeat center center/cover;
}
.content-ttl-img .content-ttl-box {
  display: inline-block;
}
.content-ttl-img .content-ttl-box .ttl-en {
  font-size: 60px;
  font-weight: 500;
  color: #ffffff;
}
.content-ttl-img .content-ttl-box .ttl-en::first-letter {
  font-size: 90px;
  font-weight: 700;
  color: #c7000a;
  padding-right: 2px;
}
.content-ttl-img .content-ttl-box .ttl-jp {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}
.content-ttl-img .content-ttl-box .ttl-jp::before {
  content: "";
  height: 2px;
  flex-grow: 1;
  background-color: #c7000a;
}
.content-ttl-img .content-ttl-box .ttl-jp::before {
  margin-right: 0.5em;
}
@media screen and (max-width: 575px) {
  .content-ttl-img {
    height: 140px;
  }
  .content-ttl-img .content-ttl-box {
    padding-bottom: 20px;
  }
  .content-ttl-img .content-ttl-box .ttl-en {
    font-size: 24px;
  }
  .content-ttl-img .content-ttl-box .ttl-en::first-letter {
    font-size: 36px;
  }
  .content-ttl-img .content-ttl-box .ttl-jp {
    font-size: 16px;
  }
}

.about-two-box {
  display: flex;
  gap: 60px 0;
  margin: 0 0 120px;
}
.about-two-box .box {
  display: flex;
  align-items: center;
  width: 50%;
}
.about-two-box .box:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-two-box .box:first-child img {
  max-width: 400px;
}
.about-two-box .box:last-child .logo-mark img {
  max-width: 300px;
}
.about-two-box .box:last-child .txt {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 10px;
}
.about-two-box .box:last-child p {
  line-height: 1.8;
}
@media print, screen and (max-width: 991px) {
  .about-two-box {
    display: block;
    margin: 0 0 60px;
  }
  .about-two-box .box {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media print, screen and (max-width: 575px) {
  .about-two-box .box:first-child img {
    max-width: 240px;
  }
  .about-two-box .box:last-child .logo-mark img {
    max-width: 240px;
    margin: 0 auto;
  }
  .about-two-box .box:last-child .txt {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

/* ------------------------------------------------------------
// table
------------------------------------------------------------ */
.about-table-box {
  display: flex;
  gap: 40px 40px;
  margin: 0 0 40px;
  /* ----------
  .about-table {
    width: 60%;
  }
  .slider-box {
    width: 40%;
  }
  @media screen and (max-width: 991px) {
    flex-direction: column;
    .about-table {
      width: 100%;
    }
    .slider-box {
      width: 100%;
    }
  }
  ---------- */
}
.about-table-box .about-table {
  width: 100%;
}

.about-table tr {
  display: grid;
  grid-template-columns: 220px auto;
}
.about-table tr th,
.about-table tr td {
  font-size: 16px;
  text-align: left;
  vertical-align: top;
  padding: 1em 1.5em;
  border-top: 2px solid #ffffff;
}
.about-table tr th {
  font-weight: 600;
  color: #ffffff;
  background: #c7000a;
}
.about-table tr td {
  font-size: 15px;
  background: #f5f5f5;
}
.about-table tr:first-child th, .about-table tr:first-child td {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .about-table tr {
    display: flex;
    flex-direction: column;
    border-top: none;
  }
  .about-table tr th,
  .about-table tr td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .about-table tr th {
    padding: 0.6em 1em;
  }
  .about-table tr td {
    padding: 1em 1em 1.4em;
  }
}

/* ------------------------------------------------------------
// Slider
------------------------------------------------------------ */
.slider-box .slick-initialized .slick-slide {
  border: 2px solid #cccccc;
}
.slider-box .slick,
.slider-box .thumbnail {
  max-width: 900px;
  margin: 0 auto;
}
.slider-box .thumbnail {
  margin: 10px auto 0;
}
.slider-box .thumbnail .slick-slide {
  margin: 0 3px;
  cursor: pointer;
}
.slider-box .thumbnail .slick-slide.slick-current {
  border-color: #c7000a;
}
@media screen and (max-width: 767px) {
  .slider-box .thumbnail .slick-slide {
    padding: 2px;
    border: 1px solid #ffffff;
  }
}
.slider-box .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 18px;
  color: #333;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s;
}
.slider-box .arrow.prev {
  left: 0;
  border-radius: 0 10px 10px 0;
}
.slider-box .arrow.next {
  right: 0;
  border-radius: 10px 0 0 10px;
}
.slider-box .arrow:hover {
  background: #c7000a;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .slider-box .arrow {
    font-size: 12px;
    padding: 4px 8px;
  }
}