@charset "UTF-8";

/* ceo */
.ceo-wrap {
  box-sizing: border-box;
  width: 90%;
  background-color: rgba(255,255,255,0.7);
  box-shadow: 6px 6px 10px 0px rgba(0,0,0,0.05);
  border-radius: 30px;
  margin: 0 auto;
  padding: 50px;
}
.ceo-img-wrap {
  position: relative;
}
.ceo-img {
  width: 70%;
}
.ceo-img img {
  border-radius: 30px 0 0 0;
}
.ceo-name-wrap {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 65%;
  margin: 0;
}
.ceo-name {
  font-size: 4em;
  font-weight: 700;
  letter-spacing: 2px;
}
.ceo-post {
  font-size: 2em;
  letter-spacing: 1px;
  padding: 25px 0 0 2px;
}
.ceo-txt-wrap {
  margin: 30px 0 0 0;
}
.ceo-txt {
  margin: 20px 0 0 0;
}
.ceo-txt-q {
  font-size: 1.7em;
  font-weight: 700;
  line-height: 32px;
  color: #73a1cd;
}
.ceo-txt-a {
  font-size: 1.6em;
  line-height: 32px;
  margin: 5px 0 0 0;
}

/* introduction */
.introduction-wrap {
  width: 90%;
  margin: 0 auto;
}
.introduction-box {
  box-sizing: border-box;
  width: 100%;
  background-color: rgba(255,255,255,0.7);
  box-shadow: 6px 6px 10px 0px rgba(0,0,0,0.05);
  border-radius: 30px;
  margin: 0;
  padding: 30px;
  position: relative;
  display: flex;
  align-items: center;
}
.introduction-img {
  width: 40%;
}
.introduction-img img {
  border-radius: 30px 0 0 30px;
}
.introduction-txt-wrap {
  width: 60%;
  padding: 0 0 0 30px;
}
.introduction-name {
  font-size: 2.8em;
  font-weight: 700;
  letter-spacing: 1px;
}
.introduction-post {
  font-size: 1.5em;
  color: #73a1cd;
  padding: 15px 0 0 0;
}
.introduction-txt {
  font-size: 1.6em;
  line-height: 30px;
  padding: 30px 0 0 0;
}
.introduction-table {
  margin: 30px 0 0 0;
}
.introduction-table td {
  font-size: 1.4em;
  line-height: 28px;
  vertical-align: middle;
}
.introduction-table-l {
  width: 120px;
  text-align: center;
  color: #73a1cd;
  background-color: #e0e9fb;
  border-radius: 10px;
  padding: 3px 0;
}
.introduction-table-r {
  text-align: left;
  padding: 3px 0 3px 15px;
}
.box-1 {
  margin: 0;
}
.box-2 {
  margin: 50px 0 0 0;
}
.box-3 {
  margin: 50px 0 0 0;
}
.introduction-link {
  font-size: 1.4em;
  text-align: right;
  margin: 20px 10px 0 0;
}
.introduction-link a {
  color: #73a1cd;
  border-bottom: 1px solid #73a1cd;
  padding: 0 2px 3px 2px;
}

/* column */
.column-wrap {
  width: 90%;
  margin: 0 auto;
}
.column-title {
  font-size: 3em;
  font-weight: 700;
  line-height: 48px;
  margin: 0;
}
.column-txt {
  font-size: 1.5em;
  line-height: 30px;
  margin: 20px 0 0 0;
}
.column-btn {
  box-sizing: border-box;
  width: 300px;
  font-size: 2em;
  text-align: center;
  position: relative;
  margin: 40px 0 0 0;
}
.column-btn-g {
  display: block;
  color: #fff;
  padding: 20px 30px 22px 0;
  border-radius: 30px;
  text-decoration: none;
  outline: none;
  background: linear-gradient(270deg, #003686 0%, #0099d9 25%, #0099d9 51%, #003686 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}
.column-btn-g:hover {
  color: #fff;
  background-position: 99% 50%;
}
.column-btn-sign {
  width: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 30px;
}

@media screen and (max-width: 1200px) {
  /* introduction */
  .introduction-box {
    width: 100%;
  }
  .introduction-img {
    width: 50%;
  }
  .introduction-txt-wrap {
    width: 50%;
  }
  .box-1 {
    margin: 0;
  }
  .box-2 {
    margin: 50px 0 0 0;
  }
  .box-3 {
    margin: 50px 0 0 0;
  }
}

@media screen and (max-width: 1000px) {
  /* introduction */
  .introduction-box {
    width: 80%;
    padding: 20px;
    position: relative;
    display: block;
    align-items: center;
    margin: 50px auto 0 auto;
  }
  .introduction-box:first-child {
    margin: 0 auto;
  }
  .introduction-img {
    width: 100%;
  }
  .introduction-img img {
    border-radius: 30px 30px 0 0;
  }
  .introduction-txt-wrap {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .introduction-link {
    margin: 20px 10px 20px 0;
  }
}

@media screen and (max-width: 767px) {
  /* ceo */
  .ceo-wrap {
    padding: 20px;
  }
  .ceo-img {
    width: 100%;
  }
  .ceo-img img {
    border-radius: 30px 30px 0 0;
  }
  .ceo-name-wrap {
    position: static;
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    left: auto;
    margin: 20px 0 0 0;
  }
  .ceo-name {
    font-size: 2em;
  }
  .ceo-post {
    font-size: 1.4em;
    padding: 10px 0 0 0;
  }
  .ceo-txt-wrap {
    margin: 0;
  }
  .ceo-txt {
    margin: 20px 0 0 0;
  }
  .ceo-txt-q {
    font-size: 1.5em;
    line-height: 28px;
  }
  .ceo-txt-a {
    font-size: 1.3em;
    line-height: 26px;
  }
  /* introduction */
  .introduction-box {
    width: 100%;
    padding: 20px 20px 30px 20px;
    position: relative;
    display: block;
    align-items: center;
  }
  .introduction-img {
    width: 100%;
  }
  .introduction-img img {
    border-radius: 30px 30px 0 0;
  }
  .introduction-txt-wrap {
    width: 100%;
    padding: 30px 0 0 0;
  }
  .introduction-name {
    font-size: 2em;
  }
  .introduction-post {
    font-size: 1.4em;
    padding: 10px 0 0 0;
  }
  .introduction-txt {
    font-size: 1.3em;
    line-height: 26px;
    padding: 18px 0 0 0;
  }
  .introduction-table {
    margin: 30px 0 0 0;
  }
  .introduction-table td {
    font-size: 1.2em;
    line-height: 24px;
  }
  .introduction-table-l {
    width: 90px;
  }
  .introduction-table-r {
    padding: 3px 0 3px 10px;
  }
  .box-1 {
    margin: 0;
  }
  .box-2 {
    margin: 30px 0 0 0;
  }
  .box-3 {
    margin: 30px 0 0 0;
  }
  .introduction-link {
    font-size: 1.2em;
    line-height: 24px;
    margin: 20px 5px 10px 0;
  }
  /* Column */
  .column-title {
    font-size: 2em;
    line-height: 32px;
    margin: 20px 0 0 0;
  }
  .column-txt {
    font-size: 1.4em;
    line-height: 28px;
  }
  .column-btn {
    font-size: 1.8em;
    width: 100%;
    margin: 40px auto 0 auto;
  }
}