@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul[role='list'],
ol[role='list'] {
  list-style: none;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6vw;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 20vw;
  }
}
@media screen and (min-width: 769px) {
  html {
    overflow-x: hidden;
  }
}
:root {
  --pc-scale: 1;
}
body {
  color: #000;
  font-family: NotoSansJpRegular;
  font-size: 10px;
  letter-spacing: 0.8px;
  margin: 0;
  overflow-x: hidden;
}
@media screen and (min-width: 769px) {
  body {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  body {
    display: block;
  }
}
.PcFixedLayout {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .PcFixedLayout {
    width: 1920px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1919px) {
  .PcFixedLayout {
    -webkit-transform: scale(var(--pc-scale));
    transform: scale(var(--pc-scale));
    -webkit-transform-origin: top center;
    transform-origin: top center;
  }
  @supports (zoom: 1) {
    .PcFixedLayout {
      -webkit-transform: none;
      transform: none;
      zoom: var(--pc-scale);
    }
  }
}
@media screen and (max-width: 768px) {
  body {
    width: 100%;
  }
}
main {
  overflow-x: hidden;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 50px;
  }
}
a {
  text-decoration: none;
  color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}
.box_shadow {
  box-shadow: 0 3px 6px #00000029;
}
.red_text {
  color: #ff1d40;
}
.yellow_text {
  color: #ffff3e;
}
.under_line {
  position: relative;
  z-index: 1;
}
.under_line:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: #ffff3e;
  z-index: -1;
  opacity: 0.8;
}

.Header {
  position: fixed;
  background-color: #fff;
  width: 100%;
  max-width: 1920px;
  height: 100px;
  z-index: 100000;
}
@media screen and (min-width: 769px) {
  .Header {
    width: 1920px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1919px) {
  .Header {
    -webkit-transform: translateX(-50%) scale(var(--pc-scale));
    transform: translateX(-50%) scale(var(--pc-scale));
    -webkit-transform-origin: top center;
    transform-origin: top center;
  }
  @supports (zoom: 1) {
    .Header {
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      zoom: var(--pc-scale);
    }
  }
}
@media screen and (max-width: 768px) {
  .Header {
    width: 100%;
    height: 50px;
    padding-left: 16px;
  }
}
.Header__inner {
  max-width: 1366px;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.Header__logo--link {
  display: block;
  width: 445px;
}
@media screen and (max-width: 768px) {
  .Header__logo--link {
    width: 198px;
  }
}
.Header__logo--image {
  width: 100%;
}
.Header__right--wrapper {
  display: -webkit-box;
  display: flex;
  height: 100%;
}
.Header__right__btn--link {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 140px;
}
@media screen and (max-width: 768px) {
  .Header__right__btn--link {
    width: 72px;
  }
}
.Header__right__btn--link:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}
.Header__right__btn--link.mail {
  background: #2455b7;
}
.Header__right__btn--link.line {
  background: #49c755;
}
.Header__right__btn--text {
  font-size: 1.2rem;
  font-family: NotoSansJpBold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .Header__right__btn--text {
    font-size: 10px;
  }
}
.Header__right__btn--icon.mail {
  width: 39px;
  margin-top: 12px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .Header__right__btn--icon.mail {
    margin: 4px 0;
    width: 17px;
  }
}
.Header__right__btn--icon.line {
  width: 50px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .Header__right__btn--icon.line {
    width: 21px;
  }
}
.Header__right__tel--link {
  background: #ff9c48;
  width: 399px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .Header__right__tel--link {
    display: none;
  }
}
.Header__right__tel--link:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}
.Header__right__tel--top-text {
  font-size: 16px;
  font-family: NotoSansJpBold;
  color: #ff9c48;
  background: #ffff3e;
  width: 359px;
  text-align: center;
  border-radius: 9999px;
}
.Header__right__tel--under-area {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  color: #fff;
  margin-top: 3px;
}
.Header__right__tel--under-text {
  font-size: 16px;
  line-height: 1.1;
  font-family: NotoSansJpBold;
}
.Header__right__tel--under-icon {
  width: 48px;
  margin: 0 8px;
}
.Header__right__tel--under-number {
  font-size: 40px;
  font-family: LatoBold;
  line-height: 1;
}

