@charset "UTF-8";
#front-page {
  /*-------------------------
      /* hero
      --------------------------*/
}
@media screen and (min-width: 769px) {
  #front-page #hero {
    height: 800px;
    background-image: url(../img/front/hero-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  #front-page #hero .hero-container {
    width: 100%;
    margin: 0 auto;
    max-width: 1430px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 256px;
  }
  #front-page #hero .hero-ttl {
    width: 524px;
  }
  #front-page #hero .hero-lead {
    margin-top: 69px;
    font-size: 36px;
    font-weight: bold;
    color: #161616;
  }
}
@media screen and (max-width: 768px) {
  #front-page #hero {
    height: 500px;
    background-image: url(../img/front/hero-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  #front-page #hero .hero-container {
    width: 100%;
    margin: 0 auto;
    max-width: 1430px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 186px;
  }
  #front-page #hero .hero-ttl {
    width: 250px;
  }
  #front-page #hero .hero-lead {
    margin-top: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #161616;
  }
}
#front-page {
  /*-------------------------
      /* problem
      --------------------------*/
}
@media screen and (min-width: 769px) {
  #front-page #problem {
    padding-top: 62px;
    padding-bottom: 87px;
    background-color: #F5F5F5;
  }
  #front-page #problem .problem-ttl {
    font-size: 47px;
    color: #161616;
    font-weight: bold;
  }
  #front-page #problem .problem-ttl .small {
    font-size: 37px;
  }
  #front-page #problem .problem-ttl .red {
    color: #9B080A;
  }
  #front-page #problem .problem-lead {
    margin-top: 22px;
    font-size: 18px;
    color: #161616;
  }
  #front-page #problem .problem-list {
    margin-top: 41px;
    display: flex;
    flex-wrap: wrap;
    gap: 47px 36px;
    justify-content: center;
  }
  #front-page #problem .problem-list__item {
    position: relative;
    flex-shrink: 0;
    width: 375px;
    background-color: white;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 50px 35px 42px;
  }
  #front-page #problem .problem-list__item::before, #front-page #problem .problem-list__item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
  }
  #front-page #problem .problem-list__item::before {
    top: 0;
    left: 0;
    border-top: 1px solid #9B080A;
    border-right: 1px solid #9B080A;
  }
  #front-page #problem .problem-list__item::after {
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #9B080A;
    border-left: 1px solid #9B080A;
  }
  #front-page #problem .problem-list__item:hover {
    box-shadow: none;
    border-radius: 0;
  }
  #front-page #problem .problem-list__item:hover::before {
    animation: frontProblemBorder 0.4s linear forwards;
  }
  #front-page #problem .problem-list__item:hover::after {
    animation: frontProblemBorder 0.4s linear 0.4s forwards;
  }
  #front-page #problem .problem-list__img {
    margin: 0 auto;
    width: 224px;
  }
  #front-page #problem .problem-list__ttl {
    margin-top: 36px;
    font-size: 18px;
    font-weight: bold;
    color: #161616;
  }
  #front-page #problem .problem-list__desc {
    margin-top: 18px;
    font-size: 15px;
    color: #161616;
  }
  #front-page #problem .problem-list__arrow {
    margin-top: 13px;
    width: 16px;
  }
}
@media screen and (max-width: 768px) {
  #front-page #problem {
    padding-top: 3%;
    padding-bottom: 47px;
    background-color: #F5F5F5;
  }
  #front-page #problem .problem-ttl {
    font-size: 30px;
    color: #161616;
    font-weight: bold;
  }
  #front-page #problem .problem-ttl .small {
    font-size: 20px;
  }
  #front-page #problem .problem-ttl .red {
    color: #9B080A;
  }
  #front-page #problem .problem-lead {
    margin-top: 15px;
    font-size: 16px;
    color: #161616;
  }
  #front-page #problem .problem-list {
    margin: 21px auto 0;
    width: 350px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
  }
  #front-page #problem .problem-list__item {
    position: relative;
    background-color: white;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 25px;
  }
  #front-page #problem .problem-list__item::before, #front-page #problem .problem-list__item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
  }
  #front-page #problem .problem-list__item::before {
    top: 0;
    left: 0;
    border-top: 1px solid #9B080A;
    border-right: 1px solid #9B080A;
  }
  #front-page #problem .problem-list__item::after {
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #9B080A;
    border-left: 1px solid #9B080A;
  }
  #front-page #problem .problem-list__item:hover {
    box-shadow: none;
    border-radius: 0;
  }
  #front-page #problem .problem-list__item:hover::before {
    animation: frontProblemBorder 0.4s linear forwards;
  }
  #front-page #problem .problem-list__item:hover::after {
    animation: frontProblemBorder 0.4s linear 0.4s forwards;
  }
  #front-page #problem .problem-list__img {
    margin: 0 auto;
    width: 100%;
  }
  #front-page #problem .problem-list__ttl {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #161616;
  }
  #front-page #problem .problem-list__desc {
    margin-top: 12px;
    font-size: 14px;
    color: #161616;
  }
  #front-page #problem .problem-list__arrow {
    margin-top: 13px;
    width: 16px;
  }
}
#front-page {
  /*-------------------------
      /* solve
      --------------------------*/
}
@media screen and (min-width: 769px) {
  #front-page #solve {
    padding-top: 95px;
  }
  #front-page #solve .solve-ttl {
    font-size: 30px;
    color: #161616;
  }
  #front-page #solve .solve-desc {
    margin-top: 18px;
    font-size: 18px;
    color: #161616;
  }
  #front-page #solve .solve-tab {
    margin-top: 52px;
    display: flex;
    gap: 15px;
  }
  #front-page #solve .solve-tab__item {
    background-color: #D8E3EC;
    max-width: 254px;
    width: calc((100% - 45px) / 4);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 17px;
    font-weight: bold;
    color: #161616;
    cursor: pointer;
  }
  #front-page #solve .solve-tab__item.active {
    background-color: white;
  }
  #front-page #solve .solve-tab__item {
    border: 1px solid #D8E3EC;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    position: relative;
  }
  #front-page #solve .solve-tab__item::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: white;
    bottom: 0;
    position: absolute;
    left: 0;
    transform: translateY(100%);
  }
  #front-page #solve .solve-list__item {
    border: 1px solid #E5E5E5;
    border-radius: 0 8px 8px 8px;
    padding-top: 65px;
    padding-right: 1%;
    padding-bottom: 75px;
    padding-left: 5.8333333333cqw;
    display: none;
    gap: 12.5cqw;
  }
  #front-page #solve .solve-list__item.active {
    display: flex;
  }
  #front-page #solve .solve-list__left {
    flex-shrink: 0;
    width: 35.25cqw;
  }
  #front-page #solve .solve-list__ttl {
    font-size: 30px;
    font-weight: bold;
    color: #161616;
  }
  #front-page #solve .solve-list__desc {
    margin-top: 28px;
    font-size: 16px;
    font-weight: bold;
    color: #161616;
  }
  #front-page #solve .solve-list__img {
    margin-top: 51px;
  }
  #front-page #solve .solve-list__right {
    margin-top: 38px;
  }
  #front-page #solve .solve-list__cards {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    max-width: 455px;
  }
  #front-page #solve .solve-list__card {
    width: calc((100% - 14px) / 2);
  }
  #front-page #solve .solve-list__link {
    height: 215px;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #161616;
    line-height: 30px;
    position: relative;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
  }
  #front-page #solve .solve-list__link::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../img/front/problem-list__arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 11px;
    bottom: 11px;
  }
  #front-page #solve .solve-list__link:hover {
    background-color: #9B080A;
    color: white;
  }
  #front-page #solve .solve-list__link:hover:after {
    background-image: url(../img/front/problem-list__arrowW.svg);
  }
}
@media screen and (max-width: 768px) {
  #front-page #solve {
    padding-top: 45px;
  }
  #front-page #solve .solve-ttl {
    font-size: 20px;
    color: #161616;
  }
  #front-page #solve .solve-desc {
    margin-top: 12px;
    font-size: 16px;
    color: #161616;
  }
  #front-page #solve .solve-tab {
    margin-top: 22px;
    display: flex;
    gap: 5px;
  }
  #front-page #solve .solve-tab__item {
    background-color: #D8E3EC;
    max-width: 254px;
    width: calc((100% - 15px) / 4);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 12px;
    font-weight: bold;
    color: #161616;
    cursor: pointer;
  }
  #front-page #solve .solve-tab__item.active {
    background-color: white;
  }
  #front-page #solve .solve-tab__item {
    border: 1px solid #D8E3EC;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    position: relative;
  }
  #front-page #solve .solve-tab__item::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: white;
    bottom: 0;
    position: absolute;
    left: 0;
    transform: translateY(100%);
  }
  #front-page #solve .solve-list__item {
    border: 1px solid #E5E5E5;
    border-radius: 0 8px 8px 8px;
    padding-top: 35px;
    padding-right: 8.3333333333cqw;
    padding-bottom: 75px;
    padding-left: 5.8333333333cqw;
    display: none;
    gap: 20px;
  }
  #front-page #solve .solve-list__item.active {
    display: flex;
    flex-direction: column;
  }
  #front-page #solve .solve-list__ttl {
    font-size: 20px;
    font-weight: bold;
    color: #161616;
  }
  #front-page #solve .solve-list__desc {
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #161616;
  }
  #front-page #solve .solve-list__img {
    margin-top: 31px;
  }
  #front-page #solve .solve-list__right {
    margin-top: 24px;
  }
  #front-page #solve .solve-list__cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  #front-page #solve .solve-list__card {
    width: 100%;
  }
  #front-page #solve .solve-list__link {
    height: 75px;
    padding: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #161616;
    line-height: 28px;
    position: relative;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
  }
  #front-page #solve .solve-list__link::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../img/front/problem-list__arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 11px;
    bottom: 11px;
  }
  #front-page #solve .solve-list__link:hover {
    background-color: #9B080A;
    color: white;
  }
  #front-page #solve .solve-list__link:hover:after {
    background-image: url(../img/front/problem-list__arrowW.svg);
  }
}
#front-page {
  /*-------------------------
      /* section
      --------------------------*/
}
@media screen and (min-width: 769px) {
  #front-page .section-ttl {
    margin-top: 120px;
    font-size: 30px;
    font-weight: bold;
    color: #161616;
    position: relative;
  }
  #front-page .section-ttl::before {
    content: "";
    position: absolute;
    display: block;
    width: 100vw;
    height: 7px;
    background-color: #9B080A;
    top: 50%;
    left: -17px;
    transform: translate(-100%, -50%);
  }
  #front-page .section-desc {
    margin-top: 32px;
    font-size: 18px;
  }
  #front-page .section-link {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    gap: 24px;
    color: #161616;
    position: relative;
  }
  #front-page .section-link img {
    flex-shrink: 0;
    width: 16px;
  }
  #front-page .section-link:after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    transition: all 0.6s ease;
    background-color: #9B080A;
    left: 0;
    bottom: -5px;
  }
  #front-page .section-link:hover:after {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #front-page .section-ttl {
    margin-top: 60px;
    font-size: 20px;
    font-weight: bold;
    color: #161616;
    position: relative;
    padding-left: 20px;
  }
  #front-page .section-ttl::before {
    content: "";
    position: absolute;
    display: block;
    width: 100vw;
    height: 5px;
    background-color: #9B080A;
    top: 50%;
    left: 10px;
    transform: translate(-100%, -50%);
  }
  #front-page .section-desc {
    margin-top: 20px;
    font-size: 16px;
  }
  #front-page .section-link {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 16px;
    color: #161616;
    position: relative;
  }
  #front-page .section-link img {
    flex-shrink: 0;
    width: 16px;
  }
  #front-page .section-link:after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    transition: all 0.6s ease;
    background-color: #9B080A;
    left: 0;
    bottom: -5px;
  }
  #front-page .section-link:hover:after {
    width: 100%;
  }
}
#front-page {
  /*-------------------------
      /* case
      --------------------------*/
}
@media screen and (min-width: 769px) {
  #front-page #case .case-slider {
    margin-top: 75px;
    width: 100%;
  }
  #front-page #case .case-slider__item {
    padding: 0 19px;
  }
  #front-page #case .case-slider__link {
    position: relative;
    width: 375px;
    box-sizing: content-box;
    overflow: hidden;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0 8px 8px 8px;
  }
  #front-page #case .case-slider__link::before, #front-page #case .case-slider__link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: 2;
    pointer-events: none;
  }
  #front-page #case .case-slider__link::before {
    top: 0;
    left: 0;
    border-top: 1px solid #9B080A;
    border-right: 1px solid #9B080A;
  }
  #front-page #case .case-slider__link::after {
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #9B080A;
    border-left: 1px solid #9B080A;
  }
  #front-page #case .case-slider__link:hover {
    box-shadow: none;
    border-radius: 0;
  }
  #front-page #case .case-slider__link:hover::before {
    animation: frontProblemBorder 0.4s linear forwards;
  }
  #front-page #case .case-slider__link:hover::after {
    animation: frontProblemBorder 0.4s linear 0.4s forwards;
  }
  #front-page #case .case-slider__thumb {
    height: 210px;
    position: relative;
    overflow: hidden;
  }
  #front-page #case .case-slider__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #front-page #case .case-slider__department {
    padding: 11px 8px;
    background-color: white;
    border: 1px solid currentColor;
    font-size: 16px;
    color: #EF7669;
    position: absolute;
    top: 0;
    left: 0;
  }
  #front-page #case .case-slider__department.acc {
    color: #1B9ECF;
  }
  #front-page #case .case-slider__department.its {
    color: #35A25A;
  }
  #front-page #case .case-slider__department.common {
    color: #DEAE10;
  }
  #front-page #case .case-slider__bottom {
    padding: 26px 33px 23px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #front-page #case .case-slider__industry {
    padding: 6px 8px;
    background-color: black;
    color: white;
    display: inline-block;
    font-size: 16px;
  }
  #front-page #case .case-slider__desc {
    margin-top: 18px;
    font-size: 20px;
    font-weight: bold;
    min-height: 90px;
  }
  #front-page #case .case-slider__cats {
    margin-top: 20px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }
  #front-page #case .case-slider__cat {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #161616;
    font-size: 14px;
  }
  #front-page #case .case-link {
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  #front-page #case .case-slider {
    margin-top: 45px;
    width: 100%;
  }
  #front-page #case .case-slider__item {
    padding: 0 10px;
  }
  #front-page #case .case-slider__link {
    position: relative;
    width: 250px;
    box-sizing: content-box;
    overflow: hidden;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0 4px 4px 4px;
  }
  #front-page #case .case-slider__link::before, #front-page #case .case-slider__link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: 2;
    pointer-events: none;
  }
  #front-page #case .case-slider__link::before {
    top: 0;
    left: 0;
    border-top: 1px solid #9B080A;
    border-right: 1px solid #9B080A;
  }
  #front-page #case .case-slider__link::after {
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #9B080A;
    border-left: 1px solid #9B080A;
  }
  #front-page #case .case-slider__link:hover {
    box-shadow: none;
    border-radius: 0;
  }
  #front-page #case .case-slider__link:hover::before {
    animation: frontProblemBorder 0.4s linear forwards;
  }
  #front-page #case .case-slider__link:hover::after {
    animation: frontProblemBorder 0.4s linear 0.4s forwards;
  }
  #front-page #case .case-slider__thumb {
    height: 150px;
    position: relative;
    overflow: hidden;
  }
  #front-page #case .case-slider__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #front-page #case .case-slider__department {
    padding: 5px;
    background-color: white;
    border: 1px solid currentColor;
    font-size: 14px;
    color: #EF7669;
    position: absolute;
    top: 0;
    left: 0;
  }
  #front-page #case .case-slider__department.acc {
    color: #1B9ECF;
  }
  #front-page #case .case-slider__department.its {
    color: #35A25A;
  }
  #front-page #case .case-slider__department.common {
    color: #DEAE10;
  }
  #front-page #case .case-slider__bottom {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #front-page #case .case-slider__industry {
    padding: 5px;
    background-color: black;
    color: white;
    display: inline-block;
    font-size: 14px;
  }
  #front-page #case .case-slider__desc {
    margin-top: 12px;
    font-size: 16px;
    font-weight: bold;
    min-height: 70px;
  }
  #front-page #case .case-slider__cats {
    margin-top: 20px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }
  #front-page #case .case-slider__cat {
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid #161616;
    font-size: 14px;
  }
  #front-page #case .case-link {
    margin-top: 25px;
  }
}
#front-page {
  /*-------------------------
      /* seminor
      --------------------------*/
}
@media screen and (min-width: 769px) {
  #front-page #seminor .seminor-slider {
    margin-top: 51px;
    width: 100%;
  }
  #front-page #seminor .seminor-slider__item {
    padding: 0 19px;
  }
  #front-page #seminor .seminor-slider__link {
    position: relative;
    width: 375px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  #front-page #seminor .seminor-slider__link::before, #front-page #seminor .seminor-slider__link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: 2;
    pointer-events: none;
  }
  #front-page #seminor .seminor-slider__link::before {
    top: 0;
    left: 0;
    border-top: 1px solid #9B080A;
    border-right: 1px solid #9B080A;
  }
  #front-page #seminor .seminor-slider__link::after {
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #9B080A;
    border-left: 1px solid #9B080A;
  }
  #front-page #seminor .seminor-slider__link:hover {
    box-shadow: none;
    border-radius: 0;
  }
  #front-page #seminor .seminor-slider__link:hover::before {
    animation: frontProblemBorder 0.4s linear forwards;
  }
  #front-page #seminor .seminor-slider__link:hover::after {
    animation: frontProblemBorder 0.4s linear 0.4s forwards;
  }
  #front-page #seminor .seminor-slider__thumb {
    height: 210px;
    position: relative;
    overflow: hidden;
  }
  #front-page #seminor .seminor-slider__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #front-page #seminor .seminor-slider__free {
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border-radius: 4px;
    background-color: #9B080A;
  }
  #front-page #seminor .seminor-slider__free.free {
    background-color: #164F86;
  }
  #front-page #seminor .seminor-slider__style {
    padding: 9px 10px;
    background-color: black;
    color: white;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    right: 0;
    top: 0;
  }
  #front-page #seminor .seminor-slider__style img {
    flex-shrink: 0;
  }
  #front-page #seminor .seminor-slider__style.style01 img {
    width: 26px;
  }
  #front-page #seminor .seminor-slider__style.style02 img {
    width: 23px;
  }
  #front-page #seminor .seminor-slider__style.style03 img {
    width: 34px;
  }
  #front-page #seminor .seminor-slider__bottom {
    padding: 19px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #front-page #seminor .seminor-slider__date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: bold;
  }
  #front-page #seminor .seminor-slider__date img {
    width: 15px;
    flex-shrink: 0;
  }
  #front-page #seminor .seminor-slider__genre {
    margin-top: 12px;
    padding: 8px;
    border: 1px solid #EF7669;
    font-size: 16px;
    color: #EF7669;
  }
  #front-page #seminor .seminor-slider__ttl {
    margin-top: 11px;
    font-size: 20px;
    font-weight: bold;
    min-height: 90px;
  }
  #front-page #seminor .seminor-slider__cats {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  #front-page #seminor .seminor-slider__cat {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #161616;
    font-size: 14px;
  }
  #front-page #seminor .seminor-slider__states {
    width: 100%;
    min-height: 60px;
    margin-top: 20px;
    background-color: #F5F5F5;
    padding: 12px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  #front-page #seminor .seminor-slider__state {
    color: #9B080A;
    font-size: 14px;
    font-weight: bold;
  }
  #front-page #seminor .seminor-slider__state * {
    font-size: 14px;
    line-height: 1 !important;
  }
  #front-page #seminor .seminor-link {
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  #front-page #seminor .seminor-slider {
    margin-top: 45px;
    width: 100%;
  }
  #front-page #seminor .seminor-slider__item {
    padding: 0 10px;
  }
  #front-page #seminor .seminor-slider__link {
    position: relative;
    width: 250px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  #front-page #seminor .seminor-slider__link::before, #front-page #seminor .seminor-slider__link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: 2;
    pointer-events: none;
  }
  #front-page #seminor .seminor-slider__link::before {
    top: 0;
    left: 0;
    border-top: 1px solid #9B080A;
    border-right: 1px solid #9B080A;
  }
  #front-page #seminor .seminor-slider__link::after {
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #9B080A;
    border-left: 1px solid #9B080A;
  }
  #front-page #seminor .seminor-slider__link:hover {
    box-shadow: none;
    border-radius: 0;
  }
  #front-page #seminor .seminor-slider__link:hover::before {
    animation: frontProblemBorder 0.4s linear forwards;
  }
  #front-page #seminor .seminor-slider__link:hover::after {
    animation: frontProblemBorder 0.4s linear 0.4s forwards;
  }
  #front-page #seminor .seminor-slider__thumb {
    height: 150px;
    position: relative;
    overflow: hidden;
  }
  #front-page #seminor .seminor-slider__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #front-page #seminor .seminor-slider__free {
    position: absolute;
    left: 0;
    top: 0;
    padding: 5px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    border-radius: 4px;
    background-color: #9B080A;
  }
  #front-page #seminor .seminor-slider__free.free {
    background-color: #164F86;
  }
  #front-page #seminor .seminor-slider__style {
    padding: 5px 8px;
    background-color: black;
    color: white;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    right: 0;
    top: 0;
  }
  #front-page #seminor .seminor-slider__style img {
    flex-shrink: 0;
  }
  #front-page #seminor .seminor-slider__style.style01 img {
    width: 20px;
  }
  #front-page #seminor .seminor-slider__style.style02 img {
    width: 19px;
  }
  #front-page #seminor .seminor-slider__style.style03 img {
    width: 25px;
  }
  #front-page #seminor .seminor-slider__bottom {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #front-page #seminor .seminor-slider__date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: bold;
  }
  #front-page #seminor .seminor-slider__date img {
    width: 15px;
    flex-shrink: 0;
  }
  #front-page #seminor .seminor-slider__genre {
    margin-top: 8px;
    padding: 5px;
    border: 1px solid #EF7669;
    font-size: 14px;
    color: #EF7669;
  }
  #front-page #seminor .seminor-slider__ttl {
    margin-top: 11px;
    font-size: 16px;
    font-weight: bold;
    min-height: 70px;
  }
  #front-page #seminor .seminor-slider__cats {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  #front-page #seminor .seminor-slider__cat {
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid #161616;
    font-size: 14px;
  }
  #front-page #seminor .seminor-slider__states {
    width: 100%;
    min-height: 60px;
    margin-top: 15px;
    background-color: #F5F5F5;
    padding: 12px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  #front-page #seminor .seminor-slider__state {
    color: #9B080A;
    font-size: 14px;
    font-weight: bold;
  }
  #front-page #seminor .seminor-slider__state * {
    font-size: 14px;
    line-height: 1 !important;
  }
  #front-page #seminor .seminor-link {
    margin-top: 25px;
  }
}
#front-page {
  /*-------------------------
      /* column
      --------------------------*/
}
@media screen and (min-width: 769px) {
  #front-page #column .column-list {
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px 22px;
    justify-content: center;
  }
  #front-page #column .column-list__item {
    flex-shrink: 0;
    width: 589px;
  }
  #front-page #column .column-list__link {
    position: relative;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    min-height: 124px;
    border-radius: 8px;
  }
  #front-page #column .column-list__link::before, #front-page #column .column-list__link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: 2;
    pointer-events: none;
  }
  #front-page #column .column-list__link::before {
    top: 0;
    left: 0;
    border-top: 1px solid #9B080A;
    border-right: 1px solid #9B080A;
  }
  #front-page #column .column-list__link::after {
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #9B080A;
    border-left: 1px solid #9B080A;
  }
  #front-page #column .column-list__link:hover {
    box-shadow: none;
    border-radius: 0;
  }
  #front-page #column .column-list__link:hover::before {
    animation: frontProblemBorder 0.4s linear forwards;
  }
  #front-page #column .column-list__link:hover::after {
    animation: frontProblemBorder 0.4s linear 0.4s forwards;
  }
  #front-page #column .column-list__thumb {
    flex-shrink: 0;
    width: 157px;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
  }
  #front-page #column .column-list__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #front-page #column .column-list__right {
    width: 100%;
    padding: 13px 18px;
    padding-right: 31px;
  }
  #front-page #column .column-list__date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    columns: #161616;
  }
  #front-page #column .column-list__date img {
    flex-shrink: 0;
    width: 15px;
  }
  #front-page #column .column-list__ttl {
    margin-top: 14px;
    font-size: 20px;
    font-weight: bold;
    color: #161616;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #front-page #column .column-link {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #front-page #column .column-list {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
  }
  #front-page #column .column-list__item {
    width: 100%;
    max-width: 589px;
  }
  #front-page #column .column-list__link {
    position: relative;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    min-height: 124px;
    border-radius: 8px;
  }
  #front-page #column .column-list__link::before, #front-page #column .column-list__link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: 2;
    pointer-events: none;
  }
  #front-page #column .column-list__link::before {
    top: 0;
    left: 0;
    border-top: 1px solid #9B080A;
    border-right: 1px solid #9B080A;
  }
  #front-page #column .column-list__link::after {
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #9B080A;
    border-left: 1px solid #9B080A;
  }
  #front-page #column .column-list__link:hover {
    box-shadow: none;
    border-radius: 0;
  }
  #front-page #column .column-list__link:hover::before {
    animation: frontProblemBorder 0.4s linear forwards;
  }
  #front-page #column .column-list__link:hover::after {
    animation: frontProblemBorder 0.4s linear 0.4s forwards;
  }
  #front-page #column .column-list__thumb {
    flex-shrink: 0;
    width: 130px;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
  }
  #front-page #column .column-list__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #front-page #column .column-list__right {
    width: 100%;
    padding: 10px;
  }
  #front-page #column .column-list__date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    columns: #161616;
  }
  #front-page #column .column-list__date img {
    flex-shrink: 0;
    width: 15px;
  }
  #front-page #column .column-list__ttl {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    columns: #161616;
  }
  #front-page #column .column-link {
    margin-top: 50px;
  }
}
#front-page {
  /*-------------------------
      /* news
      --------------------------*/
}
@media screen and (min-width: 769px) {
  #front-page #news .news-list {
    margin: 5px auto 0;
    max-width: 1127px;
  }
  #front-page #news .news-list__item {
    border-bottom: 1px solid #D1D1D1;
  }
  #front-page #news .news-list__link {
    padding: 20px 0;
    display: flex;
    gap: 56px;
    align-items: center;
    position: relative;
  }
  #front-page #news .news-list__link:before {
    content: "";
    width: 0;
    height: 1px;
    display: block;
    background-color: #9B080A;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.6s ease;
  }
  #front-page #news .news-list__link:hover::before {
    width: 100%;
  }
  #front-page #news .news-list__time {
    font-size: 16px;
    flex-shrink: 0;
    width: 120px;
  }
  #front-page #news .news-list__ttl {
    font-size: 16px;
    width: 100%;
  }
  #front-page #news .news-link {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #front-page #news .news-list {
    margin: 5px auto 0;
    max-width: 1127px;
  }
  #front-page #news .news-list__item {
    border-bottom: 1px solid #D1D1D1;
  }
  #front-page #news .news-list__link {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
  }
  #front-page #news .news-list__link:before {
    content: "";
    width: 0;
    height: 1px;
    display: block;
    background-color: #9B080A;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.6s ease;
  }
  #front-page #news .news-list__link:hover::before {
    width: 100%;
  }
  #front-page #news .news-list__time {
    font-size: 14px;
  }
  #front-page #news .news-list__ttl {
    font-size: 16px;
    width: 100%;
  }
  #front-page #news .news-link {
    margin-top: 20px;
  }
}
#front-page {
  /*-------------------------
      /* reason
      --------------------------*/
}
@media screen and (min-width: 1000px) {
  #front-page #reason {
    margin-top: 108px;
  }
  #front-page #reason .reason-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1600px;
    display: flex;
  }
  #front-page #reason .reason-left {
    width: 34%;
    background-image: url(../img/front/reason-left.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-left: 100px;
    display: flex;
    align-items: center;
  }
  #front-page #reason .reason-ttl {
    font-size: 69px;
    color: white;
  }
  #front-page #reason .reason-right {
    width: 100%;
    background-color: #F5F5F5;
    padding: 50px 60px 30px;
  }
  #front-page #reason .reason-list__item {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
  }
  #front-page #reason .reason-list__item:last-child {
    margin-bottom: 0;
  }
  #front-page #reason .reason-list__item .eng {
    font-size: 56px;
    color: #9B080A;
    font-weight: 400;
    line-height: 1;
  }
  #front-page #reason .reason-link {
    justify-content: flex-end;
    margin-top: 56px;
  }
}
@media screen and (max-width: 999px) {
  #front-page #reason {
    margin-top: 58px;
  }
  #front-page #reason .reason-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
  }
  #front-page #reason .reason-left {
    aspect-ratio: 1/1;
    background-image: url(../img/front/reason-left.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-left: 20px;
    display: flex;
    align-items: center;
  }
  #front-page #reason .reason-ttl {
    font-size: 7.6923076923vw;
    color: white;
  }
  #front-page #reason .reason-right {
    width: 100%;
    background-color: #F5F5F5;
    padding: 20px;
  }
  #front-page #reason .reason-list__item {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  #front-page #reason .reason-list__item:last-child {
    margin-bottom: 0;
  }
  #front-page #reason .reason-list__item .eng {
    font-size: 40px;
    color: #9B080A;
    font-weight: 400;
    line-height: 1;
  }
  #front-page #reason .reason-link {
    justify-content: flex-end;
    margin-top: 26px;
  }
}
#front-page {
  /*-------------------------
      /* section-knowledgeLink
      --------------------------*/
}
@media screen and (min-width: 769px) {
  #front-page #section-knowledgeLink {
    margin-top: 126px;
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 768px) {
  #front-page #section-knowledgeLink {
    margin-top: 66px;
    margin-bottom: 34px;
  }
}

