@charset "UTF-8";
/* ============================================ */
/* cross-talk
/* ============================================ */
/* ===== top-area ===== */
#top-area {
  position: relative;
  width: 100%;
  height: calc(100vh - 86px - 230px);
  height: calc(100svh - 86px - 230px);
  overflow: hidden;
}
#top-area .wrap {
  max-width: 1050px;
  height: 100%;
}
#top-area .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#top-area .img::before {
  background-image: url(../img/environment/cross-talk/top.jpg);
  background-position: center center;
}
#top-area .page-title {
  position: absolute;
  top: 10%;
  left: -5%;
  font-family: var(--fontfamily-en);
  font-size: 65px;
  font-size: 4.0625rem;
  font-weight: 200;
  color: var(--color-red);
  text-decoration: underline 0.2rem;
  text-underline-offset: 0.6rem;
}
#top-area .catch-wrap {
  position: absolute;
  bottom: 6%;
  left: -5%;
}
#top-area .catch-wrap .catch01 {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-red);
}
#top-area .catch-wrap .catch02 {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.8;
}
#top-area .catch-wrap .bg-white {
  position: relative;
  width: fit-content;
  z-index: 1;
}
#top-area .catch-wrap .bg-white::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  height: 75%;
  background-color: var(--color-white);
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  #top-area {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  #top-area {
    height: 400px;
  }
  #top-area .page-title {
    font-size: 42px;
    font-size: 2.625rem;
  }
  #top-area .catch-wrap .catch01 {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  #top-area .catch-wrap .catch02 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 600px) {
  #top-area {
    height: 300px;
  }
  #top-area .page-title {
    font-size: 38px;
    font-size: 2.375rem;
  }
  #top-area .catch-wrap {
    bottom: 4%;
  }
  #top-area .catch-wrap .catch01 {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  #top-area .catch-wrap .catch02 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.5;
  }
}
/* ===== intro ===== */
#intro {
  margin: 115px 0 135px;
}
#intro .text-wrap {
  display: flex;
  align-items: space-between;
  gap: 20px 10%;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.2;
}
#intro .catch {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--color-red);
  white-space: nowrap;
  line-height: 1.8;
}

@media screen and (max-width: 1024px) {
  #intro .catch {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #intro {
    margin: 50px 0 60px;
  }
  #intro .text-wrap {
    flex-direction: column;
  }
  #intro .catch {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
/* ===== member ===== */
#member {
  margin: 0 0 220px;
}
#member .g-title.en-ja {
  margin: 0 0 2em;
}
#member .flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
#member .member-item {
  width: 30%;
  max-width: 250px;
}
#member .member-item .img {
  position: relative;
  width: 100%;
  height: 250px;
  max-width: 250px;
}
#member .member-item .img.circle::before {
  border-radius: 50%;
}
#member .member-item .profile {
  line-height: 1.8;
}
#member .member-item .profile .name {
  font-size: 29px;
  font-size: 1.8125rem;
}
#member .member-item .profile .name-en {
  font-family: var(--fontfamily-en);
}
#member .member-item .profile .year {
  font-size: 50%;
  margin-left: 1em;
}
#member .member-item .profile .type {
  margin-top: -0.8em;
}
#member .member-item .profile .department {
  margin: 0.4em 0 0.2em;
  line-height: 1.5;
  min-height: 58px;
}
#member .member-item .profile .text {
  font-size: 14px;
  font-size: 0.875rem;
}
#member .member01 .img::before {
  background-image: url(../img/environment/cross-talk/member01.jpg);
  border: 6px solid #21d875;
}
#member .member01 .profile .name-en,
#member .member01 .profile .type {
  color: #21d875;
}
#member .member02 .img::before {
  background-image: url(../img/environment/cross-talk/member02.jpg);
  border: 6px solid #ff9fb2;
}
#member .member02 .profile .name-en,
#member .member02 .profile .type {
  color: #ff9fb2;
}
#member .member03 .img::before {
  background-image: url(../img/environment/cross-talk/member03.jpg);
  border: 6px solid var(--color-blue);
}
#member .member03 .profile .name-en,
#member .member03 .profile .type {
  color: var(--color-blue);
}

