@charset "UTF-8";
/* ==================================================
	basic settings
================================================== */
/* ==================================================
	base
================================================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background: #eaf4f4;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: #333;
  font-size: 1.4rem;
  font-weight: normal;
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.15rem;
  line-height: 1.231;
  position: relative;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 1025px) {
  body {
    padding: 15px;
    display: flex;
  }
}

/* ========== end △ */
/* ▽ PRINT layout ========== */
@media print {
  body {
    background: #fff;
    font-size: 12pt;
    padding: 0;
  }
}

/* ========== end △ */
body::after {
  content: "";
  display: block;
  clear: both;
}

a {
  transition: .3s all ease;
}

a:hover {
  opacity: 0.6;
}

input:not(submit), input:not(button) {
  border: 1px solid #dbd0b6;
}

textarea {
  border: 1px solid #dbd0b6;
}

/* ==================================================
	basic_layout
================================================== */
.cont_wrapper {
  max-width: 1400px;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 1025px) {
  .cont_wrapper {
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  }
}

/* ========== end △ */
/* ▽ PRINT layout ========== */
@media print {
  .cont_wrapper {
    max-width: auto;
  }
}

/* ========== end △ */
.cont_wrapper .container {
  padding-left: 30px;
  padding-right: 30px;
}

.cont_wrapper .container .mid_sec {
  padding-top: 80px;
}

.cont_wrapper .container .mid_sec > *:not(.ttl) {
  margin-top: 20px;
}

.pagetop {
  width: 40px;
  height: 40px;
  background: #ae9352;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  position: fixed;
  right: 35px;
  bottom: 35px;
  text-decoration: none !important;
  border-radius: 200px;
  z-index: 3;
}

.pagetop:hover {
  box-shadow: none;
  opacity: 1;
}

.pagetop span {
  line-height: 1;
  transform: rotate(-90deg) translateY(-10%);
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .pagetop {
    right: 15px;
    bottom: 15px;
  }
}

/* ========== end △ */
/* ==================================================
	ttl
================================================== */
.ttl {
  width: fit-content;
  min-width: 460px;
  background-color: #eaf4f4;
  box-sizing: border-box;
  font-size: 2.4rem;
  position: relative;
  padding: 15px 15px 15px 46px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.ttl::before {
  width: 16px;
  height: 16px;
  background: #ae9352;
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  border: 3px solid #fff;
  border-radius: 15px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .ttl {
    min-width: 100%;
  }
}

/* ========== end △ */
/* ==================================================
	btn
================================================== */
.btn01 a {
  background: url(../images/admin/feather.svg) left 35px center/auto 26px no-repeat;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  color: #1f01b9;
  display: block;
  text-decoration: none;
  position: relative;
  padding: 15px 20px 15px 75px;
  border: 2px solid #1f01b9;
  border-radius: 200px;
  transition: .3s all ease;
}

.btn01 a:hover {
  opacity: 1;
  box-shadow: none;
}

.btn02 a {
  background: #ae9352;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  position: relative;
  padding: 15px 80px 15px 80px;
  border: none;
  border-radius: 200px;
  transition: .3s all ease;
}

.btn02 a:hover {
  opacity: 1;
  box-shadow: none;
}

.btn02 a[target="blank"] {
  padding: 15px 100px 15px 80px;
}

.btn02 a[target="blank"]::before, .btn02 a[target="blank"]::after {
  width: 20px;
  height: 14px;
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
}

.btn02 a[target="blank"]::before {
  bottom: 40%;
  right: 68px;
  border: 1px solid #fff;
}

.btn02 a[target="blank"]::after {
  background: rgba(255, 255, 255, 0.5);
  top: 40%;
  right: 64px;
}

.add_btn {
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  color: #ae9352;
  display: block;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  position: relative;
  padding: 15px 80px 15px 80px;
  border: 2px solid #ae9352;
  border-radius: 200px;
  transition: .3s all ease;
}

.add_btn:hover {
  opacity: 1;
  box-shadow: none;
}

.add_btn.mode_min {
  padding: 10px 40px 10px 40px;
}

/* ==================================================
	header
================================================== */
#header {
  width: 100%;
  box-sizing: border-box;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 1025px) {
  #header {
    max-width: 280px;
    margin-right: 20px;
  }
}

/* ========== end △ */
/* ▽ PRINT layout ========== */
@media print {
  #header {
    display: none;
  }
}