.Fv__under__area {
  background: #2455b7;
  width: 100%;
  height: 190px;
  padding: 31px 0 18px;
}
@media screen and (max-width: 768px) {
  .Fv__under__area {
    display: none;
  }
}
.Fv__under__area__inner {
  width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .Fv__under__area__inner {
    width: 100%;
    height: 100%;
    padding: 0;
    -webkit-box-align: center;
    align-items: center;
  }
}
.Fv__under__content {
  width: 519px;
  background: #49c755;
  padding: 5px;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .Fv__under__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    background: transparent;
    padding: 0;
    -webkit-box-align: center;
    align-items: center;
  }
}
.Fv__under__content.tel {
  background: #ff9c48;
  width: 572px;
}
@media screen and (max-width: 768px) {
  .Fv__under__content.tel {
    display: none;
  }
}
.Fv__under__content--title {
  font-family: NotoSansJpBold;
  font-size: 19px;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 5px 0 10px;
}
@media screen and (max-width: 768px) {
  .Fv__under__content--title {
    font-size: 11px;
    padding: 0;
  }
}
.Fv__under__content--title.tel {
  font-size: 24px;
  color: #ffff3e;
  padding-bottom: 5px;
}
.Fv__under__content__image {
  width: 100%;
}
.Fv__under__content__image__icon--area {
  width: 59.3px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 12px;
}
.Fv__under__content__image__area {
  background: #fff;
  padding: 0 13px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  height: 94px;
}
@media screen and (max-width: 768px) {
  .Fv__under__content__image__area {
    width: 210px;
    height: 21px;
    padding: 0;
    margin-left: 8px;
  }
}
.Fv__under__content__image__area.tel {
  padding: 31px 19.2px;
}
.Fv__under__content__tel--number {
  color: #ff9c48;
  font-size: 52px;
  font-family: LatoBold;
}
.Fv__under__content__tel--operator--image {
  width: 253px;
  position: absolute;
  bottom: 0;
  right: -24px;
}