@media screen and (max-width: 1400px) {
  #member .flex-wrap {
    gap: 60px 50px;
  }
}
@media screen and (max-width: 1330px) {
  #member .flex-wrap {
    flex-direction: column;
    align-items: center;
  }
  #member .member-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    max-width: none;
  }
  #member .member-item .img {
    position: relative;
    width: 210px;
    height: 210px;
  }
  #member .member-item .profile {
    width: calc(100% - 250px);
    margin: 0;
  }
  #member .member-item .profile .department {
    min-height: auto;
    margin: 0.4em 0 0.9em;
  }
}
@media screen and (max-width: 768px) {
  #member {
    margin: 0 0 80px;
  }
  #member .member-item .img {
    width: 160px;
    height: 160px;
  }
  #member .member-item .profile {
    width: calc(100% - 200px);
  }
  #member .member-item .profile .name {
    font-size: 26px;
    font-size: 1.625rem;
  }
  #member .member-item .profile .text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 600px) {
  #member .flex-wrap {
    gap: 50px 0;
  }
  #member .member-item {
    flex-direction: column;
    width: 80%;
    max-width: 240px;
  }
  #member .member-item .profile {
    width: 100%;
    margin: 5px 0 0;
  }
}
/* ===== theme共通 ===== */
.theme {
  position: relative;
}
.theme .title {
  display: flex;
  align-items: last baseline;
  gap: 30px 0;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-red);
  line-height: 1.8;
  margin: 0 0 50px -50px;
}
.theme .title .number {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: fit-content;
}
.theme .title .number::before {
  content: "TALK\aTHEME";
  position: relative;
  top: 35px;
  display: block;
  font-family: var(--fontfamily-en);
  font-weight: 300;
  line-height: 1.2;
  text-align: right;
  white-space: pre;
}
.theme .title .catch {
  margin: 0 0 0 -0.6em;
}
.theme .theme-catch {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--color-red);
  margin: 0 0 2.5em;
}
.theme .talk .flex-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 45px;
}
.theme .talk .talk-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 780px;
}
.theme .talk .talk-item + .talk-item {
  margin: 45px 0 0;
}
.theme .talk .talk-item .member-img {
  position: relative;
}
.theme .talk .talk-item .member-img::before {
  content: "";
  display: block;
  width: 95px;
  height: 95px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 50%;
  margin: 0 auto;
}
.theme .talk .talk-item .member-img::after {
  content: "";
  display: block;
  text-align: center;
  margin: 0.3em 0 0;
  font-family: var(--fontfamily-en);
  font-weight: 500;
}
.theme .talk .talk-item .member-img.member01::before {
  background-image: url(../img/environment/cross-talk/member01.jpg);
  border: 4px solid #21d875;
}
.theme .talk .talk-item .member-img.member01::after {
  content: "研究開発 A.S";
  color: #21d875;
}
.theme .talk .talk-item .member-img.member02::before {
  background-image: url(../img/environment/cross-talk/member02.jpg);
  border: 4px solid #ff9fb2;
}
.theme .talk .talk-item .member-img.member02::after {
  content: "製造 M.K";
  color: #ff9fb2;
}
.theme .talk .talk-item .member-img.member03::before {
  background-image: url(../img/environment/cross-talk/member03.jpg);
  border: 4px solid var(--color-blue);
}
.theme .talk .talk-item .member-img.member03::after {
  content: "営業 W.G";
  color: var(--color-blue);
}
.theme .talk .talk-item .text {
  width: calc(100% - 130px);
  line-height: 2.2;
}

@media screen and (max-width: 1024px) {
  .theme .talk .flex-wrap {
    flex-direction: column;
  }
  .theme .talk .talk-item {
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .theme .title {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 0 30px -5% !important;
  }
  .theme .title .number::before {
    top: 18px;
  }
  .theme .theme-catch {
    font-size: 24px;
    font-size: 1.5rem;
    margin: 0 0 1.7em;
  }
}
@media screen and (max-width: 600px) {
  .theme .title .number {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .theme .title .number::before {
    position: absolute;
    left: 0;
    top: -10px;
    content: "TALK THEME";
    text-align: left;
  }
  .theme .title .catch {
    margin: 3em 0 0;
  }
  .theme .theme-catch {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .theme .talk .talk-item + .talk-item {
    margin: 30px 0 0;
  }
  .theme .talk .talk-item .member-img::before {
    width: 70px;
    height: 70px;
  }
  .theme .talk .talk-item .member-img::after {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .theme .talk .talk-item .text {
    width: calc(100% - 100px);
  }
}
/* ===== theme01 ===== */
#theme01 {
  padding: 0 0 150px 0;
}
#theme01 .talk .flex-wrap .item-wrap {
  width: calc(100% - 600px);
}
#theme01 .img01 {
  width: 500px;
  margin: 15px 0 0;
}

@media screen and (max-width: 1400px) {
  #theme01 {
    padding: 0 0 10% 0;
  }
}
@media screen and (max-width: 1200px) {
  #theme01 .talk .flex-wrap .item-wrap {
    width: calc(100% - 500px);
  }
  #theme01 .img01 {
    width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  #theme01 {
    padding: 0 0 50px;
  }
  #theme01 .talk .item-wrap {
    width: calc(100% - 10vw) !important;
  }
  #theme01 .img01 {
    width: 80%;
    max-width: 360px;
    margin: 45px 0 0 auto;
  }
}
/* ===== theme02 ===== */
#theme02 {
  background: var(--color-lightgray);
  padding: 0 0 10%;
}
#theme02 .talk {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#theme02 .talk .flex-wrap {
  flex-direction: row-reverse;
  justify-content: space-between;
}
#theme02 .talk .flex-wrap .item-wrap {
  width: calc(100% - 700px);
}
#theme02 .img01 {
  width: 600px;
  margin: -23% 0 0;
}