/* ========== end △ */
#header > .inner {
  border-radius: 15px;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 1025px) {
  #header > .inner {
    background: #fff;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    height: calc(100vh - 30px);
    position: sticky;
    top: 15px;
  }
}

/* ========== end △ */
#header > .inner .top {
  background: #ae9352;
  color: #fff;
  padding: 30px 10px 15px;
  border-radius: 15px 15px 0 0;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  #header > .inner .top {
    border-radius: 0;
    padding: 10px 10px 10px;
  }
}

/* ========== end △ */
#header > .inner .top h1 {
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  #header > .inner .top h1 {
    font-size: 1.8rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

/* ========== end △ */
#header > .inner .top .account {
  font-size: 1.2rem;
  text-align: center;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  #header > .inner .top .account {
    font-size: 1.0rem;
  }
}

/* ========== end △ */
#header > .inner .body {
  padding: 30px 10px;
}

#header > .inner .body .inner:not(:first-child) {
  margin-top: 40px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  #header > .inner .body .inner:not(:first-child) {
    margin-top: 20px;
  }
}

/* ========== end △ */
#header > .inner .body .inner .tit {
  color: #ae9352;
  font-size: 2.0rem;
  padding-left: 26px;
  margin-bottom: 15px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  #header > .inner .body .inner .tit {
    margin-bottom: 10px;
  }
}

/* ========== end △ */
#header > .inner .body .inner .tit.ques {
  background: url(../images/admin/file.svg) left center/auto 20px no-repeat;
}

#header > .inner .body .inner .tit.comp {
  background: url(../images/admin/building.svg) left center/auto 20px no-repeat;
}

#header > .inner .body .inner .tit.conf {
  background: url(../images/admin/user.svg) left center/auto 20px no-repeat;
}

#header > .inner .body .inner ul {
  padding-left: 18px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  #header > .inner .body .inner ul {
    display: flex;
    gap: 20px 20px;
  }
}

/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 1025px) {
  #header > .inner .body .inner ul > li:not(:first-child) {
    margin-top: 5px;
  }
}

/* ========== end △ */
#header > .inner .body .inner ul > li a {
  color: #ae9352;
}

/* ==================================================
	#page_ttl
================================================== */
#page_ttl {
  background-color: #ae9352;
  border-radius: 15px 15px 0 0;
}

#page_ttl h2 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  padding: 40px 0;
}

#page_ttl #anchor {
  background: #cce3de;
}

#page_ttl #anchor ul {
  display: flex;
  padding: 10px 0;
}

#page_ttl #anchor ul > li:not(:last-child) {
  margin-right: 20px;
}

#page_ttl #anchor ul > li a {
  color: #333;
  font-size: 1.2rem;
}

/* ==================================================
	box
================================================== */
.evaluation_box {
  width: fit-content;
  min-width: 700px;
  box-sizing: border-box;
  padding: 20px;
  border: 4px solid #eaf4f4;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .evaluation_box {
    min-width: auto;
  }
}

/* ========== end △ */
.evaluation_box .tit {
  font-size: 2.0rem;
  margin-bottom: 20px;
}

.evaluation_box .supplement {
  background: #eaf4f4;
  padding: 20px;
  margin-top: 20px !important;
}

.rank_box {
  display: flex;
  align-items: center;
}

.rank_box .table_style {
  margin-right: 20px;
}

.rank_box .table_style tbody th {
  background: #f2ead7;
}

.rank_box p {
  color: #b9b9b9;
}

.scrol_box {
  border: 4px solid #eaf4f4;
  height: auto;
  max-height: 440px;
  box-sizing: border-box;
  overflow-y: auto;
  padding: 20px;
}

.txt_box > *:not(:first-child) {
  margin-top: 8px;
}

/* ==================================================
	table
================================================== */
.table_style {
  position: relative;
  width: auto;
}

.table_style th, .table_style td {
  padding: 5px 8px;
  border-top: 1px solid #d1d8d8;
  border-right: 1px solid #d1d8d8;
  border-left: 1px solid #d1d8d8;
  border-bottom: 1px solid #d1d8d8;
  text-align: center;
}

.table_style th.tal, .table_style td.tal {
  text-align: left;
}

.table_style th.req::before {
  content: "必須";
  background: #ae9352;
  color: #fff;
  font-size: 1.0rem;
  padding: 2px 5px;
  margin-right: 10px;
}

.table_style thead th {
  background: #cce3de;
  border: 1px solid #b2b9b9;
}

.table_style tbody th {
  background: #eaf4f4;
}

