@charset "UTF-8";
@keyframes fadein {
  100% {
    opacity: 1;
  }
}
/* # =================================================================
 * # navigation
 * # ================================================================= */
.c-pageNav {
  padding-top: 80px;
  padding-bottom: 100px;
  border: 1px solid #B4B4B4;
  border-width: 1px 0 1px 0;
}
.c-pageNav .-l2Ttl {
  font-size: 3.2rem;
  font-weight: 700;
  padding-bottom: 8px;
  line-height: 1.4375;
  border-bottom: 1px solid #222222;
  margin-bottom: 55px;
}
.c-pageNav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px 1.66%;
}
@media screen and (min-width: 600px) {
  .c-pageNav__list {
    justify-content: flex-start;
    gap: 32px 1.66%;
  }
}
.c-pageNav__list li {
  width: 48%;
  border-bottom: 1px solid #DEDEDE;
  transition: 0.2s ease all;
  padding-bottom: 15px;
}
@media screen and (min-width: 600px) {
  .c-pageNav__list li {
    width: 32%;
  }
}
@media screen and (min-width: 1025px) {
  .c-pageNav__list li {
    width: 23.75%;
    padding-bottom: 0;
  }
  .c-pageNav__list li:hover {
    border-bottom: 1px solid #222222;
  }
}
.c-pageNav__list li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.44;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 1.5em;
  position: relative;
}
@media screen and (min-width: 600px) {
  .c-pageNav__list li a {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
}
@media screen and (min-width: 1025px) {
  .c-pageNav__list li a {
    padding-bottom: 15px;
  }
}
.c-pageNav__list li a::before {
  content: "";
  width: 11px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/assets/img/common/ic_anc_arrow2.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
}
@media screen and (min-width: 1025px) {
  .c-pageNav__list li a::before {
    width: 14px;
    height: 10px;
    top: 9px;
    transform: translateY(0);
  }
}
.c-pageNav__list li a[target=_blank]::before {
  width: 12px;
  height: 12px;
  background-image: url(/assets/img/common/ic_blank.svg);
}

/* # =================================================================
 * # ContactBox
 * # ================================================================= */
.-contactBox {
  background-color: #222222;
  padding: 30px 15px;
}
@media screen and (min-width: 600px) {
  .-contactBox {
    padding: 70px;
  }
}
.-contactBox.-mt120 {
  margin-top: 60px;
}
@media screen and (min-width: 600px) {
  .-contactBox.-mt120 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .-contactBox.-mt120 {
    margin-top: 120px;
  }
}
.-contactBox .-txt {
  font-size: 2.4rem !important;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.-contactBox .--flexBox {
  display: flex;
  justify-content: center;
  gap: 15px 0;
  margin-top: 30px;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .-contactBox .--flexBox {
    flex-direction: row;
    gap: 0 30px;
  }
}
.-contactBox .c-btn.-w420 {
  width: 100%;
  max-width: 420px;
  height: 80px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .-contactBox .c-btn.-w420 {
    height: 100px;
  }
}
@media screen and (min-width: 1025px) {
  .-contactBox .c-btn.-w420 {
    margin: 0;
  }
}
.-contactBox .c-btn a {
  background-color: #fff;
  position: relative;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: 700;
  border: 1px solid #fff;
}
.-contactBox .c-btn a::before {
  content: "";
  background-image: url(/assets/img/common/ic_anc_arrow2.svg);
  width: 11px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 600px) {
  .-contactBox .c-btn a::before {
    right: 15px;
  }
}
@media screen and (min-width: 767px) {
  .-contactBox .c-btn a::before {
    right: 45px;
  }
}
@media screen and (min-width: 1025px) {
  .-contactBox .c-btn a::before {
    right: 45px;
  }
}
.-contactBox .c-btn a:hover {
  background-color: #222;
}
.-contactBox .c-btn a:hover::before {
  background-image: url(/assets/img/common/ic_anc_arrow2_w.svg);
}
.-contactBox .c-btn.-bk a {
  background-color: #222;
}
.-contactBox .c-btn.-bk a::before {
  background-image: url(/assets/img/common/ic_anc_arrow2_w.svg);
}
.-contactBox .c-btn.-bk a:hover {
  background-color: #fff;
}
.-contactBox .c-btn.-bk a:hover::before {
  background-image: url(/assets/img/common/ic_anc_arrow2.svg);
}

body {
  overflow-x: hidden;
}

.mb120 {
  margin-bottom: 80px;
}
@media screen and (min-width: 1025px) {
  .mb120 {
    margin-bottom: 120px;
  }
}

/* # =================================================================
 * # DOCUMENT
 * # ================================================================= */
.p-document .c-inner {
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .p-document .c-inner {
    max-width: 1200px;
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .p-document .c-inner {
    padding: 0;
  }
}
.p-document .c-ttlLv3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
  padding-bottom: 25px;
  border-bottom: 1px solid #222222;
  margin-bottom: 60px;
}
.p-document .c-ttlLvsub {
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 20px;
}
.p-document .c-catLabel {
  margin-bottom: 60px;
}
.p-document .c-linkList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.p-document .c-linkList li {
  border: 1px solid #222222;
  border-radius: 8px;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-document .c-linkList li {
    max-width: 320px;
  }
}
.p-document .c-linkList li a {
  display: flex;
  padding: 25px 30px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.444;
  position: relative;
}
.p-document .c-linkList li a::before {
  content: "";
  background-image: url(/assets/img/common/ic_anc_arrow.svg);
  width: 16px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-document .c-linkList li:hover {
  background-color: #222222;
}
.p-document .c-linkList li:hover a {
  color: #fff;
}
.p-document .c-linkList li:hover a::before {
  background-image: url(/assets/img/common/ic_anc_arrow_w.svg);
}
.p-document .-btn {
  max-width: 300px;
  width: 100%;
  background-color: #222222;
  border-radius: 30px;
  border: 1px solid #222222;
  margin: 20px auto 0;
}
@media screen and (min-width: 1025px) {
  .p-document .-btn {
    margin-top: 80px;
  }
}
.p-document .-btn a {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  line-height: 1.44;
}
.p-document .-btn:hover {
  background-color: #fff;
}
.p-document .-btn:hover a {
  color: #222222;
}
.p-document__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .p-document__list {
    flex-wrap: wrap;
    gap: 20px 0;
  }
}
@media screen and (min-width: 1025px) {
  .p-document__list {
    gap: 40px 0;
    margin-bottom: 120px;
  }
}
.p-document__list .--item {
  width: 100%;
  border: 1px solid #BCBCBC;
  padding: 35px 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .p-document__list .--item {
    width: 49%;
    max-width: 580px;
    padding: 25px 20px 30px;
  }
}
@media screen and (min-width: 1025px) {
  .p-document__list .--item {
    padding: 45px 40px 60px;
  }
}
.p-document__list .-subheading {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #BCBCBC;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .p-document__list .-subheading {
    min-height: 100px;
    padding-bottom: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .p-document__list .-subheading {
    padding-bottom: 30px;
    margin-bottom: 60px;
  }
}
.p-document__list .-subheading::before {
  content: "";
  background-color: #222222;
  width: 100px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.p-document__list .--flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (min-width: 1025px) {
  .p-document__list .--flex {
    gap: 0;
    flex-direction: row;
  }
}
.p-document__list .--flex img {
  width: 100%;
  object-fit: contain;
}
@media screen and (min-width: 1025px) {
  .p-document__list .--flex img {
    width: 49%;
    max-width: 240px;
  }
}
.p-document__list .--flex p {
  font-size: 1.6rem;
  line-height: 1.81;
}
@media screen and (min-width: 1025px) {
  .p-document__list .--flex p {
    width: 47%;
    max-width: 230px;
  }
}
.p-document__list .-btn {
  max-width: 300px;
  width: 100%;
  background-color: #222222;
  border-radius: 30px;
  border: 1px solid #222222;
  margin: 20px auto 0;
}
@media screen and (min-width: 1025px) {
  .p-document__list .-btn {
    margin-top: 80px;
  }
}
.p-document__list .-btn a {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  line-height: 1.44;
}
.p-document__list .-btn:hover {
  background-color: #fff;
}
.p-document__list .-btn:hover a {
  color: #222222;
}
.p-document {
  /* # =================================================================
   * # DOCUMENT 詳細
   * # ================================================================= */
}
.p-document__detail {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .p-document__detail {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1025px) {
  .p-document__detail {
    padding-bottom: 160px;
  }
}
.p-document__detail__box {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px 0;
}
@media screen and (min-width: 600px) {
  .p-document__detail__box {
    flex-direction: row;
    margin-top: 80px;
  }
}
.p-document__detail__box .--left {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-document__detail__box .--left {
    width: 46%;
    max-width: 550px;
  }
}
.p-document__detail__box .--left .-txt {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1.81;
}
@media screen and (min-width: 600px) {
  .p-document__detail__box .--left .-txt {
    margin-top: 40px;
  }
}
.p-document__detail__box .--right {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-document__detail__box .--right {
    width: 49%;
    max-width: 590px;
  }
}
.p-document__detail table {
  width: 100%;
}
.p-document__detail .c-form__th {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
}
.p-document__detail .c-form__th .-required {
  color: #fff;
  background-color: #DC0E0E;
  font-size: 1.5rem;
  border-radius: 3px;
  width: 50px;
  display: inline-block;
  text-align: center;
  padding: 2px 0;
  margin-right: 12px;
}
.p-document__detail .c-form__th .-optional {
  background-color: #717171;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 3px;
  width: 50px;
  display: inline-block;
  text-align: center;
  padding: 2px 0;
  margin-right: 12px;
}
.p-document__detail tr {
  display: block;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E1E1E1;
}
.p-document__detail tr:first-of-type {
  padding-top: 0;
}
.p-document__detail tr:last-of-type {
  border-bottom: 0;
  padding-bottom: 15px;
}
.p-document__detail td {
  margin-top: 15px;
  display: block;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1;
}
.p-document__detail td input,
.p-document__detail td select {
  cursor: pointer;
  border: 1px solid #BCBCBC;
  border-radius: 5px;
  padding: 12px 20px;
}
.p-document__detail td input {
  width: 100%;
}
.p-document__detail td.-pulldown {
  max-width: 280px;
  position: relative;
}
.p-document__detail td.-pulldown::before {
  content: "";
  background-image: url(/assets/img/common/ic_anc_arrow.svg);
  width: 15px;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.p-document__detail select {
  width: 100%;
}
.p-document__detail label {
  cursor: pointer;
}
.p-document__detail input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border: 1px solid #BCBCBC;
  border-radius: 0;
  background-color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  padding: 0;
}
.p-document__detail {
  /* チェック状態でチェックマーク表示 */
}
.p-document__detail input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.p-document__detail .--grayBox {
  background-color: #F7F7F7;
  padding: 25px;
}
.p-document__detail .--grayBox .-txt {
  font-size: 1.4rem;
  line-height: 1.78;
}
.p-document__detail .--grayBox .-txt a {
  text-decoration: underline;
}
.p-document__detail .--grayBox .-txt a:hover {
  text-decoration: none;
}
.p-document__detail .--submit,
.p-document__detail .--cancel {
  max-width: 200px;
  width: 100%;
  margin: 40px auto 0;
  background-color: #222222;
  border-radius: 30px;
  text-align: center;
  border: 1px solid #222222;
}
.p-document__detail .--submit button,
.p-document__detail .--cancel button {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
  padding: 17px;
  display: inline-block;
  width: 100%;
}
.p-document__detail .--submit:hover,
.p-document__detail .--cancel:hover {
  background-color: #fff;
}
.p-document__detail .--submit:hover button,
.p-document__detail .--cancel:hover button {
  color: #222222;
}
.p-document__detail .--buttonFlex {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
.p-document__detail .--buttonFlex .--submit,
.p-document__detail .--buttonFlex .--cancel {
  margin: 0;
  margin-top: 40px;
}
.p-document__detail .--cancel {
  background-color: #fff;
}
.p-document__detail .--cancel button {
  color: #222222;
}
.p-document__detail .--cancel:hover {
  background-color: #222222;
}
.p-document__detail .--cancel:hover button {
  color: #fff;
}
.p-document__detail .--confirmTxt {
  padding: 10px 20px;
}
@media screen and (min-width: 1025px) {
  .p-document__detail .--confirmTxt {
    font-size: 18px;
  }
}
.p-document__detail__thanks .-btnFlex {
  display: flex;
  margin-top: 50px;
  gap: 0 20px;
}
.p-document__detail .-ttR {
  font-size: 2rem;
  background-color: #222;
  display: inline-block;
  border-radius: 30px;
  color: #fff;
  padding: 8px 30px;
  margin-top: 40px;
  margin-bottom: 15px;
}
.p-document {
  /* # =================================================================
   * # DOCUMENT 詳細
   * # ================================================================= */
}
.p-document__detail.pb80 {
  padding-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .p-document__detail.pb80 {
    padding-bottom: 80px;
  }
}
.p-document__detail .-grayBox {
  margin-top: 40px;
  padding: 40px 0;
  background-color: #F7F7F7;
}
@media screen and (min-width: 1025px) {
  .p-document__detail .-grayBox {
    margin-top: 80px;
    padding: 80px 0;
  }
}
.p-document__detail .-whiteBox {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .p-document__detail .-whiteBox {
    padding: 80px;
  }
}
.p-document__detail .-whiteBox p {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  .p-document__detail .-whiteBox p {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 600px) {
  .p-document__detail .-whiteBox img {
    max-width: 400px;
  }
}
@media screen and (min-width: 1025px) {
  .p-document__detail .-whiteBox img {
    max-width: none;
  }
}
.p-document__detail .-whiteBox .c-btn {
  width: 100%;
  margin: 30px auto 0;
}
@media screen and (min-width: 600px) {
  .p-document__detail .-whiteBox .c-btn {
    width: 300px;
    margin: 40px auto 0;
  }
}

/* # =================================================================
 * # SOLUTION
 * # ================================================================= */
.p-solution {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .p-solution {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution {
    padding-bottom: 160px;
  }
}
.p-solution .c-keyword {
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .p-solution .c-keyword {
    margin-bottom: 60px;
  }
}
.p-solution .c-keyword input {
  max-width: 600px;
  width: 100%;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 10px 50px;
}
.p-solution .c-keyword button {
  background-image: url(/assets/img/common/ic_search.svg);
  width: 21px;
  height: 19px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.p-solution .c-keyword {
  position: relative;
}
.p-solution .mb60 {
  margin-bottom: 60px;
}
.p-solution__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px 0;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .p-solution__list {
    flex-direction: row;
    gap: 60px 2%;
  }
}
.p-solution__list li {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-solution__list li {
    width: 49%;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__list li {
    width: 32%;
  }
}
.p-solution__list li .--solutionTtl {
  margin: 30px 0 20px;
  font-size: clamp(18px, 1.0416666667vw, 20px);
  font-weight: 700;
  line-height: 1.45;
  position: relative;
}
.p-solution__list li .--solutionTtl img {
  width: 12px;
  height: 9px;
  transform: translateY(-0.5em) rotate(-90deg);
  margin-left: 13px;
}
.p-solution__list li .-zoom {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-solution__list li .-zoom img {
  transition: 0.2s ease all;
}
.p-solution__list li .-zoom .-zoomBox {
  overflow: hidden;
}
.p-solution__list li .-zoom:hover img {
  transform: scale(1.1, 1.1);
}
.p-solution__list li .-zoom:hover .--solutionTtl {
  text-decoration: underline;
}
.p-solution__list li .-zoom:hover .--solutionTtl img {
  transform: translateY(-0.5em) rotate(-90deg);
}
.p-solution__list li p {
  font-size: 1.6rem;
  color: #666666;
  line-height: 1.81;
}
.p-solution__list li .--categoryLabel {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 20px;
  color: #767676;
  padding: 5px 12px;
  border: 1px solid #767676;
  border-radius: 13px;
}
@media screen and (min-width: 1025px) {
  .p-solution__list li .--categoryLabel:hover {
    text-decoration: underline;
  }
}
.p-solution__detail .-txt {
  font-size: 1.6rem;
  line-height: 1.8125;
}
.p-solution__detail .-secTtl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail .-secTtl {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
}
.p-solution__detail .-secTtl.-bb {
  border-bottom: 1px solid #222222;
  padding-bottom: 15px;
  padding-left: 20px;
  position: relative;
  line-height: 1.43;
}
@media screen and (min-width: 600px) {
  .p-solution__detail .-secTtl.-bb {
    padding-bottom: 27px;
    padding-left: 32px;
  }
}
.p-solution__detail .-secTtl.-bb::before {
  content: "";
  background-color: #222;
  width: 2px;
  height: 35px;
  position: absolute;
  left: 0;
  top: 3px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail .-secTtl.-bb::before {
    top: 0;
    height: 40px;
  }
}
.p-solution__detail .-subTtl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 1px solid #BCBCBC;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail .-subTtl {
    margin-top: 40px;
    font-size: 2.4rem;
    margin-bottom: 30px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail .-subTtl {
    margin-top: 80px;
  }
}
.p-solution__detail .-subTtl.-num {
  position: relative;
  padding-left: 30px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail .-subTtl.-num {
    padding-left: 42px;
  }
}
.p-solution__detail .-subTtl.-num::before {
  content: "1";
  color: #fff;
  width: 23px;
  height: 23px;
  background-color: #222222;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 3px;
  border-radius: 50%;
}
@media screen and (min-width: 600px) {
  .p-solution__detail .-subTtl.-num::before {
    width: 32px;
    height: 32px;
    top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail .-subTtl.-num::before {
    top: 3px;
  }
}
.p-solution__detail .-subTtl.-num:nth-of-type(2)::before {
  content: "2";
}
.p-solution__detail .-subTtl.-num:nth-of-type(3)::before {
  content: "3";
}
.p-solution__detail .-subTtl.-num:nth-of-type(4)::before {
  content: "4";
}
.p-solution__detail .-subTtl.-num:nth-of-type(5)::before {
  content: "5";
}
.p-solution__detail .c-btn.-w245 {
  width: 245px;
  height: 75px;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail .c-btn.-w245 {
    margin: 0;
  }
}
.p-solution__detail .c-btn.-w245 a {
  font-size: 1.8rem;
  border-radius: 37px;
  position: relative;
}
.p-solution__detail .c-btn.-w245 a::before {
  content: "";
  background-image: url(/assets/img/common/ic_anc_arrow2.svg);
  width: 11px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-solution__detail .c-btn.-w245 a:hover::before {
  background-image: url(/assets/img/common/ic_anc_arrow2_w.svg);
}
.p-solution__detail .c-btn.-w245.-bk a::before {
  background-image: url(/assets/img/common/ic_anc_arrow2_w.svg);
}
.p-solution__detail .c-btn.-w245.-bk a:hover::before {
  background-image: url(/assets/img/common/ic_anc_arrow2.svg);
}
.p-solution__detail h2:not(.-secTtl) {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 80px;
  margin-bottom: 20px;
  padding-left: 22px;
  padding-bottom: 27px;
  border-bottom: 1px solid #222;
  position: relative;
}
@media screen and (min-width: 600px) {
  .p-solution__detail h2:not(.-secTtl) {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail h2:not(.-secTtl) {
    padding-left: 32px;
    margin-top: 120px;
  }
}
.p-solution__detail h2:not(.-secTtl)::before {
  content: "";
  width: 2px;
  height: 30px;
  background-color: #222;
  position: absolute;
  top: 0.25em;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail h2:not(.-secTtl)::before {
    height: 40px;
  }
}
.p-solution__detail h3 {
  padding-bottom: 16px;
  border-bottom: 1px solid #BCBCBC;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 80px;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail h3 {
    margin-bottom: 30px;
  }
}
.p-solution__detail h4 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail h4 {
    font-size: 2.4rem;
    margin-top: 80px;
  }
}
.p-solution__detail h5 {
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail h5 {
    font-size: 2rem;
    margin-top: 80px;
  }
}
.p-solution__detail .-tableWrap {
  overflow-x: scroll;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail .-tableWrap {
    overflow-x: visible;
  }
}
.p-solution__detail table {
  width: 100%;
  min-width: 728px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail table {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.p-solution__detail table caption {
  font-size: 16px;
  line-height: 1.8125;
  margin-bottom: 17px;
}
.p-solution__detail table th {
  border-collapse: collapse;
  border-top: 1px solid #bcbcbc;
  border-bottom: 1px solid #bcbcbc;
  border-right: 1px solid #bcbcbc;
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  vertical-align: middle;
  background-color: #f7f7f7;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail table th {
    padding: 25px 40px;
  }
}
.p-solution__detail table th:last-of-type {
  border-right: none;
}
.p-solution__detail table th p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8125;
}
.p-solution__detail table td {
  border-collapse: collapse;
  border-top: 1px solid #bcbcbc;
  border-bottom: 1px solid #bcbcbc;
  border-right: 1px solid #bcbcbc;
  padding: 20px;
  font-size: 16px;
  line-height: 1.8125;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail table td {
    padding: 25px 50px;
  }
}
.p-solution__detail table td:last-of-type {
  border-right: none;
}
.p-solution__detail table.tate {
  border-bottom: 1px solid #bcbcbc;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail table.tate {
    border-bottom: none;
  }
}
.p-solution__detail table.tate th {
  display: block;
  background-color: #f7f7f7;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8125;
  padding: 20px;
  border-collapse: collapse;
  border-top: 1px solid #bcbcbc;
  border-bottom: none;
  border-right: none;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail table.tate th {
    padding: 25px 40px;
    display: table-cell;
    vertical-align: middle;
    border-bottom: 1px solid #bcbcbc;
  }
}
.p-solution__detail table.tate th p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8125;
}
.p-solution__detail table.tate td {
  display: block;
  font-size: 16px;
  line-height: 1.8125;
  padding: 20px;
  border-collapse: collapse;
  border-top: 1px solid #bcbcbc;
  border-right: none;
  border-bottom: none;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail table.tate td {
    display: table-cell;
    padding: 25px 50px 25px 65px;
    border-bottom: 1px solid #bcbcbc;
    border-right: 1px solid #bcbcbc;
  }
}
.p-solution__detail table.tate td:last-of-type {
  border-right: none;
}
.p-solution__detail .p-solution__detail__sec03 > .c-innner > .c-1col:first-child h2:first-child {
  margin-top: 0;
}
.p-solution__detail .c-1col figure, .p-solution__detail .c-2col figure {
  margin-top: 30px;
  margin-bottom: 30px;
}
.p-solution__detail .c-2col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail .c-2col {
    gap: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail .c-2col .-col {
    width: calc((100% - 60px) / 2);
  }
}
.p-solution__detail .c-2col .-col h3 {
  padding-bottom: 0;
  border-bottom: 0;
}
.p-solution__detail .c-2col .-col h3:first-child {
  margin-top: 0;
}
.p-solution__detail .c-3col {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail .c-3col {
    flex-direction: row;
  }
}
@media screen and (min-width: 600px) {
  .p-solution__detail .c-3col .-col {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail .c-3col .-col {
    width: calc((100% - 60px) / 3);
  }
}
.p-solution__detail .c-4col {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail .c-4col {
    flex-direction: row;
  }
}
@media screen and (min-width: 600px) {
  .p-solution__detail .c-4col .-col {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail .c-4col .-col {
    width: calc((100% - 90px) / 4);
  }
}
.p-solution__detail .c-certiflex {
  display: block;
  overflow: hidden;
  margin-top: 80px;
}
.p-solution__detail .c-certiflex .-left {
  width: 150px;
  float: left;
  margin: 0 5.7971014493% 5.7971014493% 0;
}
@media screen and (min-width: 600px) {
  .p-solution__detail .c-certiflex .-left {
    margin: 0 2.5% 0 0;
  }
}
.p-solution__detail .c-certiflex .-left figure {
  margin: 0;
}
.p-solution__detail .c-certiflex .-right {
  width: 100%;
  float: none;
}
@media screen and (min-width: 600px) {
  .p-solution__detail .c-certiflex .-right {
    width: calc(100% - 150px - 2.5%);
    float: right;
  }
}
.p-solution__detail .c-certiflex .-right h3 {
  margin-top: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.p-solution__detail .c-certiflex .-right ul {
  margin-top: 0;
}
.p-solution__detail .c-certiflex .-right ul li {
  padding-left: 0;
}
.p-solution__detail .c-certiflex .-right ul li::before {
  content: none;
}
.p-solution__detail .c-media figure {
  margin-top: 0;
}
.p-solution__detail .c-media h4:first-of-type {
  margin-top: 0;
}
.p-solution__detail .c-media h4 {
  margin-top: 40px;
}
.p-solution__detail .-bgw {
  background-color: #fff;
  padding: 3.1vw 4.2vw;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .p-solution__detail .-bgw {
    padding: 40px 30px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail .-bgw {
    padding: 60px 80px;
  }
}
.p-solution__detail .-bgw::before {
  content: "";
  background-image: url(/assets/img/common/ic_fukidashi_w.svg);
  width: 78px;
  height: 38px;
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
}
.p-solution__detail .-kadai ul li {
  font-size: 2rem;
  margin-bottom: 5px;
  font-weight: 500;
  margin-bottom: 0.5em;
  padding-left: 1.2em;
  position: relative;
}
.p-solution__detail .-kadai ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #222;
  border-radius: 4px;
  position: absolute;
  top: 0.75em;
  left: 0;
}
.p-solution__detail__sec01 {
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec01 {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec01 {
    padding-bottom: 120px;
  }
}
.p-solution__detail__sec01 .--flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec01 .--flex {
    flex-direction: row;
  }
}
.p-solution__detail__sec01 .-leftBox {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec01 .-leftBox {
    width: 47%;
  }
}
.p-solution__detail__sec01 .-leftBox h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  margin-top: 25px;
  padding-left: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec01 .-leftBox h2 {
    font-size: 3.2rem;
    margin-top: 0;
  }
}
.p-solution__detail__sec01 .-leftBox h2::before {
  content: none;
}
.p-solution__detail__sec01 .--flexBtn {
  display: flex;
  margin-top: 30px;
  gap: 15px 0;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec01 .--flexBtn {
    flex-direction: row;
    margin-top: 60px;
    gap: 0 15px;
  }
}
.p-solution__detail__sec01 figure {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec01 figure {
    width: 47%;
  }
}
.p-solution__detail__sec01 figure img {
  width: 100%;
}
.p-solution__detail__sec02 {
  background-color: #F7F7F7;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec02 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec02 {
    padding-top: 120px;
  }
}
.p-solution__detail__sec02 ul {
  margin-top: 0;
}
.p-solution__detail__sec02 .--list {
  background-color: #fff;
  padding: 20px 15px;
  position: relative;
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec02 .--list {
    padding: 40px 30px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec02 .--list {
    padding: 60px 80px;
  }
}
.p-solution__detail__sec02 .--list::before {
  content: "";
  background-image: url(/assets/img/common/ic_fukidashi_w.svg);
  width: 78px;
  height: 38px;
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
}
.p-solution__detail__sec02 .--list li {
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 12px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec02 .--list li {
    font-size: 2rem;
  }
}
.p-solution__detail__sec02 .--list li::before {
  content: "";
  background-color: #222222;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec02 .--list li::before {
    width: 8px;
    height: 8px;
  }
}
.p-solution__detail__sec02 .--flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px 0;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec02 .--flex {
    gap: 0;
    flex-direction: row;
  }
}
.p-solution__detail__sec02 .--flex .--Box {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec02 .--flex .--Box {
    width: 31%;
  }
}
.p-solution__detail__sec02 .--flex .--Box img {
  width: 100%;
}
.p-solution__detail__sec02 .--flex .--Box p {
  margin-top: 25px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
}
.p-solution__detail__sec03 {
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec03 {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec03 {
    padding-bottom: 120px;
  }
}
.p-solution__detail__sec03 .tableBox {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec03 .tableBox {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec03 .tableBox {
    margin-top: 100px;
  }
}
.p-solution__detail__sec03 .tableBox .-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.p-solution__detail__sec03 .tableBox .c-table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.p-solution__detail__sec03 .tableBox .c-table th,
.p-solution__detail__sec03 .tableBox .c-table td {
  border-collapse: collapse;
  border-top: 1px solid #BCBCBC;
  border-bottom: 1px solid #BCBCBC;
  line-height: 1.444;
  font-size: 1.4rem;
  display: table-cell;
  vertical-align: middle;
  padding: 20px 15px;
  display: block;
  display: table-cell;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec03 .tableBox .c-table th,
  .p-solution__detail__sec03 .tableBox .c-table td {
    font-size: 1.6rem;
  }
}
.p-solution__detail__sec03 .tableBox .c-table th {
  background-color: #F4F4F4;
  width: 37%;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 20px 10px;
  border-right: 1px solid #BCBCBC;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec03 .tableBox .c-table th {
    padding: 30px 15px;
    font-size: 1.8rem;
    width: 33%;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec03 .tableBox .c-table th {
    padding: 47px 40px;
  }
}
.p-solution__detail__sec03 .tableBox .c-table td {
  width: 66.67%;
  padding: 20px 10px;
  line-height: 1.8125;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec03 .tableBox .c-table td {
    padding: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec03 .tableBox .c-table td {
    padding: 35px 50px 35px 32px;
  }
}
.p-solution__detail__sec04 {
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec04 {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec04 {
    padding-bottom: 120px;
  }
}
.p-solution__detail__sec05 {
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec05 {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec05 {
    padding-bottom: 120px;
  }
}
.p-solution__detail__sec05 .--flex {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px 0;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec05 .--flex {
    margin-top: 80px;
    flex-direction: row;
    gap: 0;
  }
}
.p-solution__detail__sec05 .--left {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec05 .--left {
    width: 46.8%;
  }
}
.p-solution__detail__sec05 .--left .-txt {
  margin-top: 15px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec05 .--left .-txt {
    margin-top: 25px;
  }
}
.p-solution__detail__sec05 .--right {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec05 .--right {
    width: 48.3%;
  }
}
.p-solution__detail__sec05 .--right li {
  border-top: 1px dotted #707070;
  padding: 16px 0 22px;
}
.p-solution__detail__sec05 .--right li h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.p-solution__detail__sec05 .--right li:last-of-type {
  border-bottom: 1px dotted #707070;
}
.p-solution__detail__sec06 {
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec06 {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec06 {
    padding-bottom: 120px;
  }
}
.p-solution__detail__sec06 .--list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec06 .--list {
    flex-direction: row;
    margin-top: 60px;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec06 .--list {
    margin-top: 80px;
  }
}
.p-solution__detail__sec06 .--list .--item {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec06 .--list .--item {
    width: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec06 .--list .--item {
    width: 25%;
  }
}
.p-solution__detail__sec06 .--list .--item h3 {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.46;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 3px 12px;
  width: 100%;
}
.p-solution__detail__sec06 .--list .--item h3.-yellow {
  background-color: #F0B728;
}
.p-solution__detail__sec06 .--list .--item h3.-orange {
  background-color: #EA5504;
}
.p-solution__detail__sec06 .--list .--item h3.-blue {
  background-color: #15A8D2;
}
.p-solution__detail__sec06 .--list .--item h3.-purple {
  background-color: #7052DC;
}
.p-solution__detail__sec06 .--list .--item ol {
  padding: 25px 20px;
  position: relative;
  border-right: 1px dotted #707070;
  border-left: 1px dotted #707070;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec06 .--list .--item ol {
    min-height: 300px;
    padding: 35px 20px 30px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec06 .--list .--item ol {
    min-height: 325px;
    border-left: none;
  }
}
.p-solution__detail__sec06 .--list .--item ol.-brNone {
  border-bottom: 1px dotted #707070;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec06 .--list .--item ol.-brNone {
    border-bottom: none;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec06 .--list .--item ol.-brNone {
    border-right: none;
  }
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec06 .--list .--item ol.-blNone {
    border-left: none;
  }
}
.p-solution__detail__sec06 .--list .--item ol li {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.p-solution__detail__sec07 {
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec07 {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec07 {
    padding-bottom: 120px;
  }
}
.p-solution__detail__sec07 figure {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec07 figure {
    margin-top: 60px;
  }
}
.p-solution__detail__sec08 {
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec08 {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec08 {
    padding-bottom: 120px;
  }
}
.p-solution__detail__sec09 {
  background-color: #F7F7F7;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec09 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec09 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.p-solution__detail__sec09__faq {
  margin: 40px auto 0;
}
.p-solution__detail__sec09__faq dt {
  padding: 20px 45px 20px 15px;
  background-color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid #fff;
  border-width: 1px 1px 0 1px;
  transition: 0.2s ease all;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec09__faq dt {
    padding: 35px 40px;
  }
}
.p-solution__detail__sec09__faq dt p {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 500;
}
.p-solution__detail__sec09__faq dt .crossBar {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.p-solution__detail__sec09__faq dt .crossBar::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 100%;
  background-color: #222;
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: center center; /* 中心を基準にtransform */
  transform: translateX(-50%) rotate(0deg);
}
.p-solution__detail__sec09__faq dt .crossBar::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #222;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec09__faq dt .crossBar {
    right: 36px;
    width: 24px;
    height: 24px;
  }
}
.p-solution__detail__sec09__faq dd {
  padding: 32px 40px;
  background-color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid #fff;
  border-width: 0 1px 1px 1px;
}
.p-solution__detail__sec09__faq dd p {
  font-size: 1.8rem;
  padding: 10px 20px 20px 20px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec09__faq dd p {
    padding: 10px 70px 30px 40px;
  }
}
.p-solution__detail__sec09__faq dd.is-open {
  padding: 10px 30px;
  border: 1px solid #333;
  border-width: 0 1px 1px 1px;
}
.p-solution__detail__sec09 {
  /* FAQパーツ */
}
.p-solution__detail__sec09 .qa__box {
  width: 100%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.p-solution__detail__sec09 .qa__box > dl > dd {
  margin: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 0; /* paddingの上下を0にする */
  max-height: 0; /* max-heightを0にする、レスポンシブ対応 */
  overflow: hidden; /* overflow: hidden;を付けるのがポイント */
  transition: 0.2s ease all;
}
.p-solution__detail__sec09 {
  /* アニメーション後のスタイル */
}
.p-solution__detail__sec09 .qa__box > dl > dd.is-open { /* heightとpaddingをアニメーション */
  max-height: 100%;
}
.p-solution__detail__sec09 .qa__box > dl > dt.is-open { /* heightとpaddingをアニメーション */
  border: 1px solid #333;
  border-width: 1px 1px 0 1px;
}
.p-solution__detail__sec09 {
  /* プラスボタンのアニメーション */
}
.p-solution__detail__sec09 .qa__box > dl > dt.is-open .crossBar::before {
  transform: translateX(-50%) rotate(90deg); /* 90度回転 */
}
.p-solution__detail__sec10 .--flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px 0;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec10 .--flex {
    gap: 20px 2%;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec10 .--flex {
    gap: 30px 2%;
    margin-top: 40px;
  }
}
.p-solution__detail__sec10 .-box {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec10 .-box {
    width: 32%;
  }
}
.p-solution__detail__sec10 .-box p {
  margin-top: 15px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec10 .-box p {
    margin-top: 30px;
  }
}
.p-solution__detail__sec10 .-box img {
  width: 100%;
}
.p-solution__detail__sec10 .-box .-icon {
  transform: rotate(-90deg) translateX(8px);
  width: 12px;
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec10 .-box .-icon {
    transform: rotate(-90deg) translateX(10px);
    width: 15px;
  }
}
.p-solution__detail__sec10 .-zoom {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-solution__detail__sec10 .-zoom .-zoomBox {
  overflow: hidden;
}
.p-solution__detail__sec10 .-zoom .-zoomBox img {
  transition: 0.2s ease all;
}
.p-solution__detail__sec10 .-zoom:hover .-zoomBox img {
  transform: scale(1.1, 1.1);
}
.p-solution__detail__sec10 .-zoom:hover .--solutionTtl {
  text-decoration: underline;
}
.p-solution__detail__sec10 .-zoom:hover .--solutionTtl img {
  translate: 10px, -50% rotate(-90deg);
}
.p-solution__detail__sec10:last-of-type:not(:first-of-type) {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec10:last-of-type:not(:first-of-type) {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec10:last-of-type:not(:first-of-type) {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.p-solution__detail__sec10:last-of-type:not(:first-of-type) > .c-inner > .-contactBox {
  margin-top: 0;
}
.p-solution__detail__sec10:last-of-type:not(:first-of-type) > .c-inner > div + .-contactBox {
  margin-top: 60px;
}
@media screen and (min-width: 600px) {
  .p-solution__detail__sec10:last-of-type:not(:first-of-type) > .c-inner > div + .-contactBox {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-solution__detail__sec10:last-of-type:not(:first-of-type) > .c-inner > div + .-contactBox {
    margin-top: 120px;
  }
}

/* # =================================================================
 * # CASE
 * # ================================================================= */
.p-case {
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-case {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-case {
    padding-bottom: 120px;
  }
}
.p-case .-resultTxt {
  display: flex;
  align-items: flex-end;
}
.p-case .-resultTxt h2 span {
  font-size: 1.8rem;
  font-weight: 700;
  display: inline-block;
  transform: translateY(-10px);
  margin-left: 8px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.p-case .-resultTxt h2 .js-visible-count {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
}
.p-case__list {
  margin-top: 12px;
}
.p-case__list li {
  border-bottom: 1px solid #BCBCBC;
  padding: 30px 0;
}
@media screen and (min-width: 600px) {
  .p-case__list li {
    padding: 60px 0;
  }
}
.p-case__list li:first-of-type {
  border-top: 1px solid #BCBCBC;
}
.p-case__list li .--flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (min-width: 600px) {
  .p-case__list li .--flex {
    flex-direction: row;
  }
}
.p-case__list li .-zoomBox {
  width: 100%;
}
.p-case__list li .-zoomBox img {
  width: 100%;
}
.p-case__list li .--right {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-case__list li .--right {
    width: 57.3%;
  }
}
@media screen and (min-width: 1201px) {
  .p-case__list li .--right {
    width: 63.3%;
  }
}
.p-case__list li .--right .-name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .p-case__list li .--right .-name {
    margin-bottom: 20px;
  }
}
.p-case__list li .--right h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .p-case__list li .--right h3 {
    margin-bottom: 16px;
  }
}
.p-case__list li .--right h3 a {
  line-height: 1.6;
  display: flex;
  width: 100%;
}
.p-case__list li .--right h3 img {
  margin-left: 5px;
  transform: rotate(-90deg) translateX(6px);
  width: 12px;
}
@media screen and (min-width: 1025px) {
  .p-case__list li .--right h3 img {
    transform: rotate(-90deg) translateX(12px);
    width: 12px;
  }
}
.p-case__list li .--right .-txt {
  color: #666666;
  line-height: 1.8125;
  font-size: 1.6rem;
}
@media screen and (min-width: 600px) {
  .p-case__list li .--right .-txt {
    margin-bottom: 20px;
  }
}
.p-case__list li .--right .--categoryLabel {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 20px;
  color: #767676;
  padding: 5px 12px;
  border: 1px solid #767676;
  border-radius: 13px;
}
@media screen and (min-width: 1025px) {
  .p-case__list li .--right .--categoryLabel:hover {
    text-decoration: underline;
  }
}
.p-case__list li .-zoom {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-case__list li .-zoom img {
  transition: 0.2s ease all;
}
@media screen and (min-width: 1025px) {
  .p-case__list li .-zoom img {
    width: 100%;
    object-fit: cover;
  }
}
.p-case__list li .-zoom.-left {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-case__list li .-zoom.-left {
    width: 37.7%;
  }
}
@media screen and (min-width: 1201px) {
  .p-case__list li .-zoom.-left {
    width: 31.7%;
  }
}
.p-case__list li .-zoom .-zoomBox {
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .p-case__list li .-zoom:hover .-zoomBox img {
    transform: scale(1.1, 1.1);
  }
  .p-case__list li .-zoom:hover h3 {
    text-decoration: underline;
  }
}
.p-case__detail .-secTtl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .p-case__detail .-secTtl {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
}
.p-case__detail .-secTtl.-bb {
  border-bottom: 1px solid #222222;
  padding-bottom: 15px;
  padding-left: 20px;
  position: relative;
  line-height: 1.43;
}
@media screen and (min-width: 600px) {
  .p-case__detail .-secTtl.-bb {
    padding-bottom: 27px;
    padding-left: 32px;
  }
}
.p-case__detail .-secTtl.-bb::before {
  content: "";
  background-color: #222;
  width: 2px;
  height: 35px;
  position: absolute;
  left: 0;
  top: 3px;
}
@media screen and (min-width: 600px) {
  .p-case__detail .-secTtl.-bb::before {
    top: 0;
    height: 40px;
  }
}
.p-case__detail .-subTtl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 1px solid #BCBCBC;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .p-case__detail .-subTtl {
    margin-top: 40px;
    font-size: 2.4rem;
    margin-bottom: 30px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .p-case__detail .-subTtl {
    margin-top: 80px;
  }
}
.p-case__detail .-subTtl.-num {
  position: relative;
  padding-left: 30px;
}
@media screen and (min-width: 600px) {
  .p-case__detail .-subTtl.-num {
    padding-left: 42px;
  }
}
.p-case__detail .-subTtl.-num::before {
  content: "1";
  color: #fff;
  width: 23px;
  height: 23px;
  background-color: #222222;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 3px;
  border-radius: 50%;
}
@media screen and (min-width: 600px) {
  .p-case__detail .-subTtl.-num::before {
    width: 32px;
    height: 32px;
    top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .p-case__detail .-subTtl.-num::before {
    top: 3px;
  }
}
.p-case__detail .-subTtl.-num:nth-of-type(2)::before {
  content: "2";
}
.p-case__detail .-subTtl.-num:nth-of-type(3)::before {
  content: "3";
}
.p-case__detail .-subTtl.-num:nth-of-type(4)::before {
  content: "4";
}
.p-case__detail .-subTtl.-num:nth-of-type(5)::before {
  content: "5";
}
.p-case__detail .--flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .p-case__detail .--flex {
    flex-direction: row;
    margin-bottom: 80px;
  }
}
.p-case__detail .--flex .-leftBox {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .p-case__detail .--flex .-leftBox {
    width: 46.7%;
    margin-bottom: 0;
  }
}
.p-case__detail .--flex .-leftBox .-txt {
  line-height: 2;
}
.p-case__detail .--flex figure {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-case__detail .--flex figure {
    width: 46.7%;
  }
}
.p-case__detail .--flex figure img {
  width: 100%;
}
.p-case__detail .-sec {
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-case__detail .-sec {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-case__detail .-sec {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 600px) {
  .p-case__detail .-sec ul {
    margin-top: 40px;
  }
}
.p-case__detail .-sec ul li {
  position: relative;
  padding-left: 18px;
}
.p-case__detail .-sec ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #222222;
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 50%;
}
.p-case__detail .-serviceInfo {
  background-color: #5D5D5D;
  padding: 40px 0;
  margin-top: 60px;
}
@media screen and (min-width: 600px) {
  .p-case__detail .-serviceInfo {
    margin-top: 80px;
    padding: 60px 0;
  }
}
@media screen and (min-width: 1025px) {
  .p-case__detail .-serviceInfo {
    margin-top: 120px;
    padding: 80px 0;
  }
}
.p-case__detail .-serviceInfo h2 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.43;
  margin-bottom: 30px;
  margin-top: 0;
  border-color: #aaa;
}
.p-case__detail .-serviceInfo h2::before {
  background-color: #fff;
}
.p-case__detail .-serviceInfo ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .p-case__detail .-serviceInfo ul {
    gap: 15px;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1025px) {
  .p-case__detail .-serviceInfo ul {
    gap: 25px;
  }
}
.p-case__detail .-serviceInfo ul li {
  width: 48%;
}
@media screen and (min-width: 600px) {
  .p-case__detail .-serviceInfo ul li {
    width: 31%;
  }
}
@media screen and (min-width: 1025px) {
  .p-case__detail .-serviceInfo ul li {
    width: 23%;
  }
}
.p-case__detail .-serviceInfo ul li a {
  width: 100%;
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.44;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 15px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .p-case__detail .-serviceInfo ul li a {
    padding: 24px 5px;
    font-size: 1.8rem;
    border-radius: 37px;
  }
}
.p-case__detail .-serviceInfo ul li a:hover {
  background-color: #5D5D5D;
  color: #fff;
}

/* # =================================================================
 * # COLUMN
 * # ================================================================= */
.p-column__wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .p-column__wrap {
    flex-direction: row;
  }
}
.p-column__list {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-column__list {
    margin-bottom: 80px;
    width: 65.9%;
  }
}
@media screen and (min-width: 1025px) {
  .p-column__list {
    margin-bottom: 120px;
  }
}
.p-column__list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
}
@media screen and (min-width: 1025px) {
  .p-column__list ul {
    gap: 60px 0;
  }
}
.p-column__list ul li {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-column__list ul li {
    width: 48.6%;
  }
}
.p-column__list ul li .--right {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .p-column__list ul li .--right {
    margin-top: 30px;
  }
}
.p-column__list ul li .--right h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.p-column__list ul li .--right h2 img {
  margin-left: 5px;
  transform: translateY(-0.5em) rotate(-90deg);
  width: 12px;
  height: 9px;
  object-fit: fill;
}
@media screen and (min-width: 1025px) {
  .p-column__list ul li .--right h2 img {
    margin-left: 10px;
  }
}
.p-column__list ul li .--right .-txt {
  color: #666666;
  line-height: 1.8125;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.p-column__list ul li .--right .--categoryLabel {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 20px;
  color: #767676;
  padding: 5px 12px;
  border: 1px solid #767676;
  border-radius: 15px;
}
@media screen and (min-width: 1025px) {
  .p-column__list ul li .--right .--categoryLabel:hover {
    text-decoration: underline;
  }
}
.p-column__list ul li .-zoom {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-column__list ul li .-zoom img {
  transition: 0.2s ease all;
}
@media screen and (min-width: 1025px) {
  .p-column__list ul li .-zoom img {
    height: 100%;
    object-fit: cover;
  }
}
.p-column__list ul li .-zoom .-zoomBox {
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .p-column__list ul li .-zoom:hover .-zoomBox img {
    transform: scale(1.1, 1.1);
  }
  .p-column__list ul li .-zoom:hover h2 {
    text-decoration: underline;
  }
}
.p-column__list > p {
  margin-bottom: 1.7em;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.p-column__right {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-column__right {
    width: 29.2%;
  }
}
.p-column__right .-catTtl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  padding: 20px;
  display: block;
  background-color: #F7F7F7;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .p-column__right .-catTtl {
    margin-bottom: 30px;
  }
}
.p-column__right .-rankingList {
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .p-column__right .-rankingList {
    margin-bottom: 75px;
  }
}
.p-column__right .-rankingList li {
  border-bottom: 1px solid #DEDEDE;
}
.p-column__right .-rankingList li:first-of-type a {
  margin-top: 0;
}
.p-column__right .-rankingList li:last-of-type {
  border: none;
}
.p-column__right .-rankingList li:last-of-type a {
  margin-bottom: 0;
}
.p-column__right .-rankingList li a {
  margin-top: 15px;
  margin-bottom: 15px;
  display: block;
}
.p-column__right .-rankingList li a .--flex {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.p-column__right .-rankingList li a .--flex::before {
  content: "";
  background-image: url(/assets/img/column/ic_ranking_01.svg);
  width: 30px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .p-column__right .-rankingList li a .--flex::before {
    width: 20px;
    height: 26px;
  }
}
@media screen and (min-width: 1025px) {
  .p-column__right .-rankingList li a .--flex::before {
    width: 30px;
    height: 40px;
  }
}
.p-column__right .-rankingList li a .-opacity {
  width: 41.1%;
  position: relative;
}
.p-column__right .-rankingList li a .--right {
  width: 52.2%;
}
.p-column__right .-rankingList li a h3 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8125;
}
@media screen and (min-width: 600px) {
  .p-column__right .-rankingList li a h3 {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .p-column__right .-rankingList li a h3 {
    font-size: 1.6rem;
  }
}
.p-column__right .-rankingList li a:hover .-opacity img {
  opacity: 0.5;
}
.p-column__right .-rankingList li a:hover .-opacity::before {
  opacity: 1;
}
.p-column__right .-rankingList li a:hover h3 {
  text-decoration: underline;
}
.p-column__right .-rankingList li:nth-of-type(2) a .--flex::before {
  background-image: url(/assets/img/column/ic_ranking_02.svg);
}
.p-column__right .-rankingList li:nth-of-type(3) a .--flex::before {
  background-image: url(/assets/img/column/ic_ranking_03.svg);
}
.p-column__right .-rankingList li:nth-of-type(4) a .--flex::before {
  background-image: url(/assets/img/column/ic_ranking_04.svg);
}
.p-column__right .-rankingList li:nth-of-type(5) a .--flex::before {
  background-image: url(/assets/img/column/ic_ranking_05.svg);
}
.p-column__right .-categoryList {
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .p-column__right .-categoryList {
    margin-bottom: 80px;
  }
}
.p-column__right .-categoryList li {
  border-bottom: 1px solid #DEDEDE;
}
.p-column__right .-categoryList li:first-of-type {
  border-top: 1px solid #DEDEDE;
}
.p-column__right .-categoryList li a {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  padding: 20px 40px 20px 20px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .p-column__right .-categoryList li a {
    font-size: 1.6rem;
    padding: 20px 20px 20px 10px;
  }
}
@media screen and (min-width: 1025px) {
  .p-column__right .-categoryList li a {
    font-size: 1.8rem;
    padding: 20px 40px 20px 20px;
  }
}
.p-column__right .-categoryList li a::before {
  content: "";
  background-image: url(/assets/img/common/ic_anc_arrow.svg);
  width: 12px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%) rotate(-90deg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 600px) {
  .p-column__right .-categoryList li a::before {
    right: 5px;
    width: 10px;
    height: 6px;
  }
}
@media screen and (min-width: 1025px) {
  .p-column__right .-categoryList li a::before {
    right: 17px;
    width: 12px;
    height: 9px;
  }
}
.p-column__right .-categoryList li a:hover {
  text-decoration: underline;
}
.p-column__detail {
  width: 100%;
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .p-column__detail {
    width: 65.8%;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .p-column__detail {
    padding-bottom: 120px;
  }
}
.p-column__detail .c-ttl__noover {
  padding-bottom: 20px;
  font-size: 28px;
}
@media screen and (min-width: 1025px) {
  .p-column__detail .c-ttl__noover {
    padding-bottom: 40px;
    font-size: 4rem;
  }
}
.p-column__detail .c-ttl__noover .-flex {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .p-column__detail .c-ttl__noover .-flex {
    margin-bottom: 20px;
  }
}
.p-column__detail .c-ttl__nooverWrap {
  margin: 0;
}
.p-column__detail .--categoryLabel {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.42;
  margin-right: 20px;
}
@media screen and (min-width: 1025px) {
  .p-column__detail .--categoryLabel:hover {
    text-decoration: underline;
  }
}
.p-column__detail .--flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (min-width: 600px) {
  .p-column__detail .--flex {
    margin-bottom: 80px;
    gap: 0;
    flex-direction: row;
  }
}
.p-column__detail .--flex .-leftBox {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-column__detail .--flex .-leftBox {
    width: 46.8%;
  }
}
.p-column__detail .--flex figure {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-column__detail .--flex figure {
    width: 48.1%;
  }
}
.p-column__detail .-txt {
  line-height: 1.8125;
  font-size: 1.6rem;
}
.p-column__detail h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.p-column__detail .-btn {
  width: 224px;
  height: 54px;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 50px auto 0;
}
@media screen and (min-width: 1025px) {
  .p-column__detail .-btn {
    height: 74px;
    margin: 80px auto 0;
  }
}
.p-column__detail .-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #222;
  border-radius: 37px;
  background-color: #fff;
  border: 1px solid #222;
  text-decoration: none;
}
.p-column__detail .-btn a:hover {
  background-color: #222;
  color: #fff;
}
.p-column__detail .--flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (min-width: 1025px) {
  .p-column__detail .--flex {
    gap: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .p-column__detail .--flex .-box {
    width: calc((100% - 60px) / 2);
  }
}
.p-column__detail .--flex .-box h3 {
  padding-bottom: 0;
  border-bottom: 0;
}
.p-column__detail .--flex .-box h3:first-child {
  margin-top: 0;
}
.p-column__detail .--flex .-zoom {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-column__detail .--flex .-zoom .-zoomBox {
  overflow: hidden;
}
.p-column__detail .--flex .-zoom .-zoomBox img {
  transition: 0.2s ease all;
}
.p-column__detail .--flex .-zoom:hover .-zoomBox img {
  transform: scale(1.1, 1.1);
}
.p-column__detail .--flex .-zoom:hover .--solutionTtl {
  text-decoration: underline;
}
.p-column__detail .--flex .-zoom:hover .--solutionTtl img {
  translate: 10px, -50% rotate(-90deg);
}
.p-column__detail .--flex .--solutionTtl {
  margin: 30px 0 20px;
  font-size: clamp(18px, 1.0416666667vw, 20px);
  font-weight: 700;
  line-height: 1.45;
  position: relative;
}
.p-column__detail .--flex .--solutionTtl img {
  width: 12px;
  height: 9px;
  transform: translateY(-0.5em) rotate(-90deg);
  margin-left: 13px;
}

/* # =================================================================
 * # Company locations
 * # ================================================================= */
.p-company__locations .c-inner {
  padding-bottom: 80px;
}
@media screen and (min-width: 1025px) {
  .p-company__locations .c-inner {
    padding-bottom: 120px;
  }
}
.p-company__locations .c-ttl__lv2.-deco {
  margin-top: 0;
}
.p-company__locations .c-ttl__lv2.mt160 {
  margin-top: 80px;
}
@media screen and (min-width: 600px) {
  .p-company__locations .c-ttl__lv2.mt160 {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1025px) {
  .p-company__locations .c-ttl__lv2.mt160 {
    margin-top: 160px;
  }
}
.p-company__locations h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .p-company__locations h3 {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
.p-company__locations h3.-borderBottom {
  border-bottom: 1px solid #BCBCBC;
  padding-bottom: 16px;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .p-company__locations h3.-borderBottom {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.p-company__locations h3.-lvdown {
  font-size: 2rem;
  margin-top: 15px;
}
@media screen and (min-width: 600px) {
  .p-company__locations h3.-lvdown {
    margin-top: 0;
  }
}
.p-company__locations .-txt {
  font-size: 16px;
  line-height: 1.8125;
}
@media screen and (min-width: 600px) {
  .p-company__locations .-txt.h115tab {
    height: 115px;
  }
}
@media screen and (min-width: 1025px) {
  .p-company__locations .-txt.h115tab {
    height: auto;
  }
}
@media screen and (min-width: 1025px) {
  .p-company__locations .-txt.h115 {
    height: 115px;
  }
}
.p-company__locations .-btn {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .p-company__locations .-btn {
    margin-top: 30px;
  }
}
.p-company__locations .-btn a {
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 50px;
  background-color: #222222;
  border-radius: 37px;
  color: #fff;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 700;
}
.p-company__locations .-btn a:hover {
  background-color: #fff;
  color: #222;
}
.p-company__locations .-blank {
  text-decoration: underline;
  padding-right: 1.2em;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px auto;
  display: inline-block;
  background-image: url(/assets/img/common/ic_blank.svg);
}
.p-company__locations .-blank:hover {
  text-decoration: none;
}
.p-company__locations .-btnFlex {
  display: flex;
  gap: 0 20px;
}
.p-company__locations .-btnFlex .-btn:nth-of-type(2) a {
  width: 180px;
}
.p-company__locations .--list.-three {
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .p-company__locations .--list.-three {
    gap: 40px 25px;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  .p-company__locations .--list.-three {
    gap: 80px 30px;
    justify-content: flex-start;
  }
}
.p-company__locations .--list.-three li {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-company__locations .--list.-three li {
    width: 48%;
  }
}
@media screen and (min-width: 1025px) {
  .p-company__locations .--list.-three li {
    width: 31.6%;
  }
}
.p-company__locations .--list.-three li img {
  width: 100%;
}
.p-company__locations .--list.-one li {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .p-company__locations .--list.-one li {
    flex-direction: row;
  }
}
.p-company__locations .--list.-one .--left {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-company__locations .--list.-one .--left {
    width: 31.6%;
  }
}
.p-company__locations .--list.-one .--left img {
  width: 100%;
}
.p-company__locations .--list.-one .--right {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-company__locations .--list.-one .--right {
    width: 63.375%;
  }
}
.p-company__locations .--list.-one dl {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .p-company__locations .--list.-one dl {
    flex-direction: row;
  }
}
.p-company__locations .--list.-one dl dt {
  line-height: 1.8125;
  font-weight: 400;
  font-size: 16px;
  background-color: #f7f7f7;
  border-top: 1px solid #bcbcbc;
  border-bottom: 1px solid #bcbcbc;
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .p-company__locations .--list.-one dl dt {
    width: 20.7%;
    background-color: transparent;
    border-top: none;
    border-bottom: none;
    padding: 0;
  }
}
@media screen and (min-width: 1025px) {
  .p-company__locations .--list.-one dl dt {
    width: 19.7%;
  }
}
.p-company__locations .--list.-one dl dd {
  font-size: 16px;
  line-height: 1.8125;
  overflow-wrap: anywhere;
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .p-company__locations .--list.-one dl dd {
    width: 76.2%;
    padding: 0;
  }
}
@media screen and (min-width: 1025px) {
  .p-company__locations .--list.-one dl dd {
    width: 80.2%;
  }
}
.p-company__locations .--list.-one .dlBox {
  margin-bottom: 30px;
}
.p-company__locations .--list.-one.mb80 {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .p-company__locations .--list.-one.mb80 {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .p-company__locations .--list.-one.mb80 {
    margin-bottom: 80px;
  }
}
.p-company__locations .--list.-one.mb60 {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .p-company__locations .--list.-one.mb60 {
    margin-bottom: 60px;
  }
}
