@charset "UTF-8";
@font-face {
  font-family: "ZenKakuGothicNew-Black"; /* 好きな呼び名 */
  src: url("../fonts/ZenKakuGothicNew-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ZenKakuGothicNew-Bold"; /* 好きな呼び名 */
  src: url("../fonts/ZenKakuGothicNew-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ZenKakuGothicNew-Medium"; /* 好きな呼び名 */
  src: url("../fonts/ZenKakuGothicNew-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ZenKakuGothicNew-Regular"; /* 好きな呼び名 */
  src: url("../fonts/ZenKakuGothicNew-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ZenKakuGothicNew-Light"; /* 好きな呼び名 */
  src: url("../fonts/ZenKakuGothicNew-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
html {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  word-break: break-all;
  font-size: 62.5%;
}
@media (max-width: 1300px) and (min-width: 768px) {
  html {
    font-size: 0.7692307692vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: min(2.6666666667vw, 14.6666666667px);
  }
}

body {
  font-size: 1.6rem;
  font-family: "ZenKakuGothicNew-Regular", "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
body a {
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
body a:hover {
  opacity: 0.6;
}
body img {
  width: 100%;
  height: auto;
}

.Inner {
  max-width: 1300px;
  width: 100%;
  padding-inline: 3rem;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .Inner {
    max-width: 550px;
  }
}

header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.HeaderWrapper {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 3rem;
  height: 15rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .HeaderWrapper {
    height: 5rem;
  }
}

.HeaderTopLogo__Icon {
  display: block;
  width: 10.5rem;
}
@media only screen and (max-width: 767px) {
  .HeaderTopLogo__Icon {
    width: 5.2rem;
  }
}

.HeaderNav__List {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.MainMenu:not(:last-of-type) {
  -webkit-border-end: 0.2rem solid;
          border-inline-end: 0.2rem solid;
}
@media only screen and (max-width: 767px) {
  .MainMenu:not(:last-of-type) {
    -webkit-border-end: none;
            border-inline-end: none;
  }
}

.MainMenu__Link {
  -webkit-padding-start: 4rem;
          padding-inline-start: 4rem;
  -webkit-padding-end: 6rem;
          padding-inline-end: 6rem;
  padding-block: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .MainMenu__Link {
    -webkit-padding-start: unset;
            padding-inline-start: unset;
  }
}

.MainMenu.has-submenu.--result .MainMenu__Link {
  -webkit-padding-end: 8rem;
          padding-inline-end: 8rem;
}

.MainMenu {
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .MainMenu {
    height: 6rem;
    -webkit-padding-before: 2rem;
            padding-block-start: 2rem;
    letter-spacing: 4px;
  }
}

@media only screen and (max-width: 767px) {
  .MainMenu:not(:last-of-type) {
    -webkit-border-after: 0.2rem solid #fff;
            border-block-end: 0.2rem solid #fff;
  }
}

.MainMenu.has-submenu {
  position: relative;
  display: block;
}

.subMenu-list {
  list-style: none;
  -webkit-padding-end: 1.5rem;
          padding-inline-end: 1.5rem;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 4rem;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .subMenu-list {
    position: relative;
    top: unset;
    letter-spacing: 4px;
    background-color: unset;
  }
}

.subMenu-list li {
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.subMenu-list li a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-start: 3rem;
          padding-inline-start: 3rem;
}

.has-submenu:hover .subMenu-list {
  opacity: 1;
  visibility: visible;
}

.subMenu-list.open {
  display: block;
}

a.is-active {
  color: #29abe2;
}

@media only screen and (max-width: 767px) {
  .HeaderNav {
    background-color: #000;
    color: #fff;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 3rem;
    position: absolute;
    top: 8rem;
    right: -36rem;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
  }
}

@media only screen and (max-width: 767px) {
  .HeaderNav.active {
    right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .HeaderNav .HeaderNav__List {
    display: block;
    width: 27rem;
  }
}

@media only screen and (max-width: 767px) {
  .MainMenu.has-submenu.--service:hover {
    height: 16rem;
  }
}

@media only screen and (max-width: 767px) {
  .MainMenu.has-submenu.--result:hover {
    height: 22rem;
  }
}

.HamburgerBtn {
  width: 2rem;
  height: 1rem;
  position: relative;
}

.HamburgerBtn span {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #000;
  position: absolute;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.HamburgerBtn span:first-of-type {
  top: 0;
}

.HamburgerBtn span:last-of-type {
  bottom: 0;
}

.HamburgerBtn.open span:first-of-type {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.HamburgerBtn.open span:last-of-type {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

#Footer {
  width: 100%;
  background-color: #000;
  -webkit-padding-before: 6rem;
          padding-block-start: 6rem;
  -webkit-padding-after: 3rem;
          padding-block-end: 3rem;
}
@media only screen and (max-width: 767px) {
  #Footer {
    -webkit-padding-before: 3rem;
            padding-block-start: 3rem;
    -webkit-padding-after: 1.5rem;
            padding-block-end: 1.5rem;
  }
}

.FooterTop {
  width: 100%;
  max-width: 1050px;
  margin-inline: auto;
  padding-inline: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 7.5rem;
     -moz-column-gap: 7.5rem;
          column-gap: 7.5rem;
}
@media only screen and (max-width: 767px) {
  .FooterTop {
    max-width: 550px;
    padding-inline: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.FooterLogo {
  display: block;
  width: 10.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .FooterLogo {
    width: 5.2rem;
    margin-inline: unset;
  }
}

.FooterTop__Text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.4rem;
  color: #fff;
  line-height: 2.1428571429;
}
@media only screen and (max-width: 767px) {
  .FooterTop__Text {
    line-height: 1.6;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.FooterBottom {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  font-size: 1.4rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .FooterBottom {
    max-width: 550px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .FooterBottom .MainMenu {
    -webkit-border-after: unset;
            border-block-end: unset;
  }
}

.FooterBottom .MainMenu .MainMenu__Link {
  -webkit-padding-start: 2rem;
          padding-inline-start: 2rem;
  -webkit-padding-end: 8rem;
          padding-inline-end: 8rem;
}

.MainMenu.has-submenu-footer.--result .subMenu-list li a {
  white-space: nowrap;
}

@media only screen and (min-width: 768px) {
  .subMenu-list.--displayBlock {
    display: block;
    background-color: #000;
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 767px) {
  .subMenu-list.--displayBlock {
    background-color: #fff;
    color: #000;
    -webkit-padding-end: unset;
            padding-inline-end: unset;
  }
}

.subMenu-list.--displayBlock li {
  -webkit-border-before: 0.2rem solid #000;
          border-block-start: 0.2rem solid #000;
}

@media only screen and (max-width: 767px) {
  .MainMenu.has-submenu-footer.--service:hover {
    height: 16rem;
  }
}

@media only screen and (max-width: 767px) {
  .MainMenu.has-submenu-footer.--result:hover {
    height: 12rem;
  }
}

.FooterCopyright {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  -webkit-margin-before: 25rem;
          margin-block-start: 25rem;
}
@media only screen and (max-width: 767px) {
  .FooterCopyright {
    font-size: 1.1rem;
    -webkit-margin-before: 5rem;
            margin-block-start: 5rem;
  }
}

.ArrowsArea {
  width: 82.4rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 9.2rem;
     -moz-column-gap: 9.2rem;
          column-gap: 9.2rem;
  color: #354256;
  -webkit-margin-before: 8.3rem;
          margin-block-start: 8.3rem;
  -webkit-margin-after: 11rem;
          margin-block-end: 11rem;
}

.PrevNavi,
.NextNavi {
  width: 36.6rem;
  height: 8rem;
  border-radius: 999px;
  border: 2px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.PrevNavi:hover,
.NextNavi:hover {
  background-color: #354256;
  color: #fff;
}

.PrevNavi__p,
.NextNavi__p {
  opacity: 0.6;
  pointer-events: none;
}

.PrevNavi::after {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  -webkit-border-before: 2px solid;
          border-block-start: 2px solid;
  -webkit-border-start: 2px solid;
          border-inline-start: 2px solid;
  position: absolute;
  top: 50%;
  left: 5rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.PrevNavi:hover::after,
.NextNavi:hover::after {
  border-color: #fff;
}

.NextNavi::after {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  -webkit-border-before: 2px solid;
          border-block-start: 2px solid;
  -webkit-border-end: 2px solid;
          border-inline-end: 2px solid;
  position: absolute;
  top: 50%;
  right: 5rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.list-pageNo {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .list-pageNo {
    margin-top: 6.4rem;
  }
}

.PageNumBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  -webkit-margin-before: 14rem;
          margin-block-start: 14rem;
}
@media only screen and (max-width: 767px) {
  .PageNumBox {
    -webkit-margin-before: 3.5rem;
            margin-block-start: 3.5rem;
  }
}

.page-numbers {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding-top: 2.5rem;
  width: 7.5rem;
  height: 7.5rem;
  background: #f2f2f2;
  border: 0.1rem solid;
}
@media only screen and (max-width: 767px) {
  .page-numbers {
    -webkit-padding-before: 1rem;
            padding-block-start: 1rem;
    width: 3.8rem;
    height: 3.8rem;
    font-size: 1.2rem;
  }
}

.page-numbers.current {
  background: #fff;
}

.page-numbers.dots {
  border: none;
}

.page-numbers.next,
.page-numbers.prev {
  width: 7.5rem;
  border-radius: 50%;
  border: 1px solid;
}
@media only screen and (max-width: 767px) {
  .page-numbers.next,
  .page-numbers.prev {
    width: 3.8rem;
  }
}

.PageNumBox div {
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 0.35rem;
  border: 1px solid #000;
  position: relative;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media only screen and (max-width: 767px) {
  .PageNumBox div {
    width: 3.8rem;
    height: 3.8rem;
    margin: 0 0.35rem;
  }
}
.PageNumBox div:hover {
  opacity: 0.5;
}

.PageNumBox div:nth-of-type(1) {
  background-color: #000;
  color: #fff;
}

.PageNumBox div:nth-of-type(4) {
  border: none;
}

.PageNumBox div p,
.PageNumBox div a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 1rem 1.5rem;
}

.SinglePageNav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 21.5rem;
     -moz-column-gap: 21.5rem;
          column-gap: 21.5rem;
  -webkit-margin-before: 7rem;
          margin-block-start: 7rem;
  -webkit-margin-after: 8rem;
          margin-block-end: 8rem;
}
@media only screen and (max-width: 767px) {
  .SinglePageNav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: unset;
       -moz-column-gap: unset;
            column-gap: unset;
    font-size: 1.8rem;
    -webkit-margin-before: 3rem;
            margin-block-start: 3rem;
  }
}

@media only screen and (max-width: 767px) {
  .SinglePageNav.--result {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}

.SinglePageNavBtn.--prev,
.SinglePageNavBtn.--next {
  display: block;
  width: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .SinglePageNavBtn.--prev,
  .SinglePageNavBtn.--next {
    width: 2.2rem;
    height: 2.2rem;
  }
}

.SinglePageNavBtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.SinglePageNavBtn {
  width: 17.4rem;
  height: 5.4rem;
}
@media only screen and (max-width: 767px) {
  .SinglePageNavBtn {
    width: 12.4rem;
    height: 3.5rem;
  }
}

.SinglePageNavBtn__Link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  background-color: #000;
  font-size: 2rem;
  color: #fff;
  position: relative;
  -webkit-padding-start: 5.4rem;
          padding-inline-start: 5.4rem;
}
@media only screen and (max-width: 767px) {
  .SinglePageNavBtn__Link {
    font-size: 1.3rem;
    font-weight: 700;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-padding-end: 2rem;
            padding-inline-end: 2rem;
    -webkit-padding-start: unset;
            padding-inline-start: unset;
  }
}

.SinglePageNavBtn__Link span {
  display: block;
  width: 3rem;
  position: absolute;
  top: 50%;
  left: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .SinglePageNavBtn__Link span {
    width: 1.9rem;
  }
}

.SinglePageNavBtn__prev.is-disabled,
.SinglePageNavBtn__next.is-disabled {
  opacity: 0.5;
}

.PageLinkBtn {
  width: 21.4rem;
  height: 5.4rem;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
}
@media only screen and (max-width: 767px) {
  .PageLinkBtn {
    width: 15.6rem;
    height: 3.5rem;
    margin-inline: auto;
    -webkit-margin-before: 3rem;
            margin-block-start: 3rem;
  }
}

@media only screen and (max-width: 767px) {
  .PageLinkBtn.sp {
    width: 12.6rem;
  }
}

.PageLinkBtn__Link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 999px;
  background-color: #000;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-column-gap: 1.3rem;
     -moz-column-gap: 1.3rem;
          column-gap: 1.3rem;
}
@media only screen and (max-width: 767px) {
  .PageLinkBtn__Link {
    font-size: 1.6rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-padding-start: 0.7rem;
            padding-inline-start: 0.7rem;
  }
}

.PageLinkBtn.--middle {
  width: 17.4rem;
}

.PageLinkBtn__Link img {
  width: 4rem;
}
@media only screen and (max-width: 767px) {
  .PageLinkBtn__Link img {
    width: 2.4rem;
  }
}

.PageLinkBtn.--height {
  width: 17.4rem;
  -webkit-margin-before: 11rem;
          margin-block-start: 11rem;
}

.PageLinkBtn__Link.--wide {
  width: 40rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 999px;
  font-size: 2.5rem;
  font-weight: 700;
  padding-block: 1rem;
  position: absolute;
  bottom: 13rem;
  right: 3rem;
  background-color: unset;
}
@media only screen and (max-width: 767px) {
  .PageLinkBtn__Link.--wide {
    font-size: 1.25rem;
    color: #000;
    bottom: 15rem;
    right: unset;
    left: 3rem;
  }
}

.PageLinkBtn.--narrow {
  width: 16.5rem;
  margin-inline: auto;
  -webkit-margin-after: 5rem;
          margin-block-end: 5rem;
}
@media only screen and (max-width: 767px) {
  .PageLinkBtn.--narrow {
    width: 11.5rem;
  }
}

.PageLinkBtn.--marginBlockStart {
  -webkit-margin-before: -6rem;
          margin-block-start: -6rem;
  -webkit-margin-end: 3rem;
          margin-inline-end: 3rem;
}
@media only screen and (max-width: 767px) {
  .PageLinkBtn.--marginBlockStart {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
    -webkit-margin-end: auto;
            margin-inline-end: auto;
  }
}

.PageLinkBtn.--wide {
  width: 35.5rem;
}
@media only screen and (max-width: 767px) {
  .PageLinkBtn.--wide {
    width: 28rem;
  }
}

.PageLinkBtn.--positionAbsolute {
  position: absolute;
  bottom: 15rem;
  right: 22rem;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .PageLinkBtn.--positionAbsolute {
    bottom: unset;
    top: 17rem;
    right: unset;
    left: 1.5rem;
    padding-inline: 2rem;
    -webkit-margin-start: -2rem;
            margin-inline-start: -2rem;
  }
}

@media only screen and (max-width: 767px) {
  .PageLinkBtn__Link.--wide.--result {
    right: unset;
    left: 3rem;
    width: 25rem;
  }
}

.FrontTopTitle {
  display: block;
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 4.9rem;
  font-weight: 600;
  text-align: center;
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}
@media only screen and (max-width: 767px) {
  .FrontTopTitle {
    font-size: 2rem;
  }
}

.FrontTopText {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 2.7083333333;
  text-align: center;
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
}
@media only screen and (max-width: 767px) {
  .FrontTopText {
    font-size: 1rem;
    line-height: 2.25;
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

.FrontNewsList {
  width: 87rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .FrontNewsList {
    width: 100%;
    -webkit-margin-before: 3rem;
            margin-block-start: 3rem;
  }
}

.FrontNewsList__item dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 1rem;
  -webkit-border-after: 2px solid #000;
          border-block-end: 2px solid #000;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .FrontNewsList__item dl {
    font-size: 1rem;
    -webkit-border-after: 1px solid #000;
            border-block-end: 1px solid #000;
  }
}

.FrontNewsList__item:last-of-type dl {
  -webkit-border-after: none;
          border-block-end: none;
}

.FrontNewsList__item dl dt {
  width: 21rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .FrontNewsList__item dl dt {
    width: 9rem;
  }
}

.FrontNewsList__item dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 700;
}

.Inner.--paddingBlockEnd {
  -webkit-padding-after: 10.5rem;
          padding-block-end: 10.5rem;
}

.Inner.--z-index {
  position: relative;
  z-index: 1;
}

.FrontSecBG {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  position: relative;
  -webkit-margin-before: -10rem;
          margin-block-start: -10rem;
}
@media only screen and (max-width: 767px) {
  .FrontSecBG {
    -webkit-margin-before: -2rem;
            margin-block-start: -2rem;
  }
}

.FrontService {
  width: 93rem;
  padding-inline: 3rem;
  margin-inline: auto;
  position: absolute;
  top: 14rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .FrontService {
    width: 100%;
    max-width: 550px;
    margin-inline: auto;
    top: 4rem;
  }
}

.FrontService__text {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 1.8px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .FrontService__text {
    font-size: 1.1rem;
  }
}

.FrontServiceWrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 2rem;
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
}
@media only screen and (max-width: 767px) {
  .FrontServiceWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-margin-before: 4.5rem;
            margin-block-start: 4.5rem;
    row-gap: 1.5rem;
  }
}

.FrontServiceItem {
  display: block;
  width: 42rem;
  -webkit-padding-before: 4rem;
          padding-block-start: 4rem;
  padding-inline: 3rem;
  -webkit-padding-after: 2rem;
          padding-block-end: 2rem;
  -webkit-border-before: 1rem solid #29abe2;
          border-block-start: 1rem solid #29abe2;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .FrontServiceItem {
    width: 100%;
    -webkit-padding-before: 2rem;
            padding-block-start: 2rem;
    -webkit-padding-after: 1.5rem;
            padding-block-end: 1.5rem;
    padding-inline: 1.5rem;
    -webkit-border-before: 0.4rem solid #29abe2;
            border-block-start: 0.4rem solid #29abe2;
  }
}

.FrontServiceItem__Title {
  font-size: 2.9rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .FrontServiceItem__Title {
    font-size: 1.4rem;
  }
}

.FrontServiceItem__Text {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 1.8px;
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}
@media only screen and (max-width: 767px) {
  .FrontServiceItem__Text {
    font-size: 1rem;
    line-height: 1.6153846154;
    letter-spacing: unset;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.FrontServiceItem__Arrow {
  width: 3rem;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
@media only screen and (max-width: 767px) {
  .FrontServiceItem__Arrow {
    width: 2.2rem;
    -webkit-margin-before: 1.5rem;
            margin-block-start: 1.5rem;
  }
}

.FrontWorksWrap {
  -webkit-margin-before: -15rem;
          margin-block-start: -15rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .FrontWorksWrap {
    -webkit-margin-before: 9rem;
            margin-block-start: 9rem;
  }
}

.FrontSliderBox {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  overflow-x: hidden;
  -webkit-margin-before: 10rem;
          margin-block-start: 10rem;
  -webkit-padding-start: 10rem;
          padding-inline-start: 10rem;
}
@media only screen and (max-width: 767px) {
  .FrontSliderBox {
    -webkit-margin-before: 2.6rem;
            margin-block-start: 2.6rem;
    -webkit-padding-start: 3rem;
            padding-inline-start: 3rem;
  }
}

.FrontResultLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.FrontResultLink img {
  width: 100%;
  aspect-ratio: 197/205;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.FrontSwiperBtnBox {
  position: relative;
  width: 20rem;
  height: 8rem;
  margin-inline: auto;
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}
@media only screen and (max-width: 767px) {
  .FrontSwiperBtnBox {
    width: 8rem;
    height: 2rem;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.FrontSwiperBtnBox .swiper-button-prev,
.FrontSwiperBtnBox .swiper-button-next {
  width: 5rem;
}
@media only screen and (max-width: 767px) {
  .FrontSwiperBtnBox .swiper-button-prev,
  .FrontSwiperBtnBox .swiper-button-next {
    width: 2.2rem;
  }
}

.FrontInterview {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-margin-before: 4.8rem;
          margin-block-start: 4.8rem;
}
@media only screen and (max-width: 767px) {
  .FrontInterview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

.FrontInterviewText {
  width: 31rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 1.8px;
}
@media only screen and (max-width: 767px) {
  .FrontInterviewText {
    width: 100%;
    font-size: 1rem;
    line-height: 1.6153846154;
    letter-spacing: unset;
  }
}

.FrontInterviewBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .FrontInterviewBox {
    -webkit-margin-before: 3rem;
            margin-block-start: 3rem;
    overflow-x: scroll;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.FrontInterviewCard {
  width: 42rem;
}
@media only screen and (max-width: 767px) {
  .FrontInterviewCard {
    width: 27.3rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.FrontInterviewCard__Image {
  position: relative;
  width: 100%;
}

.FrontInterviewCard__Image img {
  width: 100%;
  aspect-ratio: 273/195;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.FrontInterviewCardTagBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  row-gap: 0.5rem;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
}

.InterviewCardTag {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #29abe2;
  border-bottom-right-radius: 1.7rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 0.8rem 1.5rem;
}
@media only screen and (max-width: 767px) {
  .InterviewCardTag {
    padding: 0.5rem 1rem;
  }
}

.FrontInterviewCard__Text {
  display: block;
  background-color: #f4f4f4;
  -webkit-padding-after: 2rem;
          padding-block-end: 2rem;
}

.FrontInterviewCardTitle {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  -webkit-padding-before: 2rem;
          padding-block-start: 2rem;
  -webkit-padding-start: 1.5rem;
          padding-inline-start: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .FrontInterviewCardTitle {
    font-size: 1.3rem;
  }
}

.FrontInterviewCardText {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 1.8px;
  -webkit-padding-before: 2rem;
          padding-block-start: 2rem;
  padding-inline: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .FrontInterviewCardText {
    font-size: 1.1rem;
    line-height: 1.6363636364;
    letter-spacing: unset;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.FrontInterviewCard__Text-content {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .FrontInterviewCard__Text-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

.FrontInterviewCardArrow {
  width: 3rem;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 2rem;
          margin-inline-end: 2rem;
}
@media only screen and (max-width: 767px) {
  .FrontInterviewCardArrow {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.FrontLinkWrap {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .FrontLinkWrap {
    max-width: 550px;
  }
}

.FV {
  position: fixed;
  inset: 0;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
}

.loader {
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 1440/930;
  position: relative;
  inset: 0;
  background: rgb(218, 218, 218);
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
}

.FVImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: none;
  transition: none;
  z-index: 1;
}

.FVImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.logo {
  width: 15rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 32px;
  z-index: 5;
}

.white-split {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 4;
  background-color: #fff;
}

.white-split.left {
  left: 0;
}

.white-split.right {
  right: 0;
}

.s-curve {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.s-curve.top {
  top: -85rem;
  top: -50vw;
}

.s-curve.bottom {
  bottom: -49rem;
  bottom: -30vw;
}

.FV-Static {
  -webkit-padding-before: 15rem;
          padding-block-start: 15rem;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .FV-Static {
    -webkit-padding-before: 5rem;
            padding-block-start: 5rem;
    overflow: hidden;
  }
}

.FVSliderWrap {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  position: relative;
}

.FVSlider {
  width: 100%;
}

.FV__Text {
  width: 100%;
  max-width: 1920px;
  position: absolute;
  top: 32rem;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .FV__Text {
    top: 7rem;
  }
}

h2.FV__Text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #fff;
  -webkit-padding-start: 10rem;
          padding-inline-start: 10rem;
  row-gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  h2.FV__Text {
    font-size: 2rem;
    -webkit-padding-start: 1.5rem;
            padding-inline-start: 1.5rem;
    row-gap: 0.4rem;
  }
}

.mask {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 1rem 2rem;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media only screen and (max-width: 767px) {
  .mask {
    padding: 0.5rem 0.9rem;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}

.line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #29abe2;
  z-index: 1;
}

.text {
  position: relative;
  z-index: 2;
  opacity: 0;
}

.bbs.--opacity {
  opacity: 0;
}

.scroll_up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.scroll_up.scroll_on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.bbs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  white-space: nowrap;
  -webkit-margin-before: -8rem;
          margin-block-start: -8rem;
}
@media only screen and (max-width: 767px) {
  .bbs {
    -webkit-margin-before: -4.5rem;
            margin-block-start: -4.5rem;
  }
}

.bbs ul {
  -webkit-animation: flowing 80s linear infinite;
          animation: flowing 80s linear infinite;
  font-size: 13.7rem;
  font-weight: 600;
  color: #e6e6e6;
  text-transform: uppercase;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media only screen and (max-width: 767px) {
  .bbs ul {
    font-size: 6rem;
    -webkit-animation: flowing 80s linear infinite;
            animation: flowing 80s linear infinite;
  }
}

.bbs ul li {
  display: inline-block;
  font-family: "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
}

@-webkit-keyframes flowing {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes flowing {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.CollaboText.--NoBorder {
  width: 30rem;
  text-align: center;
}

.PageTitle {
  font-size: 2.2rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .PageTitle {
    font-size: 1.1rem;
    white-space: nowrap;
  }
}

.PageTitle span {
  font-family: "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
  font-size: 6.5rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #29abe2;
  text-stroke: 2px #29abe2;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .PageTitle span {
    font-size: 3.2rem;
  }
}

.single-service-TopCard-TextBox {
  width: 64.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .single-service-TopCard-TextBox {
    width: 100%;
  }
}

.single-service-TopCard__title {
  font-size: 2.1rem;
  font-weight: 700;
  -webkit-padding-start: 14rem;
          padding-inline-start: 14rem;
  position: relative;
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
}
@media only screen and (max-width: 767px) {
  .single-service-TopCard__title {
    font-size: 1.1rem;
    -webkit-padding-start: unset;
            padding-inline-start: unset;
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
  }
}

.single-service-TopCard__title::after {
  display: block;
  content: "";
  width: 13rem;
  height: 6px;
  background-color: #29abe2;
  position: absolute;
  top: 50%;
  left: 0rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .single-service-TopCard__title::after {
    width: 6.5rem;
    height: 0.3rem;
    left: unset;
    top: -1rem;
  }
}

.single-service-TopCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-margin-after: 13rem;
          margin-block-end: 13rem;
}
@media only screen and (max-width: 767px) {
  .single-service-TopCard {
    display: block;
    -webkit-margin-after: 4.5rem;
            margin-block-end: 4.5rem;
  }
}

.single-service-TopCard__lead {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  line-height: 1.5;
  -webkit-margin-before: 8rem;
          margin-block-start: 8rem;
}
@media only screen and (max-width: 767px) {
  .single-service-TopCard__lead {
    font-size: 1.8rem;
    line-height: 1.4444444444;
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
  }
}

.single-service-TopCard__text {
  font-size: 2rem;
  letter-spacing: 1.8px;
  line-height: 1.75;
  -webkit-margin-before: 4.5rem;
          margin-block-start: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .single-service-TopCard__text {
    font-size: 1.2rem;
    line-height: 1.4166666667;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.single-service-TopCard__Image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .single-service-TopCard__Image {
    width: 27.6rem;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    -webkit-margin-before: -3rem;
            margin-block-start: -3rem;
  }
}

.single-service-TopCard__Image::after {
  display: block;
  content: "";
  width: 7rem;
  height: 46.4rem;
  background-color: #29abe2;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(40px) skewX(-10deg);
          transform: translateY(40px) skewX(-10deg);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .single-service-TopCard__Image::after {
    width: 4rem;
    height: 21.4rem;
    bottom: 3rem;
    right: 1.3rem;
  }
}

.ServiceDetailWrap {
  width: 100%;
  max-width: 1300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2.7rem;
     -moz-column-gap: 2.7rem;
          column-gap: 2.7rem;
  row-gap: 2.7rem;
}
@media only screen and (max-width: 767px) {
  .ServiceDetailWrap {
    row-gap: 1rem;
  }
}

.ServiceDetail {
  width: 38rem;
  border: 1px solid #29abe2;
}
@media only screen and (max-width: 767px) {
  .ServiceDetail {
    width: 100%;
  }
}

.ServiceDetail__title {
  width: 100%;
  height: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-column-gap: 1.1rem;
     -moz-column-gap: 1.1rem;
          column-gap: 1.1rem;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #29abe2;
}
@media only screen and (max-width: 767px) {
  .ServiceDetail__title {
    height: 3.6rem;
    font-size: 1.5rem;
  }
}

.ServiceDetail__title span {
  width: 4.5rem;
  height: 100%;
  background-color: #29abe2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .ServiceDetail__title span {
    width: 3.6rem;
    font-size: 1.6rem;
  }
}

.ServiceDetail__text {
  width: 100%;
  padding: 1.5rem 1.2rem;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .ServiceDetail__text {
    font-size: 1.2rem;
    padding: 1.4rem;
  }
}

.singleBottomContent {
  -webkit-margin-before: 9rem;
          margin-block-start: 9rem;
}
@media only screen and (max-width: 767px) {
  .singleBottomContent {
    -webkit-margin-before: 4.8rem;
            margin-block-start: 4.8rem;
  }
}

.singleBottomContent__topText {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  -webkit-margin-after: 7rem;
          margin-block-end: 7rem;
}
@media only screen and (max-width: 767px) {
  .singleBottomContent__topText {
    font-size: 1.5rem;
    -webkit-margin-after: 5rem;
            margin-block-end: 5rem;
  }
}

.singleBottomContent__topText::after {
  display: block;
  content: "";
  width: 67rem;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .singleBottomContent__topText::after {
    width: 33.5rem;
  }
}

.singleBottomContent__topText::before {
  display: block;
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background-color: #fff;
  -webkit-border-after: 2px solid #000;
          border-block-end: 2px solid #000;
  -webkit-border-end: 2px solid #000;
          border-inline-end: 2px solid #000;
  position: absolute;
  bottom: -3.1rem;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .singleBottomContent__topText::before {
    width: 1.8rem;
    height: 1.8rem;
    bottom: -2.9rem;
  }
}

.singleBottomContent__mainText {
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 4rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .singleBottomContent__mainText {
    font-size: 1.8rem;
  }
}

.Collaboration {
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .Collaboration {
    -webkit-column-gap: 0.8rem;
       -moz-column-gap: 0.8rem;
            column-gap: 0.8rem;
  }
}

@media only screen and (max-width: 767px) {
  .Collaboration.--wide {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}

.CollaboText {
  font-size: 4.9rem;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
  border: 2px solid;
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .CollaboText {
    font-size: 2rem;
    padding: 0.3rem 0.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .CollaboText.--wide {
    padding: 0.5rem 2rem;
  }
}

.CollaboText.CollaboText--right {
  font-family: "ta-kobe", sans-serif;
}

.CollaboMark {
  width: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .CollaboMark {
    width: 1.7rem;
  }
}

.AboutContent h3 {
  font-family: "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
  text-align: center;
  font-size: 5rem;
  font-weight: 600;
  color: #29abe2;
  -webkit-margin-before: 11.5rem;
          margin-block-start: 11.5rem;
  text-transform: uppercase;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .AboutContent h3 {
    -webkit-margin-before: 6rem;
            margin-block-start: 6rem;
    font-size: 2.5rem;
  }
}

.AboutContent h3::after {
  display: block;
  content: "";
  width: 6rem;
  height: 0.5rem;
  background-color: #29abe2;
  margin-inline: auto;
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
  position: absolute;
  bottom: -3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .AboutContent h3::after {
    width: 3.2rem;
    height: 0.3rem;
    bottom: -2rem;
  }
}

.AboutContent p {
  font-family: "ZenKakuGothicNew-Medium";
  font-size: 3.5rem;
  line-height: 1.7142857143;
  text-align: center;
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
}
@media only screen and (max-width: 767px) {
  .AboutContent p {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.7333333333;
    -webkit-margin-before: 5rem;
            margin-block-start: 5rem;
  }
}

.MessageTextWrap {
  width: 100%;
  max-width: 87rem;
  margin-inline: auto;
}

.MessageText {
  width: 100%;
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
  font-size: 2.4rem;
  line-height: 2.7083333333;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .MessageText {
    font-size: 1.2rem;
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
  }
}

.MessagePerson {
  font-size: 3rem;
  text-align: right;
  -webkit-margin-before: 16rem;
          margin-block-start: 16rem;
}
@media only screen and (max-width: 767px) {
  .MessagePerson {
    font-size: 1.5rem;
    -webkit-margin-before: 8rem;
            margin-block-start: 8rem;
  }
}

.MessagePerson span {
  font-size: 1.8rem;
  -webkit-margin-end: 1.5rem;
          margin-inline-end: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .MessagePerson span {
    font-size: 0.9rem;
  }
}

.Inner.--marginBlockEnd {
  -webkit-margin-after: 16rem;
          margin-block-end: 16rem;
}
@media only screen and (max-width: 767px) {
  .Inner.--marginBlockEnd {
    -webkit-margin-after: 7rem;
            margin-block-end: 7rem;
  }
}

.PageTitle.--company {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 3rem;
}

.BGCurve {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  position: relative;
  -webkit-margin-before: -10rem;
          margin-block-start: -10rem;
  -webkit-padding-after: 8rem;
          padding-block-end: 8rem;
}
@media only screen and (max-width: 767px) {
  .BGCurve {
    -webkit-margin-before: -2rem;
            margin-block-start: -2rem;
  }
}

.AboutBottom {
  width: 100%;
  max-width: 1300px;
  padding-inline: 3rem;
  position: absolute;
  top: 27rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .AboutBottom {
    top: 5rem;
  }
}

.AboutAddress {
  width: 100%;
  width: 91.3rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .AboutAddress {
    width: 100%;
  }
}

.AboutAddress li dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  line-height: 1.6;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .AboutAddress li dl {
    font-size: 1.2rem;
    -webkit-column-gap: 2.7rem;
       -moz-column-gap: 2.7rem;
            column-gap: 2.7rem;
    font-weight: 700;
  }
}

.AboutAddress li dl dt {
  width: 12rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-transform: uppercase;
  -webkit-border-after: 1px solid;
          border-block-end: 1px solid;
  padding-block: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .AboutAddress li dl dt {
    width: 6.7rem;
  }
}

.AboutAddress li dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: 1.5rem;
  -webkit-border-after: 1px solid;
          border-block-end: 1px solid;
}

.AboutAddress li dl .AboutAddress--noBorder {
  border: none;
}

.AboutTel a {
  display: block;
  width: 100%;
}

.Map {
  width: 100%;
  -webkit-margin-before: 9rem;
          margin-block-start: 9rem;
}
@media only screen and (max-width: 767px) {
  .Map {
    -webkit-margin-before: 4.5rem;
            margin-block-start: 4.5rem;
    bottom: -15rem;
    width: 37.5rem;
    max-width: 550px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.Map iframe {
  width: 100%;
  aspect-ratio: 124/45;
}

.AboutTopSec {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
}

.FluidLarge {
  background-color: rgba(41, 171, 226, 0.15);
  -webkit-filter: blur(0.7rem);
          filter: blur(0.7rem);
  -webkit-animation: fluidRotate 20s ease 0s infinite;
          animation: fluidRotate 20s ease 0s infinite;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .FluidLarge {
    -webkit-filter: blur(0.3rem);
            filter: blur(0.3rem);
  }
}

.FluidLarge.--top {
  width: 37.5rem;
  height: 37.5rem;
  top: 15rem;
  right: 5rem;
}
@media only screen and (max-width: 767px) {
  .FluidLarge.--top {
    width: 15rem;
    height: 15rem;
    top: 2rem;
    right: 1rem;
  }
}

.FluidLarge.--center {
  width: 44rem;
  height: 44rem;
  top: 67rem;
  left: -11rem;
}
@media only screen and (max-width: 767px) {
  .FluidLarge.--center {
    width: 20rem;
    height: 20rem;
    top: 32rem;
    left: -5rem;
  }
}

.FluidLarge.--bottom {
  width: 28.5rem;
  height: 28.5rem;
  bottom: -18rem;
  right: 8rem;
}
@media only screen and (max-width: 767px) {
  .FluidLarge.--bottom {
    width: 10rem;
    height: 10rem;
    bottom: -7rem;
    right: 3rem;
  }
}

@-webkit-keyframes fluidRotate {
  0%, 100% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 54% 46%/41% 61% 39% 59%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

@keyframes fluidRotate {
  0%, 100% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 54% 46%/41% 61% 39% 59%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.FluidSmall {
  width: 13.9rem;
  height: 13.9rem;
  background-color: rgba(41, 226, 214, 0.15);
  -webkit-animation: fluidRotateVivid 12s infinite linear;
          animation: fluidRotateVivid 12s infinite linear;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .FluidSmall {
    width: 5rem;
    height: 5rem;
  }
}

.FluidLarge.--top .FluidSmall {
  bottom: -7rem;
  right: 26rem;
}
@media only screen and (max-width: 767px) {
  .FluidLarge.--top .FluidSmall {
    bottom: -2rem;
    right: 11rem;
  }
}

.FluidLarge.--center .FluidSmall {
  bottom: -3rem;
  right: -5rem;
}
@media only screen and (max-width: 767px) {
  .FluidLarge.--center .FluidSmall {
    bottom: -1rem;
    right: -1rem;
  }
}

.FluidLarge.--bottom .FluidSmall {
  top: -8rem;
  right: -4rem;
}
@media only screen and (max-width: 767px) {
  .FluidLarge.--bottom .FluidSmall {
    top: -3rem;
    right: -2rem;
  }
}

@-webkit-keyframes fluidRotateVivid {
  0%, 100% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  12% {
    border-radius: 68% 30% 60% 40%/60% 30% 70% 40%;
  }
  30% {
    border-radius: 72% 20% 70% 30%/60% 40% 70% 30%;
  }
  48% {
    border-radius: 40% 60% 80% 20%/30% 70% 50% 50%;
  }
  62% {
    border-radius: 70% 25% 35% 65%/78% 25% 70% 15%;
  }
  75% {
    border-radius: 60% 40% 25% 75%/35% 65% 20% 80%;
  }
  88% {
    border-radius: 55% 45% 65% 35%/40% 80% 20% 60%;
  }
}

@keyframes fluidRotateVivid {
  0%, 100% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  12% {
    border-radius: 68% 30% 60% 40%/60% 30% 70% 40%;
  }
  30% {
    border-radius: 72% 20% 70% 30%/60% 40% 70% 30%;
  }
  48% {
    border-radius: 40% 60% 80% 20%/30% 70% 50% 50%;
  }
  62% {
    border-radius: 70% 25% 35% 65%/78% 25% 70% 15%;
  }
  75% {
    border-radius: 60% 40% 25% 75%/35% 65% 20% 80%;
  }
  88% {
    border-radius: 55% 45% 65% 35%/40% 80% 20% 60%;
  }
}
.RecruitContent__Title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .RecruitContent__Title {
    font-size: 2.2rem;
  }
}

.RecruitContent__Text {
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 2.6086956522;
  -webkit-margin-before: 7rem;
          margin-block-start: 7rem;
}
@media only screen and (max-width: 767px) {
  .RecruitContent__Text {
    font-size: 1.3rem;
    line-height: 2.3076923077;
  }
}

.Inner.--marginBlockStart {
  -webkit-margin-before: 18rem;
          margin-block-start: 18rem;
}
@media only screen and (max-width: 767px) {
  .Inner.--marginBlockStart {
    -webkit-margin-before: 4.5rem;
            margin-block-start: 4.5rem;
  }
}

.RecruitStuffBG {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
}

.RecruitStuff {
  width: 100%;
  max-width: 1300px;
  padding-inline: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .RecruitStuff {
    row-gap: 1.3rem;
  }
}

.RecruitStuffCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .RecruitStuffCard {
    width: 100%;
  }
}

.Inner.--positionAbsolute {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .Inner.--positionAbsolute {
    bottom: 3rem;
  }
}

.DataBG {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
  -webkit-margin-before: -10rem;
          margin-block-start: -10rem;
  -webkit-padding-after: 20rem;
          padding-block-end: 20rem;
}
@media only screen and (max-width: 767px) {
  .DataBG {
    -webkit-margin-before: 9rem;
            margin-block-start: 9rem;
    -webkit-padding-after: 12rem;
            padding-block-end: 12rem;
  }
}

.DataWrap {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  -webkit-padding-start: 10rem;
          padding-inline-start: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  position: absolute;
  top: 17.5rem;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .DataWrap {
    -webkit-padding-start: 3rem;
            padding-inline-start: 3rem;
    top: -7rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.DataTextBox {
  width: 32rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.DataTitle {
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  line-height: 1.5;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .DataTitle {
    font-size: 2rem;
    line-height: 1.25;
  }
}

.DataText {
  -webkit-margin-before: 3.5rem;
          margin-block-start: 3.5rem;
  font-size: 2rem;
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  .DataText {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.DataSlider {
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}

.DataSliderBox {
  width: calc(100vw - 44rem);
  max-width: 1000px;
}
@media only screen and (max-width: 767px) {
  .DataSliderBox {
    width: 34.5rem;
  }
}

.SlideImage {
  width: 73rem;
}
@media only screen and (max-width: 767px) {
  .SlideImage {
    width: 27rem;
  }
}

.SwiperBtnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 11.6rem;
  position: relative;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-before: 8rem;
          margin-block-start: 8rem;
}
@media only screen and (max-width: 767px) {
  .SwiperBtnBox {
    width: 7.4rem;
    margin-inline: auto;
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
  }
}

.SwiperBtnBox .swiper-button-prev {
  width: 4.5rem;
  right: auto;
  left: unset;
}
@media only screen and (max-width: 767px) {
  .SwiperBtnBox .swiper-button-prev {
    width: 2.2rem;
  }
}

.SwiperBtnBox .swiper-button-next {
  width: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .SwiperBtnBox .swiper-button-next {
    width: 2.2rem;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.SingleResultHeader {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 7rem;
     -moz-column-gap: 7rem;
          column-gap: 7rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
}
@media only screen and (max-width: 767px) {
  .SingleResultHeader {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 2rem;
  }
}

.SingleResultHeaderImage {
  width: 62rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .SingleResultHeaderImage {
    width: 100%;
  }
}

.SingleResultHeaderTextBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.ResultTermBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .ResultTermBox {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}

.ResultTermBox__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 999px;
  background-color: #29abe2;
  color: #fff;
  padding: 0.8rem 1.5rem;
}
@media only screen and (max-width: 767px) {
  .ResultTermBox__item {
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
  }
}

.SingleResultHeader__title {
  font-size: 2rem;
  font-weight: 700;
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}
@media only screen and (max-width: 767px) {
  .SingleResultHeader__title {
    font-size: 1.5rem;
  }
}

.SingleResultHeader__comment {
  font-size: 1.8rem;
  line-height: 1.5;
  -webkit-margin-before: 7rem;
          margin-block-start: 7rem;
}
@media only screen and (max-width: 767px) {
  .SingleResultHeader__comment {
    font-size: 1.2rem;
    line-height: 1.4166666667;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.SingleResultContentWrap {
  width: 100%;
  -webkit-margin-before: 5.5rem;
          margin-block-start: 5.5rem;
  -webkit-border-before: 1px solid #000;
          border-block-start: 1px solid #000;
  -webkit-padding-after: 20rem;
          padding-block-end: 20rem;
}
@media only screen and (max-width: 767px) {
  .SingleResultContentWrap {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
    -webkit-padding-after: 4rem;
            padding-block-end: 4rem;
  }
}

.SingleResultContentWrap h4 {
  font-size: 3rem;
  font-weight: 700;
  color: #29abe2;
  -webkit-border-start: 2rem solid;
          border-inline-start: 2rem solid;
  -webkit-padding-start: 3rem;
          padding-inline-start: 3rem;
  -webkit-margin-before: 7rem;
          margin-block-start: 7rem;
}
@media only screen and (max-width: 767px) {
  .SingleResultContentWrap h4 {
    font-size: 1.2rem;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
    border: none;
    -webkit-padding-start: unset;
            padding-inline-start: unset;
  }
}

.SingleResultContentWrap p {
  font-size: 1.8rem;
  line-height: 1.5;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  -webkit-padding-start: 5rem;
          padding-inline-start: 5rem;
  -webkit-margin-after: 5.4rem;
          margin-block-end: 5.4rem;
}
@media only screen and (max-width: 767px) {
  .SingleResultContentWrap p {
    font-size: 1.2rem;
    line-height: 1.4166666667;
    -webkit-padding-start: unset;
            padding-inline-start: unset;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
}

.wp-block-image,
.wp-block-group {
  width: 85%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .wp-block-image,
  .wp-block-group {
    width: 100%;
  }
}

.ContactArea {
  width: 100%;
  background-color: #29abe2;
  -webkit-padding-before: 5.5rem;
          padding-block-start: 5.5rem;
  -webkit-padding-after: 4.6rem;
          padding-block-end: 4.6rem;
}

.PageTitle.--blue span {
  color: #29abe2;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
}

.ContactArea__text {
  font-size: 2.2rem;
  line-height: 1.3181818182;
  color: #fff;
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
}

@media only screen and (max-width: 767px) {
  .PageFV.--paddingBlockEnd {
    -webkit-padding-after: 3.5rem;
            padding-block-end: 3.5rem;
  }
}

.ResultTopText {
  font-size: 2.2rem;
  line-height: 2.2727272727;
}
@media only screen and (max-width: 767px) {
  .ResultTopText {
    font-size: 1.3rem;
    line-height: 1.9230769231;
  }
}

.ResultWrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 4rem;
  -webkit-margin-before: 10.5rem;
          margin-block-start: 10.5rem;
}
@media only screen and (max-width: 767px) {
  .ResultWrap {
    -webkit-margin-before: 3rem;
            margin-block-start: 3rem;
  }
}

.ResultCard {
  width: 60rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 2rem;
  padding: 3rem;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .ResultCard {
    width: 100%;
    padding: 1.5rem;
  }
}

.ResultCard:nth-of-type(odd) {
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
}
@media only screen and (max-width: 767px) {
  .ResultCard:nth-of-type(odd) {
    -webkit-transform: none;
            transform: none;
  }
}

.ResultCard__Image {
  width: 100%;
}

.ResultTermBox.--marginBlockStart {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .ResultTermBox.--marginBlockStart {
    -webkit-margin-before: 0.5rem;
            margin-block-start: 0.5rem;
  }
}

.SingleResultHeader__comment.--marginBlock {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}

.ResultBottom {
  -webkit-padding-after: 10rem;
          padding-block-end: 10rem;
}

.ResultBottomBG {
  position: relative;
}

.resultBottomLink {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 3rem;
  position: absolute;
  top: -5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .resultBottomLink {
    top: 4rem;
  }
}

.resultBottomLink__Text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #fff;
  row-gap: 1rem;
  position: absolute;
  top: 4rem;
  left: 3rem;
}
@media only screen and (max-width: 767px) {
  .resultBottomLink__Text {
    font-size: 1.3rem;
    letter-spacing: 1px;
    row-gap: 0.5rem;
    top: 8rem;
  }
}

.resultBottomLink__Text span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8rem 2rem;
  background-color: #29abe2;
}
@media only screen and (max-width: 767px) {
  .resultBottomLink__Text span {
    padding: 0.4rem 1rem;
  }
}

.PageLinkBtn.--marginInlineStart {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: unset;
          margin-inline-end: unset;
}

.Inner.--paddingBlockStart {
  -webkit-padding-before: 15rem;
          padding-block-start: 15rem;
}
@media only screen and (max-width: 767px) {
  .Inner.--paddingBlockStart {
    -webkit-padding-before: 8rem;
            padding-block-start: 8rem;
  }
}

.PageFV {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  -webkit-padding-after: 8rem;
          padding-block-end: 8rem;
  -webkit-margin-before: -10rem;
          margin-block-start: -10rem;
}
@media only screen and (max-width: 767px) {
  .PageFV {
    -webkit-margin-before: -2rem;
            margin-block-start: -2rem;
  }
}

.ServiceFVImage {
  position: relative;
  z-index: 1;
}

.ServiceWrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 1.8rem;
}

.Service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 61.1rem;
  height: 30rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .Service {
    width: 100%;
    height: 15.5rem;
  }
}

.Service__Card {
  width: 100%;
  position: relative;
  -webkit-border-before: 12px solid #29abe2;
          border-block-start: 12px solid #29abe2;
  background-color: #000;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .Service__Card {
    -webkit-border-before: 5px solid #29abe2;
            border-block-start: 5px solid #29abe2;
  }
}

.Service__Card::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(41, 171, 226, 0.5);
  position: absolute;
  bottom: 0;
  right: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.Service:hover {
  opacity: 1;
}

.Service:hover .Service__Card::after {
  right: 0;
}

.Service__Image {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.Service__Image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.Service__TextBox {
  color: #fff;
  position: absolute;
  top: 3.5rem;
  left: 2.5rem;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .Service__TextBox {
    top: 2rem;
    left: 1.4rem;
  }
}

.Service__Title {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 1.8px;
}
@media only screen and (max-width: 767px) {
  .Service__Title {
    font-size: 1.8rem;
  }
}

.Service__text {
  font-size: 2rem;
  letter-spacing: 1.8px;
  line-height: 1.25;
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}
@media only screen and (max-width: 767px) {
  .Service__text {
    font-size: 1.3rem;
    -webkit-margin-before: 1.5rem;
            margin-block-start: 1.5rem;
  }
}

.Service__arrow {
  width: 3rem;
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}
@media only screen and (max-width: 767px) {
  .Service__arrow {
    width: 2.2rem;
  }
}

.ServiceBottomLink {
  width: 100%;
  -webkit-padding-before: 7rem;
          padding-block-start: 7rem;
  -webkit-padding-after: 6.3rem;
          padding-block-end: 6.3rem;
  background-color: #29abe2;
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
}
@media only screen and (max-width: 767px) {
  .ServiceBottomLink {
    -webkit-padding-before: 4rem;
            padding-block-start: 4rem;
    -webkit-padding-after: 3.2rem;
            padding-block-end: 3.2rem;
  }
}

.ServiceBottomLink__text {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .ServiceBottomLink__text {
    font-size: 1.9rem;
    letter-spacing: unset;
  }
}

.ServiceBottomLink__Btn {
  width: 25.8rem;
  height: 8rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .ServiceBottomLink__Btn {
    width: 10.9rem;
    height: 3.5rem;
  }
}

.ServiceBottomLink__Link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 999px;
  background-color: #000;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
}
@media only screen and (max-width: 767px) {
  .ServiceBottomLink__Link {
    font-size: 1.3rem;
    -webkit-column-gap: 0.8rem;
       -moz-column-gap: 0.8rem;
            column-gap: 0.8rem;
    -webkit-margin-before: 2.3rem;
            margin-block-start: 2.3rem;
  }
}

.ServiceBottomLink__Link img {
  width: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .ServiceBottomLink__Link img {
    width: 1.9rem;
  }
}

.ContactTopText {
  font-size: 3.5rem;
  line-height: 1.7142857143;
  -webkit-margin-before: 10.5rem;
          margin-block-start: 10.5rem;
  -webkit-margin-after: 11rem;
          margin-block-end: 11rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .ContactTopText {
    font-size: 1.7rem;
    line-height: 1.7142857143;
    font-weight: 500;
    -webkit-margin-before: 5rem;
            margin-block-start: 5rem;
    -webkit-margin-after: 3rem;
            margin-block-end: 3rem;
  }
}

.wpcf7-form {
  -webkit-padding-after: 9.6rem;
          padding-block-end: 9.6rem;
}
@media only screen and (max-width: 767px) {
  .wpcf7-form {
    -webkit-padding-after: 4rem;
            padding-block-end: 4rem;
  }
}

.FormItem {
  width: 100%;
  max-width: 82.4rem;
  margin-inline: auto;
  font-size: 2rem;
  -webkit-margin-after: 4.4rem;
          margin-block-end: 4.4rem;
}
@media only screen and (max-width: 767px) {
  .FormItem {
    font-size: 1rem;
    -webkit-margin-after: 2.4rem;
            margin-block-end: 2.4rem;
  }
}

label.SelectItem > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.FormItem:not(:first-of-type) > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

span.Label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 16rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  span.Label {
    width: 8rem;
  }
}

span.required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.8rem 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #f15a24;
  border-radius: 5px;
  border: 1px solid;
  margin-inline: 3rem;
}
@media only screen and (max-width: 767px) {
  span.required {
    font-size: 1rem;
    padding: 0.5rem 0.5rem;
    margin-inline: 1rem;
  }
}

.wpcf7-form-control-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 55rem;
  height: 5.6rem;
  border-radius: 10px;
  background-color: #e6e6e6;
}
@media only screen and (max-width: 767px) {
  .wpcf7-form-control-wrap {
    width: 19rem;
    height: 2.8rem;
    border-radius: 5px;
  }
}

.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap input {
  width: 100%;
  height: 100%;
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}

.wpcf7-select.wpcf7-validates-as-required option:first-of-type {
  position: relative;
}

.wpcf7-select.wpcf7-validates-as-required option:first-of-type::after {
  display: block;
  content: "";
  width: 2rem;
  height: 2rem;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.FormItem label.TextArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

label.TextArea .wpcf7-form-control-wrap {
  height: 30rem;
}
@media only screen and (max-width: 767px) {
  label.TextArea .wpcf7-form-control-wrap {
    height: 15rem;
  }
}

label.TextArea .wpcf7-form-control-wrap textarea {
  width: 100%;
  height: 100%;
  padding: 1rem;
}

.FormItem.check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .FormItem.check {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.2rem;
    row-gap: 1.5rem;
    -webkit-padding-before: 1rem;
            padding-block-start: 1rem;
  }
}

.FormItem.check .wpcf7-form-control-wrap {
  background-color: unset;
  width: 13rem;
}

.FormItem.check input {
  width: unset;
}

.FormItem.check .wpcf7-list-item {
  height: 100%;
  -webkit-margin-start: 3.5rem;
          margin-inline-start: 3.5rem;
}

.FormItem.check .wpcf7-list-item-label {
  position: relative;
}

.FormItem.check .wpcf7-list-item-label::after {
  display: block;
  content: "";
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: -3.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .FormItem.check .wpcf7-list-item-label::after {
    width: 1.5rem;
    height: 1.5rem;
    top: 57%;
    left: -2rem;
  }
}

.FormItem.check .wpcf7-list-item-label::before {
  display: block;
  content: "";
  width: 1rem;
  height: 2rem;
  -webkit-border-after: 3px solid #000;
          border-block-end: 3px solid #000;
  -webkit-border-end: 3px solid #000;
          border-inline-end: 3px solid #000;
  position: absolute;
  top: 35%;
  left: -2.7rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .FormItem.check .wpcf7-list-item-label::before {
    width: 0.5rem;
    height: 1rem;
    top: 45%;
    left: -1.5rem;
    -webkit-border-after: 2px solid #000;
            border-block-end: 2px solid #000;
    -webkit-border-end: 2px solid #000;
            border-inline-end: 2px solid #000;
  }
}

.FormItem.check input:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}

.CheckText a {
  text-decoration: underline;
  padding-inline: 0.5rem;
}

.FormBtn {
  width: 34rem;
  height: 5.6rem;
  font-size: 2rem;
  color: #fff;
  margin-inline: auto;
  -webkit-margin-before: 9.5rem;
          margin-block-start: 9.5rem;
}
@media only screen and (max-width: 767px) {
  .FormBtn {
    font-size: 1.4rem;
    -webkit-margin-before: 3.5rem;
            margin-block-start: 3.5rem;
    height: 3.5rem;
    width: 100%;
  }
}

.FormBtn input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 22rem;
  height: 100%;
  background-color: #29abe2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  letter-spacing: 5px;
}
@media only screen and (max-width: 767px) {
  .FormBtn input {
    width: 15rem;
    margin-inline: auto;
    letter-spacing: 2px;
  }
}

a.TelLinkBtn {
  width: 34rem;
  height: 5.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #000;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 5px;
  margin-inline: auto;
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}
@media only screen and (min-width: 768px) {
  a.TelLinkBtn {
    pointer-events: none;
  }
}
@media only screen and (max-width: 767px) {
  a.TelLinkBtn {
    font-size: 1.4rem;
    width: 23rem;
    height: 3.5rem;
    letter-spacing: 2px;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.SingleNews {
  width: 108rem;
  margin-inline: auto;
  border-radius: 3rem;
  -webkit-box-shadow: 6px 6px 5px rgba(216, 216, 216, 0.75);
          box-shadow: 6px 6px 5px rgba(216, 216, 216, 0.75);
  position: relative;
  -webkit-padding-before: 12rem;
          padding-block-start: 12rem;
  padding-inline: 5rem;
  -webkit-padding-after: 4rem;
          padding-block-end: 4rem;
  -webkit-margin-before: -36.3rem;
          margin-block-start: -36.3rem;
  background-color: #fff;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .SingleNews {
    width: 100%;
    border-radius: 1rem;
    -webkit-box-shadow: 3px 3px 4px rgba(216, 216, 216, 0.75);
            box-shadow: 3px 3px 4px rgba(216, 216, 216, 0.75);
    -webkit-padding-before: 6.2rem;
            padding-block-start: 6.2rem;
    padding-inline: 2rem;
    -webkit-margin-before: -16.8rem;
            margin-block-start: -16.8rem;
  }
}

.SingleNews__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 29rem;
  height: 6.25rem;
  background-color: #29abe2;
  font-size: 2rem;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
}
@media only screen and (max-width: 767px) {
  .SingleNews__date {
    width: 14.5rem;
    height: 3.1rem;
    font-size: 1.2rem;
    border-top-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
}

.SingleNews__title {
  font-size: 3.3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .SingleNews__title {
    font-size: 1.6rem;
  }
}

.SingleNews__content {
  font-size: 2.2rem;
  line-height: 2.2727272727;
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
}
@media only screen and (max-width: 767px) {
  .SingleNews__content {
    font-size: 1.2rem;
    line-height: 1.8333333333;
    -webkit-margin-before: 3rem;
            margin-block-start: 3rem;
  }
}

.SingleNewsLinks {
  width: 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-before: 12rem;
          margin-block-start: 12rem;
}
@media only screen and (max-width: 767px) {
  .SingleNewsLinks {
    width: 12rem;
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
  }
}

.SingleNewsLinks a {
  width: 4.5rem;
  padding: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .SingleNewsLinks a {
    width: 1.8rem;
    padding: 0.2rem;
  }
}

.InterviewTopImage {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .InterviewTopImage {
    width: 37.5rem;
    position: absolute;
    top: -25rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.InterviewTitle {
  font-size: 4rem;
  font-weight: 700;
  color: #29abe2;
  text-align: center;
  -webkit-margin-before: 5.5rem;
          margin-block-start: 5.5rem;
}
@media only screen and (max-width: 767px) {
  .InterviewTitle {
    font-size: 1.5rem;
  }
}

.InterviewList {
  width: 100%;
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}

.InterviewListItem {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 1.5rem 3rem 2rem;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  -webkit-border-before: 3px solid #29abe2;
          border-block-start: 3px solid #29abe2;
}
@media only screen and (max-width: 767px) {
  .InterviewListItem {
    padding: 1rem;
    -webkit-border-before: 1px solid #29abe2;
            border-block-start: 1px solid #29abe2;
  }
}

.InterviewListItem:nth-of-type(even) {
  background-color: #e6f5fb;
}

.InterviewListItem dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.5rem;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .InterviewListItem dl {
    font-size: 1.3rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}

.InterviewListItem dl dt {
  width: 36rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #29abe2;
}
@media only screen and (max-width: 767px) {
  .InterviewListItem dl dt {
    width: 7rem;
  }
}

.InterviewListItem dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bold;
  line-height: 1.64;
}
@media only screen and (max-width: 767px) {
  .InterviewListItem dl dd {
    font-weight: 500;
  }
}

.Inner.--marginBlockStartMinusSP {
  position: relative;
  -webkit-margin-before: -36rem;
          margin-block-start: -36rem;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .Inner.--marginBlockStartMinusSP {
    -webkit-margin-before: 9.5rem;
            margin-block-start: 9.5rem;
  }
}

.InterviewLists {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
  row-gap: 5rem;
}

.FrontInterviewCard.--narrow {
  width: 37rem;
}
@media only screen and (max-width: 767px) {
  .FrontInterviewCard.--narrow {
    width: 100%;
  }
}

.Inner.--marginBlockStartMinus {
  position: relative;
  -webkit-margin-before: -36rem;
          margin-block-start: -36rem;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .Inner.--marginBlockStartMinus {
    -webkit-margin-before: -13rem;
            margin-block-start: -13rem;
  }
}

.PrivacyContent {
  width: 100%;
  max-width: 82.4rem;
  margin-inline: auto;
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
  -webkit-margin-after: 4.4rem;
          margin-block-end: 4.4rem;
}

.PrivacyContent__Title {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .PrivacyContent__Title {
    font-size: 2.4rem;
  }
}

.PrivacyContent__Text {
  font-size: 2rem;
  line-height: 1.8;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}
@media only screen and (max-width: 767px) {
  .PrivacyContent__Text {
    font-size: 1.6rem;
  }
}

.PrivacyContent__Bold {
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
  font-weight: 700;
}

.PrivacyContent__SectionTitle {
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  -webkit-margin-before: 3.2rem;
          margin-block-start: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .PrivacyContent__SectionTitle {
    font-size: 1.8rem;
  }
}

.PrivacyContent__List {
  font-size: 1.8rem;
  line-height: 1.6;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  list-style-type: disc;
  -webkit-padding-start: 2.8rem;
          padding-inline-start: 2.8rem;
}
@media only screen and (max-width: 767px) {
  .PrivacyContent__List {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */