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

/***************************/
/**bg */
/***************************/
.bg_texture {
  position: relative;
}

.bg_texture:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/texture.webp) repeat;
  mix-blend-mode: multiply;
  z-index: 1;
}

.bg_texture.primary {
  background: #023562;
}

.bg_texture.secondary {
  background: rgba(183, 171, 154, 0.6);
}

.bg_primary {
  background: #023562;
}

/********************************************/
/* ttl */
/********************************************/
.en_main_ttl {
  position: relative;
  padding-bottom: 0.8em;
  margin-bottom: 0.8em;
  font-size: clamp(3.5rem, 4vw, 6rem);
}

.en_main_ttl:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 40px;
  height: 2px;
  background-color: #0E131B;
  opacity: .3;
}

.en_main_ttl .en {
  display: block;
  margin-bottom: 0.5em;
  letter-spacing: 0.3em;
  color: #023562;
  font-size: 1em;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.en_main_ttl .jp {
  display: block;
  font-size: 0.33em;
  letter-spacing: 0.3em;
  font-weight: 500;
}

.en_main_ttl.white {
  color: #fff;
}

.en_main_ttl.white:after {
  background-color: #fff;
}

.en_main_ttl.white .en {
  color: inherit;
}

.jp_main_ttl {
  position: relative;
  padding: 0.4em 0 0.4em 1em;
  margin-bottom: 1.4em;
  color: #023562;
  font-size: clamp(2rem, 5.5vw, 2.5rem);
}

@media (max-width: 768px) {
  .jp_main_ttl {
    margin-bottom: 20px;
  }
}

.jp_main_ttl .jp {
  display: block;
  color: inherit;
  font-size: 1em;
  font-weight: 500;
}

.jp_main_ttl .en {
  display: block;
  margin-top: 1em;
  letter-spacing: 0.3em;
  color: inherit;
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.jp_main_ttl:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #B7AB9A;
}

.jp_main_ttl.white {
  color: #fff;
}

.jp_main_ttl.white:after {
  background-color: #fff;
}

.border_left_ttl {
  position: relative;
  line-height: 1.5;
  color: #0E131B;
  font-size: clamp(2.1rem, 5.5vw, 2.6rem);
  font-weight: 500;
}

.border_left_ttl:after {
  position: relative;
  top: -0.3em;
  display: inline-block;
  content: "";
  width: 50px;
  height: 1px;
  margin-left: 10px;
  background: #0E131B;
}

.border_left_ttl.white {
  color: #F6F6F5;
}

.border_left_ttl.white:after {
  background: #F6F6F5;
}

.border_ttl {
  margin-bottom: 1.6em;
  color: #023562;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

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

.border_ttl span {
  position: relative;
  display: inline-block;
  padding-left: 2em;
  padding-right: 2em;
  color: inherit;
  line-height: 1.8;
  font-size: 1em;
  font-weight: 500;
}

.border_ttl span:before, .border_ttl span:after {
  position: absolute;
  top: calc(50% - 0.9em);
  content: "―";
  line-height: inherit;
  color: inherit;
  font-size: 1em;
}

.border_ttl span:before {
  left: 0;
}

.border_ttl span:after {
  right: 0;
}

/********************************************/
/* btn */
/********************************************/
.border_btn a {
  position: relative;
  display: inline-block;
  padding-bottom: 0.9em;
  border-bottom: solid 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.border_btn a:after {
  display: inline-block;
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 2em;
  background: url(../img/common/arrow_right.svg) no-repeat center/contain;
}

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

.border_btn.white a {
  color: #fff;
  border-bottom: solid 1px #fff;
}

.border_btn.white a:after {
  background: url(../img/common/arrow_right-white.svg) no-repeat center/contain;
}

/********************************************/
/* 追加 */
/********************************************/
.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 */