/*-------------------------
/* case / seminor slider (slick override)
--------------------------*/
@media screen and (min-width: 769px) {
  #case-slider .slick-list,
  #seminor-slider .slick-list {
    padding-bottom: 10px !important;
  }
  #case-slider .slick-track,
  #seminor-slider .slick-track {
    display: flex;
  }
  #case-slider .slick-track::before, #case-slider .slick-track::after,
  #seminor-slider .slick-track::before,
  #seminor-slider .slick-track::after {
    content: none;
  }
  #case-slider .slick-slide,
  #seminor-slider .slick-slide {
    height: auto;
    display: flex;
    opacity: 0.3;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  #case-slider .slick-active,
  #seminor-slider .slick-active {
    opacity: 1;
  }
  #case-slider .slick-active + .slick-slide:not(.slick-active),
  #seminor-slider .slick-active + .slick-slide:not(.slick-active) {
    transform: translateX(97px);
  }
  #case-slider .slick-slide:not(.slick-active):has(+ .slick-active),
  #seminor-slider .slick-slide:not(.slick-active):has(+ .slick-active) {
    transform: translateX(-97px);
  }
  #case-slider .slick-arrow,
  #seminor-slider .slick-arrow {
    width: 60px;
    height: 60px;
    z-index: 10;
    background-color: white;
    border-radius: 50%;
  }
  #case-slider .slick-arrow:before,
  #seminor-slider .slick-arrow:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    width: 23px;
    height: 37px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  #case-slider .slick-arrow.slick-prev,
  #seminor-slider .slick-arrow.slick-prev {
    left: calc(50% - 675px);
    right: auto;
    transform: translate(-50%, -50%);
  }
  #case-slider .slick-arrow.slick-prev::before,
  #seminor-slider .slick-arrow.slick-prev::before {
    background-image: url(../img/front/slick-prev.svg);
  }
  #case-slider .slick-arrow.slick-next,
  #seminor-slider .slick-arrow.slick-next {
    right: calc(50% - 675px);
    left: auto;
    transform: translate(50%, -50%);
  }
  #case-slider .slick-arrow.slick-next::before,
  #seminor-slider .slick-arrow.slick-next::before {
    background-image: url(../img/front/slick-next.svg);
  }
}
@media screen and (min-width: 769px) and (max-width: 1439px) {
  #case-slider .slick-arrow,
  #seminor-slider .slick-arrow {
    bottom: -80px;
    top: auto;
  }
  #case-slider .slick-arrow.slick-prev,
  #seminor-slider .slick-arrow.slick-prev {
    left: auto;
    right: 100px;
    transform: translate(0, 0);
  }
  #case-slider .slick-arrow.slick-next,
  #seminor-slider .slick-arrow.slick-next {
    right: 50px;
    left: auto;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 768px) {
  #case-slider .slick-list,
  #seminor-slider .slick-list {
    padding-bottom: 10px !important;
  }
  #case-slider .slick-track,
  #seminor-slider .slick-track {
    display: flex;
  }
  #case-slider .slick-track::before, #case-slider .slick-track::after,
  #seminor-slider .slick-track::before,
  #seminor-slider .slick-track::after {
    content: none;
  }
  #case-slider .slick-slide,
  #seminor-slider .slick-slide {
    height: auto;
    display: flex;
  }
  #case-slider .slick-arrow,
  #seminor-slider .slick-arrow {
    width: 40px;
    height: 40px;
    z-index: 10;
    background-color: white;
    border-radius: 50%;
    bottom: -50px;
    top: auto;
  }
  #case-slider .slick-arrow:before,
  #seminor-slider .slick-arrow:before {
    content: "";
    display: block;
    position: absolute;
    width: 23px;
    height: 37px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  #case-slider .slick-arrow.slick-prev,
  #seminor-slider .slick-arrow.slick-prev {
    left: auto;
    right: 50px;
    transform: translate(0, 0);
  }
  #case-slider .slick-arrow.slick-prev::before,
  #seminor-slider .slick-arrow.slick-prev::before {
    background-image: url(../img/front/slick-prev.svg);
  }
  #case-slider .slick-arrow.slick-next,
  #seminor-slider .slick-arrow.slick-next {
    right: 10px;
    left: auto;
    transform: translate(0, 0);
  }
  #case-slider .slick-arrow.slick-next::before,
  #seminor-slider .slick-arrow.slick-next::before {
    background-image: url(../img/front/slick-next.svg);
  }
}