.table_style.mode_view th, .table_style.mode_view td {
  padding: 15px 15px;
}

/* ==================================================
	form
================================================== */
.form01 {
  width: fit-content;
  min-width: 700px;
  background: #f2ead7;
  box-sizing: border-box;
  padding: 20px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .form01 {
    width: 100%;
    min-width: 100%;
  }
}

/* ========== end △ */
.form01 textarea,
.form01 input:not(.add_btn) {
  box-sizing: border-box;
  padding: 8px;
}

.form01 .inner .tit {
  font-size: 2.0rem;
  margin-bottom: 20px;
}

.form01 .inner textarea {
  width: 100%;
}

.form01 .inner:not(:first-child) {
  margin-top: 40px;
}

.form01 .inner .text_li > li:not(:first-child) {
  margin-top: 10px;
}

.form01 .inner .text_li > li textarea {
  resize: vertical;
}

.form01 .inner.mode01 .table_style {
  width: 100%;
  display: table;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .form01 .inner.mode01 .table_style {
    display: block;
  }
}

/* ========== end △ */
.form01 .inner.mode01 .table_style > dl {
  display: table-row;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .form01 .inner.mode01 .table_style > dl {
    display: block;
  }
}

/* ========== end △ */
/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .form01 .inner.mode01 .table_style > dl:not(:first-child) {
    margin-top: 10px;
  }
}

/* ========== end △ */
.form01 .inner.mode01 .table_style > dl:not(:first-child) > dt, .form01 .inner.mode01 .table_style > dl:not(:first-child) > dd {
  padding-top: 20px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .form01 .inner.mode01 .table_style > dl:not(:first-child) > dt, .form01 .inner.mode01 .table_style > dl:not(:first-child) > dd {
    padding-top: 0;
  }
}

/* ========== end △ */
.form01 .inner.mode01 .table_style > dl > dt, .form01 .inner.mode01 .table_style > dl > dd {
  display: table-cell;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .form01 .inner.mode01 .table_style > dl > dt, .form01 .inner.mode01 .table_style > dl > dd {
    display: block;
  }
}

/* ========== end △ */
.form01 .inner.mode01 .table_style > dl > dt input, .form01 .inner.mode01 .table_style > dl > dd input {
  width: 100%;
}

.form01 .inner.mode01 .table_style > dl > dt {
  width: 180px;
  padding-right: 20px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .form01 .inner.mode01 .table_style > dl > dt {
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
  }
}

/* ========== end △ */
.form01 .inner.mode01 .table_style > dl > dt.req::before {
  content: "必須";
  background: #ae9352;
  color: #fff;
  font-size: 1.0rem;
  padding: 2px 5px;
  margin-right: 10px;
}

.form01 .inner.mode02 input {
  min-width: fit-content;
}

.form01 .inner.mode02 .date_box {
  display: flex;
  gap: 20px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .form01 .inner.mode02 .date_box {
    display: block;
  }
}

/* ========== end △ */
.form01 .inner.mode02 .date_box dl {
  display: flex;
  align-items: center;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .form01 .inner.mode02 .date_box dl:not(:first-child) {
    margin-top: 10px;
  }
}

/* ========== end △ */
.form01 .inner.mode02 .date_box dl > dt {
  margin-right: 5px;
}

.form01 .inner.mode02 .form_box .form_row {
  display: flex;
}

.form01 .inner.mode02 .form_box .form_row select {
  box-sizing: border-box;
  padding: 5px;
  margin-left: 20px;
}

.form01 .inner.mode02 .form_box .form_row:not(:first-child) {
  margin-top: 10px;
}

.form01 .inner.mode02 .form_box .form_row.template {
  display: none;
}

.form01 .inner.mode02 .form_box input {
  display: block;
}

.form01 .inner.mode02 .form_box input:not(:first-child) {
  margin-top: 10px;
}

.form01 .inner.mode02 .add_btn {
  margin-top: 20px;
}

/* ==================================================
	parts
================================================== */
.select {
  width: fit-content;
  position: relative;
}

.select select {
  appearance: none;
  min-width: 180px;
  box-sizing: border-box;
  color: #ae9352;
  cursor: pointer;
  padding: 15px 40px 15px 20px;
  border: 2px solid #ae9352;
  border-radius: 200px;
}

.select select:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}

.select select::-ms-expand {
  display: none;
}

.select select option.hidden {
  display: none;
}

.select::after {
  content: "›";
  color: #ae9352;
  font-size: 2.0rem;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
}

