@charset "utf-8";
/*=======================================================================
企業情報
=======================================================================*/
.about_title {
  background-image: url("../img/title/bg_ti_about.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* =====  自動スライダー（コントローラーなし） ===== */
.slider-container {
  overflow: hidden;
  width: 100%;
}
.slider-track {
  display: flex;
  will-change: transform;
}
.slider-item {
  flex-shrink: 0;
  min-width: clamp(180px, 23.44vw, 450px);
}
.slider-item img {
  display: block;
  width: 100%;
  height: auto;
}
/* ------------------------------
PC：3枚＋少し4枚目
100% ÷ 3.5 ≒ 28.57%
------------------------------ */
.slider-item {
  width: calc(100% / 3.5);
}
/* ------------------------------
768px以下：2枚＋少し3枚目
100% ÷ 2.5 = 40%
------------------------------ */
@media (max-width: 768px) {
  .slider-item {
    width: calc(100% / 2.5);
  }
}
/* ------------------------------
アニメーション
------------------------------ */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.greeting {
  font-size: 112.5%;
}
/* =====  YOSHIDAの生産力 ===== */
#appeal dt {
  font-size: clamp(1.5rem, 1.35rem + 0.75vw, 2.25rem) /*24-36|320-1920*/;
  background: #ef89a1;
  color: #fff;
  border-radius: 100vh;
  text-align: center;
  line-height: 112px;
  width: 112px;
  font-weight: 700;
  margin-bottom: 16px;
  margin: 0 auto 16px auto;
}
#appeal dd {
  padding: 0 5% 2%;
}
@media screen and (min-width: 769px) {
  .appeal_text {
    width: 30%;
    padding-left: 5em;
  }
  #appeal dt {
    line-height: 145px;
    width: 145px;
    margin-bottom: 24px;
  }
}
/* =====  ロゴ紹介 ===== */
.logo-text-section {
  position: relative;
}
.logo-text-section h4.under_line:after {
  background: #ef89a1;
}
.logo-text-inner {
  display: flex;
  align-items: flex-start;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* ロゴ */
.logo-area {
  width: 240px;
}
.logo-area img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* テキスト */
.logo-text-area {
  flex: 1;
  padding-left: 0;
  padding-top: 24px;
}
.logo-text-inner {
  display: block;
}
.logo-area {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 16px 0;
  z-index: 10;
  width: 100%;
}
.logo-area img {
  display: block;
  margin: auto;
  width: 50%;
}
.logo_mean_text {
  font-size: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem) /*40-60|320-1920*/;
  font-weight: 900;
  text-align: center;
}
.logo_mean_middle_head {
  font-size: clamp(1.125rem, 1.05rem + 0.38vw, 1.5rem) /*18-24|320-1920*/;
  font-weight: 700;
}
.logo_mean_middle_text {
  font-size: clamp(0.938rem, 0.9rem + 0.19vw, 1.125rem) /*15-18|320-1920*/;
  letter-spacing: 0;
  font-weight: 600;
}
.logo_color_text {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem) /*16-20|320-1920*/;
}
/* ロゴバリエーション */
.logo_sub {
  width: 80%;
  max-width: 480px;
}
@media (min-width: 769px) {
  .logo-text-inner {
    display: flex;
  }
  .logo-text-section {
    padding: 100px 0;
  }
  .logo-area {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    width: 35%;
    max-width: 240px;
    pointer-events: none;
  }
  .logo_mean_text {
    text-align: left;
  }
}
/* =====  会社概要 ===== */
#outline dl {
  width: 90%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
#outline dl div {
  margin-bottom: 24px;
  position: relative;
}
@media (max-width: 768px) {
  #outline dl div:after {
    position: absolute;
    content: "";
    background: #ef89a1;
    width: 100%;
    height: 1px;
    bottom: -12px;
  }
}
#outline dl dt,
#outline dl dd {
  padding: 2% 0;
}
#outline dl dt {
  font-weight: 700;
}
@media (min-width: 769px) {
  #outline dl dt,
  #outline dl dd {
    border-bottom: 1px solid;
    padding: 4% 0;
  }
  #outline dl dt {
    border-color: #666;
  }
  #outline dl dd {
    border-color: #ef89a1;
  }
  #outline dl dt {
    width: 36.5%;
  }
  #outline dl dd {
    width: 62.5%;
  }
}
/* =====  沿革 ===== */
#history {
  width: 100%;
  overflow-x: hidden;
  margin-top: -60px;
}
.horizontal-handle-slider {
  width: 100%;
  overflow-x: hidden;
}
.slider-align {
  margin-left: 5%;
}
.handle-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.handle-slider-wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  background: #ef89a1;
}
.handle-slider {
  display: flex;
  gap: 20px;
  width: max-content;
  transition: transform 0.3s ease;
  will-change: transform;
}
.handle-slider-panel {
  background: #fff;
  padding: 16px;
  position: relative;
  width: 240px;
  min-height: 200px;
}
.handle-slider-panel h3,
.handle-slider-panel p {
  font-size: 100%;
  color: #111;
  text-align: left;
}
.handle-slider-panel h3 {
  margin-bottom: 16px;
}
.handle-slider-panel p:last-of-type {
  position: absolute;
  color: #ef89a1;
  bottom: 16px;
  right: 16px;
}
.slider-progress {
  position: relative;
  width: 90%;
  height: 30px;
  margin-top: 24px;
  border: 1px solid #ccc;
  border-radius: 100vh;
}
.slider-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 100vh;
}
.slider-progress-handle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100px;
  height: 30px;
  background: #ef89a1;
  border-radius: 100vh;
  transform: translateY(-50%);
  cursor: pointer;
  touch-action: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.slider-progress-handle::before,
.slider-progress-handle::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 100%;
  color: #fff;
  line-height: 1;
}
.slider-progress-handle::before {
  content: "\f104";
}
.slider-progress-handle::after {
  content: "\f105";
}
@media screen and (min-width: 769px) {
  .slider-align {
    margin-left: calc((100vw - min(640px, 100%)) / 2);
  }

  .slider-progress {
    max-width: 640px;
  }
}

/* =====  MAP ===== */
#map {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
