@charset "UTF-8";
/********************************************/
/*layout Base */
/********************************************/
/***************************/
/**Color */
/***************************/
/***************************/
/**bg */
/***************************/
.bg_blue {
  background: #edf0f6;
}

.bg_gray {
  background: #f7f7f7;
}

/********************************************/
/* ttl */
/********************************************/
.en_jp_ttl {
  margin-bottom: 1.5em;
  font-size: clamp(2rem, 7vw, 3.5rem);
}

.en_jp_ttl .en {
  display: block;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #edf0f6;
  font-size: 4.2em;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

@media (max-width: 768px) {
  .en_jp_ttl .en {
    font-size: 2.8em;
  }
}

.en_jp_ttl .jp {
  display: block;
  margin-top: -2.2em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #4b6aa5;
  font-size: 1em;
  font-weight: 700;
}

@media (max-width: 768px) {
  .en_jp_ttl .jp {
    margin-top: -1.8em;
  }
}

.en_jp_ttl.center_ttl {
  text-align: center;
}

.en_jp_ttl.white .en {
  color: #fff;
}

.bg_ttl {
  margin-bottom: 20px;
  padding: 0.5em 0.8em;
  background: #1e1e1e;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: clamp(1.8rem, 4.5vw, 2.2rem);
  font-weight: 700;
}

.ttl_fs40 {
  margin-bottom: 0.8em;
  line-height: 1.5;
  color: #4b6aa5;
  font-size: clamp(1.8rem, 6.8vw, 4rem);
  font-weight: 700;
}

.ttl_fs40 i {
  display: inline-block;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .ttl_fs40 i {
    margin-right: 10px;
  }
}

.ttl_fs40.center_ttl {
  margin-bottom: 1.25em;
  text-align: center;
}

/********************************************/
/* btn */
/********************************************/
.bg_btn a {
  position: relative;
  display: inline-block;
  width: auto;
  min-width: 350px;
  padding: 1.5em 60px 1.5em 1.5em;
  border-radius: 50px;
  background: #1e1e1e;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: left;
  font-size: clamp(1.6rem, 4.3vw, 2rem);
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .bg_btn a {
    min-width: 300px;
  }
}

.bg_btn a:after {
  position: absolute;
  top: 50%;
  right: 25px;
  content: "";
  width: 35px;
  height: 16px;
  background: url(../img/common/btn-arr-white.svg) no-repeat center/contain;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.bg_btn a:hover {
  background: #4b6aa5;
}

.bg_btn.center_btn {
  text-align: center;
}

.bg_btn.none_arr a {
  min-width: 300px;
  padding: 1.5em 1em;
  text-align: center;
}

.bg_btn.none_arr a:after {
  content: none;
}

.txt_btn a {
  display: inline-block;
  padding-bottom: 0.7em;
  border-bottom: solid 1px #4b6aa5;
  color: #4b6aa5;
  font-size: 1.8rem;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.txt_btn a:after {
  position: relative;
  top: 0.1em;
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 15px;
  background: url(../img/common/arr-ico-blue.svg) no-repeat center/contain;
}

.txt_btn a:hover {
  opacity: .7;
}

/********************************************/
/* 追加 */
/********************************************/
.object_fit {
  position: relative;
}

.object_fit:after {
  content: "";
  display: block;
  padding-top: 100%;
}

.object_fit img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  /*IE対策*/
}

/*# sourceMappingURL=component.css.map */