.submit {
  background: #ae9352;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 15px 80px 15px 80px !important;
  border: none;
  border-radius: 200px;
  transition: .3s all ease;
}

.submit:hover {
  box-shadow: none;
}

.btn_mt {
  text-align: center;
  margin-top: 20px;
}

.btn_mt > .btn02 {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ==================================================
	pages
================================================== */
.page_base .cont_wrapper {
  padding-bottom: 80px;
  border-radius: 15px;
}

.page_base .cont_wrapper .search_box {
  width: fit-content;
  background: #f2ead7;
  box-sizing: border-box;
  padding: 20px;
}

.page_base .cont_wrapper .search_box form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 20px;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 1025px) {
  .page_base .cont_wrapper .chart_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 0;
  }
}

/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 1025px) {
  .page_base .cont_wrapper .chart_box > .inner_50p {
    width: 50%;
  }
}

/* ========== end △ */
.page_base.mode_comparison .cont_wrapper > .container {
  height: calc(100% - 75px);
  box-sizing: border-box;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, #fafafa 50%, #fafafa 100%);
  border-radius: 0 0 15px 15px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .page_base.mode_comparison .cont_wrapper > .container {
    background: #fff;
  }
}

/* ========== end △ */
.page_base.mode_comparison .cont_wrapper .company_name {
  font-size: 2.0rem;
}

.page_base.mode_comparison .cont_wrapper .pc_flex {
  width: 100%;
  display: flex;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .page_base.mode_comparison .cont_wrapper .pc_flex {
    box-sizing: border-box;
    display: block;
    width: calc(100% + 60px);
    padding-right: 30px;
    padding-left: 30px;
    margin-left: -30px;
  }
}

/* ========== end △ */
.page_base.mode_comparison .cont_wrapper .pc_flex > .inner {
  width: 50%;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .page_base.mode_comparison .cont_wrapper .pc_flex > .inner {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
  }
}

