/* --------------------------------------------------- */
/* crosstalk.htm */
.crosstalk-list-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(50px, 6.4vw, 80px);
  margin-bottom: 50px;
}

.crosstalk-list-container {
  flex-shrink: 0;
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
  touch-action: manipulation; /* タップ操作の最適化 */
  -webkit-tap-highlight-color: transparent; /* iOSの青いハイライトを無効化 */
}

.crosstalk-list-container img {
  width: clamp(340px, 44vw, 550px);
  height: clamp(340px, 44vw, 550px);
}

.crosstalk-list-head {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(340px, 44vw, 550px);
  height: clamp(60px, 8vw, 100px);
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.crosstalk-list-head h3 {
  font-size: clamp(22px, 2.88vw, 3.6rem);
  font-weight: 500;
  color: #0d3955;
}

.crosstalk-list-container:hover:active {
  transform: scale(0.97);
  opacity: 0.8;
  border-radius: 4px;
}

@media (hover: hover) {
  .crosstalk-list-container:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .crosstalk-list-flex {
    flex-direction: column;
    gap: 20px;
  }

  .crosstalk-list-container img {
    width: clamp(300px, 90vw, 550px);
    height: clamp(300px, 90vw, 550px);
  }

  .crosstalk-list-head {
    width: clamp(340px, 90vw, 550px);
    height: clamp(55px, 16.4vw, 100px);
  }
}
/* end crosstalk.htm */
/* --------------------------------------------------- */

/* --------------------------------------------------- */
/* crosstalk_xx.htm */
.crosstalk_d-fv-container {
  width: 100%;
  margin: 100px auto 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.crosstalk_d-fv-container h1 {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto 20px;
  font-size: clamp(2.0rem, 3.11vw, 4.2rem);
  font-weight: bold;
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: #567588;
}

.crosstalk_d-fv-container img {
  width: 100%;
}

@media screen and (max-width: 1350px) {
  .crosstalk_d-fv-container h1 {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .crosstalk_d-fv-container {
    margin: 30px auto 50px;
  }
}

/* lead */
.crosstalk_d-lead-container p {
  font-size: clamp(1.4rem, 3.25vw, 1.8rem);
  font-weight: 500;
  line-height: 2.0;
  color: #4d4d4d;
}

.crosstalk_d-lead-container p:last-of-type {
  text-align: right;
}

.crosstalk_d-introduction {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-template-rows: auto;
  column-gap: 20px;
  row-gap: 20px;
  margin: 80px auto 100px;
  place-items: center;
  align-items: flex-start;
}

.crosstalk_d-sleep-introduction {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 80px auto 100px;
}

.crosstalk_d-people img {
  width: 100%;
  margin-bottom: 30px;
}

.crosstalk_d-sleep-introduction .crosstalk_d-people img {
  width: clamp(165px, 21.5vw, 220px);
}

.crosstalk_d-people div p {
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.35;
  color: #4d4d4d;
  text-align: center;
}

@media screen and (max-width: 1250px) {
  .crosstalk_d-introduction {
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .crosstalk_d-introduction {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    column-gap: 30px;
    row-gap: 20px;
    margin: 50px auto 0;
  }

  .crosstalk_d-sleep-introduction {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-template-rows: auto;
    column-gap: 30px;
    row-gap: 20px;
    margin: 50px auto 0;
  }
  
  .crosstalk_d-people img {
    margin-bottom: 10px;
  }
}

/* crosstalk_d-main */
.crosstalk_d-wrapper {
  width: 100%;
  margin-bottom: 100px;
}

.crosstalk_d-container {
  max-width: 1600px;
  width: 100%;
}

.crosstalk_d-container:nth-of-type(odd) {
  margin: 50px 0 100px auto;
  padding-left: 20px;
}

.crosstalk_d-container:nth-of-type(even) {
  margin: 50px auto 100px 0;
  padding-right: 20px;
}

.crosstalk_d-container:last-of-type {
  max-width: 1280px;
  margin: 0 auto 100px;
}

.crosstalk_d-head {
  width: 100%;
}

.crosstalk_d-container:nth-of-type(odd) .crosstalk_d-head {
  text-align: left;
}

.crosstalk_d-container:nth-of-type(even) .crosstalk_d-head {
  text-align: right;
}

.crosstalk_d-head h2 {
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 0.06em;
  color: #9b8999;
  padding-bottom: 30px;
  position: relative;
}

.crosstalk_d-head h2::after {
  content: '';
  width: clamp(300px, 95vw, 1600px);
  height: 1px;
  background: #ccc;
  position: absolute;
  bottom: 0;
  right: 0;
}

.crosstalk_d-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(30px, 4.12vw, 70px);
  margin-top: 50px;
}

.crosstalk_d-container:nth-of-type(even) .crosstalk_d-flex {
  flex-direction: row-reverse;
}

.crosstalk_d-container:last-of-type .crosstalk_d-flex {
  flex-direction: column;
  place-items: center;
}

.crosstalk_d-talk-wrapper {
  max-width: 1200px;
  text-align: left;
}

.crosstalk_d-talk-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}

.crosstalk_d-container:last-of-type .crosstalk_d-talk-container {
  justify-content: flex-start;
}

.talk-people {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.talk-people img {
  width: clamp(40px, 9.13vw, 100px);
  flex-shrink: 0;
  margin-bottom: 10px;
  border-radius: 50%;
}

.talk-people span {
  font-size: clamp(1.4rem, 1.83vw, 2.0rem);
  font-weight: bold;
  line-height: 1.35;
  color: #6e8899;
}

.crosstalk_d-talk-container div p {
  font-size: clamp(1.4rem, 1.83vw, 1.6rem);
  font-weight: 500;
  line-height: 1.3;
  color: #4d4d4d;
  white-space: pre-wrap;
}

.crosstalk_d-img {
  flex-shrink: 0;
}

.crosstalk_d-img img {
  width: clamp(360px, 47.4vw, 910px);
}

.crosstalk_d-container:last-of-type .crosstalk_d-img img {
  width: clamp(940px, 92.2vw, 1180px);
}

@media screen and (max-width: 1700px) {
  .crosstalk_d-container {
    width: 95%;
  }
}

@media screen and (max-width: 1023px) {
  .crosstalk_d-container:nth-of-type(odd) {
    margin: 50px auto 80px;
    padding-left: 0;
  }

  .crosstalk_d-container:nth-of-type(even) {
    margin: 50px auto 80px;
    padding-right: 0;
  }

  .crosstalk_d-container:last-of-type {
    margin: 0 auto 80px;
  }

  .crosstalk_d-container:nth-of-type(even) .crosstalk_d-head {
    text-align: left;
  }

  .crosstalk_d-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(30px, 4.12vw, 70px);
    margin-top: 50px;
  }

  .crosstalk_d-container:nth-of-type(even) .crosstalk_d-flex {
    flex-direction: column;
  }

  .crosstalk_d-talk-container {
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 30px;
  }

  .crosstalk_d-img img {
    width: 100%;
  }

  .crosstalk_d-container:last-of-type .crosstalk_d-img img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .crosstalk_d-container {
    width: 100%;
  }

  .crosstalk_d-container:nth-of-type(odd) {
    margin: 0 auto 80px;
  }

  .crosstalk_d-container:nth-of-type(even) {
    margin: 0 auto 80px;
  }

  .crosstalk_d-head {
    width: 90%;
    margin: 0 auto;
  }

  .crosstalk_d-head h2 {
    font-size: clamp(1.8rem, 4.4vw, 2.0rem);
    padding-bottom: 10px;
  }

  .crosstalk_d-head h2::after {
    width: clamp(300px, 90vw, 1600px);
  }

  .crosstalk_d-flex {
    margin-top: 20px;
    gap: 0;
  }

  .crosstalk_d-talk-wrapper {
    width: 90%;
    margin: 0 auto;
  }

  .crosstalk_d-talk-container {
    align-items: flex-start;
    gap: 20px;
  }
}

/* end crosstalk_xx.htm */
/* --------------------------------------------------- */