@media screen and (max-width: 1400px) {
  #theme02 .talk .flex-wrap .item-wrap {
    width: calc(100% - 600px);
  }
  #theme02 .img01 {
    width: 500px;
    margin: -20% 0 0;
  }
}
@media screen and (max-width: 1200px) {
  #theme02 .talk .flex-wrap .item-wrap {
    width: calc(100% - 500px);
  }
  #theme02 .img01 {
    width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  #theme02 {
    padding: 0;
  }
  #theme02 .talk .flex-wrap {
    flex-direction: column;
  }
  #theme02 .talk .flex-wrap .item-wrap {
    width: 100%;
  }
  #theme02 .talk .item-wrap {
    padding: 0 0 0 10vw;
  }
  #theme02 .img01 {
    width: 80%;
    max-width: 360px;
    margin: 50px 0 0;
  }
}
/* ===== theme03 ===== */
#theme03 {
  padding: 0 0 100px;
}
#theme03 .in-wrap.left .talk {
  display: flex;
  flex-direction: column;
}
#theme03 .in-wrap.left .talk .flex-wrap {
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  margin: 45px 0 0;
}
#theme03 .in-wrap.left .talk .flex-wrap .item-wrap {
  width: calc(100% - 600px);
}
#theme03 .img01 {
  width: 500px;
  margin: 0 0 5%;
}
#theme03 .img02 {
  width: 940px;
  margin: 0 0 -8% auto;
  z-index: 0;
}

@media screen and (max-width: 1400px) {
  #theme03 .img02 {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 1200px) {
  #theme03 .in-wrap.left .talk .flex-wrap .item-wrap {
    width: calc(100% - 480px);
  }
  #theme03 .img01 {
    width: 400px;
  }
  #theme03 .img02 {
    width: 650px;
  }
}
@media screen and (max-width: 1024px) {
  #theme03 .in-wrap.right .talk .item-wrap {
    width: calc(100% - 10vw);
  }
  #theme03 .in-wrap.left .talk .flex-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  #theme03 .in-wrap.left .talk .flex-wrap .item-wrap {
    width: 100%;
    padding: 0 0 0 10vw;
  }
  #theme03 .img01 {
    width: 80%;
    max-width: 360px;
    margin: 50px auto 0 0;
  }
  #theme03 .img02 {
    width: 100%;
    max-width: 600px;
  }
}
/* ===== theme04 ===== */
#theme04 {
  background: var(--color-lightpink);
  padding: 50px 0 100px;
}
#theme04 .title {
  max-width: 780px;
  margin: 0 auto 50px;
}
#theme04 .title .number {
  margin: 0 0 0 -50px;
}
#theme04 .theme-catch {
  max-width: 780px;
  margin: 0 auto 50px;
}
#theme04 .talk-item {
  margin: 0 auto;
}
#theme04 .talk-item + .talk-item {
  margin: 45px auto 0;
}
#theme04 .img01 {
  margin: 80px auto 0;
}

@media screen and (max-width: 1024px) {
  #theme04 .title {
    margin: 0 auto 50px -50px;
  }
  #theme04 .title .number {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #theme04 {
    padding: 0 0 100px;
  }
  #theme04 .img01 {
    margin: 50px auto 0;
  }
}

/*# sourceMappingURL=cross-talk.css.map */