/* ========== end △ */
.page_base.mode_comparison .cont_wrapper .pc_flex > .inner:first-child {
  padding-right: 20px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .page_base.mode_comparison .cont_wrapper .pc_flex > .inner:first-child {
    background: #f2ead7;
  }
  .page_base.mode_comparison .cont_wrapper .pc_flex > .inner:first-child::before {
    content: "A";
    color: #fff;
    display: inline-block;
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
}

/* ========== end △ */
.page_base.mode_comparison .cont_wrapper .pc_flex > .inner:last-child {
  padding-left: 20px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .page_base.mode_comparison .cont_wrapper .pc_flex > .inner:last-child {
    background: #e3d4b2;
  }
  .page_base.mode_comparison .cont_wrapper .pc_flex > .inner:last-child::before {
    content: "B";
    color: #fff;
    display: inline-block;
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
}

/* ========== end △ */
.page_base.mode_comparison .cont_wrapper .pc_flex > .inner table {
  background: #fff;
}

.page_base.mode_comparison .cont_wrapper .search_box {
  width: 100%;
  background: #f2ead7;
  background: linear-gradient(to right, #f2ead7 0%, #f2ead7 50%, #e3d4b2 50%, #e3d4b2 100%);
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .page_base.mode_comparison .cont_wrapper .search_box {
    background: #fff;
    padding: 0;
  }
}

/* ========== end △ */
.page_base.mode_comparison .cont_wrapper .search_box form {
  display: block;
}

.page_base.mode_comparison .cont_wrapper .search_box form .pc_flex .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2%;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .page_base.mode_comparison .cont_wrapper .search_box form .pc_flex .inner {
    box-sizing: border-box;
    padding: 20px;
  }
}

/* ========== end △ */
.page_base.mode_comparison .cont_wrapper .search_box form .pc_flex .inner:first-child {
  background: #f2ead7;
}

.page_base.mode_comparison .cont_wrapper .search_box form .pc_flex .inner:last-child {
  background: #e3d4b2;
}

.page_base.mode_comparison .cont_wrapper .search_box form .pc_flex .inner .select:first-child, .page_base.mode_comparison .cont_wrapper .search_box form .pc_flex .inner .select:nth-child(2) {
  width: 49%;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .page_base.mode_comparison .cont_wrapper .search_box form .pc_flex .inner .select:first-child, .page_base.mode_comparison .cont_wrapper .search_box form .pc_flex .inner .select:nth-child(2) {
    width: 100%;
  }
}

/* ========== end △ */
.page_base.mode_comparison .cont_wrapper .search_box form .pc_flex .inner .select:first-child select, .page_base.mode_comparison .cont_wrapper .search_box form .pc_flex .inner .select:nth-child(2) select {
  width: 100%;
}

.page_base.mode_comparison .cont_wrapper .search_box form .pc_flex .inner .select:last-child {
  width: 100%;
}

.page_base.mode_comparison .cont_wrapper .search_box form .pc_flex .inner .select:last-child select {
  width: 100%;
}

.page_base.mode_comparison .cont_wrapper .search_box form .submit {
  display: block;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}

.page_base.mode_comparison .cont_wrapper .sec_evaluation .rank_box {
  margin-top: 20px;
}

.page_base.mode_comparison .cont_wrapper .sec_exp-satis .btn_tar .btn02 a {
  width: fit-content;
  margin-left: auto;
}

.page_base.mode_comparison .cont_wrapper .sec_exp-satis .table_style.exp_data {
  width: 100%;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .page_base.mode_comparison .cont_wrapper .sec_exp-satis .table_style.exp_data th:first-child,
  .page_base.mode_comparison .cont_wrapper .sec_exp-satis .table_style.exp_data td:first-child {
    min-width: 60px;
  }
}

/* ========== end △ */
.page_base.mode_comparison .cont_wrapper .sec_exp-satis .table_style.exp_data tbody .total_row td[colspan="6"] {
  background: #eaf4f4;
}

.page_base.mode_comparison .cont_wrapper .sec_exp-satis .table_style.exp_data tbody .vertical_writhing {
  border-left: 1px solid #434343;
}

.page_base.mode_comparison .cont_wrapper .chart_box .inner_50p > canvas:not(:last-child) {
  margin-bottom: 20px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .page_base.mode_comparison .cont_wrapper .chart_box .inner_50p:first-child {
    padding: 20px;
    background: #f2ead7;
  }
  .page_base.mode_comparison .cont_wrapper .chart_box .inner_50p:first-child::before {
    content: "A";
    color: #fff;
    display: inline-block;
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
}

/* ========== end △ */
/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .page_base.mode_comparison .cont_wrapper .chart_box .inner_50p:last-child {
    padding: 20px;
    background: #e3d4b2;
  }
  .page_base.mode_comparison .cont_wrapper .chart_box .inner_50p:last-child::before {
    content: "B";
    color: #fff;
    display: inline-block;
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
}

/* ========== end △ */
.page_base.mode_comparison .cont_wrapper .top_worst {
  display: block;
}

.page_base.mode_comparison .cont_wrapper .top_worst .inner > table:first-child {
  margin-right: 0;
}

.page_base.mode_comparison .cont_wrapper .top_worst .inner > table:not(:last-child) {
  margin-bottom: 20px;
}

.page_base.mode_comparison .cont_wrapper .top_worst .inner > table tbody tr > td:nth-child(3),
.page_base.mode_comparison .cont_wrapper .top_worst .inner > table tbody tr > td:last-child {
  min-width: 32px;
}

.page_base.mode_comparison .cont_wrapper .sec_safety .evaluation_box,
.page_base.mode_comparison .cont_wrapper .sec_ToMo .evaluation_box {
  width: 100%;
  background: #fff;
}

.page_base.page_account .account_li {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2%;
}

.page_base.page_account .account_li > li {
  width: 49%;
  background: #f2ead7;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  padding: 20px;
  border-radius: 15px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .page_base.page_account .account_li > li {
    width: 100%;
  }
}

/* ========== end △ */
.page_base.page_account .account_li > li > .data {
  width: calc(100% - 100px);
}

.page_base.page_account .account_li > li > .data > dl:not(:first-child) {
  margin-top: 15px;
}

.page_base.page_account .account_li > li > .data > dl > dt {
  font-size: 1.0rem;
  margin-bottom: 5px;
}

.page_base.page_account .account_li > li > .right {
  width: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.page_base.page_account .account_li > li > .right form {
  margin-bottom: auto;
}

.page_base.page_account .account_li > li > .right form select {
  width: 100%;
  box-sizing: border-box;
  padding: 5px;
}

.page_base.page_account .account_li > li > .right a {
  color: #434343;
  display: block;
  text-align: right;
  margin-left: auto;
}

.page_base.page_account .form01 .input-wrap {
  position: relative;
}

.page_base.page_account .form01 .toggle-pass {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.page_base.mode_user #header > .inner .top {
  background: #1f01b9;
}

.page_base.mode_user #header > .inner .body .inner .tit {
  color: #1f01b9;
}

.page_base.mode_user #header > .inner .body .inner .tit.ques {
  background: url(../images/admin/file02.svg) left center/auto 20px no-repeat;
}

.page_base.mode_user #header > .inner .body .inner .tit.conf {
  background: url(../images/admin/user02.svg) left center/auto 20px no-repeat;
}

.page_base.mode_user #header > .inner .body .inner ul > li a {
  color: #1f01b9;
}

