@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  color: #202020;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6em;
  line-height: 1.6;
  margin: 0 auto;
  outline: none;
  overflow-x: hidden;
  overflow-wrap: break-word;
  overflow-wrap: anywhere; /* 優先 収まらない場合に折り返す */
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  padding: 0;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-touch-callout: none;
  word-break: break-word;
  /* Chromeでクリックすると画像が青くなる対策 */
}

.sp_hide {
  display: block;
}
@media (max-width: 1024px) {
  .sp_hide {
    display: none;
  }
}

.pc_hide {
  display: none;
}
@media (max-width: 1024px) {
  .pc_hide {
    display: block;
  }
}

.header {
  background: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 3px 10px;
          box-shadow: rgba(0, 0, 0, 0.1) 0 3px 10px;
  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;
  font-weight: bold;
  height: 80px;
  padding: 0 80px;
  padding: 0 4.2vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media (max-width: 1024px) {
  .header {
    height: calc(56 / 375 * 100vw);
  }
}
.header__logo {
  width: 180px;
}
@media (max-width: 1024px) {
  .header__logo {
    width: calc(100 / 375 * 100vw);
  }
}
.header__logo a {
  display: inline-block;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .header__nav-list {
    position: absolute;
    top: 0;
    left: 0;
    background: #00174D;
    color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: calc(16 / 375 * 100vw);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    height: 100vh;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    visibility: hidden;
    width: 100%;
  }
  .active .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
    visibility: visible;
  }
}
.header__nav-item {
  margin-right: 56px;
  text-align: center;
}
@media (max-width: 1024px) {
  .header__nav-item {
    margin: calc(16 / 375 * 100vw) 0;
  }
}
.header__nav-item a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__nav-item a:hover {
  color: #074D94;
}
.header__cta {
  background: -webkit-gradient(linear, left top, right top, from(#00174D), to(#074D94));
  background: linear-gradient(90deg, #00174D, #074D94);
  color: #fff;
  border-radius: 28px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 200px;
}
@media (max-width: 1024px) {
  .header__cta {
    background: none;
    height: auto;
    line-height: inherit;
    margin: calc(16 / 375 * 100vw) 0;
    width: inherit;
  }
}
.header__cta:hover {
  color: #fff;
  opacity: 0.8;
}
.header__cta a {
  display: inline-block;
  height: 100%;
  width: 100%;
}
.header__cta img {
  margin-left: 5px;
  padding-bottom: 3px;
  width: 17px;
}
@media (max-width: 1024px) {
  .header__cta img {
    display: none;
  }
}
.header__hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .header__hamburger {
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/icon_hamburger_open.svg) no-repeat center center/cover;
    content: "";
    display: block;
    height: calc(56 / 375 * 100vw);
    width: calc(56 / 375 * 100vw);
  }
  .active .header__hamburger {
    background: url(../images/icon_hamburger_close.svg) no-repeat center center/cover;
  }
}

.cta {
  text-align: center;
  padding: 72px 0 80px;
  position: relative;
}
@media (max-width: 1024px) {
  .cta {
    padding: calc(40 / 375 * 100vw) calc(15 / 375 * 100vw) calc(40 / 375 * 100vw);
  }
}
.cta::before {
  position: absolute;
  right: -20px;
  bottom: 0px;
  background: url(../images/img_cta_bg.svg) no-repeat center center/cover;
  content: "";
  height: 7.8vw;
  width: 38.6vw;
  z-index: -1;
}
@media (max-width: 1024px) {
  .cta::before {
    position: absolute;
    right: calc(-2 / 375 * 100vw);
    bottom: calc(-2 / 375 * 100vw);
    height: 9.8vw;
    width: 48.6vw;
  }
}
.cta.pages {
  background: #F9F9F9;
}
.cta.pages::before {
  background: url(../images/img_cta_bg_white.svg) no-repeat center center/cover;
  z-index: 1;
}
.cta__title {
  color: #00174D;
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .cta__title {
    font-size: calc(20 / 375 * 100vw);
  }
}
.cta__text {
  font-size: 16px;
  margin: 24px 0 32px;
}
@media (max-width: 1024px) {
  .cta__text {
    font-size: calc(14 / 375 * 100vw);
    margin: calc(16 / 375 * 100vw) 0 calc(24 / 375 * 100vw);
  }
}
.cta__link {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#00174D), to(#074D94));
  background: linear-gradient(90deg, #00174D, #074D94);
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
          box-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
  border-radius: 40px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 0 20px;
  position: relative;
  margin: 0 auto;
  line-height: 72px;
  height: 72px;
  max-width: 520px;
  width: 80%;
  z-index: 2;
}
.cta__link:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .cta__link {
    border-radius: calc(40 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(56 / 375 * 100vw);
    height: calc(56 / 375 * 100vw);
    max-width: 100%;
  }
}

.footer {
  background: #00174D;
  color: #fff;
  padding: 56px 0 96px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .footer {
    padding: calc(40 / 375 * 100vw) 0 calc(64 / 375 * 100vw);
  }
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .footer__links {
    font-size: calc(14 / 375 * 100vw);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-top: 0;
  }
}
.footer__links li + li {
  margin-left: 56px;
}
@media (max-width: 1024px) {
  .footer__links li + li {
    margin: calc(16 / 375 * 100vw) 0 0;
  }
}
.footer__links a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.footer__links a:hover {
  opacity: 0.8;
}
.footer__copyright {
  position: absolute;
  bottom: 10px;
  left: 50%;
  display: block;
  font-size: 12px;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .footer__copyright {
    font-size: calc(10 / 375 * 100vw);
  }
}

.img {
  z-index: 2;
}
.img__bg0, .img__bg1, .img__bg2, .img__bg3, .img__bg4 {
  z-index: 2;
}
.img__bg0 {
  display: none;
}
@media (max-width: 1024px) {
  .img__bg0 {
    position: absolute;
    top: 3.5%;
    left: -10%;
    display: block;
    -webkit-transform: rotate(36deg);
            transform: rotate(36deg);
    width: calc(100 / 375 * 100vw);
  }
}
.img__bg1 {
  position: absolute;
  top: 17.5%;
  right: -5%;
}
@media (max-width: 1024px) {
  .img__bg1 {
    position: absolute;
    top: 18.5%;
    right: -11%;
    width: calc(120 / 375 * 100vw);
  }
  .img__bg1.service {
    top: 4.5%;
  }
  .img__bg1.company {
    top: 13.5%;
  }
  .img__bg1.privacy, .img__bg1.contact {
    display: none;
  }
}
.img__bg2 {
  position: absolute;
  top: 30%;
  left: -5%;
}
.img__bg2.company {
  top: 60%;
}
@media (max-width: 1024px) {
  .img__bg2 {
    position: absolute;
    top: 36%;
    right: -9%;
    width: calc(90 / 375 * 100vw);
  }
  .img__bg2.service {
    top: 31%;
  }
  .img__bg2.company {
    top: 55.5%;
  }
  .img__bg2.privacy, .img__bg2.contact {
    display: none;
  }
}
.img__bg3 {
  position: absolute;
  top: 60%;
  right: -5%;
}
@media (max-width: 1024px) {
  .img__bg3 {
    position: absolute;
    top: 67%;
    right: -13%;
    width: calc(120 / 375 * 100vw);
  }
  .img__bg3.service {
    top: 52.5%;
  }
  .img__bg3.privacy, .img__bg3.contact {
    display: none;
  }
}
.img__bg4 {
  position: absolute;
  top: 78%;
  left: -5%;
}
@media (max-width: 1024px) {
  .img__bg4 {
    position: absolute;
    top: 76%;
    right: -8%;
    width: calc(100 / 375 * 100vw);
  }
  .img__bg4.service {
    top: 83%;
    left: -9%;
  }
  .img__bg4.privacy, .img__bg4.contact {
    display: none;
  }
}

.hero {
  background: url("../images/mv_pc.png") no-repeat center center/cover;
  color: #fff;
  height: 725px;
  position: relative;
  margin-top: 80px;
  width: 100%;
}
.hero.scale_up {
  background-size: 100%;
}
@media (max-width: 1024px) {
  .hero {
    background: url("../images/mv_sp.png") no-repeat center center/cover;
    margin-top: calc(56 / 375 * 100vw);
    height: calc(480 / 375 * 100vw);
  }
  .hero.scale_up {
    background-size: 100%;
  }
}
.hero__content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 40px;
  opacity: 0;
}
@media (max-width: 1024px) {
  .hero__content {
    top: calc(50% / 375 * 100vw);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.hero__title {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.04em;
  position: relative;
  padding: 0 35px 5px;
  max-width: 730px;
  margin: 0 0 24px 0;
  width: 100%;
  z-index: 2;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: min(22 / 375 * 100vw, 48px);
    margin: 0 auto;
    text-align: center;
    padding: 0 calc(10 / 375 * 100vw) calc(3 / 375 * 100vw);
    width: calc(330 / 375 * 100vw);
  }
}
.hero__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, from(#00174D), to(#074D94));
  background: linear-gradient(90deg, #00174D, #074D94);
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  height: 100%;
  width: 100%;
}
.hero__title::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: -2;
  background: #fff;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  height: 100%;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero__title::after {
    top: calc(4 / 375 * 100vw);
    left: calc(4 / 375 * 100vw);
  }
}
.hero__text {
  text-shadow: rgba(0, 23, 77, 0.7) 0 0 15px;
  margin-left: 35px;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .hero__text {
    color: #00174D;
    font-size: calc(14 / 375 * 100vw);
    font-size: min(14 / 375 * 100vw, 24px);
    text-align: center;
    text-shadow: none;
    line-height: 1.6;
    margin: calc(12 / 375 * 100vw) auto 0;
    width: 80%;
  }
}

.service {
  text-align: center;
  padding: 80px 20px;
}
@media (max-width: 1024px) {
  .service {
    padding: calc(30 / 375 * 100vw) calc(15 / 375 * 100vw);
  }
}
.service__heading {
  color: #00174D;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .service__heading {
    font-size: calc(20 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.service__text {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .service__text {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
    line-height: 1.8;
  }
}
.service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media (max-width: 1024px) {
  .service__items {
    gap: calc(15 / 375 * 100vw);
  }
}
.service__item {
  background: -webkit-gradient(linear, left top, right top, from(#00174D), to(#074D94));
  background: linear-gradient(90deg, #00174D, #074D94);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 160px;
  width: 160px;
}
@media (max-width: 1024px) {
  .service__item {
    height: calc(100 / 375 * 100vw);
    width: calc(100 / 375 * 100vw);
  }
}
.service__item .service__icon {
  display: block;
  margin: 0 auto;
  height: auto;
  padding-left: 7px;
  width: 80px;
}
@media (max-width: 1024px) {
  .service__item .service__icon {
    width: calc(50 / 375 * 100vw);
  }
}
.service__item .service__text {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin: 1px 0 10px 2px;
}
@media (max-width: 1024px) {
  .service__item .service__text {
    font-size: calc(13 / 375 * 100vw);
  }
}

.business {
  background: #F9F9F9;
  -webkit-clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
          clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
  padding: 144px 20px;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 1024px) {
  .business {
    -webkit-clip-path: polygon(0 3%, 100% 0, 100% 97%, 0% 100%);
            clip-path: polygon(0 3%, 100% 0, 100% 97%, 0% 100%);
    padding: calc(80 / 375 * 100vw) calc(15 / 375 * 100vw);
  }
}
.business::before {
  position: absolute;
  top: 70px;
  right: -20px;
  background: url(../images/img_service_bg.svg) no-repeat center center/cover;
  content: "";
  height: 8.1vw;
  width: 36vw;
}
@media (max-width: 1024px) {
  .business::before {
    position: absolute;
    top: calc(100 / 375 * 100vw);
    right: calc(-10 / 375 * 100vw);
    height: 11.1vw;
    width: 50vw;
    z-index: -1;
  }
}
.business__heading {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 56px;
  position: relative;
}
@media (max-width: 1024px) {
  .business__heading {
    font-size: calc(20 / 375 * 100vw);
    margin: 0 auto calc(24 / 375 * 100vw);
  }
}
.business__heading::before {
  background: url(../images/img_service_sub.svg) no-repeat center center/cover;
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 12px;
  width: 57px;
}
.business__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 64px;
  max-width: 960px;
  margin: 0 auto;
  width: 90%;
}
@media (max-width: 1024px) {
  .business__content {
    gap: calc(20 / 375 * 100vw);
    width: 100%;
  }
}
.business__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 64px;
}
@media (max-width: 1024px) {
  .business__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(16 / 375 * 100vw) 0;
  }
}
.business__item:nth-child(odd) .business__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.business__item:nth-child(odd) .business__inner {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.business__item:nth-child(even) .business__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1024px) {
  .business__item:nth-child(even) .business__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.business__item:nth-child(even) .business__inner {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1024px) {
  .business__item:nth-child(even) .business__inner {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.business__item .business__image {
  max-width: 555px;
  width: 58%;
  height: auto;
}
@media (max-width: 1024px) {
  .business__item .business__image {
    max-width: 100%;
    width: 100%;
  }
}
.business__item .business__num {
  height: auto;
  width: 40px;
}
@media (max-width: 1024px) {
  .business__item .business__num {
    width: calc(30 / 375 * 100vw);
  }
}
.business__item .business__title {
  font-weight: bold;
  font-size: 24px;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .business__item .business__title {
    font-size: calc(18 / 375 * 100vw);
    margin-top: calc(5 / 375 * 100vw);
  }
}
.business__item .business__text {
  margin-top: 5px;
}
@media (max-width: 1024px) {
  .business__item .business__text {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(4 / 375 * 100vw);
  }
}
.business__link {
  background: #fff;
  border: #00174D solid 2px;
  border-radius: 36px;
  color: #00174D;
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin: 120px auto 0;
  text-align: center;
  line-height: 72px;
  height: 72px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  width: 360px;
}
@media (max-width: 1024px) {
  .business__link {
    border: #00174D solid calc(2 / 375 * 100vw);
    border-radius: calc(36 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    height: calc(56 / 375 * 100vw);
    line-height: calc(52 / 375 * 100vw);
    max-width: calc(320 / 375 * 100vw);
    margin: calc(40 / 375 * 100vw) auto 0;
    width: 80%;
  }
}
.business__link::after {
  background: url(../images/icon_arrow.svg) no-repeat center center/cover;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  height: 14px;
  width: 8px;
}
@media (max-width: 1024px) {
  .business__link::after {
    height: calc(14 / 375 * 100vw);
    width: calc(8 / 375 * 100vw);
  }
}
.business__link:hover {
  opacity: 0.8;
}

.headline {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 320px;
  margin-top: 80px;
  width: 100%;
}
@media (max-width: 1024px) {
  .headline {
    margin-top: calc(56 / 375 * 100vw);
    height: calc(160 / 375 * 100vw);
  }
}
.headline.service {
  background: url("../images/img_headline_service.png") no-repeat center center/cover;
}
.headline.company {
  background: url("../images/img_headline_company.png") no-repeat center center/cover;
}
.headline.contact {
  background: url("../images/img_headline_contact.png") no-repeat center center/cover;
}
.headline.privacy {
  background: url("../images/img_headline_privacy.png") no-repeat center center/cover;
}
.headline__title {
  text-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
  position: relative;
  opacity: 0;
  width: 100%;
}
@media (max-width: 1024px) {
  .headline__title {
    font-size: calc(20 / 375 * 100vw);
  }
}
.headline__title::before {
  position: absolute;
  top: -15px;
  left: 50%;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.service .headline__title::before {
  background: url(../images/img_pages_service_sub.svg) no-repeat center center/cover;
  height: 33px;
  width: 90px;
}
@media (max-width: 1024px) {
  .service .headline__title::before {
    height: calc(17 / 375 * 100vw);
    width: calc(56 / 375 * 100vw);
    top: calc(-10 / 375 * 100vw);
  }
}
.company .headline__title::before {
  background: url(../images/img_pages_company_sub.svg) no-repeat center center/cover;
  height: 19px;
  top: -10px;
  width: 94px;
}
@media (max-width: 1024px) {
  .company .headline__title::before {
    height: calc(10 / 375 * 100vw);
    width: calc(52 / 375 * 100vw);
    top: calc(-8 / 375 * 100vw);
  }
}
.contact .headline__title::before {
  background: url(../images/img_pages_contact_sub.svg) no-repeat center center/cover;
  height: 15px;
  top: -10px;
  width: 76px;
}
@media (max-width: 1024px) {
  .contact .headline__title::before {
    height: calc(8 / 375 * 100vw);
    width: calc(42 / 375 * 100vw);
    top: calc(-8 / 375 * 100vw);
  }
}
.privacy .headline__title::before {
  background: url(../images/img_pages_privacy_sub.svg) no-repeat center center/cover;
  height: 19px;
  top: -10px;
  width: 136px;
}
@media (max-width: 1024px) {
  .privacy .headline__title::before {
    height: calc(10 / 375 * 100vw);
    width: calc(80 / 375 * 100vw);
    top: calc(-8 / 375 * 100vw);
  }
}

.pages__service {
  padding: 80px 20px 120px;
  margin: 0 auto;
  max-width: 960px;
  width: 90%;
}
@media (max-width: 1024px) {
  .pages__service {
    padding: calc(40 / 375 * 100vw) calc(15 / 375 * 100vw) calc(80 / 375 * 100vw);
    width: 100%;
  }
}
.pages__service__heading {
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 24px;
  position: relative;
}
@media (max-width: 1024px) {
  .pages__service__heading {
    font-size: calc(20 / 375 * 100vw);
  }
}
.pages__service__heading::before, .pages__service__heading::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  height: 3px;
}
.pages__service__heading::before {
  background: #E5E5E5;
  width: 100%;
}
.pages__service__heading::after {
  background: #074D94;
  width: 20%;
}
.pages__service__text {
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .pages__service__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.6;
  }
}
.pages__service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 64px;
  margin: 48px auto 56px;
  width: 100%;
}
@media (max-width: 1024px) {
  .pages__service__content {
    gap: calc(24 / 375 * 100vw);
    margin: calc(24 / 375 * 100vw) auto calc(32 / 375 * 100vw);
    width: 100%;
  }
}
.pages__service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 64px;
}
@media (max-width: 1024px) {
  .pages__service__item {
    -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;
    gap: calc(16 / 375 * 100vw) 0;
  }
}
.pages__service__item:nth-child(odd) .pages__service__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.pages__service__item:nth-child(odd) .pages__service__inner {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.pages__service__item:nth-child(even) .pages__service__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1024px) {
  .pages__service__item:nth-child(even) .pages__service__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.pages__service__item:nth-child(even) .pages__service__inner {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1024px) {
  .pages__service__item:nth-child(even) .pages__service__inner {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.pages__service__item .pages__service__image {
  max-width: 555px;
  width: 58%;
  height: auto;
}
@media (max-width: 1024px) {
  .pages__service__item .pages__service__image {
    max-width: 100%;
    width: 100%;
  }
}
.pages__service__item .pages__service__num {
  height: auto;
  width: 40px;
}
@media (max-width: 1024px) {
  .pages__service__item .pages__service__num {
    width: calc(30 / 375 * 100vw);
  }
}
.pages__service__item .pages__service__title {
  margin-top: 10px;
  font-weight: bold;
  font-size: 22px;
}
@media (max-width: 1024px) {
  .pages__service__item .pages__service__title {
    font-size: calc(18 / 375 * 100vw);
    margin-top: calc(5 / 375 * 100vw);
  }
}
.pages__service__item .pages__service__detail {
  margin-top: 5px;
  text-indent: -1em;
  padding-left: 1em;
}
@media (max-width: 1024px) {
  .pages__service__item .pages__service__detail {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(4 / 375 * 100vw);
  }
}
.pages__service__marketing {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .pages__service__marketing {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(40 / 375 * 100vw) 0;
    margin-top: calc(20 / 375 * 100vw);
  }
}
.pages__service__marketing .pages__service__img__wrap {
  position: relative;
  width: calc((100% - 40px) / 3);
}
@media (max-width: 1024px) {
  .pages__service__marketing .pages__service__img__wrap {
    width: 100%;
  }
}
.pages__service__marketing .pages__service__img__wrap:nth-of-type(1)::after, .pages__service__marketing .pages__service__img__wrap:nth-of-type(2)::after, .pages__service__marketing .pages__service__img__wrap:nth-of-type(3)::after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  display: inline-block;
  font-weight: bold;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .pages__service__marketing .pages__service__img__wrap:nth-of-type(1)::after, .pages__service__marketing .pages__service__img__wrap:nth-of-type(2)::after, .pages__service__marketing .pages__service__img__wrap:nth-of-type(3)::after {
    bottom: calc(-24 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
}
.pages__service__marketing .pages__service__img__wrap:nth-of-type(1)::after {
  content: "WEB制作";
}
.pages__service__marketing .pages__service__img__wrap:nth-of-type(2)::after {
  content: "動画制作";
}
.pages__service__marketing .pages__service__img__wrap:nth-of-type(3)::after {
  content: "SNSプロモーション";
}

.company__info {
  margin: 80px auto 120px;
  border-collapse: collapse;
  border: 1px solid #E5E5E5;
  max-width: 800px;
  width: 80%;
}
@media (max-width: 1024px) {
  .company__info {
    font-size: calc(14 / 375 * 100vw);
    margin: calc(40 / 375 * 100vw) auto calc(60 / 375 * 100vw);
    width: 90%;
  }
}
.company__info__table {
  width: 100%;
  border-collapse: collapse;
}
.company__info__row {
  border-bottom: 1px solid #E5E5E5;
}
.company__info__header {
  background-color: #00174D;
  color: white;
  font-weight: bold;
  padding: 24px;
  text-align: left;
  vertical-align: middle;
  width: 30%;
}
@media (max-width: 1024px) {
  .company__info__header {
    padding: calc(16 / 375 * 100vw);
  }
}
.company__info__data {
  padding: 24px;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 1024px) {
  .company__info__data {
    padding: calc(16 / 375 * 100vw);
  }
}

.privacy__info {
  max-width: 800px;
  margin: 80px auto 120px;
  width: 80%;
}
@media (max-width: 1024px) {
  .privacy__info {
    margin: calc(40 / 375 * 100vw) auto calc(60 / 375 * 100vw);
    padding: 0 calc(15 / 375 * 100vw);
    width: 100%;
  }
}
.privacy__info__heading {
  font-size: 20px;
  font-weight: bold;
  margin: 32px auto 24px;
  position: relative;
}
@media (max-width: 1024px) {
  .privacy__info__heading {
    font-size: calc(16 / 375 * 100vw);
    margin: calc(24 / 375 * 100vw) auto calc(20 / 375 * 100vw);
  }
}
.privacy__info__heading::before, .privacy__info__heading::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  height: 3px;
}
.privacy__info__heading::before {
  background: #E5E5E5;
  width: 100%;
}
.privacy__info__heading::after {
  background: #074D94;
  width: 20%;
}
.privacy__info ul {
  list-style: disc;
  margin-left: 20px;
}
@media (max-width: 1024px) {
  .privacy__info ul {
    font-size: calc(14 / 375 * 100vw);
  }
}
.privacy__info p {
  margin: 10px 0;
}
@media (max-width: 1024px) {
  .privacy__info p {
    font-size: calc(14 / 375 * 100vw);
  }
}

.contact__form__complete {
  height: calc(100vh - 600px);
  padding: 80px 0 0;
  margin: 0 auto;
  max-width: 800px;
  width: 80%;
}
.contact__form__complete p {
  text-align: center;
}