@charset "UTF-8";
:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
}

a {
  color: #0061b5;
  text-decoration: underline;
}

a .p_text:link,
a.p_text:link {
  color: #0061b5;
  text-decoration: underline;
}
.textAlign-right {
  text-align: right;
}
p.note {
  font-size: 1.6rem;
}

#bodyarea .maincontents {
  background: none;
}

.dr-contents-area {
  padding-top: 10px;
}

.location ol {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  gap: 8px;
}
.location ol li {
  font-size: 1.6rem;
}
.location ol li.link {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  gap: 8px;
}
.location ol li.link a {
  color: #000;
}
.location ol li.link a:hover {
  text-decoration: underline;
}
.location ol li.link:after {
  content: ">";
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.filter-headding {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
  margin-top: 50px;
}
.filter-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.filter-opener {
  overflow: hidden;
}
.filter-control {
  display: block;
  width: 100%;
}
.filter-control-head {
  position: relative;
  font-size: 16px;
  color: #9c9c9c;
}
.filter-control-head .btn-reset {
  padding: 5px 14px 4px 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.filter-control-head .btn-reset img {
  width: 17.3px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .filter-control-head .btn-reset {
    font-size: 1.2rem;
  }
  .filter-control-head .btn-reset img {
    width: 14px;
  }
}
@media screen and (max-width: 767px) {
  .filter-control-body {
    margin-top: 1rem;
  }
}
.filter-group {
  margin-bottom: 20px;
}
.filter-group-title {
  background: #118db4;
  position: relative;
}
.filter-group-title h3 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  padding: 15px 0 15px 25px;
}
.filter-group-title::after {
  position: absolute;
  right: 5%;
  top: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.filter-group-items {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .filter-group-items {
    gap: 10px;
  }
}
.filter-group-items input {
  display: none;
}
.filter-group-items label {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
  white-space: nowrap;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  border: 1px solid;
  padding: 4px 16px;
  border-radius: 5px;
  border-radius: 30px;
  cursor: pointer;
}
.filter-group-items label:has(input:checked) {
  color: #fff;
  background: #3998b7;
}

.filter-group-items label {
  border-color: #3998b7;
  color: #3998b7;
}
.filter-group-items label:has(input:checked),
.filter-group-items label:hover {
  color: #fff;
  background: #3998b7;
}

.filter-group-items label.yellowFrame:has(input:checked) {
  background: #ee9e00;
}

.filter-group-items label.yellowFrame {
  border-color: #ee9e00;
  color: #ee9e00;
}
.filter-group-items label.yellowFrame:has(input:checked),
.filter-group-items label.yellowFrame:hover {
  color: #fff;
  background: #ee9e00;
}

@media screen and (max-width: 767px) {
  .filter-group-items label {
    font-size: 1.4rem;
  }
}
.filter-group-items.w-130 label {
  width: calc((100% - 100px) / 5);
  font-size: clamp(1.4rem, 1.25rem + 0.45vw, 1.8rem);
}
@media screen and (max-width: 767px) {
  .filter-group-items.w-130 label {
    width: 30%;
  }
}
.filter-group-items.w-170 label {
  width: 170px;
}
.filter-group-items.w-col3 label {
  width: calc((100% - 40px) / 3);
  font-size: clamp(1.4rem, 1.25rem + 0.45vw, 1.8rem);
}
@media screen and (max-width: 767px) {
  .filter-group-items.w-col3 label {
    width: 100%;
  }
}
.filter-group-items.w-300 label {
  width: 300px;
}
.filter-tabs.open + .filter-grid {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

.page-title {
  font-size: 36px;
}

/* TOP
-----------------------------------------------------------*/

.mainarea {
  overflow: hidden;
}

/* indexページ用 
-----------------------------------------------------------*/
/* tab切り替え */

.tab {
  display: none;
  opacity: 0; /* 初期状態は非表示 */
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out; /* フェード効果の設定 */
}
.tab.is-active {
  display: block !important;
  -webkit-animation: fadeIn 0.5s ease-in-out forwards;
  animation: fadeIn 0.5s ease-in-out forwards; /* フェードインのアニメーションを適用 */
}

.tab-button {
  cursor: pointer;
  padding: 7px 20px;
  background-color: #9c9c9c;
  border-radius: 8px 8px 0 0;
  border-bottom: none;
  color: #fff;
  font-size: clamp(1.7rem, 2vw, 2rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .tab-button {
    padding: 5px 6px;
    font-size: clamp(10px, 3.2vw, 14px);
  }
}

.tab-button.is-active {
  background: #3998b7;
}
.tab-button-container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .tab-button-container {
    gap: 0.5rem;
  }
}
.tab-content {
  border: 1px solid;
  border-top-width: 5px;
  padding: 20px 20px 0;
}

.tab-content {
  border-color: #3998b7;
}
@media screen and (max-width: 767px) {
  .tab-content {
    padding: 10px 10px 0;
  }
}

.tab .tab-button.active {
  background-color: #ccc;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* カードがない場合のコメント部分　*/
.section-selectnavi .selectnavi--empty {
  margin: 50px 0;
  font-size: 1.8rem;
  background: #f6f5ed;
  padding: 15px;
}
.section-selectnavi .selectnavi--empty:not(.show) {
  display: none;
}

.selectnavi {
  margin-top: 50px;
  width: calc(100% + 50px);
  transform: translateX(0);
  overflow: visible !important;
}
.selectnavi-body {
  padding-bottom: 1px;
  container-type: inline-size;
  resize: horizontal;
}
.selectnavi-item a {
  margin: 0 0 50px 50px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  text-decoration: none !important;
}
.selectnavi-item a .selectnavi-inner {
  padding: 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.casestudy .selectnavi-item a .selectnavi-inner {
  gap: 10px;
}

.selectnavi-item a:hover {
  opacity: 0.7;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.selectnavi__wrap {
  overflow: visible;
  margin-top: 24px;
}

@container (max-width: 575px) {
  .selectnavi-item {
    width: 100%;
  }
}
@container (min-width: 576px) {
  .selectnavi {
    width: calc(100% + 20px);
    -webkit-transform: translateX(-20px);
    transform: translateX(0);
  }
  .selectnavi-item {
    width: 50%;
  }
  .selectnavi-item a {
    margin-left: 20px;
    margin-bottom: 30px;
  }
}
@container (min-width: 680px) {
  .selectnavi-item {
    width: 33.3333333333%;
  }
}
.btn-reset {
  border: 1px solid #dddddd;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-reset img {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-reset:hover {
  background: #dddddd;
}
.btn-reset:hover img {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.btn-area {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: flex-end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

.select-item {
  font-size: 1.6rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 10px;
  color: #555555;
  flex-direction: column;
  line-height: 1;
}
.select-item.industry {
  width: 20%;
}
.select-item.product {
  width: 21%;
}
.select-item.function {
  width: 21%;
}
.select-item.issue {
  width: 21%;
}
.select-item.scale {
  width: 15%;
}
.main-contents p + p {
  margin-top: 13px !important;
}

.select-item.disp-none {
  display: none !important;
}
.select-item {
  background: rgba(17, 141, 180, 0.1);
}
.select-item-value {
  color: #3998b7;
  font-weight: bold;
}

.select-item-wrap {
  margin-top: 1.5rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5%;
}
.select-item-value {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .select-item-name {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .select-item {
    padding: 5px;
    min-height: 16px;
  }
  .select-item-wrap {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .select-item-value {
    font-size: 1.4rem;
  }
  .select-item.industry,
  .select-item.product,
  .select-item.function,
  .select-item.issue,
  .select-item.scale {
    width: auto;
    min-width: calc((100% - 1rem) / 5);
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  #value-group1 {
    font-size: 1.4rem;
  }
}

.footer_component-btn {
  background: #fff;
}

/* 列幅計算用のダミー要素 */
.sizer {
  width: 33.333%;
  height: 0;
  visibility: hidden;
}

@media screen and (min-width: 607px) and (max-width: 711px) {
  .sizer {
    width: 50%;
  } /* 2列 */
}

.shuffle-item--hidden {
  display: none !important;
}