.page_base.mode_user #page_ttl {
  background: #1f01b9;
}

.page_base.mode_user .ttl::before {
  background: #1f01b9;
}

.page_base.mode_user .form01 {
  background: #e0daff;
}

.page_base.mode_user .form01 .inner.mode01 .table_style > dl > dt.req::before {
  background: #1f01b9;
}

.page_base.mode_user .btn02 a {
  background: #1f01b9;
}

.page_base.mode_user .submit {
  background: #1f01b9;
}

.page_base.mode_user input:not(submit), .page_base.mode_user input:not(button) {
  border: 1px solid #c1b9e9;
}

.page_base.mode_user .pagetop {
  background: #1f01b9;
}

.page_base.mode_user .cont_wrapper .search_box {
  background: #e0daff;
}

.page_base.mode_user .cont_wrapper .search_box form input[type="date"] {
  box-sizing: border-box;
  padding: 8px;
}

.page_base.mode_user .select::after {
  color: #1f01b9;
}

.page_base.mode_user .select select {
  color: #1f01b9;
  border: 2px solid #1f01b9;
}

.page_base.mode_user .rank_box .table_style tbody th {
  background: #e0daff;
}

.page_base.mode_user .sec_exp-satis .answer_data > dl > dt {
  background: #e0daff;
}

.page_base.mode_user .sec_option .scrol_box {
  /*スクロールバーの動く部分*/
}

.page_base.mode_user .sec_option .scrol_box .item .data .shop {
  background: #e0daff;
}

.page_base.mode_user .sec_option .scrol_box::-webkit-scrollbar-thumb {
  background-color: #1f01b9;
  border-radius: 10px;
}

.page_base.mode_user.mode_comparison .cont_wrapper .search_box {
  background: linear-gradient(to right, #e0daff 0%, #e0daff 50%, #bab2e3 50%, #bab2e3 100%);
}

.page_base.mode_user.mode_comparison .cont_wrapper .search_box .pc_flex .inner:first-child {
  background: #e0daff;
}

.page_base.mode_user.mode_comparison .cont_wrapper .search_box .pc_flex .inner:last-child {
  background: #bab2e3;
}

.page_base.mode_user .ques_box {
  width: fit-content;
  min-width: 700px;
  box-sizing: border-box;
  padding: 20px;
  border: 4px solid #e0daff;
}

.page_base.mode_user .ques_box .inner .tit {
  font-size: 2.0rem;
  margin-bottom: 20px;
}

.page_base.mode_user .ques_box .inner .tit .fs {
  margin-left: 10px;
  background: #eaf4f4;
  padding: 3px 5px;
}

.page_base.mode_user .ques_box .inner .btn_box {
  margin-top: 10px;
}

.page_base.mode_user .ques_box .inner .btn_copy {
  height: 34px;
  appearance: none;
  background: #d1d8d8;
  box-sizing: border-box;
  color: #1f01b9;
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 10px 30px 10px 30px !important;
  border: none;
  border-radius: 200px;
  transition: .3s all ease;
}

.page_base.mode_user .ques_box .inner .btn_copy:hover {
  cursor: pointer;
  opacity: 0.7;
}

.page_base.mode_user .ques_box .inner:not(:first-child) {
  padding-top: 20px;
  border-top: 1px solid #e0daff;
  margin-top: 20px;
}

/* ==================================================
	sec
================================================== */
.sec_exp-satis .answer_data {
  display: flex;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .sec_exp-satis .answer_data {
    display: block;
  }
}

/* ========== end △ */
.sec_exp-satis .answer_data > dl {
  margin-right: 20px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .sec_exp-satis .answer_data > dl {
    margin-right: 0;
  }
}

/* ========== end △ */
/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .sec_exp-satis .answer_data > dl {
    margin-top: 20px;
  }
}

/* ========== end △ */
.sec_exp-satis .answer_data > dl > dt {
  background: #f2ead7;
  text-align: center;
  padding: 3px 20px;
}

.sec_exp-satis .answer_data .ans_num dt {
  margin-bottom: 10px;
}

