@charset "UTF-8";

/* -----FirstView company----- */

.firstView {
  background: url(../images/tower_company.png) center center/cover no-repeat;
  height: 70vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.companyTitle {
  display: flex;
  align-items: center;
  color: white;
}

.companyTitle h1 {
  font-size: 70px;
  font-family: 'DIN Condensed', sans-serif;
  letter-spacing: 0.03em;
}

.companyTitle p {
  font-size: 24px;
  margin-left: 50px;
}


/* -----mission section----- */

.missionSection {
  background: url(../images/mission_sankaku.png) no-repeat;
  z-index: 1;
  padding: 50px 0;
}

.missionContainer {
  padding: 50px 0;
  width: 70%;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0px 0px 15px -5px #777777;
  border-radius: 6px;
  text-align: center;
}

.sp_br {
  display: none;
}


.missionContainer h1 {
  font-size: 32px;
  font-family: 'DIN Condensed', sans-serif;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-decoration-color: #850000;
  text-underline-offset: 15px;
  margin-bottom: 65px;
}

.missionContainer h2 {
  font-size: 32px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 45px;
}

.missionContainer h3 {
  font-size: 16px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-weight: lighter;
}

.missionContainer p {
  font-size: 16px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  margin-bottom: 38px;
}

@media screen and (max-width:520px) {
  .firstView {
    background: url(../images/600px\ _tower.png) center center/cover no-repeat;
    height: 50vh;
  }

  .companyTitle {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .companyTitle h1 {
    font-size: 50px;
  }

  .companyTitle p {
    font-size: 16px;
    margin-left: 0;
  }

  .missionSection {
    padding: 20px 0;
  }

  .missionContainer {
    padding: 40px 0;
    width: 95%;
  }

  .sp_br {
    display: block;
  }

  .missionContainer h1 {
    font-size: 28px;
    margin-bottom: 65px;
  }

  .missionContainer h2 {
    font-size: 21px;
    margin-bottom: 30px;
  }

  .missionContainer h3 {
    font-size: 16px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
    font-weight: lighter;
  }

  .missionContainer p {
    font-size: 16px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
    margin-bottom: 38px;
  }
}

/* -----sectionTitle----- */
.sectionTitle {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 95%;
  margin: 30px auto;
}

.sectionTitle h1 {
  font-family: 'DIN Condensed', sans-serif;
  font-size: 42px;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-decoration-color: #850000;
  text-underline-offset: 15px
}

.sectionTitle p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  margin-left: 26px;
}

@media screen and (max-width:520px) {
  .sectionTitle h1 {
    font-size: 28px;
  }

  .sectionTitle p {
    margin-left: 23px;
  }
}

/* -----Profile section----- */
.profileSection {
  background: url(../images/outline_image.png)center center/cover no-repeat;
  padding: 50px 0;
}

.sectionImg {
  max-width: 1100px;
  width: 90%;
  margin: 50px auto;
}

.sectionImg img {
  width: 100%;
}

.profileContainer {
  width: 90%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}

.profileLogo img {
  width: 138px;
  height: 167px;
}

.profileTable tr {
  border-bottom: 1px solid black;
}

.profileTable tr:nth-of-type(5) {
  border: none !important;
}

.profileTable th {
  text-align: left;
  padding: 20px 40px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.profileTable td {
  padding: 15px 40px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-size: 18.4px;
  letter-spacing: 0.05em;
}

.tdContainer {
  display: flex;
}

@media screen and (max-width:520px) {
  .profileLogo {
    display: none;
  }

  .profileContainer {
    width: 95%;
  }

  .profileTable th {
    padding: 20px;
    font-size: 12px;
  }

  .profileTable td {
    padding: 20px 10px;
    font-size: 12px;
  }

  .tdContainer {
    flex-direction: column;
  }
}

/* -----Address section----- */
.sectionAddress {
  padding: 50px 0;
}

.addressMap {
  text-align: center;
  padding: 45px 0;
}

.addressMap iframe {
  width: 90%;
  height: 400px;
}

.addressGoogle {
  width: 90%;
  margin: 20px auto;
  text-align: left;
}

.addressGoogle br {
  display: none;
}

@media screen and (max-width:520px) {
  .addressMap iframe {
    width: 100%;
    height: 300px;
  }

  .addressGoogle br {
    display: block;
  }
}