@keyframes frontProblemBorder {
  0% {
    width: 0;
    height: 0;
  }
  50% {
    width: 100%;
    height: 0;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
.noarticle {
  margin-top: 20px;
}

@media screen and (min-width: 769px) {
  .page-common #section {
    padding-top: 74px;
    padding-bottom: 140px;
  }
  .page-common #section .section-wrap {
    display: flex;
    justify-content: space-between;
    gap: 80px;
  }
  .page-common #section .section-left {
    width: calc((100% - 80px) / 2);
  }
  .page-common #section .section-left p {
    font-size: 16px;
  }
  .page-common #section .section-back {
    margin-top: 80px;
    font-size: 18px;
    display: flex;
    gap: 11px;
  }
  .page-common #section .section-back img {
    width: 16px;
    flex-shrink: 0;
  }
  .page-common #section .section-right {
    width: calc((100% - 80px) / 2);
  }
  .page-common #section .section-right img {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .page-common #section {
    padding-top: 34px;
    padding-bottom: 70px;
  }
  .page-common #section .section-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
  }
  .page-common #section .section-left {
    width: 100%;
  }
  .page-common #section .section-left p {
    font-size: 14px;
  }
  .page-common #section .section-back {
    margin-top: 40px;
    font-size: 16px;
    display: flex;
    gap: 11px;
  }
  .page-common #section .section-back img {
    width: 16px;
    flex-shrink: 0;
  }
  .page-common #section .section-right {
    width: 100%;
  }
  .page-common #section .section-right img {
    width: 100%;
  }
}

/*-------------------------
/* pagination (.page-navi)
/*
/* taxonomy-case_category.php / paginate_links( type=>'list' ) の出力。
/* 構造: .page-navi > ul.page-numbers > li > (a|span).page-numbers
/*   .current … 現在ページ (span)
/*   .prev / .next … 前へ / 次へ (a)
/*   .dots … 省略「…」(span)
/* 基調色: #9B080A
/* 出力HTML詳細は docs/case-archive-markup.md を参照。
--------------------------*/
.page-navi {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .page-navi {
    margin-top: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page-navi {
    margin-top: 40px;
  }
}
.page-navi ul.page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .page-navi ul.page-numbers {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .page-navi ul.page-numbers {
    gap: 6px;
  }
}
.page-navi li {
  display: flex;
}
.page-navi a.page-numbers,
.page-navi span.page-numbers {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 1;
  color: #161616;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .page-navi a.page-numbers,
  .page-navi span.page-numbers {
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .page-navi a.page-numbers,
  .page-navi span.page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
  }
}
.page-navi a.page-numbers {
  cursor: pointer;
}
.page-navi a.page-numbers.prev,
.page-navi a.page-numbers.next {
  border: 1px solid #9B080A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-navi a.page-numbers.prev::before,
.page-navi a.page-numbers.next::before {
  content: "";
  width: 8px;
  height: 12px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.page-navi a.page-numbers.prev::before {
  background-image: url(../img/ico_arrow02.svg);
}
.page-navi a.page-numbers.next::before {
  background-image: url(../img/ico_arrow01.svg);
}
.page-navi span.page-numbers.dots {
  color: #C9A9A9;
  background-color: transparent;
  border-color: transparent;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .page-navi span.page-numbers.dots {
    min-width: 24px;
  }
}
@media screen and (max-width: 768px) {
  .page-navi span.page-numbers.dots {
    min-width: 18px;
  }
}

@media screen and (min-width: 769px) {
  .page-common #section {
    padding-top: 50px;
    padding-bottom: 105px;
  }
  .page-common #section p {
    font-size: 16px;
    margin-bottom: 76px;
    line-height: 30px;
  }
  .page-common #section p.indent {
    padding-left: 43px;
  }
  .page-common #section ul {
    margin-bottom: 76px;
    list-style-type: disc;
    padding-inline-start: 40px;
  }
  .page-common #section ul li {
    font-size: 16px;
    line-height: 30px;
  }
  .page-common #section h2 {
    font-size: 30px;
    font-weight: bold;
    display: flex;
    gap: 17px;
    margin-bottom: 33px;
  }
  .page-common #section h2::before {
    content: "";
    display: block;
    margin-top: 12px;
    width: 26px;
    height: 7px;
    background-color: #9B080A;
  }
  .page-common #section .profile {
    margin-left: auto;
    margin-right: 0;
    width: 350px;
    border: 1px solid #707070;
    padding: 30px;
    font-size: 16px;
    line-height: 30px;
    text-align: end;
  }
}
@media screen and (max-width: 768px) {
  .page-common #section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .page-common #section p {
    font-size: 14px;
    margin-bottom: 36px;
    line-height: 20px;
  }
  .page-common #section p.indent {
    padding-left: 30px;
  }
  .page-common #section ul {
    margin-bottom: 36px;
    list-style-type: disc;
    padding-inline-start: 40px;
  }
  .page-common #section ul li {
    font-size: 14px;
    line-height: 20px;
  }
  .page-common #section h2 {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  .page-common #section h2::before {
    content: "";
    display: block;
    margin-top: 12px;
    width: 18px;
    height: 5px;
    background-color: #9B080A;
  }
  .page-common #section .profile {
    margin-left: auto;
    margin-right: 0;
    width: 350px;
    border: 1px solid #707070;
    padding: 20px;
    font-size: 14px;
    line-height: 25px;
    text-align: end;
  }
}

@media screen and (min-width: 769px) {
  #single-news #section {
    padding-bottom: 115px;
  }
  #single-news #section .section-wrap {
    margin-top: 56px;
    border-radius: 24px;
    border: 1px solid #E1E1E1;
    padding: 66px 0 78px;
  }
  #single-news #section .section-ttl {
    font-size: 30px;
    font-weight: bold;
    display: flex;
    gap: 17px;
  }
  #single-news #section .section-ttl::before {
    content: "";
    display: block;
    margin-top: 20px;
    width: 26px;
    height: 7px;
    background-color: #9B080A;
  }
  #single-news #section .section-time {
    margin-top: 24px;
    margin-left: 43px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
  }
  #single-news #section .section-time img {
    flex-shrink: 0;
    width: 15px;
  }
  #single-news #section .section-content {
    margin-top: 64px;
    margin-left: 88px;
    padding-left: 40px;
  }
  #single-news #section .section-content h2 {
    font-size: 24px;
    font-weight: bold;
    position: relative;
    margin-bottom: 26px;
  }
  #single-news #section .section-content h2:before {
    content: "";
    display: block;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 5px solid #9B080A;
    position: absolute;
    top: 50%;
    left: -32px;
    transform: translateY(-50%);
  }
  #single-news #section .section-content p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 26px;
  }
  #single-news #section .section-content h3 {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 23px;
  }
  #single-news #section .section-content h3::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #9B080A;
    border-radius: 50%;
  }
  #single-news #section .section-content a {
    font-size: 18px;
    color: #9B080A;
    line-height: 30px;
    display: inline-block;
  }
  #single-news #section .section-content ul {
    padding-left: 27px;
    margin-bottom: 40px;
  }
  #single-news #section .section-content ul li {
    font-size: 18px;
    line-height: 30px;
    position: relative;
    margin-bottom: 21px;
  }
  #single-news #section .section-content ul li:last-child {
    margin-bottom: 0;
  }
  #single-news #section .section-content ul li::before {
    content: "";
    display: block;
    width: 16px;
    height: 15px;
    background-image: url(../img/icon-check-red.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 3px;
    left: -27px;
  }
  #single-news #section .section-link {
    margin: 60px auto 0;
    width: 163px;
    height: 47px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #9B080A;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #single-news #section {
    padding-bottom: 55px;
  }
  #single-news #section .section-wrap {
    margin-top: 36px;
    border-radius: 18px;
    border: 1px solid #E1E1E1;
    padding: 33px 0 40px;
  }
  #single-news #section .section-ttl {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    gap: 10px;
  }
  #single-news #section .section-ttl::before {
    content: "";
    display: block;
    margin-top: 15px;
    width: 18px;
    height: 5px;
    background-color: #9B080A;
  }
  #single-news #section .section-time {
    margin-top: 15px;
    margin-left: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
  }
  #single-news #section .section-time img {
    flex-shrink: 0;
    width: 10px;
  }
  #single-news #section .section-content {
    margin-top: 34px;
    margin-left: 48px;
    padding-left: 40px;
  }
  #single-news #section .section-content h2 {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    margin-bottom: 20px;
  }
  #single-news #section .section-content h2:before {
    content: "";
    display: block;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 5px solid #9B080A;
    position: absolute;
    top: 50%;
    left: -32px;
    transform: translateY(-50%);
  }
  #single-news #section .section-content p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  #single-news #section .section-content h3 {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
  }
  #single-news #section .section-content h3::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #9B080A;
    border-radius: 50%;
  }
  #single-news #section .section-content a {
    font-size: 16px;
    color: #9B080A;
    line-height: 20px;
    display: inline-block;
  }
  #single-news #section .section-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  #single-news #section .section-content ul li {
    font-size: 16px;
    line-height: 20px;
    position: relative;
    margin-bottom: 20px;
  }
  #single-news #section .section-content ul li:last-child {
    margin-bottom: 0;
  }
  #single-news #section .section-content ul li::before {
    content: "";
    display: block;
    width: 16px;
    height: 15px;
    background-image: url(../img/icon-check-red.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 3px;
    left: -27px;
  }
  #single-news #section .section-link {
    margin: 30px auto 0;
    width: 143px;
    height: 37px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #9B080A;
    font-size: 14px;
  }
}

