@charset "UTF-8";
/**
 * PC SP 表示切り替え
**/
@media (min-width: 768px) {
  .sp--disp,
  .sp-disp,
  .sp_disp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc--disp,
  .pc-disp,
  .pc_disp {
    display: none !important;
  }
}


/**
 * テキスト装飾
**/
.text_underline {
  background: linear-gradient(transparent 50%, var(--marker_c) 50%);
}
.text_link {
  color: var(--text_link_c);
  text-decoration: underline;
}


/**
 * フォントウェイト
**/
.fw_bold {
  font-weight: 700;
}


/**
 * テキストアライン
**/
.text_right {
  text-align: right;
}
.text_left {
  text-align: left;
}
.text_center {
  text-align: center;
}


/**
 * マージン
**/
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb55 {
  margin-bottom: 55px;
}
.mb60 {
  margin-bottom: 60px;
}


/**
 * フロート
**/
.fl {
  float: left;
}
.fr {
  float: right;
}


/**
 * フレックスボックス
**/
.flex_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}


/**
 * 幅
**/
.w50 {
  width: 50px;
}
.w100 {
  width: 100px;
}
.w150 {
  width: 150px;
}
.w200 {
  width: 200px;
}
.w250 {
  width: 250px;
}
.w300 {
  width: 300px;
}
.w350 {
  width: 350px;
}
.w400 {
  width: 400px;
}


/**
 * base_wrap
 * サイト内共通 横幅
**/
.base_wrap {
  max-width: var(--basewrap-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--basewrap-padding-inline);
}


/**
 * .bg__full_width
 * サイト内共通 疑似100%横幅
 * .base_wrap内でも背景の横幅が100%となり
 * コンテンツ幅はそのまま親要素の横幅を継承する
**/
.bg__full_width {
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  padding-left: calc((100vw - 100%) / 2);
  padding-right: calc((100vw - 100%) / 2);
}


/**
 * bg__type_xxxx
 * サイト内共通 背景色は以下に記述
**/
.bg__type_sub {
  background-color: var(--bg_sub);
}


/**
 * 共通タイトル
**/

/**
 * 共通list
**/
.list__type_round > li {
  line-height: 1.5;
  padding: 0 0 0 1.5em;
  position: relative;
}
.list__type_round li + li {
  margin-top: 0.5em;
}
.list__type_round li::before {
  display: inline-block;
  position: absolute;
  left: 0;
  transform: translate(0, -50%);
}
.list__type_round li::before {
  content: "";
  border-radius: 50%;
  background: #000;
  width: 1em;
  height: 1em;
  top: 0.75em;
}
.list__type_notes > li {
  line-height: 1.5;
  padding: 0 0 0 1.5em;
  position: relative;
}
.list__type_notes li + li {
  margin-top: 0.5em;
}
.list__type_notes li::before {
  display: inline-block;
  position: absolute;
  left: 0;
  transform: translate(0, -50%);
}
.list__type_notes > li::before {
  content: "※";
  top: 0.75em;
}
.list_number__type {
  counter-reset: list-number-type;
}
.list_number__type > li {
  line-height: 1.5;
  padding: 0 0 0 1.5em;
  position: relative;
}
.list_number__type li + li {
  margin-top: 0.5em;
}
.list_number__type li::before {
  display: inline-block;
  position: absolute;
  left: 0;
  transform: translate(0, -50%);
}
.list_number__type > li::before {
  counter-increment: list-number-type;
  content: counter(list-number-type) ".";
  top: 0.75em;
}
/**
 * 共通table
**/
.table__type_default {
  width: 100%;
  table-layout: fixed;
}
* + .table__type_default {
  margin-top: 15px;
}
.table__type_default > thead > tr > th, .table__type_default > tbody > tr > th, .table__type_default > tfoot > tr > th, .table__type_default > thead > tr > td, .table__type_default > tbody > tr > td, .table__type_default > tfoot > tr > td {
  border: solid 1px rgba(0, 0, 0, 0.33);
  padding: 16px;
}
.table__type_default > tbody > tr > th {
  background: rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

/**
 * clearfix
**/
.clear {
  clear: both;
}
.cf::after, .clearfix::after {
  content: '';
  display: table;
  clear: both;
}