@charset "utf-8";
@import "common.css";

#mainImg {
  background-image: url(../img/mainImg/about02_mainImg.jpg);
  background-position: top 30% center;
}

/* content */
#content01 .wBox h3 {
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--black);
}
#content01 .wBox h3 span {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary);
}
#content #sec01 {
  display: flex;
  justify-content: space-between;
  margin: 60px 0 60px;
}
#sec01 .card {
  position: relative;
  background-color: var(--white);
  width: 18%;
  height: 200px;
  border-radius: 20px;
  box-shadow: 4px 5px 5px #aaa;
}
.card::before {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  background-color: var(--white);
  content: "";
}
#sec01 .cardText {
  display: flex;
  flex-direction: column;
  padding: 28px 10px;
}
.cardText h4 {
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 15px;
}
.cardText p {
  font-size: 1.05em;
  opacity: 0.8;
}
.cardText a {
  overflow-wrap: anywhere;
}

/* ----------------------------------------------------------------------------- */

.infoList {
}
.infoList li {
  font-size: 1.2em;
  font-weight: 500;
  margin: 8px 0;
  opacity: 0.7;
}
.infoList h3 {
  margin-bottom: 50px;
}
.infoList .infoTitle {
  font-size: 2em;
}
#content02 .infoList {
  text-align: left;
}
#sec02 {
  padding: 0 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#sec02 h3 {
  position: relative;
}
#sec02 h3::after {
  position: absolute;
  top: 55px;
  right: 0;
  z-index: 10;
  width: 450px;
  width: 393px;
  height: 2px;
  background-color: var(--primary);
  content: "";
}

/* ----------------------------------------------------------------------------- */

#content03 .infoList {
  text-align: right;
}
#content03 h3 {
  position: relative;
}
#content03 h3::after {
  position: absolute;
  top: 55px;
  left: 0;
  z-index: 10;
  width: 450px;
  height: 2px;
  background-color: #c21318;
  content: "";
}
#sec03 {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#sec03 img {
  order: 2;
  width: 60%;
}
#sec03 .infoList {
  order: 1;
}

/* ----------------------------------------------------------------------------- */

#content04 .infoList {
  text-align: left;
}
#content04 h3 {
  position: relative;
}
#content04 h3::after {
  position: absolute;
  top: 55px;
  right: 0;
  z-index: 10;
  width: 400px;
  height: 2px;
  background-color: var(--primary);
  content: "";
}
#sec04 {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/* ----------------------------------------------------------------------------- */

#content05 .infoList {
  text-align: left;
}
#content05 h3 {
  position: relative;
  /* z-index: 10; */
}
#content05 h3::after {
  position: absolute;
  top: 55px;
  /* left: 96px; */
  right: 0;
  width: 450px;
  height: 2px;
  background-color: var(--primary);
  content: "";
  z-index: 10;
}
#sec05 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-around;
  padding: 0px 100px;
}
#sec05 img {
  order: 2;
}
#sec05 .infoList {
  order: 1;
}

/* mobile___ */
.mobile #content01 .wBox {
  margin: 0 10vw;
}
.mobile #content01 h3 {
  text-align: left;
  font-size: 1.2rem;
}
.mobile #content #sec01 {
  flex-direction: column;
}
.mobile #sec01 .card {
  margin: 10px 0 0;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 4px 4px #aaa;
}
.mobile .card::before {
  top: -5px;
  left: auto;
  right: -10px;
}
.mobile #sec01 .cardText {
  /* flex-direction: row; */
  padding: 9px 10px;
}
.mobile #sec01 .cardText h4 {
  width: 90px;
  margin-bottom: 0;
  text-align: left;
}
.mobile #sec01 .cardText p {
  text-align: left;
  font-size: 1rem;
}

.mobile .wPad:not(#content01) {
  padding: 0;
}
.mobile #content02 .wBox,
.mobile #content03 .wBox,
.mobile #content05 .wBox {
  margin: 0;
}
.mobile #content02 #sec02,
.mobile #content03 #sec03,
.mobile #content05 #sec05 {
  position: relative;
  padding: 0;
}
.mobile #sec02::after,
.mobile #sec05::after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  /* background: #FFFFFF; */
  /* opacity: .2; */
  /* background-image: linear-gradient(to left, #FFFFFFF2 , #FFFFFF00); */
  background-image: linear-gradient(to left, #ffffffe6 30%, transparent);
  background-image: linear-gradient(to left, #fffffff2 30%, #ffffffcc 60%, transparent);
  /* background-image: linear-gradient(to left, #FFFFFF, transparent); */
}
.mobile #sec03::after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-image: linear-gradient(to right, #fffffff2 30%, #ffffffcc 60%, transparent);
  z-index: 1;
}
.mobile #content02 img,
.mobile #content03 img,
.mobile #content05 img {
  width: 100%;
  height: 80vh;
}
.mobile #content03 #sec03 {
  overflow: hidden;
}
.mobile #content03 img {
  position: relative;
  left: -70px;
  width: auto;
  /* height: 100%; */
  object-fit: cover;
  clip-path: polygon(70px 0%, 500px 0, 500px 100%, 70px 100%);
}
.mobile #content02 .infoList,
.mobile #content05 .infoList {
  position: absolute;
  top: 20%;
  right: 0;
  padding-right: 5vw;
  text-align: right;
  z-index: 2;
}
.mobile #content03 .infoList {
  position: absolute;
  top: 20%;
  left: 0;
  padding-left: 5vw;
  text-align: left;
  z-index: 2;
}
.mobile #sec02 h3::after,
.mobile #sec05 h3::after {
  right: -5vw;
  width: calc(100vw - 40px);
}
.mobile #sec03 h3::after {
  left: -5vw;
  width: calc(100vw - 40px);
}
.mobile #content02 .infoList li .mobile #content03 .infoList li .mobile #content05 .infoList li {
  /* color: var(--white); */
  /* opacity: .9; */
}
