@charset "UTF-8";
/**
* PC SP 表示切り替え
**/
@media (min-width: 768px) {
  .sp--disp, .sp_disp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc--disp, .pc_disp {
    display: none !important;
  }
}
/**
* 背景色
**/
.bg__type_default {}
.bg__type_color {
  background-color: #f6f4f3 !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: bold;
}
/**
* テキストアライン
**/
.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 {
  margin-bottom: 50px;
}
.w100 {
  margin-bottom: 100px;
}
.w150 {
  margin-bottom: 150px;
}
.w200 {
  margin-bottom: 200px;
}
.w250 {
  margin-bottom: 250px;
}
.w300 {
  margin-bottom: 300px;
}
.w350 {
  margin-bottom: 350px;
}
.w400 {
  margin-bottom: 400px;
}
/**
* base_wrap
* サイト内共通 横幅
* NOTE: ブロックレベルの全ての値を変数から参照させているので注意してください。
**/
.base_wrap {
  max-width: var(--site-base-wrap-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--site-base-wrap-padding);
  position: relative;
}
/**
* .bg__full_width
* サイト内共通 疑似100%横幅
* NOTE: .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);
}
.bg__type_white {
  background-color: #fff !important;
}
/**
* 共通タイトル
**/
.home_title {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--sub_c);
  font-size: 3.4rem;
  position: relative;
}
.home_title span::first-letter {
  color: var(--main_c);
}
@media (max-width: 767px) {
  .home_title {
    font-size: 2.4rem;
    text-align: center;
  }
}
.home_title::before {
  content: attr(data-small);
  display: block;
  color: var(--sub_c);
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1;
  transform-origin: left center;
}
@media (max-width: 767px) {
  .home_title::before {
    transform-origin: center center;
  }
}
.home_title > i {
  display: none;
}
@media (max-width: 767px) {
  .home_title > i {
    display: none;
    margin: 0 0 13px;
  }
}
.home_title > i > img {
  width: auto;
  height: 1.5em;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .home_title > i > img {
    width: auto;
    height: 25px;
  }
}
.home_title > span {
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .home_title > span {
    display: block;
  }
}
/**
* 共通 下層ページタイトル
**/
.subpage-head {
  padding: 2rem 0;
  background: url(/common/images/mv-bg.png) no-repeat top left #f6f4f3;
  background-size: 550px;
  position: relative;
}
@media (max-width: 959px) {
  .subpage-head {
    padding: 3rem 0;
    background-size: 470px;
    background-position: center left;
  }
}
@media (max-width: 767px) {
  .subpage-head {
    padding: 1rem 0;
    background-size: 220px;
  }
  .subpage-head h1 {
    font-size: 2rem;
    text-align: center;
  }
}
.subpage-head .base_wrap {
  z-index: 1;
}
@media (max-width: 560px) {
  .subpage-head .base_wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: stretch;
    height: 100%;
  }
}
/**
* 共通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: var(--sub_c);
  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: 1px solid 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;
}