<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* --------------------------------------------------

[ユーザースタイリング設定]

ある程度の見た目設定はCSS変数を変更することで対応可能です。

-------------------------------------------------- */

:root {

/* ============================== */
/* 全体設定 */
/* ============================== */
--tpl-font-jp: "Noto Sans JP", 'Hiragino Kaku Gothic Pro', sans-serif;
--tpl-font-en: 'Helvetica Neue', sans-serif;

/* ============================== */
/* ベースエリア設定 */
/* ============================== */

/* 背景色 */
--tpl-base-backgroundColor: #F3F3F3;
/* 文字色 */
--tpl-base-fontColor: #333;


/* ============================== */
/* フォームエリア設定 */
/* ============================== */


/* ============================== */
/* フォント設定 */
/* ============================== */


/* ============================== */
/* その他の色設定 */
/* ============================== */



}

.tpl-form-age__wrap{
  display: flex;
    flex-wrap: wrap;
    gap: 0 1.2rem;
    align-items: center;
}

/*年齢*/
.tpl-form-age{
  width: 25%;
  min-width: 150px;
}

.tpl-form-age__wrap  p{
  font-size: var(--fs-r);
    color: #555;
}

/*最終学歴*/

.tpl-form-gtaduate{
  display: flex;
  gap: 2.4rem;
  width: 50%;
  min-width: 300px;
}

@media screen and (max-width: 768px) {
  .tpl-form-gtaduate{
    width: 100%;
  }
}

.tpl-form-gtaduate &gt; div{
  width:100%;
}


.tpl-form-gtaduate-item{
  display: flex;
  gap: 0 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.tpl-form-gtaduate-item &gt; div{
  width: calc(100% - 2.6rem);
}

.tpl-form-gtaduate-item p{
  font-size: var(--fs-r);
  color: #555;
}

/* .c_graduate_year,
.c_graduate_month{
  padding-right: 4rem;
} */


.form-check__graduate-content{
  display: grid;
  -ms-grid-columns: 8rem 4fr;
  grid-template-columns: 8rem 4fr;

  @media screen and (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}

.form-check__graduate-content:not(:first-child){
  @media screen and (max-width: 768px) {
    margin-top: 0.8rem;
  }
}



.form-check__graduate-block{
  font-size: 1.3rem;
  padding: 0.8rem 1.6rem 0.8rem 0;
  color: #333333;

  @media screen and (max-width: 768px) {
    padding: 0;
    padding: 0.4rem 0.8rem 0.4rem 0;
  }
}</pre></body></html>