.sec_exp-satis .answer_data .ans_num dd {
  font-size: 2.4rem;
  text-align: center;
}

.sec_exp-satis .answer_data .ans_class dd {
  display: table;
}

.sec_exp-satis .answer_data .ans_class dd > p {
  display: table-row;
}

.sec_exp-satis .answer_data .ans_class dd > p > span {
  border-bottom: 1px solid #eaf4f4;
  padding-top: 10px;
}

.sec_exp-satis .answer_data .ans_class dd > p .class_name {
  display: table-cell;
  padding-right: 20px;
}

.sec_exp-satis .answer_data .ans_class dd > p .num {
  display: table-cell;
}

.sec_exp-satis .answer_data .btn02 {
  margin-left: 40px;
}

/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .sec_exp-satis .answer_data .btn02 {
    margin-top: 20px;
    margin-left: 0;
  }
}

/* ========== end △ */
/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .sec_exp-satis .table_style.exp_data td:not(:first-child), .sec_exp-satis .table_style.exp_data th:not(:first-child) {
    min-width: 60px;
  }
}

/* ========== end △ */
/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .sec_exp-satis .table_style.exp_data td:nth-child(3), .sec_exp-satis .table_style.exp_data th:nth-child(3) {
    min-width: 160px;
  }
}

/* ========== end △ */
.sec_exp-satis .table_style.exp_data thead {
  background: #b2b9b9;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 2;
}

.sec_exp-satis .table_style.exp_data thead::before {
  width: 100%;
  height: 56px;
  background: #b2b9b9;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.sec_exp-satis .table_style.exp_data thead .own_store {
  background: #b3fea1;
}

.sec_exp-satis .table_style.exp_data thead .national_average {
  background: #a1d6fe;
}

.sec_exp-satis .table_style.exp_data tbody .vertical_writhing {
  box-sizing: border-box;
}

.sec_exp-satis .table_style.exp_data tbody .vertical_writhing div {
  display: inline-block;
  writing-mode: vertical-rl;
}

/* ▽ PRINT layout ========== */
@media print {
  .sec_exp-satis .table_style.exp_data tbody .vertical_writhing div {
    font-size: 1.1rem;
  }
}

/* ========== end △ */
.sec_exp-satis .table_style.exp_data tbody .b_end {
  border-right: 1px solid #434343;
}

.sec_exp-satis .table_style.exp_data tbody .gap_bar {
  position: relative;
}

.sec_exp-satis .table_style.exp_data tbody .gap_bar::after {
  width: 0%;
  height: 100%;
  background: #dae9ff;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0%;
}

.sec_exp-satis .table_style.exp_data tbody .gap_bar[gap-data="0"]::after {
  width: 0%;
}

.sec_exp-satis .table_style.exp_data tbody .gap_bar[gap-data="1"]::after {
  width: 10%;
}

.sec_exp-satis .table_style.exp_data tbody .gap_bar[gap-data="2"]::after {
  width: 20%;
}

.sec_exp-satis .table_style.exp_data tbody .gap_bar[gap-data="3"]::after {
  width: 30%;
}

.sec_exp-satis .table_style.exp_data tbody .gap_bar[gap-data="4"]::after {
  width: 40%;
}

.sec_exp-satis .table_style.exp_data tbody .gap_bar[gap-data="5"]::after {
  width: 50%;
}

.sec_exp-satis .table_style.exp_data tbody .gap_bar[gap-data="6"]::after {
  width: 60%;
}

.sec_exp-satis .table_style.exp_data tbody .gap_bar[gap-data="7"]::after {
  width: 70%;
}

.sec_exp-satis .table_style.exp_data tbody .gap_bar[gap-data="8"]::after {
  width: 80%;
  background: #ff6e6e;
}

.sec_exp-satis .table_style.exp_data tbody .gap_bar[gap-data="9"]::after {
  width: 90%;
  background: #ff6e6e;
}

.sec_exp-satis .table_style.exp_data tbody .gap_bar[gap-data="10"]::after {
  width: 100%;
  background: #ff6e6e;
}

.sec_exp-satis .table_style.exp_data tbody .num_gap {
  font-weight: bold;
}

.sec_exp-satis .table_style.exp_data tbody .num_gap .red {
  color: #ff0000;
}

.sec_exp-satis .table_style.exp_data tbody .total_row td:first-child {
  background: #eaf4f4;
}

.sec_exp-satis .table_style.exp_min thead::before {
  height: 45px;
}