@media screen and (min-width: 769px) {
  #single-blog .single-blog__lead .point {
    margin-top: 60px;
    border: 1px solid #9B080A;
    border-radius: 8px;
    padding: 54px 42px 42px;
    font-size: 16px;
    line-height: 30px;
    position: relative;
    margin-bottom: 55px;
  }
  #single-blog .single-blog__lead .point::before {
    content: "この記事のポイント";
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #9B080A;
    display: flex;
    width: 194px;
    height: 52px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 28px;
    transform: translateY(-50%);
  }
  #single-blog .single-blog__lead #toc_container {
    margin-top: 56px;
    background-color: #F5F5F5;
    padding: 24px 32px;
    border-radius: 8px;
    margin-bottom: 57px;
  }
  #single-blog .single-blog__lead #toc_container .toc_title {
    font-size: 18px;
    font-weight: bold;
  }
  #single-blog .single-blog__lead #toc_container .toc_list {
    margin-top: 32px;
  }
  #single-blog .single-blog__lead #toc_container .toc_list ol,
  #single-blog .single-blog__lead #toc_container .toc_list li {
    padding-bottom: 18px;
    border-bottom: 1px solid #A4AFB5;
    margin-bottom: 15px;
  }
  #single-blog .single-blog__lead #toc_container .toc_list ol::before,
  #single-blog .single-blog__lead #toc_container .toc_list li::before {
    display: none;
  }
  #single-blog .single-blog__lead #toc_container .toc_list ol::marker,
  #single-blog .single-blog__lead #toc_container .toc_list li::marker {
    color: #9B080A;
  }
  #single-blog .single-blog__lead #toc_container .toc_list ol:last-child,
  #single-blog .single-blog__lead #toc_container .toc_list li:last-child {
    padding-bottom: 0;
    border: none;
    margin-bottom: 0;
  }
  #single-blog .single-blog__lead #toc_container .toc_list ol a,
  #single-blog .single-blog__lead #toc_container .toc_list li a {
    font-size: 16px;
    font-weight: bold;
    color: #161616;
    text-decoration: none;
  }
  #single-blog .single-blog__lead h2 {
    margin-top: 36px;
    background-color: #9B080A;
    color: white;
    font-size: 24px;
    padding: 17px 38px;
    position: relative;
    margin-bottom: 32px;
    font-weight: 500;
  }
  #single-blog .single-blog__lead h2::before {
    position: absolute;
    content: "";
    display: block;
    width: 5px;
    height: 100%;
    background-color: white;
    left: 12px;
    top: 0;
  }
  #single-blog .single-blog__lead h3 {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 20px;
    border-bottom: 3px solid #9B080A;
    margin-bottom: 26px;
  }
  #single-blog .single-blog__lead h4 {
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 26px;
  }
  #single-blog .single-blog__lead h4::before {
    content: "";
    display: block;
    flex-shrink: 0;
    height: 21px;
    width: 21px;
    border-radius: 50%;
    border: 5px solid #9B080A;
  }
  #single-blog .single-blog__lead ul {
    margin-bottom: 25px;
  }
  #single-blog .single-blog__lead ul li {
    font-size: 18px;
    display: flex;
    gap: 14px;
  }
  #single-blog .single-blog__lead ul li::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 15px;
    background-image: url(../img/icon-check-red.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  #single-blog .single-blog__lead ol {
    margin-bottom: 25px;
  }
  #single-blog .single-blog__lead ol li {
    font-size: 18px;
    display: flex;
    gap: 14px;
  }
  #single-blog .single-blog__lead ol li::marker {
    display: flex;
    width: 30px;
    height: 30px;
    border: 2px solid #9B080A;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: "Fira Sans", serif;
    color: #9B080A;
    font-weight: 400;
  }
  #single-blog .single-blog__lead img,
  #single-blog .single-blog__lead figure {
    margin: 0 auto;
    margin-bottom: 25px;
  }
  #single-blog .single-blog__lead img img,
  #single-blog .single-blog__lead figure img {
    margin: 0 auto;
  }
  #single-blog .single-blog__lead a {
    color: #08447e;
    text-decoration: underline;
    text-decoration-skip-ink: none;
  }
  #single-blog .single-blog__lead a:hover {
    text-decoration: none;
  }
  #single-blog .single-blog__lead p {
    font-size: 18px;
  }
  #single-blog .single-blog__lead .wp-block-table {
    margin-bottom: 25px;
  }
  #single-blog .single-blog__lead .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #707070;
  }
  #single-blog .single-blog__lead .wp-block-table table tr {
    border-bottom: 1px solid #707070;
  }
  #single-blog .single-blog__lead .wp-block-table table tr th {
    background-color: #F5F5F5;
    border-right: 1px solid #707070;
  }
  #single-blog .single-blog__lead .wp-block-table table tr td,
  #single-blog .single-blog__lead .wp-block-table table tr th {
    padding: 14px 0;
    text-align: center;
    font-size: 18px;
  }
  #single-blog .single-blog__lead .wp-block-table table tr td {
    border-right: 1px solid #707070;
  }
  #single-blog .single-blog__lead .wp-block-table table tr td:last-child {
    border: none;
  }
  #single-blog .single-blog__lead .wp-block-table table thead {
    background-color: #F69374;
    color: white;
    text-align: center;
  }
  #single-blog .cta {
    margin-top: 64px;
    border-radius: 8px;
    border: 2px solid #9B080A;
    padding: 60px 70px 55px;
    padding-right: 10px;
  }
  #single-blog .cta-ttl {
    font-size: 30px;
    font-weight: bold;
  }
  #single-blog .cta-desc {
    margin-top: 17px;
    font-size: 16px;
  }
  #single-blog .cta-link {
    margin-top: 44px;
    width: 345px;
    height: 71px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    padding: 27px 36px;
    gap: 25px;
    align-items: center;
    font-size: 19px;
    border-radius: 8px;
  }
  #single-blog .cta-link img {
    flex-shrink: 0;
    width: 21px;
  }
  #single-blog .cta-link:hover {
    color: white;
    background-color: rgb(var(--color-red-1));
  }
  #single-blog .totop {
    margin-top: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    gap: 15px;
  }
  #single-blog .totop img {
    flex-shrink: 0;
    width: 16px;
  }
}
@media screen and (max-width: 768px) {
  #single-blog .single-blog__lead .point {
    margin-top: 30px;
    border: 1px solid #9B080A;
    border-radius: 8px;
    padding: 44px 25px 25px;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    margin-bottom: 30px;
  }
  #single-blog .single-blog__lead .point::before {
    content: "この記事のポイント";
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #9B080A;
    display: flex;
    width: 154px;
    height: 32px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 28px;
    transform: translateY(-50%);
  }
  #single-blog .single-blog__lead #toc_container {
    margin-top: 24px;
    background-color: #F5F5F5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
  }
  #single-blog .single-blog__lead #toc_container .toc_title {
    font-size: 16px;
    font-weight: bold;
  }
  #single-blog .single-blog__lead #toc_container .toc_list {
    margin-top: 22px;
  }
  #single-blog .single-blog__lead #toc_container .toc_list ol,
  #single-blog .single-blog__lead #toc_container .toc_list li {
    padding-bottom: 10px;
    border-bottom: 1px solid #A4AFB5;
    margin-bottom: 10px;
  }
  #single-blog .single-blog__lead #toc_container .toc_list ol::before,
  #single-blog .single-blog__lead #toc_container .toc_list li::before {
    display: none;
  }
  #single-blog .single-blog__lead #toc_container .toc_list ol::marker,
  #single-blog .single-blog__lead #toc_container .toc_list li::marker {
    color: #9B080A;
  }
  #single-blog .single-blog__lead #toc_container .toc_list ol:last-child,
  #single-blog .single-blog__lead #toc_container .toc_list li:last-child {
    padding-bottom: 0;
    border: none;
    margin-bottom: 0;
  }
  #single-blog .single-blog__lead #toc_container .toc_list ol a,
  #single-blog .single-blog__lead #toc_container .toc_list li a {
    font-size: 14px;
    font-weight: bold;
    color: #161616;
    text-decoration: none;
  }
  #single-blog .single-blog__lead h2 {
    margin-top: 20px;
    background-color: #9B080A;
    color: white;
    font-size: 18px;
    padding: 10px 24px;
    position: relative;
    margin-bottom: 20px;
    font-weight: 500;
  }
  #single-blog .single-blog__lead h2::before {
    position: absolute;
    content: "";
    display: block;
    width: 5px;
    height: 100%;
    background-color: white;
    left: 7px;
    top: 0;
  }
  #single-blog .single-blog__lead h3 {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 3px solid #9B080A;
    margin-bottom: 20px;
  }
  #single-blog .single-blog__lead h4 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
  }
  #single-blog .single-blog__lead h4::before {
    content: "";
    display: block;
    flex-shrink: 0;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 5px solid #9B080A;
  }
  #single-blog .single-blog__lead ul {
    margin-bottom: 20px;
  }
  #single-blog .single-blog__lead ul li {
    font-size: 16px;
    display: flex;
    gap: 10px;
  }
  #single-blog .single-blog__lead ul li::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 15px;
    background-image: url(../img/icon-check-red.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  #single-blog .single-blog__lead ol {
    margin-bottom: 20px;
  }
  #single-blog .single-blog__lead ol li {
    font-size: 16px;
    display: flex;
    gap: 10px;
  }
  #single-blog .single-blog__lead ol li::marker {
    display: flex;
    width: 20px;
    height: 20px;
    border: 2px solid #9B080A;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: "Fira Sans", serif;
    color: #9B080A;
    font-weight: 400;
  }
  #single-blog .single-blog__lead img,
  #single-blog .single-blog__lead figure {
    margin-bottom: 20px;
  }
  #single-blog .single-blog__lead img img,
  #single-blog .single-blog__lead figure img {
    margin: 0 auto;
  }
  #single-blog .single-blog__lead a {
    color: #08447e;
    text-decoration: underline;
    text-decoration-skip-ink: none;
  }
  #single-blog .single-blog__lead a:hover {
    text-decoration: none;
  }
  #single-blog .single-blog__lead p {
    font-size: 16px;
  }
  #single-blog .single-blog__lead .wp-block-table {
    margin-bottom: 20px;
  }
  #single-blog .single-blog__lead .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #707070;
  }
  #single-blog .single-blog__lead .wp-block-table table tr {
    border-bottom: 1px solid #707070;
  }
  #single-blog .single-blog__lead .wp-block-table table tr th {
    background-color: #F5F5F5;
    border-right: 1px solid #707070;
  }
  #single-blog .single-blog__lead .wp-block-table table tr td,
  #single-blog .single-blog__lead .wp-block-table table tr th {
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
  }
  #single-blog .single-blog__lead .wp-block-table table tr td {
    border-right: 1px solid #707070;
  }
  #single-blog .single-blog__lead .wp-block-table table tr td:last-child {
    border: none;
  }
  #single-blog .single-blog__lead .wp-block-table table thead {
    background-color: #F69374;
    color: white;
    text-align: center;
  }
  #single-blog .cta {
    margin-top: 34px;
    border-radius: 8px;
    border: 2px solid #9B080A;
    padding: 30px;
    padding-right: 10px;
  }
  #single-blog .cta-ttl {
    font-size: 20px;
    font-weight: bold;
  }
  #single-blog .cta-desc {
    margin-top: 10px;
    font-size: 14px;
  }
  #single-blog .cta-link {
    margin-top: 30px;
    width: 255px;
    height: 51px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    padding: 20px;
    gap: 15px;
    align-items: center;
    font-size: 16px;
    border-radius: 8px;
  }
  #single-blog .cta-link img {
    flex-shrink: 0;
    width: 15px;
  }
  #single-blog .totop {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    gap: 15px;
  }
  #single-blog .totop img {
    flex-shrink: 0;
    width: 16px;
  }
}

.inquiry__form .wpcf7-spinner {
  display: none !important;
}
.inquiry__form .c-pageBody {
  padding-bottom: 0;
}
.inquiry__form .p-form__checks {
  flex-direction: column;
}
.inquiry__form .p-form__checks label {
  margin-bottom: 0;
}
.inquiry__form .p-form__checks.apply label {
  margin-bottom: 10px;
}
.inquiry__form .p-form__checks.apply label:last-child {
  margin-bottom: 20px;
}
.inquiry__form .p-formSurvey {
  flex-direction: column;
}
.inquiry__form .p-formSurvey__row {
  flex-direction: row;
  margin-bottom: 20px;
}
.inquiry__form .p-formSurvey__title {
  width: 100%;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}
.inquiry__form .p-formSurvey__title:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 5px solid #9B080A;
  margin-right: 4px;
}
.inquiry__form .p-formSurvey__title .p-form__label--optional {
  margin-left: 20px;
  background-color: transparent;
  border: 2px solid #161616;
  color: #161616;
  border-radius: 20px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .inquiry__form .p-formSurvey__title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.inquiry__form .c-formSection.border-top {
  border-top: 1px solid #707070;
  padding-block: 45px 45px;
}
.inquiry__form .c-formSection.border {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding-block: 45px 45px;
  margin-top: 0;
}
@media screen and (min-width: 769px) {
  .inquiry__form .c-formSection {
    margin-top: 15px;
  }
  .inquiry__form .c-formSection .c-formSection__title {
    display: none;
  }
  .inquiry__form .p-formTable {
    margin-top: 0 !important;
  }
  .inquiry__form .p-formTable tr {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
  }
  .inquiry__form .p-formTable tr.column {
    flex-direction: column;
    margin-bottom: 0;
  }
  .inquiry__form .p-formTable tr.column th {
    width: 100%;
  }
  .inquiry__form .p-formTable tr.column th .left {
    width: 100%;
    justify-content: flex-start;
  }
  .inquiry__form .p-formTable tr.column th .left:before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 5px solid #9B080A;
    margin-right: 4px;
  }
  .inquiry__form .p-formTable tr.column th .left .p-form__label--required {
    margin-left: 20px;
  }
  .inquiry__form .p-formTable th {
    width: 215px;
    flex-shrink: 0;
  }
  .inquiry__form .p-formTable th,
  .inquiry__form .p-formTable td {
    padding: 0;
    border: none;
  }
  .inquiry__form .p-formTable th .p-form__row,
  .inquiry__form .p-formTable td .p-form__row {
    margin: 0;
    display: flex;
    gap: 10px;
  }
  .inquiry__form .p-formTable th .p-form__row .codedropz-upload-inner h3,
  .inquiry__form .p-formTable td .p-form__row .codedropz-upload-inner h3 {
    font-size: 16px;
    font-weight: 500;
  }
  .inquiry__form .p-formTable th .p-form__row .cd-upload-btn,
  .inquiry__form .p-formTable td .p-form__row .cd-upload-btn {
    font-size: 14px;
    text-decoration: underline;
  }
  .inquiry__form .p-formTable td {
    padding: 0;
  }
  .inquiry__form .p-formTable td input {
    width: 100%;
  }
  .inquiry__form .p-formTable th {
    padding-right: 0;
  }
  .inquiry__form .p-formTable th .p-formTable__thInner {
    padding-top: 0;
    font-weight: 400;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .inquiry__form .p-formTable th .p-formTable__thInner .p-form__label {
    width: 47px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .inquiry__form .p-formTable th .p-formTable__thInner .p-form__label.p-form__label--required {
    background-color: transparent;
    border: 2px solid #9B080A;
    color: #9B080A;
    border-radius: 20px;
    font-size: 12px;
  }
  .inquiry__form .p-formTable th .p-formTable__thInner .p-form__label.p-form__label--optional {
    background-color: transparent;
    border: 2px solid #161616;
    color: #161616;
    border-radius: 20px;
    font-size: 12px;
  }
  .inquiry__form .p-formTable td {
    display: flex;
    width: 100%;
    padding-bottom: 0;
    flex-direction: column;
    justify-content: center;
  }
  .inquiry__form .p-formTable td br {
    display: none;
  }
  .inquiry__form .p-formTable td .p-form__field {
    border-color: #CDD6DD;
    font-size: 16px;
    height: 62px;
    margin: 0;
    width: 100%;
  }
  .inquiry__form .p-formTable td .p-form__field--textarea {
    height: 273px;
  }
  .inquiry__form .p-form__acceptance {
    margin-top: 37px;
    border: none;
    text-align: left;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .inquiry__form .p-form__acceptance label {
    align-items: flex-start;
  }
  .inquiry__form .p-form__acceptance label .icheckbox {
    transform: translateY(4px);
  }
  .inquiry__form .p-form__acceptance label a {
    color: #161616;
    border: none;
    text-decoration: underline;
    text-decoration-skip-ink: none;
  }
  .inquiry__form .p-form__action {
    margin-top: 32px;
  }
  .inquiry__form .p-form__action .p-form__actionBtn {
    background-color: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    color: #161616;
    font-size: 19px;
    width: 345px;
    font-weight: 500;
  }
  .inquiry__form .p-form__action .p-form__actionBtn:after {
    display: none;
  }
  .inquiry__form .p-form__action .p-form__actionBtn:hover {
    color: #161616;
  }
  .inquiry__form .p-form__action .wpcf7-submit {
    display: block;
    height: 68px;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .inquiry__form {
    padding: 15px;
  }
  .inquiry__form .c-formSection {
    margin-top: 15px;
  }
  .inquiry__form .c-formSection .c-formSection__title {
    display: none;
  }
  .inquiry__form .p-form {
    padding: 0;
  }
  .inquiry__form .p-formTable {
    margin-top: 0 !important;
  }
  .inquiry__form .p-formTable tr {
    flex-direction: column;
  }
  .inquiry__form .p-formTable tr.column {
    flex-direction: column;
    margin-bottom: 0;
  }
  .inquiry__form .p-formTable tr.column th {
    width: 100%;
  }
  .inquiry__form .p-formTable tr.column th .left {
    width: 100%;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 20px;
  }
  .inquiry__form .p-formTable tr.column th .left:before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 5px solid #9B080A;
    margin-right: 4px;
  }
  .inquiry__form .p-formTable tr.column th .left .p-form__label--required {
    margin-left: 20px;
  }
  .inquiry__form .p-formTable th,
  .inquiry__form .p-formTable td {
    padding: 0;
    border: none;
  }
  .inquiry__form .p-formTable th br,
  .inquiry__form .p-formTable td br {
    display: none;
  }
  .inquiry__form .p-formTable th {
    padding-right: 0px;
  }
  .inquiry__form .p-formTable th .p-formTable__thInner {
    padding-top: 0px;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }
  .inquiry__form .p-formTable th .p-formTable__thInner .p-form__label {
    width: 47px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .inquiry__form .p-formTable th .p-formTable__thInner .p-form__label.p-form__label--required {
    background-color: transparent;
    border: 2px solid #9B080A;
    color: #9B080A;
    border-radius: 20px;
    font-size: 12px;
  }
  .inquiry__form .p-formTable th .p-formTable__thInner .p-form__label.p-form__label--optional {
    background-color: transparent;
    border: 2px solid #161616;
    color: #161616;
    border-radius: 20px;
    font-size: 12px;
  }
  .inquiry__form .p-formTable td {
    margin-top: 10px;
  }
  .inquiry__form .p-formTable td input {
    font-size: 14px;
    height: 42px;
  }
  .inquiry__form .p-formTable td .p-form__text.tel {
    display: none;
  }
  .inquiry__form .p-formTable td .p-form__row {
    font-size: 14px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .inquiry__form .p-formTable td .p-form__row .codedropz-upload-inner h3 {
    font-size: 14px;
    font-weight: 500;
  }
  .inquiry__form .p-formTable td .p-form__row .cd-upload-btn {
    font-size: 14px;
    text-decoration: underline;
  }
  .inquiry__form .p-formTable td .modeConfirm {
    font-size: 14px;
  }
  .inquiry__form .p-formTable td .p-form__field {
    border-color: #CDD6DD;
    font-size: 14px;
    height: 42px;
    margin: 0;
    width: 100%;
  }
  .inquiry__form .p-formTable td .p-form__field--textarea {
    height: 273px;
  }
  .inquiry__form .p-form__acceptance {
    margin-top: 37px;
    border: none;
    text-align: left;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .inquiry__form .p-form__acceptance label {
    align-items: flex-start;
  }
  .inquiry__form .p-form__acceptance label .icheckbox {
    transform: translateY(1px);
  }
  .inquiry__form .p-form__acceptance label span {
    font-size: 14px;
    line-height: 1.5;
  }
  .inquiry__form .p-form__acceptance label a {
    color: #161616;
    border: none;
    text-decoration: underline;
    text-decoration-skip-ink: none;
  }
  .inquiry__form .p-form__action {
    margin-top: 32px;
  }
  .inquiry__form .p-form__action .p-form__actionBtn {
    background-color: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    color: #161616;
    font-size: 14px;
    width: 200px;
    font-weight: 500;
    padding-left: 0;
    padding-right: 0;
  }
  .inquiry__form .p-form__action .p-form__actionBtn:after {
    display: none;
  }
  .inquiry__form .p-form__action .p-form__actionBtn:hover {
    color: #161616;
  }
  .inquiry__form .p-form__action .wpcf7-submit {
    display: block;
    height: 57px;
    margin: 20px auto 0;
  }
}

#page-solution #section-firstView .service-firstView {
  position: relative;
  min-height: auto;
  margin-block-start: -36px;
  padding-block: 36px 100px;
  background: transparent url(../img/solution-img-mv.png) right bottom/auto 100% no-repeat;
}
@media (width < 60rem) {
  #page-solution #section-firstView .service-firstView {
    background-position: left bottom;
  }
}
@media (width < 48rem) {
  #page-solution #section-firstView .service-firstView {
    background-position: left 10% bottom;
  }
}
#page-solution #section-firstView .service-firstView__lead {
  width: fit-content;
  margin-block-start: 64px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 0 2px rgb(var(--color-white)), 0 0 2px rgb(var(--color-white)), 0 0 2px rgb(var(--color-white)), 0 0 2px rgb(var(--color-white));
  text-wrap: wrap;
}
@media (width < 48rem) {
  #page-solution #section-firstView .service-firstView__lead {
    margin-block-start: 50px;
    font-size: var(--font-size-24);
  }
}
#page-solution #section-firstView .service-firstView__text {
  margin-block-start: 45px;
  line-height: 1.7;
  text-wrap: wrap;
}
@media (width < 48rem) {
  #page-solution #section-firstView .service-firstView__text {
    padding-inline-end: 100px;
  }
}
#page-solution #section-firstView .service-firstView__panel {
  position: absolute;
  top: 154px;
  right: 50px;
}
@media (width < 48rem) {
  #page-solution #section-firstView .service-firstView__panel {
    top: 100px;
    right: 20px;
  }
}
@media screen and (min-width: 769px) {
  #page-solution #banner {
    padding-top: 59px;
    padding-bottom: 126px;
    background-color: #F5F5F5;
  }
  #page-solution #banner .banner-item {
    background-color: white;
    border-radius: 24px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 57px 44px 64px;
    margin-bottom: 30px;
  }
  #page-solution #banner .banner-item:last-child {
    margin-bottom: 0;
  }
  #page-solution #banner .banner-item__top {
    display: flex;
    gap: 25px;
  }
  #page-solution #banner .banner-item__thumb {
    flex-shrink: 0;
    width: 300px;
  }
  #page-solution #banner .banner-item__cat {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border: 1px solid #9B080A;
    font-size: 16px;
    color: #9B080A;
    width: 120px;
  }
  #page-solution #banner .banner-item__problem {
    margin-top: 19px;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 44px;
  }
  #page-solution #banner .banner-item__problem img {
    flex-shrink: 0;
    width: 21px;
  }
  #page-solution #banner .banner-item__ttl {
    margin-top: 26px;
    font-size: 30px;
    font-weight: bold;
    line-height: 42px;
  }
  #page-solution #banner .banner-item__middle {
    margin-top: 38px;
  }
  #page-solution #banner .banner-item__target {
    font-size: 20px;
    font-weight: bold;
  }
  #page-solution #banner .banner-item__children {
    margin-top: 20px;
  }
  #page-solution #banner .banner-item__child {
    display: flex;
    gap: 14px;
    font-size: 18px;
    line-height: 34px;
    align-items: flex-start;
  }
  #page-solution #banner .banner-item__child img {
    flex-shrink: 0;
    width: 16px;
    transform: translateY(10px);
  }
  #page-solution #banner .banner-item__bottom {
    margin-top: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1%;
  }
  #page-solution #banner .banner-item__key {
    font-size: 20px;
    font-weight: bold;
  }
  #page-solution #banner .banner-item__tags {
    margin-top: 19px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  #page-solution #banner .banner-item__tag {
    padding: 8px;
    border: 1px solid #9B080A;
    font-size: 14px;
    color: #9B080A;
  }
  #page-solution #banner .banner-item__link {
    flex-shrink: 0;
    width: 148px;
    height: 47px;
    border-radius: 8px;
    background-color: #9B080A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: white;
  }
  #page-solution #banner .banner-item__link img {
    flex-shrink: 0;
    width: 16px;
  }
}
@media screen and (max-width: 768px) {
  #page-solution #banner {
    padding-top: 30px;
    padding-bottom: 60px;
    background-color: #F5F5F5;
  }
  #page-solution #banner .banner-item {
    background-color: white;
    border-radius: 16px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 20px;
  }
  #page-solution #banner .banner-item:last-child {
    margin-bottom: 0;
  }
  #page-solution #banner .banner-item__top {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  #page-solution #banner .banner-item__thumb {
    flex-shrink: 0;
    width: 300px;
  }
  #page-solution #banner .banner-item__cat {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    border: 1px solid #9B080A;
    font-size: 14px;
    color: #9B080A;
    width: 100px;
  }
  #page-solution #banner .banner-item__problem {
    margin-top: 15px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
  }
  #page-solution #banner .banner-item__problem img {
    flex-shrink: 0;
    width: 16px;
  }
  #page-solution #banner .banner-item__ttl {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
  }
  #page-solution #banner .banner-item__middle {
    margin-top: 20px;
  }
  #page-solution #banner .banner-item__target {
    font-size: 16px;
    font-weight: bold;
  }
  #page-solution #banner .banner-item__children {
    margin-top: 16px;
  }
  #page-solution #banner .banner-item__child {
    display: flex;
    gap: 10px;
    font-size: 14px;
    line-height: 24px;
    align-items: flex-start;
  }
  #page-solution #banner .banner-item__child img {
    transform: translateY(10px);
    flex-shrink: 0;
    width: 12px;
  }
  #page-solution #banner .banner-item__bottom {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #page-solution #banner .banner-item__key {
    font-size: 16px;
    font-weight: bold;
  }
  #page-solution #banner .banner-item__tags {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  #page-solution #banner .banner-item__tag {
    padding: 8px;
    border: 1px solid #9B080A;
    font-size: 12px;
    color: #9B080A;
  }
  #page-solution #banner .banner-item__link {
    flex-shrink: 0;
    width: 148px;
    height: 47px;
    border-radius: 8px;
    background-color: #9B080A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: white;
  }
  #page-solution #banner .banner-item__link img {
    flex-shrink: 0;
    width: 16px;
  }
}