.Compatible__time__area {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.Compatible__time__icon {
  width: 41px;
  margin-right: 13px;
}
@media screen and (max-width: 768px) {
  .Compatible__time__icon {
    width: 24px;
    margin-right: 6px;
  }
}
.Compatible__time__text {
  font-family: NotoSansJpBlack;
  font-size: 30px;
  margin: 13px 0;
}
@media screen and (max-width: 768px) {
  .Compatible__time__text {
    font-size: 14.8px;
  }
}
.Compatible__detail-text__area {
  background: #f7f7f7;
  text-align: center;
  padding: 24px 0;
}
@media screen and (max-width: 768px) {
  .Compatible__detail-text__area {
    padding: 16px 0;
  }
}
.Compatible__detail-text__head-line {
  display: inline-block;
  font-size: 24px;
  font-family: NotoSansJpBold;
  background-color: #ffff3e;
  padding: 0 12px;
}
@media screen and (max-width: 768px) {
  .Compatible__detail-text__head-line {
    font-size: 13px;
    padding: 3px;
  }
}
.Compatible__detail-text__text {
  font-size: 20px;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .Compatible__detail-text__text {
    font-size: 12px;
    margin-top: 8px;
  }
}
.Compatible__special-price-banner__area {
  padding: 58px 0 64px;
}
@media screen and (max-width: 768px) {
  .Compatible__special-price-banner__area {
    padding: 20px 0;
  }
}
.Compatible__special-price-banner__image {
  width: 100%;
}
.Compatible__special-price-banner__image__link {
  display: block;
  width: 1160px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .Compatible__special-price-banner__image__link {
    width: 358px;
  }
}
.Compatible__special-price-banner__image__link:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.Trouble__section {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 121px 0 80px;
}
@media screen and (max-width: 768px) {
  .Trouble__section {
    padding: 58px 0 32px;
  }
}
.Trouble__title {
  position: absolute;
  width: 930px;
  top: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
}
@media screen and (max-width: 768px) {
  .Trouble__title {
    top: -25px;
    width: 339px;
  }
}
.Trouble__contents-wrapper {
  position: relative;
  margin: auto;
  background: #fff;
  width: 1280px;
  padding: 137px 60px 40px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .Trouble__contents-wrapper {
    width: 358px;
    padding: 44px 14px 24px;
  }
}
.Trouble__content {
  width: 360px;
}
@media screen and (max-width: 768px) {
  .Trouble__content {
    margin-top: 16px;
    width: 330px;
  }
}
.Trouble__content__wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .Trouble__content__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
.Trouble__content__title {
  font-family: NotoSansJpBold;
  padding: 16px 0;
  font-size: 24px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .Trouble__content__title {
    font-size: 18px;
    padding: 10px 0;
  }
}
.Trouble__content__title.will-not-open {
  background: #009dff;
}
.Trouble__content__title.key-failure {
  background: #49c71d;
}
.Trouble__content__title.not-close {
  background: #ff77b6;
}
.Trouble__content__title__large {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .Trouble__content__title__large {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .Trouble__content__image {
    width: 100%;
    height: 160px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.Trouble__content__text {
  font-size: 18px;
  padding: 20px;
  height: 116px;
}
@media screen and (max-width: 768px) {
  .Trouble__content__text {
    font-size: 14px;
    letter-spacing: -0.01rem;
    padding: 12px 14px 16px;
    height: auto;
  }
}
.Trouble__content__text.will-not-open {
  background: #f5fbff;
}
.Trouble__content__text.key-failure {
  background: #edfee7;
}
.Trouble__content__text.not-close {
  background: #fff7fb;
}

.Tel-banner__section {
  background: #2455b7;
  padding: 40px 0 44px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .Tel-banner__section {
    padding: 24px 0;
  }
}
.Tel-banner__top-text {
  position: relative;
  display: inline-block;
  font-size: 32px;
  font-family: NotoSansJpBold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .Tel-banner__top-text {
    font-size: 15px;
  }
}
.Tel-banner__top-text:before,
.Tel-banner__top-text:after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 2px;
  height: 100px;
  background: #fff;
  top: 0;
}
@media screen and (max-width: 768px) {
  .Tel-banner__top-text:before,
  .Tel-banner__top-text:after {
    height: 42px;
  }
}
.Tel-banner__top-text:before {
  left: -20px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
@media screen and (max-width: 768px) {
  .Tel-banner__top-text:before {
    left: -15px;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
}
.Tel-banner__top-text:after {
  right: -20px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
@media screen and (max-width: 768px) {
  .Tel-banner__top-text:after {
    right: -15px;
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
}
.Tel-banner__bottom__wrapper {
  position: relative;
  display: block;
  width: 1179px;
  margin: 22px auto 0;
  background: -webkit-linear-gradient(top, #f69c48 0%, #ff741d 100%);
  background: linear-gradient(180deg, #f69c48 0%, #ff741d 100%);
  padding: 18px 0 26px 40px;
}
.Tel-banner__bottom__wrapper:after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.Tel-banner__bottom__wrapper:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.Tel-banner__bottom__wrapper:hover:after {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .Tel-banner__bottom__wrapper {
    width: 358px;
    border: 3px solid #fff;
    padding: 0;
    border-radius: 5px;
    background: #ff9c48;
  }
  .Tel-banner__bottom__wrapper:hover {
    opacity: 1;
  }
}
.Tel-banner__bottom__wrapper.fixed {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  box-shadow: 0 4px 6px #00000029;
}
@media screen and (max-width: 768px) {
  .Tel-banner__bottom__inner {
    position: relative;
    overflow: hidden;
    padding: 9px 11px 5px;
  }
  .Tel-banner__bottom__inner:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 50px;
    height: 100%;
    background-color: #fff;
  }
}
.Tel-banner__bottom__title {
  font-size: 40px;
  font-family: NotoSansJpBold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .Tel-banner__bottom__title {
    font-size: 12px;
    background: #ffff3e;
    display: inline-block;
    margin: auto;
    width: 220px;
    border-radius: 9999px;
    color: #ff9c48;
  }
}
@media screen and (max-width: 768px) {
  .Tel-banner__bottom__title.fixed {
    display: block;
    text-align: center;
  }
}
.Tel-banner__bottom__number {
  font-size: 96px;
  font-family: LatoBlack;
  color: #ffff3e;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .Tel-banner__bottom__number {
    font-size: 31px;
    color: #fff;
  }
}
.Tel-banner__bottom__number__area {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 5px;
}
.Tel-banner__bottom__number__text {
  font-size: 33px;
  font-family: NotoSansJpBold;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .Tel-banner__bottom__number__text {
    font-size: 14px;
    letter-spacing: -0.01rem;
    line-height: 1.1;
  }
}
.Tel-banner__bottom__number__image {
  width: 100%;
}
.Tel-banner__bottom__number__image__area {
  width: 121.7px;
  margin: 0 24px;
}
@media screen and (max-width: 768px) {
  .Tel-banner__bottom__number__image__area {
    width: 36.67px;
    margin: 0 6px;
  }
}
.Tel-banner__bottom__operator-image {
  position: absolute;
  bottom: 0;
  right: -25px;
  width: 429px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .Tel-banner__bottom__operator-image {
    width: 105px;
    right: -11px;
    bottom: -3px;
  }
}
.Tel-banner__bottom__fukidashi {
  display: none;
}
@media screen and (max-width: 768px) {
  .Tel-banner__bottom__fukidashi {
    position: absolute;
    top: -25px;
    left: -5px;
    width: 56px;
    height: 56px;
    background-position: center;
    background-size: contain;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
    font-family: NotoSansJpBold;
    color: #ffff3e;
  }
}
.fixed-btn__wrapper {
  position: fixed;
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.6);
  bottom: 0;
  z-index: 100;
}

.Other-failures__section {
  background-size: cover;
  padding: 64px 0;
}
.Other-failures__content__wrapper {
  position: relative;
  width: 1280px;
  height: 812px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding-top: 48px;
}
@media screen and (max-width: 768px) {
  .Other-failures__content__wrapper {
    width: 358px;
    padding: 20px 14px 24px;
  }
}
.Other-failures__content__title {
  width: 1160px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .Other-failures__content__title {
    width: 259px;
    margin: 0 0 0 auto;
  }
}
.Other-failures__content__woman {
  width: 635px;
  position: absolute;
  bottom: 0;
  left: 258px;
}
@media screen and (max-width: 768px) {
  .Other-failures__content__woman {
    width: 148px;
    top: 0;
    left: -50px;
  }
}
.Other-failures__content__circle__top-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 136px;
  padding-left: 102px;
}
@media screen and (max-width: 768px) {
  .Other-failures__content__circle__top-wrapper {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-top: 29px;
    gap: 43px;
  }
}
.Other-failures__content__circle__top-wrapper.bottom {
  gap: 435px;
  padding-top: 61px;
  padding-left: 142px;
}
@media screen and (max-width: 768px) {
  .Other-failures__content__circle__top-wrapper.bottom {
    padding: 0;
    gap: 43px;
    margin-top: 43px;
  }
}
.Other-failures__content__circle__left {
  position: relative;
  width: 242px;
  height: 242px;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  box-shadow: 0 4px 16px #00000029;
}
@media screen and (max-width: 768px) {
  .Other-failures__content__circle__left {
    width: 100%;
    height: 90px;
    border-radius: 9999px;
    -webkit-box-pack: start;
    justify-content: flex-start;
    padding: 0 24px;
  }
}
@media screen and (max-width: 768px) {
  .Other-failures__content__circle__left.second {
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding-right: 47px;
  }
}
@media screen and (max-width: 768px) {
  .Other-failures__content__circle__left.forth {
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding-right: 60px;
  }
}
@media screen and (max-width: 768px) {
  .Other-failures__content__circle__left.fifth {
    padding-left: 40px;
  }
}
.Other-failures__content__circle__text {
  text-align: center;
  font-size: 20px;
  font-family: NotoSansJpBold;
}
@media screen and (max-width: 768px) {
  .Other-failures__content__circle__text {
    font-size: 16px;
  }
}
.Other-failures__content__circle__right {
  position: absolute;
  width: 156px;
  right: -100px;
  bottom: -50px;
}
@media screen and (max-width: 768px) {
  .Other-failures__content__circle__right {
    width: 116px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .Other-failures__content__circle__right.align-right {
    right: auto;
    left: 0;
  }
}

.Strengths__section {
  background: -webkit-linear-gradient(top, #fcfdff 0%, #d6ebff 100%);
  background: linear-gradient(180deg, #fcfdff 0%, #d6ebff 100%);
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .Strengths__section {
    padding: 32px 0;
  }
}
.Strengths__title {
  width: 614px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .Strengths__title {
    width: 330px;
  }
}
.Strengths__title__image {
  width: 100%;
}
.Strengths__content__wrapper {
  display: -webkit-box;
  display: flex;
  width: 1280px;
  margin: 32px auto auto;
  background: #fff;
  box-shadow: 6px 10px 16px #00000029;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .Strengths__content__wrapper {
    width: 358px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
.Strengths__content__text__wrapper {
  width: 779px;
  padding: 40px 23px 48px 60px;
}
@media screen and (max-width: 768px) {
  .Strengths__content__text__wrapper {
    width: 100%;
    padding: 16px 0 20px;
  }
}
.Strengths__content__text__body {
  font-size: 18px;
  margin-top: 33px;
}
@media screen and (max-width: 768px) {
  .Strengths__content__text__body {
    margin-top: 0;
    padding: 16px 14px 0;
    font-size: 14px;
    letter-spacing: -0.01rem;
    line-height: 1.8;
  }
}
.Strengths__content__text__body.bottom {
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .Strengths__content__text__body.bottom {
    margin-top: 8px;
    font-size: 10px;
    padding-top: 0;
  }
}
.Strengths__content__head-line {
  font-size: 40px;
  font-family: NotoSansJpBold;
  color: #2455b7;
}
@media screen and (max-width: 768px) {
  .Strengths__content__head-line {
    font-size: 18px;
  }
}
.Strengths__content__head-line__large {
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  .Strengths__content__head-line__large {
    font-size: 24px;
  }
}
.Strengths__content__head-line__wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .Strengths__content__head-line__wrapper {
    padding-left: 14px;
    gap: 8px;
    margin-bottom: 12px;
  }
}
.Strengths__content__head-line__number {
  color: #fff;
  background: #134091;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 40px;
  font-family: RobotoBold;
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .Strengths__content__head-line__number {
    width: 36px;
    height: 36px;
    font-size: 18px;
    padding-top: 3px;
  }
}
.Strengths__content__image {
  width: 100%;
}
.Strengths__content__image__wrapper {
  width: 501px;
}

.Case__section {
  width: 100%;
  background-repeat: repeat;
  background-size: 95%;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .Case__section {
    padding: 32px 0;
  }
}
.Case__section__title {
  font-size: 56px;
  font-family: NotoSansJpBold;
  background: #134091;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .Case__section__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.Case__section__title__inner {
  position: relative;
  width: 1160px;
  margin: auto;
  text-align: center;
  padding: 18px 0;
}
@media screen and (max-width: 768px) {
  .Case__section__title__inner {
    width: 100%;
    padding: 12px 0 15px 30px;
    text-align: left;
  }
}
.Case__section__title__image {
  position: absolute;
  width: 315px;
  right: -100px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .Case__section__title__image {
    width: 239px;
    right: -50px;
  }
}
.Case__section__content__wrapper {
  background: #fefbe0;
  width: 1280px;
  margin: 56px auto auto;
  padding: 40px 0;
  box-shadow: 3px 6px 16px #00000029;
}
@media screen and (max-width: 768px) {
  .Case__section__content__wrapper {
    width: 358px;
    margin-top: 16px;
    padding: 18px 0 20px;
  }
}
.Case__section__content__title {
  color: #134091;
  font-family: NotoSansJpBold;
  font-size: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .Case__section__content__title {
    font-size: 18px;
  }
}
.Case__section__content__title-label {
  font-family: RobotoBold;
  font-size: 28px;
  color: #fff;
  background: #134091;
  width: 171px;
  border-radius: 0 50px 50px 0;
  padding-left: 60px;
  margin-right: 20px;
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .Case__section__content__title-label {
    font-size: 14px;
    width: 64px;
    padding: 8px 0 5px 14px;
    margin-right: 8px;
  }
}
.Case__section__content__image__area {
  width: 1160px;
  margin: 30px auto auto;
  display: -webkit-box;
  display: flex;
}
@media screen and (max-width: 768px) {
  .Case__section__content__image__area {
    width: auto;
    margin-top: 18px;
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.Case__section__content__image__wrapper {
  position: relative;
  background: #6f6f6f;
  width: 540px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .Case__section__content__image__wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .Case__section__content__image__wrapper {
    width: 156px;
    height: 160px;
    padding: 4px;
  }
}
.Case__section__content__image__wrapper.after {
  background: #ff77b6;
}
.Case__section__content__image__text {
  font-size: 28px;
  font-family: NotoSansJpBold;
  width: 146px;
  height: 69px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background: #6f6f6f;
  color: #fff;
  border-radius: 0 0 10px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .Case__section__content__image__text {
    width: 54px;
    height: 28px;
    font-size: 12px;
  }
}
.Case__section__content__image__text.after {
  background: #ff77b6;
}
.Case__section__content__image__triangle {
  width: 96px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 0 18px;
}
@media screen and (max-width: 768px) {
  .Case__section__content__image__triangle {
    width: 19px;
    padding: 0 3px;
  }
}
.Case__under__section {
  background: #fff0e0;
  padding: 56px 0;
}
@media screen and (max-width: 768px) {
  .Case__under__section {
    padding: 32px 0;
  }
}
.Case__under__content__wrapper {
  padding: 56px 82px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 1280px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 20px;
  border: 8px solid #ff9c48;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .Case__under__content__wrapper {
    padding: 20px 24px;
    width: 358px;
    border: 4px solid #ff9c48;
  }
}
.Case__under__content__left {
  width: 564px;
}
.Case__under__content__title {
  font-family: NotoSansJpBold;
  font-size: 48px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .Case__under__content__title {
    font-size: 24px;
  }
}
.Case__under__content__title__body {
  display: inline-block;
  background: #ff9c48;
  padding: 8px 20px;
}
@media screen and (max-width: 768px) {
  .Case__under__content__title__body {
    padding: 4px 13px;
  }
}
.Case__under__content__title__body.second {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .Case__under__content__title__body.second {
    margin-top: 8px;
  }
}
.Case__under__content__text {
  margin-top: 32px;
  font-size: 18px;
  font-family: NotoSansJpBold;
}
@media screen and (max-width: 768px) {
  .Case__under__content__text {
    font-size: 14px;
    margin-top: 16px;
    letter-spacing: -0.01rem;
  }
}
.Case__under__content__right {
  width: 520px;
}
.Case__under__content__right__image {
  width: 100%;
  margin-top: 16px;
}

.Newly-established__section {
  background-size: cover;
  padding: 72px 0;
}
@media screen and (max-width: 768px) {
  .Newly-established__section {
    padding: 32px 0;
  }
}
.Newly-established__section__contents-inner {
  width: 1160px;
  margin: auto;
}
.Newly-established__section__title {
  position: relative;
  background: #49c71d;
  color: #fff;
  font-size: 56px;
  font-family: NotoSansJpBold;
  width: 100%;
  height: 120px;
  border-radius: 9999px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .Newly-established__section__title {
    width: 270px;
    height: 40px;
    font-size: 24px;
    margin: auto auto 28px;
  }
}
.Newly-established__section__title__triangle {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  width: 80px;
}
@media screen and (max-width: 768px) {
  .Newly-established__section__title__triangle {
    width: 24px;
    bottom: -12px;
  }
}
.Newly-established__section__content {
  position: relative;
  width: 550px;
  border: 5px solid #49c71d;
}
.Newly-established__section__content__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .Newly-established__section__content {
    width: 171px;
    height: 162px;
    border: 4px solid #49c71d;
  }
}
.Newly-established__section__content.bottom {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .Newly-established__section__content.bottom {
    margin-top: 0;
  }
}
.Newly-established__section__content__wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .Newly-established__section__content__wrapper {
    -webkit-box-pack: center;
    justify-content: center;
    gap: 16px;
  }
}
.Newly-established__section__content__title {
  font-size: 24px;
  font-family: NotoSansJpBold;
  position: absolute;
  top: 32px;
  left: 0;
  background: #49c71d;
  color: #fff;
  padding: 11px 34px 11px 28px;
  border-radius: 0 9999px 9999px 0;
}
@media screen and (max-width: 768px) {
  .Newly-established__section__content__title {
    top: 12px;
    font-size: 12px;
    padding: 3px 12px 3px 8px;
  }
}
.Newly-established__section__content__price-image {
  position: absolute;
  width: 418px;
  bottom: -20px;
  right: 21px;
}
@media screen and (max-width: 768px) {
  .Newly-established__section__content__price-image {
    width: 148px;
    right: 9px;
    bottom: -13px;
  }
}

.Flow-of-construction__section {
  background: #fff6e0;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .Flow-of-construction__section {
    padding: 40px 0;
  }
}
.Flow-of-construction__section__content__wrapper {
  padding: 0 77px 48px 81px;
}
@media screen and (max-width: 768px) {
  .Flow-of-construction__section__content__wrapper {
    padding: 0 14px 24px;
  }
}
.Flow-of-construction__section__content__inner {
  background: #fff;
  width: 1160px;
  margin: auto;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .Flow-of-construction__section__content__inner {
    width: 358px;
    border-radius: 10px;
  }
}
.Flow-of-construction__section__content__title {
  font-size: 58px;
  font-family: NotoSansJpBold;
  text-align: center;
  width: 100%;
  background: #983a00;
  padding: 21px 0;
  color: #fff;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  .Flow-of-construction__section__content__title {
    font-size: 24px;
    padding: 7px 0;
    border-radius: 10px 10px 0 0;
  }
}
.Flow-of-construction__section__content {
  display: -webkit-box;
  display: flex;
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .Flow-of-construction__section__content {
    margin-top: 24px;
  }
}
.Flow-of-construction__section__content__image {
  width: 100%;
  position: relative;
  z-index: 10;
}
.Flow-of-construction__section__content__image__wrapper {
  width: 149px;
  margin-right: 48px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .Flow-of-construction__section__content__image__wrapper {
    width: 72px;
    margin-right: 18px;
  }
}
.Flow-of-construction__section__content__image__under-line {
  position: absolute;
  z-index: 1;
  top: 395%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  width: 1025px;
  height: 4px;
  background: #cccccc;
}
@media screen and (max-width: 768px) {
  .Flow-of-construction__section__content__image__under-line {
    top: 310%;
    width: 760px;
  }
}
.Flow-of-construction__section__content__text__wrapper {
  width: 800px;
}
@media screen and (max-width: 768px) {
  .Flow-of-construction__section__content__text__wrapper {
    width: 240px;
  }
}
.Flow-of-construction__section__content__text__title {
  font-size: 32px;
  font-family: NotoSansJpBold;
  color: #983a00;
  padding-bottom: 23px;
  border-bottom: 2px solid #983a00;
}
@media screen and (max-width: 768px) {
  .Flow-of-construction__section__content__text__title {
    font-size: 16px;
    padding-bottom: 12px;
  }
}
.Flow-of-construction__section__content__text__body {
  font-size: 18px;
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .Flow-of-construction__section__content__text__body {
    font-size: 14px;
    margin-top: 12px;
    letter-spacing: -0.01rem;
  }
}

.Questions__section {
  background: #e0f0ff;
  padding: 80px 0 64px;
}
@media screen and (max-width: 768px) {
  .Questions__section {
    padding: 40px 0 47px;
  }
}
.Questions__section__title {
  text-align: center;
  font-size: 48px;
  font-family: NotoSansJpBold;
  color: #134091;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .Questions__section__title {
    font-size: 24px;
  }
}
.Questions__section__content__wrapper {
  background: #fff;
  padding: 32px 0 33px 56px;
  width: 1160px;
  margin: 32px auto auto;
}
@media screen and (max-width: 768px) {
  .Questions__section__content__wrapper {
    margin-top: 16px;
    width: 358px;
    padding: 20px 0 20px 14px;
  }
}
.Questions__section__content__text {
  font-size: 18px;
  font-family: NotoSansJpBold;
}
@media screen and (max-width: 768px) {
  .Questions__section__content__text {
    width: 274px;
    font-size: 14px;
    letter-spacing: -0.01rem;
  }
}
.Questions__section__content__text.question {
  color: #2455b7;
}
.Questions__section__content__text__wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .Questions__section__content__text__wrapper {
    -webkit-box-align: baseline;
    align-items: baseline;
  }
}
.Questions__section__content__text__wrapper.answer {
  margin-top: 24px;
}
.Questions__section__content__text__icon {
  font-size: 36px;
  font-family: RobotoBold;
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  margin-right: 16px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .Questions__section__content__text__icon {
    width: 35px;
    height: 35px;
    font-size: 20px;
    margin-right: 8px;
  }
}
.Questions__section__content__text__icon.question {
  background: #2455b7;
  color: #fff;
}
.Questions__section__content__text__icon.answer {
  background: #e0f0ff;
  color: #2455b7;
}

.Company__section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .Company__section {
    padding: 40px 0 50px;
  }
}
.Company__section__title {
  text-align: center;
  font-size: 48px;
  font-family: NotoSansJpBold;
  color: #134091;
}
@media screen and (max-width: 768px) {
  .Company__section__title {
    font-size: 24px;
  }
}
.Company__section__table__inner {
  width: 1000px;
  margin: auto;
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .Company__section__table__inner {
    width: 330px;
  }
}
.Company__section__table__wrapper {
  width: 100%;
  display: -webkit-box;
  display: flex;
  padding-bottom: 32px;
  border-bottom: 1px solid #cccccc;
  margin-top: 32px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .Company__section__table__wrapper {
    font-size: 15px;
    letter-spacing: -0.01rem;
  }
}
.Company__section__table__label {
  width: 293px;
  color: #134091;
  font-family: NotoSansJpBold;
}
@media screen and (max-width: 768px) {
  .Company__section__table__label {
    width: 95px;
  }
}
@media screen and (max-width: 768px) {
  .Company__section__table__data {
    width: 234px;
  }
}
.Company__section__under-banner__wrapper {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .Company__section__under-banner__wrapper {
    margin-top: 30px;
  }
}
.Company__section__under-banner__link {
  display: block;
  margin: auto;
  width: 1160px;
}
@media screen and (max-width: 768px) {
  .Company__section__under-banner__link {
    width: 330px;
  }
}
.Company__section__under-banner__link:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.Company__section__under-banner_image {
  width: 100%;
}

.footer {
  padding: 42px 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 19px 0 119px;
  }
}
@media screen and (max-width: 768px) {
  .footer.lower-page {
    padding: 20px 0;
  }
}
.footer__logo {
  width: 445px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 265px;
  }
}