.sec_exp-satis .top_worst {
  margin-top: 40px !important;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 1025px) {
  .sec_exp-satis .top_worst {
    display: flex;
  }
  .sec_exp-satis .top_worst .table_style:first-child {
    margin-right: 20px;
  }
}

/* ========== end △ */
/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .sec_exp-satis .top_worst .table_style:first-child {
    margin-bottom: 20px;
  }
}

/* ========== end △ */
.sec_exp-satis .top_worst .top thead th {
  color: #5A75FF;
}

.sec_exp-satis .top_worst .worst thead th {
  color: #FF5A5A;
}

.sec_safety .evaluation_box {
  border: 4px solid #ceb9ff;
}

.sec_safety .nmb {
  margin-bottom: -10px;
}

.sec_safety .table_style th, .sec_safety .table_style td {
  border: 1px solid #ab87ff;
}

.sec_safety .table_style thead th {
  background-color: #ceb9ff;
}

.sec_safety .table_style tbody tr:first-child {
  background-color: #e6dcff;
}

.sec_ToMo .evaluation_box {
  border: 4px solid #c1ff9b;
}

.sec_ToMo .nmb {
  margin-bottom: -10px;
}

.sec_ToMo .table_style th, .sec_ToMo .table_style td {
  border: 1px solid #a6ff6f;
}

.sec_ToMo .table_style thead th {
  background-color: #cdffaf;
}

.sec_ToMo .table_style tbody tr:first-child {
  background-color: #e7ffd8;
}

.sec_option .option_box:not(:first-of-type) {
  margin-top: 40px !important;
}

.sec_option .option_box .ques {
  font-weight: bold;
}

.sec_option .scrol_box {
  width: 100%;
  max-width: 900px;
  margin-top: 20px;
  /*スクロールバーの軌道*/
  /*スクロールバーの動く部分*/
}

.sec_option .scrol_box::-webkit-scrollbar {
  width: 14px;
}

.sec_option .scrol_box::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

.sec_option .scrol_box::-webkit-scrollbar-thumb {
  background-color: #ae9352;
  border-radius: 10px;
}

.sec_option .scrol_box .item:not(:first-child) {
  padding-top: 20px;
  border-top: 2px solid #eaf4f4;
  margin-top: 20px;
}

.sec_option .scrol_box .item .data {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.sec_option .scrol_box .item .data .shop {
  background: #f2ead7;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 3px 10px;
  margin-right: 10px;
}

.sec_option .scrol_box .item .data .num {
  color: #b9b9b9;
  font-size: 1.2rem;
  margin-left: 10px;
}

.sec_account-detail table {
  width: fit-content;
  min-width: 700px;
}

/* ==================================================
	others
================================================== */
.error_txt {
  color: red;
  text-align: center;
  margin-top: 20px;
}

.fs {
  font-size: 1.1rem;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.pager > li > a {
  width: 28px;
  height: 28px;
  background: #ae9352;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 15px;
}

.pager > li > a:hover {
  box-shadow: none;
  opacity: 1;
}

.pager > li > a.active {
  background: transparent;
  color: #ae9352;
  cursor: pointer;
  pointer-events: none;
  box-shadow: none;
}

/* ▽ PRINT layout ========== */
@media print {
  .print_none {
    display: none;
  }
}

/* ========== end △ */
/* ▽ SP layout ========== */
@media screen and (max-width: 1024px) {
  .sp_scrol {
    overflow-y: auto;
  }
}

/* ========== end △ */
/* ▽ PRINT layout ========== */
@media print {
  .sp_scrol {
    overflow-y: auto;
  }
}

.qustion-tab-button{
  margin-top: 0px !important;
  font-size: 12px;
  padding: 5px 20px 5px 20px;
  display:inline;
}

.qustion-tab{
  padding-left: 10px;
  text-decoration: underline;
  color: #880000; cursor: pointer;
}

.question-table{
  font-size: 10px;
  valign:bottom;
}

.question-first{
  font-size: 12px;
}
.qustion-td-input{
  width: 100%;
  height: 25px;
}

.question-more{
  margin-top: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
  background: #A0A0A0;
  color:rgba(255, 255, 255, 1);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
}

.question-more-text{
    vertical-align: baseline;
}

.question-ext{
    margin-top: 10px;
    font-size: 14px;
  }

.qustion_item{
    font-size: 14px;
    font-weight: 700;
}

.qText{
    padding-left: 20px;
}
/* ========== end △ */
/*# sourceMappingURL=control.css.map */
