@charset "utf-8";

/* ------------------------------------
 * common
------------------------------------ */
.clearFix:after {
  content: "";
  display: block;
  clear: both;
  zoom: 1;
}

img {
  max-width: 100%;
}

.inner {
  margin-top: min(6vw, 36px);
}

/**/

.main-cont {
  padding-bottom: min(6vw, 36px);
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  justify-content: center;
  align-items: start;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.4;
}

.grid p+p {
  margin-top: 1em;
}

.grid-img,
.grid-txt {
  min-width: 0;
}

.grid-img {
  width: 90%;
  margin: 0 auto;
}

.grid-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.note {
  margin-top: min(6vw, 36px);
  padding-top: min(6vw, 36px);
  border-top: 1px solid #ccc;
  font-size: 1.4rem;
}

@media screen and (min-width: 641px) {
  .grid {
    grid-template-columns: 300px 1fr;
    gap: 24px;
    font-size: 1rem;
  }

  .grid-img {
    width: 100%;
    margin: 0 auto;
  }

  .note {
    font-size: 0.875rem;
  }
}

/**/

.status-list {
  margin: 1em 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.status-item {
  display: flex;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5em;
  padding: 0.25em;
  font-size: 0.9em;
  /* font-weight: bold; */
  color: #ffffff;
  border-radius: 4px;
  line-height: 1.2;
  white-space: nowrap;
}

/* 色のバリエーション */
.badge--orange {
  background-color: #f36c21;
}

.badge--red {
  background-color: #e60000;
}

/* 本文のデザイン */
/* .status-text {
  font-size: 1rem;
  font-weight: bold;
  color: #111111;
  line-height: 1.5;
} */

/* ---------------------------------------------------------------------------
 * 汎用
--------------------------------------------------------------------------- */
/* テキスト
------------------------------------ */
.fs_xs {
  font-size: 0.75em !important;
}

.fs_s {
  font-size: 0.875em !important;
}

.fs_l {
  font-size: 1.25em !important;
}

.fs_xl {
  font-size: 1.5em !important;
}

.fs_inherit {
  font-size: inherit !important;
}

.fw_normal {
  font-weight: normal !important;
}

.fw_bold {
  font-weight: bold !important;
}

.ti-05 {
  text-indent: -0.5em !important;
}

.ls01 {
  letter-spacing: 0.1em !important;
}

.ls-005 {
  letter-spacing: -0.05em !important;
}

.ls-01 {
  letter-spacing: -0.1em !important;
}

.ls-02 {
  letter-spacing: -0.2em !important;
}

.ls-03 {
  letter-spacing: -0.3em !important;
}

.ta_left {
  text-align: left !important;
}

.ta_right {
  text-align: right !important;
}

.ta_center {
  text-align: center !important;
}

.week {
  margin: 0 -0.5em;
  display: inline-block;
  font-size: 0.875em;
}

.fc_red {
  color: #e60000;
}

.ti {
  display: inline-block;
  text-indent: -1em !important;
  padding-left: 1em !important;
}

/* レイアウト
------------------------------------ */
.mt0 {
  margin-top: 0 !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt_1em {
  margin-top: 1em !important;
}

.mb_1em {
  margin-bottom: 1em !important;
}

.w_100 {
  width: 100% !important;
}

.d_ib{
  display: inline-block;
}