.pc {
  display: block !important;
}
.pc_inline {
  display: inline;
}
.pc_fx {
  display: -webkit-box;
  display: flex;
}
.pc_inline-block {
  display: inline-block;
}
.sp,
.sp_inline,
.sp_fx {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
    margin: 0;
    padding: 0;
  }
  .pc_fx,
  .pc_inline {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .sp_fx {
    display: -webkit-box !important;
    display: flex !important;
  }
}
.cta-btn {
  margin: 56px 0 0;
  padding: 24px 0;
}
.cta-btn__link {
  width: 924px;
  height: 168px;
  margin: auto;
  font-size: 36px;
  font-family: NotoSansJpBold;
  background: linear-gradient(to bottom, #e34442, #be0502);
  color: #fff;
  display: block;
}
.cta-btn__bottom,
.cta-btn__top {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-btn__top {
  padding: 16px 0 0;
}
.cta-btn__top__ico {
  width: 181px;
  margin-top: -80px;
}
.cta-btn__top__txt {
  width: 5in;
  text-align: center;
  font-size: 26px;
  border-radius: 75pt;
  background: #fff;
  color: #cc1c1a;
  display: block;
}
.cta-btn__bottom {
  margin: -2px 0 0;
}
.cta-btn__bottom__txt__deco {
  font-size: 3pc;
  font-family: NotoSansJpBlack;
  color: #ffff3e;
}
.cta-btn__bottom__ico {
  width: 53px;
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .cta-btn {
    margin: 1pc 0 0;
  }
  .cta-btn__link {
    width: 331px;
    height: 80px;
    padding: 16px 0;
    font-size: 14px;
    box-sizing: border-box;
  }
  .cta-btn__top {
    margin-bottom: 8px;
    padding: 0;
    position: relative;
  }
  .cta-btn__top__ico {
    width: 87px;
    margin: 0;
    position: absolute;
    top: -40px;
    left: -1pc;
  }
  .cta-btn__top__txt {
    width: 2in;
    font-size: 9pt;
  }
  .cta-btn__bottom__txt__deco {
    font-size: 20px;
  }
  .cta-btn__bottom {
    align-items: baseline;
  }
  .cta-btn__bottom__ico {
    width: 19px;
  }
}

.dendouka {
  text-align: center;
}

/* ���͉�Јꗗ */
.kyouryoku {
  font-size: 1rem;
  font-weight: bold;
  color: #003f91;
  margin: 40px 100px 20px 100px;
}

.partner-list {
  margin: 0 100px 40px 100px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
}

.partner-list .list-container {
  display: block;
}

.partner-list .row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 14px 20px;
}

.partner-list .row:last-child {
  border-bottom: none;
}

.partner-list .col-category {
  display: block;
  font-weight: bold;
  color: #333;
  margin-bottom: 0;
  margin-right: 100px; /* ������100px�ɕύX */
  flex-shrink: 0;
}

.partner-list .col-company {
  display: block;
  color: #003f91;
  font-weight: 500;
  margin-left: 0;
}

.partner-list .col-company a {
  color: inherit;
  text-decoration: none;
}

.partner-list .col-company a:hover {
  text-decoration: underline;
}

/* ---------------------------
    ���X�|���V�u�Ή�
--------------------------- */
@media (max-width: 1024px) {
  .kyouryoku,
  .partner-list {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 768px) {
  .kyouryoku,
  .partner-list {
    margin-left: 20px;
    margin-right: 20px;
  }

  .partner-list .row {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-list .col-category {
    margin-bottom: 6px;
    margin-right: 0;
  }
}
