@charset "UTF-8";
/********************************************/
/*layout Base */
/********************************************/
/***************************/
/**Color */
/***************************/
.co_white {
  color: #fff;
}

/***************************/
/**bg */
/***************************/
.bg_gray {
  background-color: #EDEDED;
}

.bg_white {
  background-color: #fff;
}

.bg_yellow {
  background-color: #FEFFC3;
}

.full_width {
  margin: 0 calc(50% - 50vw);
}

/********************************************/
/* ttl */
/********************************************/
.sec_ttl {
  margin-bottom: 56px;
}

.sec_ttl .en {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(5rem, 5vw, 6rem);
  line-height: 1.2;
  color: #8E8E8E;
}

.sec_ttl .ja {
  position: relative;
  display: block;
  padding-left: 1.4em;
  font-size: clamp(1.3rem, 1vw, 1.4rem);
  font-weight: bold;
  color: #B3B3B3;
  z-index: 1;
}

.sec_ttl .ja:before {
  position: absolute;
  top: 0.24em;
  left: 0;
  content: '';
  width: 11px;
  height: 11px;
  background-color: #FFFF00;
  border-radius: 30px;
  z-index: 1;
}

/********************************************/
/* btn */
/********************************************/
.round_btn a {
  position: relative;
  display: block;
  width: 100%;
  max-width: clamp(220px, 25vw, 240px);
  padding: 1.07em 3.5em 1.07em 2em;
  border: 1px solid #D8D8D8;
  border-radius: 40px;
  background: #fff;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  font-weight: bold;
  line-height: 1.5;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.round_btn a:before {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  left: auto;
  margin: auto;
  content: '';
  width: clamp(35px, 4vw, 38px);
  height: clamp(35px, 4vw, 38px);
  background-color: #FFFF00;
  border-radius: 100px;
  z-index: 1;
}

.round_btn a:after {
  position: absolute;
  top: 0;
  right: 21px;
  bottom: 0;
  left: auto;
  margin: auto;
  content: '';
  width: clamp(15px, 2vw, 19px);
  height: 15px;
  background: url(../img/common/arrow-black.svg) no-repeat center/100%;
  z-index: 1;
}

.round_btn a:hover {
  background: #FFFF00;
  border-color: transparent !important;
}

.round_btn.right_btn a {
  margin-left: auto;
}

.round_btn.center_btn a {
  margin: auto;
}

.round_btn.ver_bk a {
  border: 1px solid #fff;
  color: #fff;
  background: #1A1A1A;
}

.round_btn.ver_bk a:hover {
  background: #FFFF00;
  color: #1A1A1A;
}

.txt_link {
  color: #b3b3b3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.txt_link:hover {
  opacity: .7;
}

.border_btn {
  text-align: center;
}

.border_btn a {
  display: inline-block;
  min-width: 250px;
  padding: 1.6em 3em;
  border: solid 1px #707070;
  border-radius: 50px;
  background: #fff;
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

/********************************************/
/* other */
/********************************************/
.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対策*/
}

.img_br10 img {
  border-radius: 10px;
}

/*=============================================*/
/*media query    SmartPhone */
/*=============================================*/
@media screen and (max-width: 767px) {
  /********************************************/
  /* ttl */
  /********************************************/
  /********************************************/
  /* btn */
  /********************************************/
  /********************************************/
  /* other */
  /********************************************/
}

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