@media screen and (min-width: 769px) {
  #solution-contact {
    padding-top: 115px;
    padding-bottom: 60px;
    overflow: hidden;
  }
  #solution-contact .contact-wrap {
    border-radius: 24px 0 0 24px;
    background-color: #F5F5F5;
    position: relative;
    padding: 62px 49px;
    padding-right: 0;
  }
  #solution-contact .contact-wrap:after {
    content: "";
    width: 100vw;
    height: 100%;
    background-color: #F5F5F5;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
  }
  #solution-contact .contact-ttl {
    font-size: 30px;
    font-weight: bold;
  }
  #solution-contact .contact-lead {
    margin-top: 21px;
    font-size: 20px;
    font-weight: 400;
  }
  #solution-contact .contact-list {
    margin-top: 49px;
    display: flex;
    gap: 70px;
  }
  #solution-contact .contact-list__img {
    position: absolute;
    width: 321px;
    right: 0;
    top: 0;
    transform: translateY(-100%);
  }
  #solution-contact .contact-list__item {
    flex: 1;
    padding: 28px 36px 38px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  #solution-contact .contact-list__ttl {
    font-size: 20px;
    font-weight: bold;
    width: 100%;
  }
  #solution-contact .contact-list__desc {
    width: 100%;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
  }
  #solution-contact .contact-list__link {
    margin: 17px auto 0;
    border-radius: 8px;
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 5px;
  }
  #solution-contact .contact-list__link img {
    flex-shrink: 0;
  }
  #solution-contact .contact-list__link.item01 {
    border: 1px solid #9B080A;
    color: #9B080A;
  }
  #solution-contact .contact-list__link.item01 img {
    width: 24px;
  }
  #solution-contact .contact-list__link.item02 {
    background-color: #9B080A;
    color: white;
  }
  #solution-contact .contact-list__link.item02 img {
    width: 28px;
  }
}
@media screen and (max-width: 768px) {
  #solution-contact {
    padding-top: 60px;
    padding-bottom: 30px;
    overflow: hidden;
  }
  #solution-contact .contact-wrap {
    border-radius: 16px 0 0 16px;
    background-color: #F5F5F5;
    position: relative;
    padding: 30px;
    padding-right: 0;
  }
  #solution-contact .contact-wrap:after {
    content: "";
    width: 100vw;
    height: 100%;
    background-color: #F5F5F5;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
  }
  #solution-contact .contact-ttl {
    font-size: 20px;
    font-weight: bold;
  }
  #solution-contact .contact-lead {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 400;
  }
  #solution-contact .contact-list {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #solution-contact .contact-list__img {
    position: absolute;
    width: 150px;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
  }
  #solution-contact .contact-list__item {
    flex: 1;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  #solution-contact .contact-list__item.item02 {
    padding-bottom: 150px;
  }
  #solution-contact .contact-list__ttl {
    font-size: 16px;
    font-weight: bold;
    width: 100%;
  }
  #solution-contact .contact-list__desc {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }
  #solution-contact .contact-list__link {
    margin: 12px auto 0;
    border-radius: 8px;
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 5px;
  }
  #solution-contact .contact-list__link img {
    flex-shrink: 0;
  }
  #solution-contact .contact-list__link.item01 {
    border: 1px solid #9B080A;
    color: #9B080A;
  }
  #solution-contact .contact-list__link.item01 img {
    width: 24px;
  }
  #solution-contact .contact-list__link.item02 {
    background-color: #9B080A;
    color: white;
  }
  #solution-contact .contact-list__link.item02 img {
    width: 28px;
  }
}

