@charset "UTF-8";
/* ==========================================================================
 * PAGES - trial
 *
 * WordPressのページをカスタマイズ
 * ========================================================================== */
/* ==========================================================================
 * ABSTRACTS - variables
 *
 * テーマ全体で使用する変数を定義
 * ========================================================================== */
/* ==========================================================
  ▼ ブランドカラー
============================================================ */
/* ==========================================================
  ▼ プランカラー
============================================================ */
/* ==========================================================
  ▼ UIカラー（補助的なカラーパレット）
============================================================ */
/* ==========================================================
  ▼ フォント関連
============================================================ */
/* ==========================================================================
 * ABSTRACTS - mixins
 *
 * テーマで再利用可能な変数を定義
 * ========================================================================== */
/* ==========================================================
  ▼ @mixin respon($device) - デバイスごとのレスポンシブ処理
============================================================ */
/* ==========================================================
  ▼ @mixin clearfix - フロート解除用
============================================================ */
/* ==========================================================
  ▼ @mixin nested-ol - olの入れ子階層に応じた番号スタイル
============================================================ */
/* ==========================================================
  ▼ trial
============================================================ */
#trial .trial_wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: justify;
          justify-content: space-between;
  gap: 40px;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  #trial .trial_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }
}
#trial .trial_wrap .wrap_description {
  -webkit-box-flex: 1;
          flex-grow: 1;
}
#trial .trial_wrap .wrap_description .speech {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: bold;
  letter-spacing: 0.2rem;
  text-align: center;
  line-height: 1;
  color: #0fa775;
}
@media screen and (max-width: 768px) {
  #trial .trial_wrap .wrap_description .speech {
    line-height: 1.4;
  }
}
#trial .trial_wrap .wrap_description .speech::before, #trial .trial_wrap .wrap_description .speech::after {
  content: "";
  width: 24px;
  height: 2px;
  box-sizing: border-box;
  background-color: #0fa775;
}
#trial .trial_wrap .wrap_description .speech::before {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
#trial .trial_wrap .wrap_description .speech::after {
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}
#trial .trial_wrap .wrap_description .main_img {
  display: block;
  width: 70%;
  margin: 0 auto;
}
#trial .trial_wrap .wrap_description .main_img img {
  width: 100%;
}
#trial .trial_wrap .wrap_description .summary {
  margin-top: 40px;
}
#trial .trial_wrap .wrap_description .summary table {
  width: 100%;
  border-collapse: initial;
  border-spacing: 4px 16px;
}
#trial .trial_wrap .wrap_description .summary table th, #trial .trial_wrap .wrap_description .summary table td {
  padding: 4px 16px;
  font-weight: bold;
  vertical-align: middle;
}
#trial .trial_wrap .wrap_description .summary table th {
  background-color: #0fa775;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #trial .trial_wrap .wrap_description .summary table th {
    text-align: left;
    display: -webkit-box;
    display: flex;
  }
}
#trial .trial_wrap .wrap_description .summary table td {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
#trial .trial_wrap .wrap_description .summary table td small {
  font-size: 0.8em;
}
#trial .trial_wrap .wrap_form {
  width: 500px;
  -webkit-box-flex: 0;
          flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #trial .trial_wrap .wrap_form {
    width: 100%;
  }
}