@charset "UTF-8";
:root {
  --color-main: #2288ff;
}

html {
  scroll-behavior: smooth;
}

body #contents * {
  box-sizing: border-box;
}

a.anchor {
  cursor: pointer;
}

#contents {
  text-align: left;
}
#contents img {
  vertical-align: bottom;
}

body > #title {
  background-image: url(../support_img/support_kv-bg.jpg);
  /* min-height: 250px; */
  padding-inline: 10px;
  display: grid;
  place-content: center;
  height: max(21vh, 250px);
  box-sizing: border-box;
}
body > #title h1 p {
  color: #5ec1ff;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: Montserrat;
  margin-top: 10px;
}
body > #title .copy {
  font-size: 1.6rem;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  body > #title .copy {
    text-align: left;
    line-height: 1.4;
  }
}

#contents .link-other {
  position: relative;
}

#contents .link-other a {
  font-weight: 700;
  color: #333;
  position: absolute;
  right: 0;
  top: max(-14.5vw, -80px);
  text-decoration: none;
}

#contents .link-other a::before {
  content: "";
  mask-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228.121%22%20height%3D%2213.414%22%20viewBox%3D%220%200%208.121%2013.414%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7Bfill%3A%20none%3Bstroke%3A%20%23ff8c82%3Bstroke-miterlimit%3A%2010%3Bstroke-width%3A%202px%3B%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpolyline%20class%3D%22cls-1%22%20points%3D%22.707%2012.707%206.707%206.707%20.707%20.707%22%2F%3E%3C%2Fsvg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  width: 0.5em;
  height: 1em;
  display: inline-block;
  margin-right: 5px;
  background: var(--color-main);
  position: relative;
  top: 0.2em;
}

.contact-box {
  background: #c7e9ff;
  border-radius: 20px;
  padding: min(10vw, 40px) min(5vw, 40px);
  display: flex;
  gap: 30px;
  width: min(100%, 800px);
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .contact-box {
    flex-wrap: wrap;
  }
}

.contact-box > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .contact-box > div {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .contact-box > div {
    width: 100%;
  }
}

#contents .contact-box h2::after {
  content: none;
}
#contents .contact-box h2 {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 2.2rem;
}

/*---- 記事ページ ----*/
@media screen and (max-width: 767px) {
  html:has(.article-cnt) {
    scroll-padding-top: 80px;
  }
}

body > #title.title_lower {
  height: max(22vh, 120px);
}

#contents .inner-small {
  max-width: 1000px;
  margin-inline: auto;
}

#contents .title-main::after {
  content: none;
}
#contents .title-main {
  color: inherit;
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 1.6;
}

#contents .recom-box {
  padding: 80px 0 0;
  margin-top: 100px;
  background: #F4F9FF;
}
#contents .recom-box .card-container {
  border-bottom-color: transparent;
}

#contents .recom-box .recom-title {
  text-align: center;
  font-size: 2.6rem;
  line-height: 150%;
  margin-bottom: 50px;
}

#contents .recom-box .recom-title span {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--color-main);
  font-family: montserrat;
  display: block;
}

@media screen and (max-width: 767px) {
  .article-cnt .article-info > * {
    width: 100%;
  }
}

.img-box {
  margin: 30px auto;
  text-align: center;
}
.img-box img {
  max-width: 100%;
}

#contents .title-sub, #contents .title-small, #contents .title-middle {
  margin-bottom: 40px;
}

#contents .column-1-2 {
  --gap: 60px;
  --item: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: flex-start;
}
#contents * + .column-1-2 {
  margin-top: 60px;
}
@media screen and (max-width: 676px) {
  #contents * + .column-1-2 {
    margin-top: 40px;
  }
}
#contents .column-1-2 > div {
  width: calc((100% - var(--gap) * ((var(--item)) - 1)) / var(--item));
}
@media screen and (min-width: 768px) {
  #contents ._reverse.column-1-2 > div:first-child {
    order: 2;
  }
}

#contents .list-indent, #contents .list-disc {
  margin-block: 30px;
}
#contents .list-indent li, #contents .list-disc li {
  padding-left: 1em;
  text-indent: -1em;
  position: relative;
}
#contents .list-indent li:nth-child(n+2), #contents .list-disc li:nth-child(n+2) {
  margin-top: 0.5em;
}

