@charset "UTF-8";
/********************************************/
/*layout Base */
/********************************************/
/***************************/
/**Color */
/***************************/
/***************************/
/**bg */
/***************************/
.full_width {
  margin: 0 calc(50% - 50vw);
}

/********************************************/
/* ttl */
/********************************************/
.sec_main_ttl {
  margin-bottom: 1em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(2.5rem, 4vw, 5rem);
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.sec_main_ttl span {
  font-size: 1em;
  line-height: inherit;
  letter-spacing: inherit;
}

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

/********************************************/
/* btn */
/********************************************/
.circle_btn a {
  position: relative;
  display: inline-block;
  padding: 24px 95px 24px 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.6rem, 4vw, 1.8rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.circle_btn a:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  margin: auto;
  content: '';
  width: 70px;
  height: 70px;
  border: 1px solid #fff;
  border-radius: 100px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.circle_btn a:after {
  position: absolute;
  top: 3px;
  right: 38px;
  bottom: 0;
  left: auto;
  margin: auto;
  content: '';
  width: 46px;
  height: 6px;
  background: url(../img/common/circle-btn-arrow.svg) no-repeat center/100%;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.circle_btn a:hover:after {
  position: absolute;
  top: 3px;
  right: 28px;
  bottom: 0;
  left: auto;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/********************************************/
/* other */
/********************************************/
.object_fit {
  position: relative;
}

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

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

/*=============================================*/
/*media query    SmartPhone */
/*=============================================*/
@media screen and (max-width: 767px) {
  /********************************************/
  /* ttl */
  /********************************************/
  /********************************************/
  /* btn */
  /********************************************/
  .circle_btn a {
    padding: 21px 95px 21px 0;
  }
  .circle_btn a:before {
    width: 64px;
    height: 64px;
  }
  /********************************************/
  /* other */
  /********************************************/
}

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