html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (max-width: 959px) {
  html {
    scroll-padding-top: 44px;
  }
}

.mp-header {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  width: 100vw;
  background-color: #FFFFFF;
  z-index: 100;
}
.mp-header.follow {
  position: relative;
}
.mp-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 14px 24px;
  max-width: 960px;
}
@media screen and (max-width: 959px) {
  .mp-header-container {
    padding: 6px 8px;
  }
}
.mp-header__logo {
  width: 225px;
}
@media screen and (max-width: 959px) {
  .mp-header__logo {
    width: 155px;
  }
}
@media screen and (max-width: 959px) {
  .mp-header__nav {
    display: none;
  }
}
.mp-header__nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mp-header__nav-item {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.mp-header__nav-item.btn-list {
  display: flex;
  gap: 16px;
}
.mp-header__nav-item.btn-list > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 32px;
  padding: 0 8px;
}
.mp-header__nav-link {
  color: #333333;
}
.mp-header__nav-link:visited {
  color: #333333;
}
.mp-header__nav-link:hover {
  text-decoration: underline;
}
.mp-header__menu {
  display: none;
  width: 32px;
  height: 32px;
  background-image: url("../images/icon/sp_menu.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .mp-header__menu {
    display: block;
  }
}
.mp-header__menu.is-active {
  background-image: url("../images/icon/sp_menu_close.webp");
}
.mp-header__sp-menu {
  display: none;
  position: fixed;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 959px) {
  .mp-header__sp-menu {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  .mp-header__sp-menu.is-active {
    opacity: 1;
    pointer-events: auto;
  }
}
.mp-header__sp-menu-list {
  background-color: #FFFFFF;
  padding: 32px 16px 24px;
  margin-top: 44px;
  transition: transform 0.3s 1s ease;
}
.mp-header__sp-menu-item {
  color: #FFFFFF;
  border-top: 1px solid #DEDCD7;
  border-bottom: 1px solid #DEDCD7;
}
.mp-header__sp-menu-item:last-child {
  border-top: none;
}
.mp-header__sp-menu-item > a {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mp-header__sp-menu-item > a > span {
  color: #333333;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.mp-header__sp-menu-item > a > img {
  width: 16px;
}
.mp-header__sp-menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 0 8px;
  height: 56px;
  font-size: 20px;
  font-weight: 600;
}
.mp-header__sp-menu-btn:not(:first-child) {
  margin-top: 16px;
}
.mp-header__sp-menu-btn-list {
  margin-top: 24px;
}

.btn-primary {
  background: linear-gradient(180deg, #FF551A 0%, #FF551A 77.51%, #F34A10 100%);
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  width: 100%;
  text-align: center;
}
.btn-primary:hover {
  color: #FFFFFF;
  text-decoration: none;
  background: linear-gradient(180deg, #E54B17 0%, #E54B17 77.51%, #D2400F 100%);
  opacity: 1;
}
.btn-primary:visited {
  color: #FFFFFF;
}
.btn-primary:link {
  color: #FFFFFF;
}
.btn-border {
  background: #FFFFFF;
  border: 1px solid #FF6010;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  color: #FF6010 !important;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  width: 100%;
  text-align: center;
}
.btn-border:hover {
  color: #FF6010;
  text-decoration: none;
  background: linear-gradient(180deg, #F9F8F6 0%, #F9F8F6 77.51%, #EEE 100%);
  opacity: 1;
}
.btn-border:link {
  color: #FF6010;
}
.btn-return {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 44px;
  padding: 0 16px;
  border: #DEDCD7;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFF 0%, #FFF 77.51%, #F6F6F6 100%);
  color: #666666;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.btn-return:hover {
  background: linear-gradient(180deg, #F9F8F6 0%, #F9F8F6 77.51%, #EEE 100%);
  text-decoration: none;
  opacity: 1;
}
.btn-return:visited {
  color: #666666;
}
.btn-return:link {
  color: #666666;
}

.case {
  background-color: #F7F5ED;
  padding-top: 65.2px;
}
@media screen and (max-width: 959px) {
  .case {
    padding-top: 44px;
  }
}
.case__container {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .case__container {
    max-width: 446px;
  }
}
.case__container {
  padding: 48px 0;
}
@media screen and (max-width: 959px) {
  .case__container {
    padding: 48px 16px;
  }
}
.case__container-title {
  color: #FF6010;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .case__container-title {
    font-size: 26px;
    line-height: 160%;
  }
}
.case__container-desc {
  margin-top: 16px;
  color: #333333;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .case__container-desc {
    font-size: 14px;
    text-align: start;
  }
}
.case__container-card-box {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  row-gap: 16px;
  column-gap: 19.5px;
}
@media screen and (max-width: 959px) {
  .case__container-card-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
}

.case-article {
  background-color: #FFFFFF;
  padding-top: 65.2px;
}
@media screen and (max-width: 959px) {
  .case-article {
    padding-top: 44px;
  }
}
.case-article__header {
  background-color: #F7F5ED;
}
.case-article__header-container {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .case-article__header-container {
    max-width: 446px;
  }
}
.case-article__header-container {
  padding: 48px 0;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 959px) {
  .case-article__header-container {
    padding: 32px 16px;
  }
}
.case-article__header-content {
  display: grid;
  grid-template-areas: "title img" "info img";
  grid-template-columns: auto 462px;
  row-gap: 24px;
  column-gap: 32px;
}
@media screen and (max-width: 959px) {
  .case-article__header-content {
    grid-template-areas: "title" "img" "info";
    row-gap: 24px;
    grid-template-columns: auto;
    column-gap: 0;
  }
}
.case-article__header-content .title-grid {
  grid-area: title;
}
.case-article__header-content .img-grid {
  grid-area: img;
}
.case-article__header-content .info-grid {
  grid-area: info;
}
.case-article__header-title {
  color: #333333;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
@media screen and (max-width: 959px) {
  .case-article__header-title {
    font-size: 20px;
  }
}
.case-article__header-img {
  width: 100%;
  border-radius: 12px;
}
@media screen and (max-width: 959px) {
  .case-article__header-img {
    border-radius: 8px;
  }
}
.case-article__header-border {
  width: 100%;
  height: 4px;
  background-image: radial-gradient(circle farthest-side, #FF6010, #FF6010 30%, transparent 30%, transparent);
  background-size: 8px 4px;
  background-repeat: repeat-x;
  background-position: top left;
  margin-bottom: 24px;
}
.case-article__header-company {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  color: #003A6B;
  position: relative;
  text-decoration: underline;
}
.case-article__header-company::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icon/external_link.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.case-article__header-company-address {
  margin-top: 2px;
  color: #333333;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
@media screen and (max-width: 959px) {
  .case-article__header-company-address {
    line-height: 130%;
  }
}
.case-article__header-issue {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}
.case-article__header-issue-title {
  color: #333333;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
.case-article__header-issue-text {
  flex: 1;
  color: #333333;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
.case-article__body {
  background-color: #FFFFFF;
}
.case-article__body-container {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .case-article__body-container {
    max-width: 446px;
  }
}
.case-article__body-container {
  padding: 80px 0;
}
@media screen and (max-width: 959px) {
  .case-article__body-container {
    padding: 64px 16px;
  }
}
.case-article__more {
  background-color: #F7F5ED;
}
.case-article__more-container {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .case-article__more-container {
    max-width: 446px;
  }
}
.case-article__more-container {
  padding: 48px 0;
}
@media screen and (max-width: 959px) {
  .case-article__more-container {
    padding: 48px 16px;
  }
}
.case-article__more-title {
  color: #333333;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 40px;
}
@media screen and (max-width: 959px) {
  .case-article__more-title {
    font-size: 26px;
    line-height: 160%;
    margin-bottom: 24px;
  }
}
.case-article__more-card-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  row-gap: 16px;
  column-gap: 19.5px;
}
@media screen and (max-width: 959px) {
  .case-article__more-card-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
}
.case-article__more-btn {
  margin: 40px auto 0;
  display: block;
  max-width: 280px;
  height: 44px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
}
@media screen and (max-width: 959px) {
  .case-article__more-btn {
    margin: 24px auto 0;
    font-size: 20px;
    height: 56px;
    line-height: 56px;
  }
}

.case-card {
  width: calc((100% - 39px) / 3);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 959px) {
  .case-card {
    width: 100%;
  }
}
.case-card:hover {
  opacity: 1;
  text-decoration: none;
}
.case-card:hover .case-card-img {
  transform: scale(1.2);
}
.case-card:hover .case-card-body {
  background-color: #FFD4B5;
}
.case-card:hover .case-card-title {
  background-size: 100% 1px;
}
.case-card-thumb {
  width: 100%;
  aspect-ratio: 307/200;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
@media screen and (max-width: 959px) {
  .case-card-thumb {
    aspect-ratio: 343/225;
  }
}
.case-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in-out;
}
.case-card-body {
  padding: 16px;
  background-color: #FFFFFF;
  border-radius: 0 0 8px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  transition: background-color 0.3s ease;
}
.case-card-body-lower {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}
.case-card-title {
  color: #003A6B;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  display: inline;
  background: linear-gradient(90deg, #003A6B 100%, #003A6B 0);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 0.3s ease;
}
.case-card-tag {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  color: #FFFFFF;
  background-color: #FF9500;
  padding: 0 4px;
  border-radius: 4px;
}
.case-card-tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
@media screen and (max-width: 959px) {
  .case-card-tag-list.detail {
    margin-bottom: 8px;
  }
}
.case-card-company {
  color: #333333;
  flex: 1;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
}
.case-card-caret {
  width: 32px;
  height: 32px;
  background-color: #FF6010;
  border-radius: 50%;
}
.case-card-caret > img {
  width: 16px;
  height: 16px;
  margin: 8px;
}
.body-content {
  display: inline-block;
}
.body-content:not(:first-child) {
  margin-top: 80px;
}
@media screen and (max-width: 959px) {
  .body-content:not(:first-child) {
    margin-top: 64px;
  }
}
.body-content h2 {
  color: #FF6010;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 8px solid #FF9500;
}
@media screen and (max-width: 959px) {
  .body-content h2 {
    padding-left: 12px;
  }
}
.body-content p {
  color: #333333;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
.body-content > figure {
  width: 462px;
}
@media screen and (max-width: 959px) {
  .body-content > figure {
    width: 100%;
  }
}
.body-content > figure > img {
  max-width: 100%;
  height: auto;
}
.body-content > figure > figcaption {
  color: #666666;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}

.img-float-right > figure {
  float: right;
  margin-left: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 959px) {
  .img-float-right > figure {
    float: none;
    margin-left: 0;
    margin-top: 24px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 959px) {
  .img-float-right {
    display: flex;
    flex-direction: column-reverse;
  }
}
.img-float-left > figure {
  float: left;
  margin-right: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 959px) {
  .img-float-left > figure {
    float: none;
    margin-right: 0;
    margin-top: 24px;
    margin-bottom: 0;
  }
}
.img-float-left h2 {
  margin-left: 494px;
}
@media screen and (max-width: 959px) {
  .img-float-left h2 {
    margin-left: 0;
  }
}
@media screen and (max-width: 959px) {
  .img-float-left {
    display: flex;
    flex-direction: column-reverse;
  }
}

.img-flex {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 959px) {
  .img-flex {
    gap: 24px;
    flex-direction: column-reverse;
  }
}
.img-flex .text-content {
  flex: 1;
}
.img-flex-reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
}
@media screen and (max-width: 959px) {
  .img-flex-reverse {
    gap: 24px;
    flex-direction: column-reverse;
  }
}
.img-flex-reverse .text-content {
  flex: 1;
}

@media screen and (max-width: 959px) {
  .img-shrink > figure {
    max-width: 69.5652173913%;
    margin: 0 auto;
  }
}

.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 959px) {
  .pagination {
    gap: 12px;
  }
}
.pagination__list {
  display: flex;
  gap: 4px;
}
.pagination__item {
  color: #666666;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 77.51%, #F6F6F6 100%);
  border: 1px solid #DEDCD7;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
@media screen and (max-width: 959px) {
  .pagination__item {
    border-radius: 4px;
  }
}
.pagination__item.first, .pagination__item.last {
  width: 60px;
}
@media screen and (max-width: 959px) {
  .pagination__item.first, .pagination__item.last {
    display: none;
  }
}
.pagination__item.prev {
  width: 80px;
  justify-content: flex-end;
}
@media screen and (max-width: 959px) {
  .pagination__item.prev {
    width: 68px;
    border-radius: 4px 0 0 4px;
  }
}
.pagination__item.next {
  width: 80px;
  justify-content: flex-start;
}
@media screen and (max-width: 959px) {
  .pagination__item.next {
    width: 68px;
    border-radius: 0 4px 4px 0;
  }
}
.pagination__item-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/pagination_caret.svg") no-repeat center;
  background-size: contain;
}
.pagination__item-icon.next {
  transform: rotate(180deg);
}
.pagination__item-text {
  width: 58px;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .pagination__item-text {
    width: 48px;
  }
}
.pagination__item.current {
  color: #CCCCCC;
  pointer-events: none;
}
.pagination__item.disabled {
  color: #CCCCCC;
  pointer-events: none;
}
.pagination__item.disabled .pagination__item-icon {
  background-image: url("../images/icon/pagination_caret_disabled.svg");
}
.pagination__item:hover {
  opacity: 1 !important;
  background: linear-gradient(180deg, #F9F8F6 0%, #F9F8F6 77.51%, #EEE 100%);
}

.footer {
  padding-right: 16px;
  padding-left: 16px;
}
@media screen and (max-width: 959px) {
  .footer {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}
.footer__contents {
  max-width: 980px;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .pc-hide {
    display: none !important;
  }
}

@media screen and (max-width: 959px) {
  .sp-hide {
    display: none !important;
  }
}

.copyright__logo img {
  height: 28px !important;
}
@media screen and (max-width: 959px) {
  .copyright__logo img {
    height: 21px !important;
  }
}

.footer-banner {
  width: 100%;
  background: linear-gradient(to right, #ffc766, #ff9900, #FF6010);
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 959px) {
  .footer-banner {
    padding: 24px 0 0;
    background: linear-gradient(180deg, #f90 0%, #ffc766 77.02%, #fff3d8 99.97%), linear-gradient(207deg, #f90 24.19%, #ffc766 70.54%, #fff3d8 100%);
  }
}
.footer-banner-text {
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
  font-size: 32px;
  color: #FFFFFF;
}
@media screen and (max-width: 959px) {
  .footer-banner-text {
    font-size: 24px;
  }
}
.footer-banner-text-wrap {
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 0 0 8px;
  gap: 16px;
}
@media screen and (max-width: 959px) {
  .footer-banner-text-wrap {
    padding: 24px 0 16px;
  }
}
.footer-banner-img-wrap {
  display: flex;
  flex-direction: row;
  margin: auto;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 959px) {
  .footer-banner-img-wrap {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.footer-banner-img-slogan {
  width: 261px;
  height: 97.2px;
  line-height: 97.2px;
}
.footer-banner-img-device {
  width: 320px;
}
@media screen and (max-width: 959px) {
  .footer-banner-img-device {
    width: 269px;
  }
}
.footer-banner-button-wrap {
  display: flex;
  margin: auto;
  justify-content: center;
  gap: 48px;
  padding-inline: 16px;
}
@media screen and (max-width: 959px) {
  .footer-banner-button-wrap {
    gap: 12px;
    width: 100%;
    padding-bottom: 48px;
  }
}
.footer-banner-btn {
  min-width: 280px;
  height: 72px;
  line-height: 72px;
  padding: 0 12px;
  font-size: 24px;
}
@media screen and (max-width: 959px) {
  .footer-banner-btn {
    flex-grow: 1;
    min-width: 0;
    max-width: 166px;
    height: 56px;
    line-height: 56px;
    font-size: 20px;
  }
}

@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 959px) {
  .sp-none {
    display: none !important;
  }
}