* + #contents .title-middle {
  margin-top: 60px;
}
#contents .title-small {
  font-size: 2.4rem;
  padding-left: 1em;
  position: relative;
}
#contents .title-small::before {
  content: "";
  width: 4px;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(to bottom, rgb(34, 136, 255) 0%, rgb(0, 187, 119) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
#contents .title-sub {
  font-size: 2.2rem;
}
#contents.article-cnt {
  font-size: 1.6rem;
  line-height: 1.5;
  padding-bottom: 0;
}
#contents .kv-area, #contents .point-navi, #contents .article-cnt {
  margin-bottom: 60px;
}
#contents .kv-area .company-name {
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 700;
}
#contents .kv-area .article-info {
  margin-top: 10px;
}
#contents .point-navi, #contents .box-point {
  padding: 30px min(10vw, 80px);
}
#contents .point-navi > ul, #contents .box-point > ul {
  margin-bottom: 0.5em;
}
#contents .point-navi > ul > li, #contents .box-point > ul > li {
  font-size: 1.8rem;
  padding-left: 1.25em;
  position: relative;
  font-weight: 700;
}
#contents .point-navi > ul > li:nth-child(n+2), #contents .box-point > ul > li:nth-child(n+2) {
  margin-top: 10px;
}
#contents .point-navi > ul > li::before, #contents .box-point > ul > li::before {
  content: "";
  width: 0.9em;
  height: 0.9em;
  border-radius: 50%;
  background: var(--color-main);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.35em;
}
#contents .point-navi > ul > li ul li, #contents .box-point > ul > li ul li {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 0.25em;
  padding-left: 1em;
  text-indent: -1em;
}
#contents .point-navi > ul > li ul li::before, #contents .box-point > ul > li ul li::before {
  content: "・";
  font-weight: 900;
}
#contents .point-navi .point-navi-title, #contents .box-point .title-point {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
#contents .point-navi .point-navi-title::before, #contents .box-point .title-point::before {
  content: "";
  background: url(../support_img/icn_point.svg) no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  display: inline-block;
  width: 30px;
  height: 30px;
}
#contents .box-point {
  background-color: #d3e7ff;
}
#contents .point-navi {
  border: 1px solid #ccc;
}
#contents .point-navi a {
  color: inherit;
  text-decoration: none;
}
#contents .point-navi a:hover {
  text-decoration: underline;
}
#contents .point-navi .point-navi-title::before {
  background-image: url(../support_img/icn_index.svg);
}
#contents .point-navi > ul > li::before {
  background-color: #d3e7ff;
}
#contents .list-disc li {
  text-indent: 0;
  padding-left: 1.25em;
  font-weight: 700;
}
#contents .list-disc li::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: var(--color-main);
  position: absolute;
  left: 0;
  top: 0.25em;
}
#contents .column-1-2 [class^=title-] {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #contents .column-1-2 {
    --gap: 30px;
  }
  #contents .column-1-2 > div {
    width: 100%;
  }
  #contents .column-1-2 .item-img {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  #contents .table .basic-table {
    table-layout: fixed;
  }
}
@media screen and (max-width: 767px) {
  #contents .table .basic-table.scrollinner {
    max-width: 768px;
    min-width: 540px;
  }
}
#contents .table .basic-table :is(th, td) {
  padding: 10px;
  word-break: normal;
}
#contents .table .basic-table th {
  vertical-align: middle;
  background-color: #d3e7ff;
}
#contents .table .basic-table tbody tr:nth-child(odd) th {
  background-color: #e9f3ff;
}
#contents .table .basic-table tbody tr:nth-child(2n) td {
  background-color: #f5f5f5;
}

.article-cnt .date {
  margin-top: 5px;
}
.article-cnt :is(.date, .author) {
  text-align: right;
}

.company-info {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: min(5vw, 30px);
}
* + .company-info {
  margin-top: 20px;
}
.company-info .item-img {
  text-align: center;
  flex-shrink: 0;
  overflow: hidden;
  width: 300px;
  aspect-ratio: 1;
}
.company-info .item-img img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.company-info .item-txt h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .company-info {
    flex-wrap: wrap;
  }
  .company-info .item-img, .company-info .item-txt {
    width: 100%;
  }
}

html #contents .fw-bold {
  font-weight: 700;
}

.survey-date { /*ガード文言*/
  margin-top: 20px;
}

/*レスポンシブテーブル*/
#contents .tables table th {
  background: #E9F3FF;
  padding: 10px;
}

#contents table th {
  font-weight: bold;
}

#contents table th, #contents table td {
  vertical-align: top;
  padding: 10px;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 767px) {
  #contents table.sp-basic-table,
  #contents table.sp-basic-table > tbody,
  #contents table.sp-basic-table > tbody > tr,
  #contents table.sp-basic-table > tbody > tr > th,
  #contents table.sp-basic-table > tbody > tr > td {
    display: block;
    width: auto !important;
  }
}
#contents .text-blue {
  color: var(--color-main);
}

#contents .company-info .list-disc li::before {
  background-color: #333;
}

body:has(.article-cnt) #helpfeel-element {
  display: none;
}

#contents .case-study {
  font-size: 2.2rem;
  font-weight: 700;
}
#contents .case-study > div :where(dt, dd) {
  margin: 0;
}
@media screen and (min-width: 768px) {
  #contents .case-study > div {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  #contents .case-study > div:nth-child(n+2) {
    margin-top: 10px;
  }
  #contents .case-study dt {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */