@charset "UTF-8";
/*==============================================================
	変数
===============================================================*/
/*==============================================================
	@extend
===============================================================*/
/*==============================================================
	レイアウト関係
===============================================================*/
.inner_wrap {
  width: 1200px;
  margin: auto;
}

.inner_wrap_s {
  width: 850px;
  margin: auto;
}

[class*=fl_box] {
  display: -webkit-flex;
  display: flex;
}

.fl_box_wr {
  flex-wrap: wrap;
}
.fl_box_c {
  justify-content: center;
  align-items: flex-start;
}
.fl_box_cc {
  justify-content: center;
  align-items: center;
}
.fl_box_bw {
  justify-content: space-between;
  align-items: flex-start;
}
.fl_box_bwc {
  justify-content: space-between;
  align-items: center;
}

.pc_el {
  display: inline-block;
}

.sp_el {
  display: none;
}

/*==============================================================
	見出し関係
===============================================================*/
.base_tl {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
.base_tl .ja {
  font-size: clamp(48px, 5vw, 48px);
  display: block;
  font-family: "vdl-gothicmincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 1px;
}
.base_tl .en {
  font-size: clamp(18px, 5vw, 18px);
  display: block;
  font-family: "minion-pro", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
}
.base_tl.white {
  color: #fff;
}
.base_tl.white:before {
  content: "";
  background: url(../../img/ico_tl_w.webp) no-repeat center/cover;
  width: 226px;
  height: 48px;
  background-size: 55%;
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.base_tl.red {
  color: #752527;
}
.base_tl.red:before {
  content: "";
  background: url(../../img/ico_tl_r.webp) no-repeat center/cover;
  width: 226px;
  height: 48px;
  background-size: 55%;
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.kiriko_tl_box {
  text-align: center;
  margin-bottom: 50px;
}

.kiriko_tl {
  color: #006934;
  font-weight: bold;
  font-size: clamp(36px, 5vw, 36px);
  position: relative;
  display: inline-block;
}
.kiriko_tl::before {
  content: "";
  background: url(../../kiriko/img/ico_tl_g.webp) no-repeat center/cover;
  background-size: 100px;
  width: 100px;
  height: 100px;
  left: -33px;
  top: -55px;
  position: absolute;
}
.kiriko_tl span {
  position: relative;
  display: inline-block;
  line-height: 1.5;
}
.kiriko_tl span::before {
  content: "";
  background: url(../../kiriko/img/ico_tl.webp) no-repeat center/cover;
  width: 46px;
  height: 43px;
  position: absolute;
  left: -60px;
  top: 20px;
  bottom: 0;
}
.kiriko_tl span::after {
  content: "";
  background: url(../../kiriko/img/ico_tl.webp) no-repeat center/cover;
  width: 46px;
  height: 43px;
  position: absolute;
  right: -60px;
  top: 20px;
  bottom: 0;
  transform: scale(-1, 1);
}

/*==============================================================
	ボタン関係
===============================================================*/
.base_btn {
  width: 100%;
  border-radius: 100px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #752527;
  color: #fff;
  box-shadow: 0px 5px 0px #a38a78;
  transition: 0.3s;
  position: relative;
  top: 0;
}
.base_btn:hover {
  box-shadow: none;
  top: 5px;
}

/*==============================================================
	リスト関係
===============================================================*/
.base_list li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
}
.base_list li:last-child {
  margin-bottom: 0;
}
.base_list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/*==============================================================
	テーブル関係
===============================================================*/
/*==============================================================
	下階層headline
===============================================================*/
/*==============================================================
	共通パーツ
===============================================================*/
.wid_100 {
  width: 100%;
  height: auto;
}

.floatL {
  float: left;
}

.floatR {
  float: right;
}

.phoL {
  float: left;
  margin-right: 20px;
}

.phoR {
  float: right;
  margin-left: 20px;
}

.clearL {
  clear: left;
}

.clearR {
  clear: right;
}

.clearB {
  clear: both;
}

.alignL {
  text-align: left;
}

.alignR {
  text-align: right;
}

.alignC {
  text-align: center;
}/*# sourceMappingURL=module.css.map */