@charset "UTF-8";
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  background: #f5f7fa;
  margin: 0;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.w_base {
  margin: 0 auto;
  width: 1180px;
}

.select_answer {
  border: solid 3px #FF1493 !important;
  background: #f9e5f0;
}

.select_union_off {
  color: #e9e9e9 !important;
}

.select_union_on {
  font-size: 1.6em !important;
  font-weight: 900 !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  /*index header*/
}
.hd_bg .i_hd {
  margin-top: 190px;
  margin-bottom: 100px;
  position: relative;
  width: 100%;
}
.hd_bg .i_hd p {
  text-align: center;
  font-size: 1.6rem;
}
.hd_bg .i_hd .logo {
  max-width: 1180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.hd_bg .i_hd .logo img {
  width: 110px;
  padding-right: 10px;
}
.hd_bg .i_hd .logo .title {
  line-height: 1.2;
}
.hd_bg .i_hd .logo .title a {
  display: flex;
  flex-direction: column-reverse;
  text-decoration: none;
}
.hd_bg .i_hd .logo .title a h1 {
  display: block;
  text-align: center;
  font-size: 4.5em;
  color: #353230;
}
.hd_bg .i_hd .logo .title a span {
  display: block;
  font-size: 2.6em;
  font-weight: bold;
  color: #353230;
  padding-bottom: 5px;
}
.hd_bg {
  /*index 以外の header*/
}
.hd_bg .hd {
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
  width: 100%;
}
.hd_bg .hd .logo {
  max-width: 1180px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 80px;
  margin: 0 auto;
}
.hd_bg .hd .logo img {
  width: 70px;
}
.hd_bg .hd .logo .title {
  margin-left: 10px;
  line-height: 1.2;
}
.hd_bg .hd .logo .title a {
  display: flex;
  flex-direction: column-reverse;
  text-decoration: none;
}
.hd_bg .hd .logo .title a h1 {
  display: block;
  font-size: 2.5em;
  color: #353230;
}
.hd_bg .hd .logo .title a span {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  color: #353230;
  text-align: left;
  padding-bottom: 5px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  display: flex;
  flex-direction: column;
}
.con_bg .con {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 20px;
  text-align: center;
}
.con_bg .con .index_btn a {
  display: block;
  width: 35vw;
  color: #222;
  background-color: #fff;
  border: 1px solid #222;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  padding: 25px;
  border-radius: 7px;
  margin: 0 auto;
  text-decoration: none;
  margin-bottom: 200px;
}
.con_bg .con .index_btn a:hover {
  color: #fff;
  background-color: #222;
}
.con_bg .con {
  /* 質問番号（ページネーション風） */
}
.con_bg .con ul.q-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
  margin: 0 auto 40px;
  padding: 3px 3px;
  background: #ddd;
  border-radius: 40px;
  list-style: none;
  gap: 30px;
}
.con_bg .con ul.q-pagination li {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #777;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.3s;
}
.con_bg .con ul.q-pagination li.active {
  background: #b100b1;
  color: #fff;
}
.con_bg .con ul.q-pagination .union {
  background: #b100b1;
  display: flex;
  gap: 30px;
  border-radius: 999px;
}
.con_bg .con h1 {
  padding-bottom: 5px;
  display: block;
  text-align: center;
  font-size: 4.5em;
  color: #353230;
}
.con_bg .con h2 {
  padding-bottom: 5px;
  display: block;
  text-align: center;
  font-size: 3em;
  color: #353230;
  margin-bottom: 0;
}
.con_bg .con h2 span {
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #dadada;
  background-color: #fff;
  color: #FF1493;
  border-radius: 40px;
  padding: 0 30px;
}
.con_bg .con {
  /* 質問文 */
}
.con_bg .con h2.q-h2 {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 30px;
}
.con_bg .con .fs_l {
  font-size: 1.4em;
}
.con_bg .con {
  /* 選択肢ボタン */
}
.con_bg .con form {
  margin-bottom: 12px;
}
.con_bg .con button {
  width: 100%;
  max-width: 420px;
  padding: 14px;
  font-size: 16px;
  background: #fff;
  border: 2px solid #1b74cb;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  text-align: left;
}
.con_bg .con button:hover {
  background: #1b74cb;
  color: #fff;
}
.con_bg .con {
  /* 診断結果table */
}
.con_bg .con .table-scroll {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}
.con_bg .con .table-scroll table {
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
}
.con_bg .con .table-scroll table, .con_bg .con .table-scroll td, .con_bg .con .table-scroll th {
  border: 1px solid #595959;
}
.con_bg .con .table-scroll td, .con_bg .con .table-scroll th {
  width: 125px;
  padding: 5px;
  white-space: normal;
  word-break: break-word;
}
.con_bg .con .table-scroll td a, .con_bg .con .table-scroll th a {
  display: block;
  color: #fff;
  line-height: 1.4;
  transition: all 0.2s;
}
.con_bg .con .table-scroll td a:hover, .con_bg .con .table-scroll th a:hover {
  color: #1b74cb;
  background: #fff;
  transition: all 0.2s;
}
.con_bg .con .table-scroll th {
  color: #fff;
  background: #DA70D6;
}
.con_bg .con .table-scroll td {
  text-align: left;
  vertical-align: top;
}
.con_bg .con .table-scroll td:first-child {
  width: 50px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
.con_bg .con .table-scroll td:first-child:not(:empty) {
  color: #fff;
  background: #DA70D6;
}
.con_bg .con .table-scroll td:first-child a {
  padding: 60px 0px;
}
.con_bg .con .table-scroll td:nth-child(2):not(:empty) {
  background: #d8e9fb;
}
.con_bg .con .table-scroll::-webkit-scrollbar {
  height: 6px;
}
.con_bg .con .table-scroll::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.con_bg .con .table-scroll::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 3px;
}
.con_bg .con .bottom-button-wrap {
  display: flex;
  width: 40%;
  margin: 10px auto;
}
.con_bg .con .bottom-button-wrap .back-button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 13px;
  background: #777777;
  border: 1px solid #777777;
  border-radius: 5px;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.2s;
}
.con_bg .con .bottom-button-wrap .back-button a {
  color: #fff;
  text-decoration: none;
  text-align: center;
}
.con_bg .con .bottom-button-wrap .back-button:hover {
  background: #222222;
  color: #fff;
}
.con_bg .con .bottom-button-wrap .back-button2 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  background: #777777;
  border: 1px solid #777777;
  border-radius: 5px;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.2s;
}
.con_bg .con .bottom-button-wrap .back-button2 a {
  color: #fff;
  text-decoration: none;
  text-align: center;
}
.con_bg .con .bottom-button-wrap .back-button2:hover {
  background: #222222;
  color: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
}
.ft_bg .ft {
  width: 100%;
  padding: 20px 0;
  background: #fff;
}
.ft_bg .ft .ft_ttl {
  margin: 0;
  padding: 0px 0 8px 0;
  color: #484848;
  font-size: 16.8px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
}
.ft_bg .ft .ft_add {
  padding-bottom: 15px;
  font-size: 1.2em;
  text-align: center;
  line-height: 1.5;
}
.ft_bg .ft .ft_add span {
  font-size: 0.8em;
  padding-right: 10px;
}
.ft_bg .ft .ft_copy {
  display: block;
  font-size: 1.1em;
  text-align: center;
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------
  ************************************************************************************************************************************************************
  ** responsive
  ************************************************************************************************************************************************************
--------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
******************************************************************************
******************************************************************************
******************************************************************************
**************************** SP スマホ　レスポンシブ ***************************
******************************************************************************
******************************************************************************
******************************************************************************
******************************************************************************
----------------------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** base
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    min-height: 100vh;
  }
  .w_base {
    margin: 0 auto;
    width: 100%;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .hd_bg {
    /*index header*/
  }
  .hd_bg .i_hd {
    margin-top: 190px;
    margin-bottom: 100px;
    position: relative;
    width: 100%;
  }
  .hd_bg .i_hd p {
    text-align: center;
    font-size: 1.6rem;
  }
  .hd_bg .i_hd .logo {
    max-width: 1180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .hd_bg .i_hd .logo img {
    width: 110px;
    padding-right: 10px;
  }
  .hd_bg .i_hd .logo .title {
    line-height: 1.2;
  }
  .hd_bg .i_hd .logo .title a {
    display: flex;
    flex-direction: column-reverse;
    text-decoration: none;
  }
  .hd_bg .i_hd .logo .title a h1 {
    display: block;
    text-align: center;
    font-size: 4.5em;
    color: #353230;
  }
  .hd_bg .i_hd .logo .title a span {
    display: block;
    font-size: 2.6em;
    font-weight: bold;
    color: #353230;
    padding-bottom: 5px;
  }
  .hd_bg {
    /*index 以外の header*/
  }
  .hd_bg .hd {
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
  }
  .hd_bg .hd .logo {
    max-width: 1180px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 80px;
    margin: 0 auto;
  }
  .hd_bg .hd .logo img {
    width: 70px;
  }
  .hd_bg .hd .logo .title {
    margin-left: 10px;
    line-height: 1.2;
  }
  .hd_bg .hd .logo .title a {
    display: flex;
    flex-direction: column-reverse;
    text-decoration: none;
  }
  .hd_bg .hd .logo .title a h1 {
    display: block;
    font-size: 2.5em;
    color: #353230;
  }
  .hd_bg .hd .logo .title a span {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: #353230;
    text-align: left;
    padding-bottom: 5px;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .con_bg {
    min-height: auto !important;
    height: auto !important;
    padding: 0 20px;
  }
  .con_bg .con {
    min-height: auto !important;
    height: auto !important;
    padding: 30px 0 0;
  }
  .con_bg .con .index_btn a {
    display: block;
    width: 100%;
    color: #222;
    background-color: #fff;
    border: 1px solid #222;
    font-size: 1.4rem;
    text-align: center;
    padding: 10px;
    border-radius: 7px;
    margin: 0 auto;
    text-decoration: none;
    margin-bottom: 100px;
  }
  .con_bg .con .index_btn a:hover {
    color: #fff;
    background-color: #222;
  }
  .con_bg .con {
    /* 質問番号（ページネーション風） */
  }
  .con_bg .con ul.q-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 400px;
    margin: 0 auto 40px;
    padding: 3px 3px;
    background: #ddd;
    border-radius: 40px;
    list-style: none;
    gap: 30px;
  }
  .con_bg .con ul.q-pagination li {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #777;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s;
  }
  .con_bg .con ul.q-pagination li.active {
    background: #b100b1;
    color: #fff;
  }
  .con_bg .con ul.q-pagination .union {
    background: #b100b1;
    display: flex;
    gap: 30px;
    border-radius: 999px;
  }
  .con_bg .con h1 {
    padding-bottom: 5px;
    display: block;
    text-align: center;
    font-size: 4.5em;
    color: #353230;
  }
  .con_bg .con h2 {
    padding-bottom: 5px;
    display: block;
    text-align: center;
    font-size: 2em;
    color: #353230;
    margin-bottom: 0;
  }
  .con_bg .con h2 span {
    display: block;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid #dadada;
    background-color: #fff;
    color: #FF1493;
    border-radius: 40px;
    padding: 0 30px;
  }
  .con_bg .con {
    /* 質問文 */
  }
  .con_bg .con h2.q-h2 {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .con_bg .con .fs_l {
    font-size: 1.6em;
  }
  .con_bg .con {
    /* 選択肢ボタン */
  }
  .con_bg .con form {
    margin-bottom: 20px;
  }
  .con_bg .con button {
    width: 100%;
    max-width: 420px;
    padding: 10px 5px;
    font-size: 14px;
    background: #fff;
    border: 2px solid #1b74cb;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    color: #222;
    text-align: left;
  }
  .con_bg .con button:hover {
    background: #1b74cb;
    color: #fff;
  }
  .con_bg .con {
    /* 診断結果table */
  }
  .con_bg .con .table-scroll {
    position: relative;
    overflow-x: auto; /* 横スクロール */
    -webkit-overflow-scrolling: touch;
    border-bottom: 4px solid #f1f1f1; /* スクロール可能とわかるバー */
    padding-bottom: 0px; /* スクロールバーの余白 */
  }
  .con_bg .con .table-scroll table {
    width: -moz-max-content;
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
  }
  .con_bg .con .table-scroll table, .con_bg .con .table-scroll td, .con_bg .con .table-scroll th {
    border: 1px solid #595959;
  }
  .con_bg .con .table-scroll td, .con_bg .con .table-scroll th {
    width: 125px;
    padding: 5px;
    height: auto;
    white-space: normal;
    word-break: break-word;
  }
  .con_bg .con .table-scroll td a, .con_bg .con .table-scroll th a {
    display: block;
    color: #fff;
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
    transition: all 0.2s;
  }
  .con_bg .con .table-scroll td a:hover, .con_bg .con .table-scroll th a:hover {
    color: #1b74cb;
    background: #fff;
    transition: all 0.2s;
  }
  .con_bg .con .table-scroll th {
    color: #fff;
    background: #DA70D6;
  }
  .con_bg .con .table-scroll td:first-child {
    width: 50px;
  }
  .con_bg .con .table-scroll td:first-child:not(:empty) {
    color: #fff;
    background: #DA70D6;
  }
  .con_bg .con .table-scroll td:nth-child(2):not(:empty) {
    background: #d8e9fb;
  }
  .con_bg .con .table-scroll::-webkit-scrollbar {
    height: 8px;
  }
  .con_bg .con .table-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
  }
  .con_bg .con .table-scroll::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 4px;
  }
  .con_bg .con .table-scroll::-webkit-scrollbar-thumb:hover {
    background: #666;
  }
  .con_bg .con .bottom-button-wrap {
    display: block;
    width: 100%;
    margin: 10px auto 20px;
  }
  .con_bg .con .bottom-button-wrap .back-button {
    width: 65%;
    padding: 5px 13px;
    background: #777777;
    border: 1px solid #777777;
    border-radius: 5px;
    margin: 0 auto;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 20px;
  }
  .con_bg .con .bottom-button-wrap .back-button a {
    color: #fff;
    text-decoration: none;
    text-align: center;
  }
  .con_bg .con .bottom-button-wrap .back-button:hover {
    background: #222222;
    color: #fff;
  }
  .con_bg .con .bottom-button-wrap .back-button2 {
    margin-top: 20px;
    width: 65%;
    padding: 5px;
    background: #777777;
    border: 1px solid #777777;
    border-radius: 5px;
    margin: 0 auto;
    cursor: pointer;
    transition: 0.2s;
  }
  .con_bg .con .bottom-button-wrap .back-button2 a {
    color: #fff;
    text-decoration: none;
    text-align: center;
  }
  .con_bg .con .bottom-button-wrap .back-button2:hover {
    background: #222222;
    color: #fff;
  }
}/*# sourceMappingURL=question.css.map */