#child-solution #section-firstView .service-firstView {
  position: relative;
  min-height: auto;
  margin-block-start: -36px;
  padding-block: 36px 100px;
}
#child-solution #section-firstView .service-firstView.solution01 {
  background: transparent url(../images/solution/solution-img-mv01.png) right bottom/auto 100% no-repeat;
}
#child-solution #section-firstView .service-firstView.solution02 {
  background: transparent url(../images/solution/solution-img-mv02.png) right bottom/auto 100% no-repeat;
}
#child-solution #section-firstView .service-firstView.solution03 {
  background: transparent url(../images/solution/solution-img-mv03.png) right bottom/auto 100% no-repeat;
}
#child-solution #section-firstView .service-firstView.solution04 {
  background: transparent url(../images/solution/solution-img-mv04.png) right bottom/auto 100% no-repeat;
}
#child-solution #section-firstView .service-firstView.solution05 {
  background: transparent url(../images/solution/solution-img-mv05.png) right bottom/auto 100% no-repeat;
}
#child-solution #section-firstView .service-firstView.solution06 {
  background: transparent url(../images/solution/solution-img-mv06.png) right bottom/auto 100% no-repeat;
}
@media (width < 60rem) {
  #child-solution #section-firstView .service-firstView {
    background-position: left bottom;
  }
}
@media (width < 48rem) {
  #child-solution #section-firstView .service-firstView {
    background-position: left 10% bottom;
  }
}
#child-solution #section-firstView .service-firstView .pageTitle__text {
  color: #9B080A;
}
#child-solution #section-firstView .service-firstView__lead {
  width: fit-content;
  margin-block-start: 64px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 0 2px rgb(var(--color-white)), 0 0 2px rgb(var(--color-white)), 0 0 2px rgb(var(--color-white)), 0 0 2px rgb(var(--color-white));
  text-wrap: wrap;
}
@media (width < 48rem) {
  #child-solution #section-firstView .service-firstView__lead {
    margin-block-start: 50px;
    font-size: var(--font-size-24);
  }
}
#child-solution #section-firstView .service-firstView__text {
  margin-block-start: 45px;
  line-height: 1.7;
  text-wrap: wrap;
}
@media (width < 48rem) {
  #child-solution #section-firstView .service-firstView__text {
    padding-inline-end: 100px;
  }
}
#child-solution #section-firstView .service-firstView__panel {
  position: absolute;
  top: 154px;
  right: 50px;
}
@media (width < 48rem) {
  #child-solution #section-firstView .service-firstView__panel {
    top: 100px;
    right: 20px;
  }
}
@media screen and (min-width: 769px) {
  #child-solution #area {
    padding-top: 28px;
  }
  #child-solution #area .area-lead {
    font-size: 30px;
    font-weight: bold;
    line-height: 42px;
    text-align: center;
  }
  #child-solution #area .area-lead span {
    color: #9B080A;
  }
  #child-solution #area .area-desc {
    margin-top: 25px;
    font-size: 20px;
    line-height: 34px;
    font-weight: 400;
    text-align: center;
  }
  #child-solution #area .area-tabs {
    margin-top: 41px;
    display: flex;
    gap: 16px;
    border-bottom: 8px solid #9B080A;
  }
  #child-solution #area .area-tabs.bottom {
    margin-top: 0;
    border-bottom: none;
    border-top: 8px solid #9B080A;
  }
  #child-solution #area .area-tab {
    padding: 22px 30px;
    border-radius: 8px 8px 0 0;
    background-color: white;
    display: flex;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    border: 3px solid #9B080A;
    border-bottom: none;
    cursor: pointer;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #child-solution #area .area-tab br {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  #child-solution #area .area-tab.bottom {
    border-radius: 0 0 8px 8px;
    border-top: none;
    border-bottom: 3px solid #9B080A;
  }
  #child-solution #area .area-tab span {
    color: #9B080A;
  }
  #child-solution #area .area-tab.active {
    background-color: #9B080A;
    color: white;
  }
  #child-solution #area .area-tab.active span {
    color: white;
  }
  #child-solution #area .area-contents .areaContent {
    display: none;
    background-color: #F5F5F5;
    padding: 40px;
  }
  #child-solution #area .area-contents .areaContent.active {
    display: block;
  }
  #child-solution #area .area-contents .areaContent-top {
    display: flex;
    gap: 28px;
  }
  #child-solution #area .area-contents .areaContent-top__thumb {
    flex-shrink: 0;
  }
  #child-solution #area .area-contents .areaContent-top__thumb.thumb01 {
    width: 202px;
  }
  #child-solution #area .area-contents .areaContent-top__thumb.thumb02 {
    width: 163px;
  }
  #child-solution #area .area-contents .areaContent-top__thumb.thumb03 {
    width: 200px;
  }
  #child-solution #area .area-contents .areaContent-top__ttl {
    font-size: 36px;
    font-weight: bold;
    line-height: 48px;
  }
  #child-solution #area .area-contents .areaContent-top__desc {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
  }
  #child-solution #area .area-contents .areaContent-condition {
    margin-top: 44px;
  }
  #child-solution #area .area-contents .areaContent-condition__ttl {
    font-size: 24px;
    line-height: 44px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-condition__list {
    margin-top: 27px;
    display: flex;
    gap: 37px;
    flex-wrap: wrap;
  }
  #child-solution #area .area-contents .areaContent-condition__item {
    background-color: white;
    border-radius: 8px;
    padding: 32px 20px 34px;
    width: 250px;
    flex-shrink: 0;
    position: relative;
    font-size: 16px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-condition__item span {
    color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-condition__item img {
    position: absolute;
    width: 21px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
  }
  #child-solution #area .area-contents .areaContent-neck {
    margin-top: 75px;
    border-radius: 8px;
    border: 1px solid #9B080A;
    padding: 61px 43px;
    position: relative;
  }
  #child-solution #area .area-contents .areaContent-neck__ttl {
    padding: 17px;
    background-color: #9B080A;
    font-size: 24px;
    color: white;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 26px;
    transform: translateY(-50%);
  }
  #child-solution #area .area-contents .areaContent-neck__lead {
    font-size: 18px;
    font-weight: 400;
  }
  #child-solution #area .area-contents .areaContent-neck__list {
    margin-top: 46px;
  }
  #child-solution #area .area-contents .areaContent-neck__item {
    display: flex;
    gap: 14px;
    font-size: 20px;
    font-weight: bold;
    align-items: flex-start;
    margin-bottom: 36px;
  }
  #child-solution #area .area-contents .areaContent-neck__item:last-child {
    margin-bottom: 0;
  }
  #child-solution #area .area-contents .areaContent-neck__item img {
    flex-shrink: 0;
    width: 16px;
    transform: translateY(10px);
  }
  #child-solution #area .area-contents .areaContent-solution {
    margin-top: 62px;
    border-radius: 8px;
    background-color: white;
    padding: 37px 56px;
    position: relative;
  }
  #child-solution #area .area-contents .areaContent-solution__img {
    position: absolute;
    width: 26.3489208633%;
    top: -26px;
    right: 56px;
  }
  #child-solution #area .area-contents .areaContent-solution__lead {
    margin-top: 34px;
    font-size: 24px;
    font-weight: bold;
    color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-solution__desc {
    margin-top: 32px;
    font-size: 18px;
    font-weight: 400;
  }
  #child-solution #area .area-contents .areaContent-solution__list {
    margin-top: 41px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }
  #child-solution #area .area-contents .areaContent-solution__item {
    border-radius: 8px;
    border: 1px solid #9B080A;
    padding: 35px 19px;
    position: relative;
    flex-shrink: 0;
    width: 315px;
  }
  #child-solution #area .area-contents .areaContent-solution__number {
    padding: 4px 8px;
    border-radius: 20px;
    background-color: #9B080A;
    color: white;
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 22px;
    transform: translateY(-50%);
  }
  #child-solution #area .area-contents .areaContent-solution__detail {
    font-size: 18px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-solution__purpose {
    margin-top: 31px;
    font-size: 19px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-service {
    background-color: white;
    margin-top: 78px;
    border-radius: 8px;
    padding: 37px 56px;
  }
  #child-solution #area .area-contents .areaContent-service__list {
    margin-top: 38px;
    margin-left: -56px;
  }
  #child-solution #area .area-contents .areaContent-service__item {
    padding-left: 46px;
    border-left: 10px solid;
    margin-bottom: 86px;
  }
  #child-solution #area .area-contents .areaContent-service__item:last-child {
    margin-bottom: 0;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-01-01 {
    border-color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-01-02 {
    border-color: #004A65;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-02-01 {
    border-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-02-02 {
    border-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-02-03 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-03-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-03-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-01-01 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-01-02 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-02-01 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-02-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-02-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-03-01 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-03-02 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-01-01 {
    border-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-01-02 {
    border-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-01-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-02-01 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-02-02 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-02-03 {
    border-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-03-01 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-03-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-01-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-01-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-01-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-02-01 {
    border-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-02-02 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-03-01 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-03-02 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-03-03 {
    border-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-01-01 {
    border-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-01-02 {
    border-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-01-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-02-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-02-02 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-03-01 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-03-02 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-03-03 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-01-01 {
    border-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-01-02 {
    border-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-01-03 {
    border-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-02-01 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-02-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-02-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-03-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-03-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__main {
    display: flex;
    gap: 30px;
  }
  #child-solution #area .area-contents .areaContent-service__left {
    width: 100%;
    max-width: 320px;
  }
  #child-solution #area .area-contents .areaContent-service__ttl {
    font-size: 30px;
    line-height: 44px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-service__tags {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  #child-solution #area .area-contents .areaContent-service__tag {
    border: 1px solid;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-01-01 {
    border-color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-01-02 {
    border-color: #004A65;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-02-01 {
    border-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-02-02 {
    border-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-02-03 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-03-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-03-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-01-01 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-01-02 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-02-01 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-02-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-02-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-03-01 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-03-02 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-01-01 {
    border-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-01-02 {
    border-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-01-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-02-01 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-02-02 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-02-03 {
    border-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-03-01 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-03-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-01-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-01-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-01-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-02-01 {
    border-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-02-02 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-03-01 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-03-02 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-03-03 {
    border-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-01-01 {
    border-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-01-02 {
    border-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-01-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-02-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-02-02 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-03-01 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-03-02 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-03-03 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-01-01 {
    border-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-01-02 {
    border-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-01-03 {
    border-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-02-01 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-02-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-02-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-03-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-03-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__tag {
    padding: 8px;
    font-size: 16px;
  }
  #child-solution #area .area-contents .areaContent-service__desc {
    font-size: 14px;
  }
  #child-solution #area .area-contents .areaContent-service__children {
    margin-top: 26px;
  }
  #child-solution #area .area-contents .areaContent-service__child {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 18px;
    margin-bottom: 15px;
  }
  #child-solution #area .area-contents .areaContent-service__child:last-child {
    margin-bottom: 0;
  }
  #child-solution #area .area-contents .areaContent-service__child img {
    flex-shrink: 0;
    width: 16px;
    transform: translateY(5px);
  }
  #child-solution #area .area-contents .areaContent-service__bottom {
    margin-top: 30px;
    display: flex;
    gap: 1%;
    align-items: center;
    justify-content: space-between;
  }
  #child-solution #area .area-contents .areaContent-service__purpose {
    font-size: 19px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-service__link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 166px;
    height: 47px;
    border-radius: 8px;
    font-size: 16px;
    border: 1px solid;
  }
  #child-solution #area .area-contents .areaContent-service__link .hover {
    display: none;
  }
  #child-solution #area .area-contents .areaContent-service__link:hover .hover {
    display: block;
  }
  #child-solution #area .area-contents .areaContent-service__link:hover .non-hover {
    display: none;
  }
  #child-solution #area .area-contents .areaContent-service__link:hover {
    color: white;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-01-01 {
    border-color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-01-01:hover {
    background-color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-01-02 {
    border-color: #004A65;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-01-02:hover {
    background-color: #004A65;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-02-01 {
    border-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-02-01:hover {
    background-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-02-02 {
    border-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-02-02:hover {
    background-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-02-03 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-02-03:hover {
    background-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-03-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-03-01:hover {
    background-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-03-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-03-02:hover {
    background-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-03-03:hover {
    background-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-01-01 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-01-01:hover {
    background-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-01-02 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-01-02:hover {
    background-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-02-01 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-02-01:hover {
    background-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-02-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-02-02:hover {
    background-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-02-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-02-03:hover {
    background-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-03-01 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-03-01:hover {
    background-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-03-02 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-03-02:hover {
    background-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-03-03:hover {
    background-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-01-01 {
    border-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-01-01:hover {
    background-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-01-02 {
    border-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-01-02:hover {
    background-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-01-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-01-03:hover {
    background-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-02-01 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-02-01:hover {
    background-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-02-02 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-02-02:hover {
    background-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-02-03 {
    border-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-02-03:hover {
    background-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-03-01 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-03-01:hover {
    background-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-03-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-03-02:hover {
    background-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-03-03:hover {
    background-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-01-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-01-01:hover {
    background-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-01-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-01-02:hover {
    background-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-01-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-01-03:hover {
    background-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-02-01 {
    border-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-02-01:hover {
    background-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-02-02 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-02-02:hover {
    background-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-03-01 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-03-01:hover {
    background-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-03-02 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-03-02:hover {
    background-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-03-03 {
    border-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-03-03:hover {
    background-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-01-01 {
    border-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-01-01:hover {
    background-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-01-02 {
    border-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-01-02:hover {
    background-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-01-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-01-03:hover {
    background-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-02-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-02-01:hover {
    background-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-02-02 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-02-02:hover {
    background-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-03-01 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-03-01:hover {
    background-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-03-02 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-03-02:hover {
    background-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-03-03 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-03-03:hover {
    background-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-01-01 {
    border-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-01-01:hover {
    background-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-01-02 {
    border-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-01-02:hover {
    background-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-01-03 {
    border-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-01-03:hover {
    background-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-02-01 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-02-01:hover {
    background-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-02-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-02-02:hover {
    background-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-02-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-02-03:hover {
    background-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-03-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-03-01:hover {
    background-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-03-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-03-02:hover {
    background-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link img {
    width: 16px;
    flex-shrink: 0;
  }
  #child-solution #area .area-contents .areaContent-flow {
    margin-top: 93px;
    padding-left: 56px;
  }
  #child-solution #area .area-contents .areaContent-flow__list {
    margin-top: 28px;
    display: flex;
    gap: 20px 0;
  }
  #child-solution #area .area-contents .areaContent-flow__item {
    display: flex;
    gap: 17px;
    overflow: hidden;
    flex: 1;
  }
  #child-solution #area .area-contents .areaContent-flow__number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #9B080A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    font-family: "Fira Sans";
  }
  #child-solution #area .area-contents .areaContent-flow__sub {
    margin-top: 13px;
    display: inline-block;
    font-size: 16px;
    color: #9B080A;
    position: relative;
  }
  #child-solution #area .area-contents .areaContent-flow__sub:after {
    content: "";
    width: 300px;
    height: 3px;
    background-color: #9B080A;
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translate(100%, -50%);
  }
  #child-solution #area .area-contents .areaContent-flow__sub.last::after {
    display: none;
  }
  #child-solution #area .area-contents .areaContent-flow__desc {
    margin-top: 10px;
    padding-right: 10px;
    font-size: 18px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-flow__desc.last {
    padding-right: 0;
  }
  #child-solution #area .area-contents .areaContent-ctas {
    margin-top: 78px;
    display: flex;
    gap: 24px;
  }
  #child-solution #area .area-contents .areaContent-cta {
    border-radius: 8px;
    background-color: white;
    flex: 1;
    padding: 32px 30px 34px;
    display: flex;
    flex-direction: column;
  }
  #child-solution #area .area-contents .areaContent-cta__ttl {
    font-size: 20px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-cta__desc {
    margin-top: 15px;
    font-size: 20px;
    min-height: 60px;
  }
  #child-solution #area .area-contents .areaContent-cta__link {
    margin: 17px auto 0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    font-size: 21px;
  }
  #child-solution #area .area-contents .areaContent-cta__link.item01 {
    border: 1px solid #9B080A;
    color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-cta__link.item01:hover {
    background-color: #9B080A;
    color: white;
  }
  #child-solution #area .area-contents .areaContent-cta__link.item02 {
    background-color: #9B080A;
    color: white;
  }
  #child-solution #area .area-contents .areaContent-cta__link.item02:hover {
    background-color: white;
    color: #9B080A;
    border: 1px solid #9B080A;
  }
  #child-solution #area .section-ttl {
    font-size: 30px;
    font-weight: bold;
    position: relative;
  }
  #child-solution #area .section-ttl span {
    line-height: 1;
    display: block;
    font-size: 13px;
  }
  #child-solution #area .section-ttl::before {
    content: "";
    display: block;
    width: 25px;
    height: 7px;
    background-color: #9B080A;
    position: absolute;
    top: 21px;
    left: -32px;
  }
}
@media screen and (max-width: 768px) {
  #child-solution #area {
    padding-top: 20px;
  }
  #child-solution #area .area-lead {
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
  }
  #child-solution #area .area-lead span {
    color: #9B080A;
  }
  #child-solution #area .area-desc {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
  #child-solution #area .area-tabs {
    margin-top: 31px;
    display: flex;
    gap: 8px;
    border-bottom: 4px solid #9B080A;
  }
  #child-solution #area .area-tabs.bottom {
    margin-top: 0;
    border-bottom: none;
    border-top: 4px solid #9B080A;
  }
  #child-solution #area .area-tab {
    padding: 10px 20px;
    border-radius: 4px 4px 0 0;
    background-color: white;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #9B080A;
    border-bottom: none;
    cursor: pointer;
  }
  #child-solution #area .area-tab br {
    display: none;
  }
  #child-solution #area .area-tab.bottom {
    border-radius: 0 0 8px 8px;
    border-top: none;
    border-bottom: 2px solid #9B080A;
  }
  #child-solution #area .area-tab span {
    color: #9B080A;
  }
  #child-solution #area .area-tab.active {
    background-color: #9B080A;
    color: white;
  }
  #child-solution #area .area-tab.active span {
    color: white;
  }
  #child-solution #area .area-contents .areaContent {
    display: none;
    background-color: #F5F5F5;
    padding: 20px;
  }
  #child-solution #area .area-contents .areaContent.active {
    display: block;
  }
  #child-solution #area .area-contents .areaContent-top {
    display: flex;
    gap: 15px;
    flex-direction: column;
  }
  #child-solution #area .area-contents .areaContent-top__thumb {
    flex-shrink: 0;
  }
  #child-solution #area .area-contents .areaContent-top__thumb.thumb01 {
    width: 202px;
  }
  #child-solution #area .area-contents .areaContent-top__thumb.thumb02 {
    width: 163px;
  }
  #child-solution #area .area-contents .areaContent-top__thumb.thumb03 {
    width: 200px;
  }
  #child-solution #area .area-contents .areaContent-top__ttl {
    font-size: 24px;
    font-weight: bold;
    line-height: 36px;
  }
  #child-solution #area .area-contents .areaContent-top__desc {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }
  #child-solution #area .area-contents .areaContent-condition {
    margin-top: 24px;
  }
  #child-solution #area .area-contents .areaContent-condition__ttl {
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-condition__list {
    margin-top: 18px;
    display: flex;
    gap: 37px;
    flex-wrap: wrap;
    justify-content: center;
  }
  #child-solution #area .area-contents .areaContent-condition__item {
    background-color: white;
    border-radius: 8px;
    padding: 32px 28px 52px;
    width: 250px;
    flex-shrink: 0;
    position: relative;
    font-size: 16px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-condition__item span {
    color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-condition__item img {
    position: absolute;
    width: 21px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
  }
  #child-solution #area .area-contents .areaContent-neck {
    margin-top: 55px;
    border-radius: 4px;
    border: 1px solid #9B080A;
    padding: 30px 20px;
    position: relative;
  }
  #child-solution #area .area-contents .areaContent-neck__ttl {
    padding: 10px 17px;
    background-color: #9B080A;
    font-size: 18px;
    color: white;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 10px;
    transform: translateY(-50%);
  }
  #child-solution #area .area-contents .areaContent-neck__lead {
    font-size: 16px;
    font-weight: 400;
  }
  #child-solution #area .area-contents .areaContent-neck__list {
    margin-top: 26px;
  }
  #child-solution #area .area-contents .areaContent-neck__item {
    display: flex;
    gap: 14px;
    font-size: 16px;
    font-weight: bold;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  #child-solution #area .area-contents .areaContent-neck__item:last-child {
    margin-bottom: 0;
  }
  #child-solution #area .area-contents .areaContent-neck__item img {
    flex-shrink: 0;
    width: 16px;
    transform: translateY(10px);
  }
  #child-solution #area .area-contents .areaContent .section-ttl {
    margin-left: 30px;
  }
  #child-solution #area .area-contents .areaContent-solution {
    margin-top: 100px;
    border-radius: 4px;
    background-color: white;
    padding: 25px;
    position: relative;
  }
  #child-solution #area .area-contents .areaContent-solution__img {
    position: absolute;
    width: 150px;
    top: 26px;
    right: 25px;
    transform: translateY(-100%);
  }
  #child-solution #area .area-contents .areaContent-solution__lead {
    margin-top: 14px;
    font-size: 18px;
    font-weight: bold;
    color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-solution__desc {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
  }
  #child-solution #area .area-contents .areaContent-solution__list {
    margin-top: 41px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-wrap: wrap;
  }
  #child-solution #area .area-contents .areaContent-solution__item {
    border-radius: 4px;
    border: 1px solid #9B080A;
    padding: 20px 10px;
    position: relative;
    flex-shrink: 0;
  }
  #child-solution #area .area-contents .areaContent-solution__number {
    padding: 4px 8px;
    border-radius: 20px;
    background-color: #9B080A;
    color: white;
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 12px;
    transform: translateY(-50%);
  }
  #child-solution #area .area-contents .areaContent-solution__detail {
    font-size: 14px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-solution__purpose {
    margin-top: 21px;
    font-size: 16px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-service {
    background-color: white;
    margin-top: 38px;
    border-radius: 4px;
    padding: 25px;
  }
  #child-solution #area .area-contents .areaContent-service__list {
    margin-left: -25px;
  }
  #child-solution #area .area-contents .areaContent-service__item {
    padding-left: 51px;
    border-left: 5px solid;
    margin-bottom: 46px;
  }
  #child-solution #area .area-contents .areaContent-service__item:last-child {
    margin-bottom: 0;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-01-01 {
    border-color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-01-02 {
    border-color: #004A65;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-02-01 {
    border-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-02-02 {
    border-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-02-03 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-03-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-03-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution01-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-01-01 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-01-02 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-02-01 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-02-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-02-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-03-01 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-03-02 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution02-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-01-01 {
    border-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-01-02 {
    border-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-01-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-02-01 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-02-02 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-02-03 {
    border-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-03-01 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-03-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution03-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-01-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-01-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-01-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-02-01 {
    border-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-02-02 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-03-01 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-03-02 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution04-03-03 {
    border-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-01-01 {
    border-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-01-02 {
    border-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-01-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-02-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-02-02 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-03-01 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-03-02 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution05-03-03 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-01-01 {
    border-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-01-02 {
    border-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-01-03 {
    border-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-02-01 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-02-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-02-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-03-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__item.solution06-03-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__main {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  #child-solution #area .area-contents .areaContent-service__ttl {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-service__tags {
    margin-top: 20px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }
  #child-solution #area .area-contents .areaContent-service__tag {
    border: 1px solid;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-01-01 {
    border-color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-01-02 {
    border-color: #004A65;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-02-01 {
    border-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-02-02 {
    border-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-02-03 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-03-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-03-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution01-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-01-01 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-01-02 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-02-01 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-02-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-02-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-03-01 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-03-02 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution02-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-01-01 {
    border-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-01-02 {
    border-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-01-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-02-01 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-02-02 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-02-03 {
    border-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-03-01 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-03-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution03-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-01-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-01-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-01-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-02-01 {
    border-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-02-02 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-03-01 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-03-02 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution04-03-03 {
    border-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-01-01 {
    border-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-01-02 {
    border-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-01-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-02-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-02-02 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-03-01 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-03-02 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution05-03-03 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-01-01 {
    border-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-01-02 {
    border-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-01-03 {
    border-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-02-01 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-02-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-02-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-03-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__tag.solution06-03-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__tag {
    padding: 4px;
    font-size: 14px;
  }
  #child-solution #area .area-contents .areaContent-service__desc {
    font-size: 14px;
  }
  #child-solution #area .area-contents .areaContent-service__children {
    margin-top: 15px;
  }
  #child-solution #area .area-contents .areaContent-service__child {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 14px;
    margin-bottom: 10px;
  }
  #child-solution #area .area-contents .areaContent-service__child:last-child {
    margin-bottom: 0;
  }
  #child-solution #area .area-contents .areaContent-service__child img {
    flex-shrink: 0;
    width: 16px;
    transform: translateY(5px);
  }
  #child-solution #area .area-contents .areaContent-service__bottom {
    margin-top: 21px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #child-solution #area .area-contents .areaContent-service__purpose {
    font-size: 16px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-service__link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 166px;
    height: 47px;
    border-radius: 8px;
    font-size: 16px;
    border: 1px solid;
  }
  #child-solution #area .area-contents .areaContent-service__link .hover {
    display: none;
  }
  #child-solution #area .area-contents .areaContent-service__link:hover .hover {
    display: block;
  }
  #child-solution #area .area-contents .areaContent-service__link:hover .non-hover {
    display: none;
  }
  #child-solution #area .area-contents .areaContent-service__link:hover {
    color: white;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-01-01 {
    border-color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-01-01:hover {
    background-color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-01-02 {
    border-color: #004A65;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-01-02:hover {
    background-color: #004A65;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-02-01 {
    border-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-02-01:hover {
    background-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-02-02 {
    border-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-02-02:hover {
    background-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-02-03 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-02-03:hover {
    background-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-03-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-03-01:hover {
    background-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-03-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-03-02:hover {
    background-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution01-03-03:hover {
    background-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-01-01 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-01-01:hover {
    background-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-01-02 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-01-02:hover {
    background-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-02-01 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-02-01:hover {
    background-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-02-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-02-02:hover {
    background-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-02-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-02-03:hover {
    background-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-03-01 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-03-01:hover {
    background-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-03-02 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-03-02:hover {
    background-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution02-03-03:hover {
    background-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-01-01 {
    border-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-01-01:hover {
    background-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-01-02 {
    border-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-01-02:hover {
    background-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-01-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-01-03:hover {
    background-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-02-01 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-02-01:hover {
    background-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-02-02 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-02-02:hover {
    background-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-02-03 {
    border-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-02-03:hover {
    background-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-03-01 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-03-01:hover {
    background-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-03-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-03-02:hover {
    background-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-03-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution03-03-03:hover {
    background-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-01-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-01-01:hover {
    background-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-01-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-01-02:hover {
    background-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-01-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-01-03:hover {
    background-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-02-01 {
    border-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-02-01:hover {
    background-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-02-02 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-02-02:hover {
    background-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-03-01 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-03-01:hover {
    background-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-03-02 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-03-02:hover {
    background-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-03-03 {
    border-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution04-03-03:hover {
    background-color: #A11000;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-01-01 {
    border-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-01-01:hover {
    background-color: #FFC400;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-01-02 {
    border-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-01-02:hover {
    background-color: #F6DF92;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-01-03 {
    border-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-01-03:hover {
    background-color: #64D3FC;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-02-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-02-01:hover {
    background-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-02-02 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-02-02:hover {
    background-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-03-01 {
    border-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-03-01:hover {
    background-color: #FF6060;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-03-02 {
    border-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-03-02:hover {
    background-color: #F69374;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-03-03 {
    border-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution05-03-03:hover {
    background-color: #466BB4;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-01-01 {
    border-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-01-01:hover {
    background-color: #A6EEBE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-01-02 {
    border-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-01-02:hover {
    background-color: #016723;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-01-03 {
    border-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-01-03:hover {
    background-color: #96C5DE;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-02-01 {
    border-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-02-01:hover {
    background-color: #689260;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-02-02 {
    border-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-02-02:hover {
    background-color: #31D86A;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-02-03 {
    border-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-02-03:hover {
    background-color: #FFB17D;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-03-01 {
    border-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-03-01:hover {
    background-color: #B48527;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-03-02 {
    border-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link.solution06-03-02:hover {
    background-color: #F584BD;
  }
  #child-solution #area .area-contents .areaContent-service__link img {
    width: 16px;
    flex-shrink: 0;
  }
  #child-solution #area .area-contents .areaContent-flow {
    margin-top: 43px;
    padding-left: 20px;
  }
  #child-solution #area .area-contents .areaContent-flow__list {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
  }
  #child-solution #area .area-contents .areaContent-flow__item {
    display: flex;
    gap: 17px;
    overflow: hidden;
    flex: 1;
  }
  #child-solution #area .area-contents .areaContent-flow__number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #9B080A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-family: "Fira Sans";
    position: relative;
  }
  #child-solution #area .area-contents .areaContent-flow__number:after {
    content: "";
    height: 300px;
    width: 3px;
    background-color: #9B080A;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
  }
  #child-solution #area .area-contents .areaContent-flow__number.last::after {
    display: none;
  }
  #child-solution #area .area-contents .areaContent-flow__sub {
    margin-top: 10px;
    display: inline-block;
    font-size: 14px;
    color: #9B080A;
    position: relative;
  }
  #child-solution #area .area-contents .areaContent-flow__desc {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-ctas {
    margin-top: 38px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  #child-solution #area .area-contents .areaContent-cta {
    border-radius: 4px;
    background-color: white;
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
  #child-solution #area .area-contents .areaContent-cta__ttl {
    font-size: 16px;
    font-weight: bold;
  }
  #child-solution #area .area-contents .areaContent-cta__desc {
    margin-top: 15px;
    font-size: 18px;
  }
  #child-solution #area .area-contents .areaContent-cta__link {
    margin: 17px auto 0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    font-size: 18px;
  }
  #child-solution #area .area-contents .areaContent-cta__link.item01 {
    border: 1px solid #9B080A;
    color: #9B080A;
  }
  #child-solution #area .area-contents .areaContent-cta__link.item01:hover {
    background-color: #9B080A;
    color: white;
  }
  #child-solution #area .area-contents .areaContent-cta__link.item02 {
    background-color: #9B080A;
    color: white;
  }
  #child-solution #area .area-contents .areaContent-cta__link.item02:hover {
    background-color: white;
    color: #9B080A;
    border: 1px solid #9B080A;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  #child-solution #area .section-ttl {
    font-size: 30px;
    font-weight: bold;
    position: relative;
  }
  #child-solution #area .section-ttl span {
    display: block;
    line-height: 1;
    font-size: 13px;
  }
  #child-solution #area .section-ttl::before {
    content: "";
    display: block;
    width: 25px;
    height: 7px;
    background-color: #9B080A;
    position: absolute;
    top: 21px;
    left: -32px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #child-solution #area .section-ttl {
    font-size: 24px;
    font-weight: bold;
    position: relative;
  }
  #child-solution #area .section-ttl span {
    display: block;
    line-height: 1;
    font-size: 12px;
  }
  #child-solution #area .section-ttl::before {
    content: "";
    display: block;
    width: 25px;
    height: 7px;
    background-color: #9B080A;
    position: absolute;
    top: 15px;
    left: -32px;
  }
}
@media screen and (min-width: 769px) {
  #child-solution #strength {
    margin-top: 204px;
  }
  #child-solution #strength .strength-list {
    margin-top: 39px;
    display: flex;
    gap: 17px 46px;
    flex-wrap: wrap;
  }
  #child-solution #strength .strength-list__item {
    border-radius: 8px;
    padding: 28px 33px;
    padding-right: 52px;
    background-color: #F5F5F5;
    width: calc((100% - 46px) / 2);
  }
  #child-solution #strength .strength-list__item.white {
    display: flex;
    gap: 30px;
    background-color: white;
    border: 1px solid #E5E5E5;
    align-items: center;
  }
  #child-solution #strength .strength-list__item.white .strength-list__desc {
    margin-top: 10px;
  }
  #child-solution #strength .strength-list__archive {
    font-size: 19px;
    color: #9B080A;
    font-weight: bold;
    white-space: nowrap;
  }
  #child-solution #strength .strength-list__company {
    margin-top: 5px;
    line-height: 1;
    font-size: 24px;
    font-weight: bold;
    color: #9B080A;
    white-space: nowrap;
  }
  #child-solution #strength .strength-list__company span {
    font-size: 64px;
  }
  #child-solution #strength .strength-list__since {
    font-size: 20px;
    font-weight: 600;
    font-family: "Fira Sans";
    color: #9B080A;
  }
  #child-solution #strength .strength-list__year {
    font-size: 60px;
    font-weight: 600;
    font-family: "Fira Sans";
    color: #9B080A;
    line-height: 1;
  }
  #child-solution #strength .strength-list__desc {
    font-size: 16px;
  }
  #child-solution #strength .strength-list__ttl {
    margin-right: -52px;
    font-size: 20px;
    color: #9B080A;
    font-weight: bold;
  }
}
@media screen and (max-width: 768px) {
  #child-solution #strength {
    margin-top: 44px;
  }
  #child-solution #strength .strength-list {
    margin-top: 19px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #child-solution #strength .strength-list__item {
    border-radius: 8px;
    padding: 20px;
    background-color: #F5F5F5;
  }
  #child-solution #strength .strength-list__item.white {
    display: flex;
    gap: 20px;
    background-color: white;
    border: 1px solid #E5E5E5;
    align-items: center;
  }
  #child-solution #strength .strength-list__item.white .strength-list__desc {
    margin-top: 10px;
  }
  #child-solution #strength .strength-list__archive {
    font-size: 16px;
    color: #9B080A;
    font-weight: bold;
    white-space: nowrap;
  }
  #child-solution #strength .strength-list__company {
    margin-top: 5px;
    line-height: 1;
    font-size: 20px;
    font-weight: bold;
    color: #9B080A;
    white-space: nowrap;
  }
  #child-solution #strength .strength-list__company span {
    font-size: 40px;
  }
  #child-solution #strength .strength-list__since {
    font-size: 16px;
    font-weight: 600;
    font-family: "Fira Sans";
    color: #9B080A;
  }
  #child-solution #strength .strength-list__year {
    font-size: 40px;
    font-weight: 600;
    font-family: "Fira Sans";
    color: #9B080A;
    line-height: 1;
  }
  #child-solution #strength .strength-list__desc {
    font-size: 14px;
  }
  #child-solution #strength .strength-list__ttl {
    font-size: 16px;
    color: #9B080A;
    font-weight: bold;
  }
}
@media screen and (min-width: 769px) {
  #child-solution #other {
    margin-top: 152px;
    padding-bottom: 50px;
  }
  #child-solution #other .other-slider {
    width: 100%;
    margin-top: 45px;
  }
  #child-solution #other .other-slider .slick-track {
    display: flex;
  }
  #child-solution #other .other-slider .slick-track::before, #child-solution #other .other-slider .slick-track::after {
    content: none;
  }
  #child-solution #other .other-slider .slick-slide {
    height: auto;
    display: flex;
    opacity: 0.3;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  #child-solution #other .other-slider .slick-active {
    opacity: 1;
  }
  #child-solution #other .other-slider .slick-active + .slick-slide:not(.slick-active) {
    transform: translateX(97px);
  }
  #child-solution #other .other-slider .slick-slide:not(.slick-active):has(+ .slick-active) {
    transform: translateX(-97px);
  }
  #child-solution #other .other-slider .slick-arrow {
    width: 60px;
    height: 60px;
    z-index: 10;
    background-color: white;
    border-radius: 50%;
  }
  #child-solution #other .other-slider .slick-arrow:before {
    content: "";
    display: block;
    position: absolute;
    width: 23px;
    height: 37px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  #child-solution #other .other-slider .slick-arrow.slick-prev {
    left: calc(50% - 675px);
    right: auto;
    transform: translate(-50%, -50%);
  }
  #child-solution #other .other-slider .slick-arrow.slick-prev::before {
    background-image: url(../img/front/slick-prev.svg);
  }
  #child-solution #other .other-slider .slick-arrow.slick-next {
    right: calc(50% - 675px);
    left: auto;
    transform: translate(50%, -50%);
  }
  #child-solution #other .other-slider .slick-arrow.slick-next::before {
    background-image: url(../img/front/slick-next.svg);
  }
}
@media screen and (min-width: 769px) and (max-width: 1439px) {
  #child-solution #other .other-slider .slick-arrow {
    bottom: -80px;
    top: auto;
  }
  #child-solution #other .other-slider .slick-arrow.slick-prev {
    left: auto;
    right: 100px;
    transform: translate(0, 0);
  }
  #child-solution #other .other-slider .slick-arrow.slick-next {
    right: 50px;
    left: auto;
    transform: translate(0, 0);
  }
}
@media screen and (min-width: 769px) {
  #child-solution #other .other-slider__item {
    padding: 0 19px;
    padding-bottom: 5px;
  }
  #child-solution #other .other-slider__link {
    width: 375px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 43px 26px 21px;
    padding-right: 15px;
    border-radius: 8px;
  }
  #child-solution #other .other-slider__link img {
    width: 16px;
    margin-top: auto;
    margin-left: auto;
    margin-right: 0;
  }
  #child-solution #other .other-slider__ttl {
    font-size: 20px;
    font-weight: bold;
  }
  #child-solution #other .other-slider__desc {
    margin-top: 21px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #child-solution #other {
    margin-top: 60px;
    padding-bottom: 60px;
  }
  #child-solution #other .other-slider {
    width: 100%;
    margin-top: 25px;
  }
  #child-solution #other .other-slider .slick-track {
    display: flex;
  }
  #child-solution #other .other-slider .slick-track::before, #child-solution #other .other-slider .slick-track::after {
    content: none;
  }
  #child-solution #other .other-slider .slick-slide {
    height: auto;
    display: flex;
  }
  #child-solution #other .other-slider__item {
    padding: 0 10px;
    padding-bottom: 5px;
  }
  #child-solution #other .other-slider__link {
    width: 250px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 4px;
  }
  #child-solution #other .other-slider__link img {
    width: 16px;
    margin-top: auto;
    margin-left: auto;
    margin-right: 0;
  }
  #child-solution #other .other-slider__ttl {
    font-size: 16px;
    font-weight: bold;
  }
  #child-solution #other .other-slider__desc {
    margin-top: 16px;
    font-size: 14px;
  }
  #child-solution #other .other-slider .slick-arrow {
    width: 40px;
    height: 40px;
    z-index: 10;
    background-color: white;
    border-radius: 50%;
  }
  #child-solution #other .other-slider .slick-arrow:before {
    content: "";
    display: block;
    position: absolute;
    width: 23px;
    height: 37px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  #child-solution #other .other-slider .slick-arrow {
    bottom: -50px;
    top: auto;
  }
  #child-solution #other .other-slider .slick-arrow.slick-prev {
    left: auto;
    right: 50px;
    transform: translate(0, 0);
  }
  #child-solution #other .other-slider .slick-arrow.slick-prev::before {
    background-image: url(../img/front/slick-prev.svg);
  }
  #child-solution #other .other-slider .slick-arrow.slick-next {
    right: 10px;
    left: auto;
    transform: translate(0, 0);
  }
  #child-solution #other .other-slider .slick-arrow.slick-next::before {
    background-image: url(../img/front/slick-next.svg);
  }
}
#child-solution #section-faq .faqList__answer {
  margin-right: 10px !important;
}
#child-solution #other .other-slider__link {
  position: relative;
}
#child-solution #other .other-slider__link::before, #child-solution #other .other-slider__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  z-index: 2;
  pointer-events: none;
}
#child-solution #other .other-slider__link::before {
  top: 0;
  left: 0;
  border-top: 1px solid #9B080A;
  border-right: 1px solid #9B080A;
}
#child-solution #other .other-slider__link::after {
  right: 0;
  bottom: 0;
  border-bottom: 1px solid #9B080A;
  border-left: 1px solid #9B080A;
}
#child-solution #other .other-slider__link:hover {
  box-shadow: none;
  border-radius: 0;
}
#child-solution #other .other-slider__link:hover::before {
  animation: frontProblemBorder 0.4s linear forwards;
}
#child-solution #other .other-slider__link:hover::after {
  animation: frontProblemBorder 0.4s linear 0.4s forwards;
}

@media screen and (min-width: 769px) {
  #page-search {
    padding-bottom: 88px;
  }
  #page-search .contaienr {
    max-width: 1230px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  #page-search .heading--withLeftLine {
    margin-top: 44px;
  }
  #page-search .p-siteSearch__list {
    margin-top: 79px;
  }
  #page-search .p-siteSearch__item {
    margin-bottom: 38px;
  }
  #page-search .p-siteSearch__itemLink {
    padding-bottom: 38px;
    border-bottom: 1px solid #9B080A;
    display: block;
  }
  #page-search .p-siteSearch__itemTitle {
    font-size: 20px;
    font-weight: bold;
  }
  #page-search .p-siteSearch__itemExcerpt {
    margin-top: 30px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #page-search {
    padding-bottom: 40px;
  }
  #page-search .contaienr {
    max-width: 1230px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  #page-search .heading--withLeftLine {
    margin-top: 22px;
  }
  #page-search .p-siteSearch__list {
    margin-top: 40px;
  }
  #page-search .p-siteSearch__item {
    margin-bottom: 20px;
  }
  #page-search .p-siteSearch__itemLink {
    padding-bottom: 20px;
    border-bottom: 1px solid #9B080A;
    display: block;
  }
  #page-search .p-siteSearch__itemTitle {
    font-size: 16px;
    font-weight: bold;
  }
  #page-search .p-siteSearch__itemExcerpt {
    margin-top: 10px;
    font-size: 14px;
  }
}
#page-search .c-pager {
  width: 100%;
}
@media screen and (min-width: 769px) {
  #page-search .c-pager {
    margin-top: 64px;
  }
}
@media screen and (max-width: 768px) {
  #page-search .c-pager {
    margin-top: 40px;
  }
}
#page-search .c-pager .c-pager__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  #page-search .c-pager .c-pager__list {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  #page-search .c-pager .c-pager__list {
    gap: 6px;
  }
}
#page-search .c-pager .c-pager__item {
  display: flex;
}
#page-search .c-pager .c-pager__link,
#page-search .c-pager span.page-numbers {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  line-height: 1;
  color: #161616;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  #page-search .c-pager .c-pager__link,
  #page-search .c-pager span.page-numbers {
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #page-search .c-pager .c-pager__link,
  #page-search .c-pager span.page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
  }
}
#page-search .c-pager a.c-pager__link {
  cursor: pointer;
}
#page-search .c-pager .c-pager__link.prev,
#page-search .c-pager .c-pager__link.next {
  border: 1px solid #9B080A;
}
#page-search .c-pager .c-pager__link.prev::before,
#page-search .c-pager .c-pager__link.next::before {
  content: "";
  width: 8px;
  height: 12px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#page-search .c-pager .c-pager__link.prev::before {
  background-image: url(../img/ico_arrow02.svg);
}
#page-search .c-pager .c-pager__link.next::before {
  background-image: url(../img/ico_arrow01.svg);
}
#page-search .c-pager span.page-numbers.current {
  font-weight: bold;
}
#page-search .c-pager span.page-numbers.dots {
  color: #C9A9A9;
  background-color: transparent;
  border-color: transparent;
  padding: 0;
}
@media screen and (min-width: 769px) {
  #page-search .c-pager span.page-numbers.dots {
    min-width: 24px;
  }
}
@media screen and (max-width: 768px) {
  #page-search .c-pager span.page-numbers.dots {
    min-width: 18px;
  }
}

@media screen and (min-width: 769px) {
  #en #hero .hero-ttl {
    font-family: "Fira Sans";
    font-size: min(80px, 5vw);
    font-weight: 900;
    width: auto;
  }
  #en #hero .hero-lead {
    margin-top: 41px;
    font-size: 29px;
    font-weight: bold;
  }
}
@media screen and (max-width: 768px) {
  #en #hero .hero-ttl {
    font-family: "Fira Sans";
    font-size: 30px;
    font-weight: 900;
    width: auto;
  }
  #en #hero .hero-lead {
    margin-top: 21px;
    font-size: 16px;
    font-weight: bold;
  }
}
@media screen and (min-width: 769px) {
  #en .pageTitle__text span {
    font-size: 30px;
  }
  #en .pageTitle__text::before {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  #en .pageTitle__text span {
    font-size: 20px;
  }
  #en .pageTitle__text::before {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 769px) {
  #en #service .service-tab {
    margin-top: 35px;
    display: flex;
    gap: 8px;
  }
  #en #service .service-tab__item {
    background-color: #D8E3EC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #E5E5E5;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    flex: 1;
    height: 60px;
    cursor: pointer;
  }
  #en #service .service-tab__item.active {
    background-color: white;
    position: relative;
  }
  #en #service .service-tab__item.active::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: white;
    bottom: -1px;
    left: 0;
    position: absolute;
  }
  #en #service .serviceContent {
    display: none;
  }
  #en #service .serviceContent.active {
    display: block;
  }
  #en #service .serviceContent {
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    padding: 60px;
    padding-top: 27px;
  }
  #en #service .serviceContent-heading {
    display: flex;
    justify-content: space-between;
    gap: 1%;
    align-items: center;
  }
  #en #service .serviceContent-heading img {
    width: 248px;
    flex-shrink: 0;
  }
  #en #service .serviceContent-ttl {
    font-size: 30px;
    font-weight: bold;
    position: relative;
  }
  #en #service .serviceContent-ttl::before {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -19px;
  }
  #en #service .serviceContent-ttl.service01::before {
    background-color: #EF7669;
  }
  #en #service .serviceContent-ttl.service02::before {
    background-color: #1B9ECF;
  }
  #en #service .serviceContent-ttl.service03::before {
    background-color: #35A25A;
  }
  #en #service .serviceContent-ttl.service04::before {
    background-color: #DEAE10;
  }
  #en #service .serviceContent-ttl span {
    display: block;
    margin-top: 27px;
    font-size: 16px;
    font-weight: bold;
  }
  #en #service .serviceContent-list {
    margin-top: -10px;
    border: 1px solid;
    border-bottom: none;
  }
  #en #service .serviceContent-list.service01 {
    border-color: #EF7669;
  }
  #en #service .serviceContent-list.service02 {
    border-color: #1B9ECF;
  }
  #en #service .serviceContent-list.service03 {
    border-color: #35A25A;
  }
  #en #service .serviceContent-list.service04 {
    border-color: #DEAE10;
  }
  #en #service .serviceContent-list__item {
    display: flex;
    padding: 25px;
    gap: 2%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid;
    background-color: white;
    position: relative;
  }
  #en #service .serviceContent-list__item.service01 {
    border-color: #EF7669;
  }
  #en #service .serviceContent-list__item.service02 {
    border-color: #1B9ECF;
  }
  #en #service .serviceContent-list__item.service03 {
    border-color: #35A25A;
  }
  #en #service .serviceContent-list__item.service04 {
    border-color: #DEAE10;
  }
  #en #service .serviceContent-list__left {
    font-size: 18px;
    font-weight: 500;
  }
  #en #service .serviceContent-list__right {
    font-size: 18px;
    max-width: 729px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #en #service .service-tab {
    margin-top: 25px;
    display: flex;
    gap: 4px;
  }
  #en #service .service-tab__item {
    background-color: #D8E3EC;
    display: flex;
    align-items: center;
    padding-left: 10px;
    justify-content: flex-start;
    font-size: 10px;
    font-weight: bold;
    border: 1px solid #E5E5E5;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    flex: 1;
    height: 70px;
    cursor: pointer;
  }
  #en #service .service-tab__item.active {
    background-color: white;
    position: relative;
  }
  #en #service .service-tab__item.active::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: white;
    bottom: -1px;
    left: 0;
    position: absolute;
  }
  #en #service .serviceContent {
    display: none;
  }
  #en #service .serviceContent.active {
    display: block;
  }
  #en #service .serviceContent {
    border-radius: 4px;
    border: 1px solid #E5E5E5;
    padding: 15px;
  }
  #en #service .serviceContent-heading {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  #en #service .serviceContent-heading img {
    width: 248px;
    flex-shrink: 0;
  }
  #en #service .serviceContent-ttl {
    font-size: 20px;
    font-weight: bold;
    position: relative;
  }
  #en #service .serviceContent-ttl::before {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -19px;
  }
  #en #service .serviceContent-ttl.service01::before {
    background-color: #EF7669;
  }
  #en #service .serviceContent-ttl.service02::before {
    background-color: #1B9ECF;
  }
  #en #service .serviceContent-ttl.service03::before {
    background-color: #35A25A;
  }
  #en #service .serviceContent-ttl.service04::before {
    background-color: #DEAE10;
  }
  #en #service .serviceContent-ttl span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
  }
  #en #service .serviceContent-list {
    margin-top: -10px;
    border: 1px solid;
    border-bottom: none;
  }
  #en #service .serviceContent-list.service01 {
    border-color: #EF7669;
  }
  #en #service .serviceContent-list.service02 {
    border-color: #1B9ECF;
  }
  #en #service .serviceContent-list.service03 {
    border-color: #35A25A;
  }
  #en #service .serviceContent-list.service04 {
    border-color: #DEAE10;
  }
  #en #service .serviceContent-list__item {
    display: flex;
    flex-direction: column;
    padding: 25px;
    gap: 10px;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid;
    background-color: white;
    position: relative;
  }
  #en #service .serviceContent-list__item.service01 {
    border-color: #EF7669;
  }
  #en #service .serviceContent-list__item.service02 {
    border-color: #1B9ECF;
  }
  #en #service .serviceContent-list__item.service03 {
    border-color: #35A25A;
  }
  #en #service .serviceContent-list__item.service04 {
    border-color: #DEAE10;
  }
  #en #service .serviceContent-list__left {
    font-size: 16px;
    font-weight: 500;
  }
  #en #service .serviceContent-list__right {
    font-size: 16px;
    max-width: 729px;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  #en #corporate {
    margin-top: 54px;
    background-color: #F5F5F5;
  }
  #en #corporate .corporate-wrapper {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
  }
  #en #corporate .corporate-img {
    position: absolute;
    width: 40%;
    height: 100%;
    right: 0;
    top: 0;
  }
  #en #corporate .corporate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #en #corporate .corporate-container {
    padding-bottom: 86px;
  }
  #en #corporate .corporate-table {
    margin-top: 50px;
    width: 58%;
  }
  #en #corporate .corporate-table__row {
    display: flex;
    gap: 22px;
    align-items: stretch;
    margin-bottom: 20px;
  }
  #en #corporate .corporate-table__row:last-child {
    margin-bottom: 0;
  }
  #en #corporate .corporate-table__th {
    background-color: white;
    flex-shrink: 0;
    width: 176px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 12px 0;
  }
  #en #corporate .corporate-table__td {
    font-size: 16px;
    padding: 12px 0;
  }
  #en #corporate .corporate-office {
    margin-top: 84px;
    width: 58%;
  }
  #en #corporate .corporate-office__ttl {
    font-size: 24px;
    font-weight: bold;
  }
  #en #corporate .corporate-office__desc {
    margin-top: 22px;
    font-size: 16px;
  }
  #en #corporate .corporate-office__desc a {
    display: inline-block;
  }
  #en #corporate .corporate-office__list {
    margin-top: 21px;
  }
  #en #corporate .corporate-office__item {
    font-size: 16px;
    display: flex;
    gap: 11px;
    margin-bottom: 21px;
  }
  #en #corporate .corporate-office__item::before {
    content: "";
    flex-shrink: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #9B080A;
    transform: translateY(7px);
  }
  #en #corporate .corporate-office__item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #en #corporate {
    margin-top: 34px;
    background-color: #F5F5F5;
  }
  #en #corporate .corporate-wrapper {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
  }
  #en #corporate .corporate-img {
    margin: 0 auto;
    max-width: 400px;
  }
  #en #corporate .corporate-img img {
    width: 100%;
  }
  #en #corporate .corporate-container {
    padding-bottom: 46px;
  }
  #en #corporate .corporate-table {
    margin-top: 25px;
  }
  #en #corporate .corporate-table__row {
    display: flex;
    gap: 22px;
    align-items: stretch;
    margin-bottom: 20px;
  }
  #en #corporate .corporate-table__row:last-child {
    margin-bottom: 0;
  }
  #en #corporate .corporate-table__th {
    background-color: white;
    flex-shrink: 0;
    width: 176px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 12px 0;
  }
  #en #corporate .corporate-table__td {
    font-size: 16px;
    padding: 12px 0;
  }
  #en #corporate .corporate-office {
    margin-top: 44px;
  }
  #en #corporate .corporate-office__ttl {
    font-size: 24px;
    font-weight: bold;
  }
  #en #corporate .corporate-office__desc {
    margin-top: 22px;
    font-size: 16px;
  }
  #en #corporate .corporate-office__desc a {
    display: inline-block;
  }
  #en #corporate .corporate-office__list {
    margin-top: 21px;
  }
  #en #corporate .corporate-office__item {
    font-size: 16px;
    display: flex;
    gap: 11px;
    margin-bottom: 21px;
  }
  #en #corporate .corporate-office__item::before {
    flex-shrink: 0;
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #9B080A;
    transform: translateY(7px);
  }
  #en #corporate .corporate-office__item:last-child {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 769px) {
  .footer-inquiry.en {
    margin-top: 44px;
  }
  .footer-inquiry.en .footer-inquiry__textWrap {
    width: 332px;
  }
  .footer-inquiry.en .footer-inquiry__heading {
    font-size: 30px;
  }
  .footer-inquiry.en .footer-inquiry__heading span {
    font-size: 16px;
    font-weight: 400;
    padding-left: 13px;
  }
  .footer-inquiry.en .footer-inquiry__tel {
    width: 380px;
  }
  .footer-inquiry.en .footer-inquiry__telNumber {
    font-size: 44px;
  }
  .footer-inquiry.en .footer-inquiry__linkButton {
    flex-shrink: 0;
    width: 367px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    gap: 20px;
  }
  .footer-inquiry.en .footer-inquiry__linkButton img {
    flex-shrink: 0;
    width: 27px;
  }
  .footer-inquiry.en .footer-inquiry__linkButtonIcon {
    flex: none;
  }
}
@media screen and (max-width: 768px) {
  .footer-inquiry.en {
    margin-top: 24px;
  }
  .footer-inquiry.en .footer-inquiry__textWrap {
    width: 100%;
  }
  .footer-inquiry.en .footer-inquiry__heading {
    font-size: 20px;
  }
  .footer-inquiry.en .footer-inquiry__heading span {
    font-size: 14px;
    font-weight: 400;
    padding-left: 13px;
  }
  .footer-inquiry.en .footer-inquiry__tel {
    width: 100%;
  }
  .footer-inquiry.en .footer-inquiry__telNumber {
    font-size: 30px;
  }
  .footer-inquiry.en .footer-inquiry__linkButton {
    flex-shrink: 0;
    width: 100%;
    max-width: 367px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    gap: 10px;
  }
  .footer-inquiry.en .footer-inquiry__linkButton img {
    width: 20px;
  }
  .footer-inquiry.en .footer-inquiry__linkButtonIcon {
    flex: none;
  }
}

/*# sourceMappingURL=style.css.map */
