@charset "UTF-8";
.anim {
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim--slow {
  animation-duration: 1s !important;
}

.anim--delay {
  animation-delay: 0.3s !important;
}

.anim-fadeIn {
  opacity: 0;
}
.anim-fadeIn.onAnim {
  animation: fadeIn 0.6s ease 0s 1 alternate forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeUp {
  opacity: 0;
}
.anim-fadeUp.onAnim {
  animation: fadeUp 0.6s ease 0s 1 alternate forwards;
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeLeft {
  opacity: 0;
}
.anim-fadeLeft.onAnim {
  animation: fadeLeft 0.6s ease 0s 1 alternate forwards;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeRight {
  opacity: 0;
}
.anim-fadeRight.onAnim {
  animation: fadeRight 0.6s ease 0s 1 alternate forwards;
}

img {
  display: block;
  max-width: 100%;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:-moz-placeholder-shown {
  color: #ccc;
}

:placeholder-shown {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
}

a {
  color: #3c3c3c;
}
@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}

html {
  font-size: 20px;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

body {
  font-size: 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  color: #3c3c3c;
  overscroll-behavior: none;
}
body.hide {
  overflow: hidden;
}
body figure {
  margin: 0;
}

.o_sp {
  display: none !important;
}

.o_sp2 {
  display: none !important;
}

.hiddenBox {
  overflow: hidden;
}

.textRight {
  text-align: right;
}

.mainHeader {
  top: 0;
  left: 0;
  z-index: 9999;
  position: fixed;
  transition: all 0.3s ease 0s;
  width: 100%;
}
.mainHeader:hover {
  text-decoration: none;
}
.mainHeader:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #07354E;
  opacity: 0.64;
}
.mainHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 10px 40px;
}
.mainHeader__logo {
  width: 218px;
  margin-right: 1em;
  transition: all 0.3s ease 0s;
}
.mainHeader__logo:hover {
  text-decoration: none;
}
.mainHeader__logo a {
  transition: opacity 0.3s ease 0s;
  display: block;
  width: 100%;
}
@media (hover: hover) {
  .mainHeader__logo a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.mainHeader__logo a img {
  width: 100%;
}

.gNav__mainNav__list {
  display: flex;
}
.gNav__mainNav__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gNav__mainNav__item a {
  font-size: 18px;
  padding: 1em 1.2em;
  transition: all 0.3s ease 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.gNav__mainNav__item a:hover {
  text-decoration: none;
}
.gNav__mainNav__item a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.spBT {
  display: none;
}

.footContact {
  padding: 125px 0 105px;
  background-color: #07354E;
  color: #fff;
}
.footContact__lead {
  text-align: center;
  margin: 3em 0 4.5em;
}
.footContact__bt {
  background: linear-gradient(-90deg, #d8297d 0%, #13c7ce 100%);
  color: #fff;
  max-width: 578px;
  margin: 0 auto;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  line-height: 1.4;
  font-size: 38px;
  letter-spacing: 0.04em;
  transition: opacity 0.3s ease 0s;
}
@media (hover: hover) {
  .footContact__bt:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.footContact__bt:before {
  content: "";
  width: 48px;
  height: 34px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/ic_contact.svg);
  margin-right: 0.6em;
}

.footCredit {
  line-height: 1.4;
  padding: 0.8em;
  background-color: #07354E;
  color: #fff;
  text-align: center;
  display: block;
  border-top: 1px solid #fff;
  letter-spacing: 0.04em;
}

.inner {
  width: 100%;
  max-width: 980px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
}
.inner--large {
  max-width: 1140px;
}

@keyframes scBT {
  0% {
    transform: scaleY(0);
    transform-origin: top center;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top center;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom center;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom center;
  }
}
.topFirstView {
  height: 100%;
  height: 100svh;
  height: calc(var(--vh) * 100);
  background-color: #07354E;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/top/fv_bg.jpg);
  transition: opacity 1s ease 0.2s;
  opacity: 0;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.topFirstView__lead {
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  font-size: 51px;
}
.topFirstView__scroll {
  position: absolute;
  bottom: 0.4em;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease 0s;
  color: #fff;
}
@media (hover: hover) {
  .topFirstView__scroll:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.topFirstView__scroll__text {
  text-align: center;
  font-size: 1.4em;
}
.topFirstView__scroll__bar {
  width: 1px;
  height: 3.5em;
  background-color: #fff;
  animation: scBT 2s ease-in-out 0s infinite;
}
.topFirstView.loaded {
  opacity: 1;
}

.topGoal {
  padding: 140px 0 120px;
}
.topGoal__lead {
  margin: 2.6rem 0 3rem;
  font-weight: bold;
  text-align: center;
}
.topGoal__lead__main {
  font-size: 45px;
  line-height: 1.4;
  margin-bottom: 0.3em;
}
.topGoal__lead__sub {
  font-size: 27px;
}

.topCeo {
  padding: 170px 0 150px;
  background-color: #07354E;
  color: #fff;
}
.topCeo a {
  color: #fff;
}
.topCeo__person {
  margin: 3.3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: bold;
}
.topCeo__person img {
  width: 255px;
}
.topCeo__person figcaption {
  font-weight: bold;
  margin-top: 0.65em;
  font-size: 1.25em;
}
.topCeo__section {
  margin-top: 5.5rem;
  max-width: 724px;
  margin-left: auto;
  margin-right: auto;
}
.topCeo__section__heading {
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.4em;
}
.topCeo__section__list {
  line-height: 2;
}
.topCeo__section__list__row {
  display: flex;
  justify-content: space-between;
}
.topCeo__section__list__row dt {
  width: 8em;
  flex-shrink: 0;
}
.topCeo__section__list__row dd {
  width: 100%;
}
.topCeo__section__list__row dd.flex {
  display: flex;
}
.topCeo__section__list__row dd.flex span {
  width: 4em;
  flex-shrink: 0;
}

.topClients {
  padding: 150px 0 156px;
}
.topClients__list {
  margin-top: 4rem;
  gap: 2rem;
  display: flex;
  flex-direction: column;
}
.topClients__list__item {
  display: flex;
  justify-content: space-between;
}
.topClients__list__img {
  width: 28%;
}
.topClients__list__content {
  width: 67%;
  line-height: 1.5;
}
.topClients__list__heading {
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 0.2em;
}

.topPrice {
  padding: 120px 0 160px;
  background-color: #070210;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/top/price_bg.jpg);
}
.topPrice__lead {
  text-align: center;
  margin: 2rem 0 3.4rem;
}
.topPrice__plan {
  display: flex;
  justify-content: space-between;
}
.topPrice__plan__item {
  width: calc((100% - 12px) / 3);
  display: flex;
  flex-direction: column;
}
.topPrice__plan__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background: linear-gradient(-90deg, #d8297d 0%, #13c7ce 100%);
  opacity: 0.95;
  font-size: 21px;
  line-height: 1.6;
}
.topPrice__plan__heading strong {
  font-size: 2.4em;
  margin-left: 0.3em;
}
.topPrice__plan__content {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 75px 28px 70px;
  margin-top: 8px;
  font-size: 15px;
  font-weight: bold;
  color: #3c3c3c;
}
.topPrice__plan__price img {
  width: 100%;
}
.topPrice__plan__text {
  list-style-type: disc;
  padding-left: 1em;
  margin-top: 2rem;
}
.topPrice__caption {
  margin-top: 1em;
}

.topCompany {
  padding: 170px 0 180px;
}
.topCompany__list {
  margin: 4.2em auto 0;
  max-width: 390px;
  letter-spacing: 0.04em;
}
.topCompany__list__row {
  line-height: 1.6;
  margin-top: 0.8em;
  display: flex;
  justify-content: space-between;
}
.topCompany__list__row:first-child {
  margin-top: 0;
}
.topCompany__list__row dt {
  flex-shrink: 0;
  width: 8em;
}
.topCompany__list__row dd {
  flex: 1;
}

.commonHeading {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 51px;
}
.commonHeading:before {
  content: "";
  width: 45px;
  height: 45px;
  margin-right: 0.6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/logo_icon.png);
}

.ppc {
  display: block !important;
}

.psp {
  display: none !important;
}

@media only screen and (max-width: 1680px) {
  @keyframes scBT {
    0% {
      transform: scaleY(0);
      transform-origin: top center;
    }
    50% {
      transform: scaleY(1);
      transform-origin: top center;
    }
    50.1% {
      transform: scaleY(1);
      transform-origin: bottom center;
    }
    100% {
      transform: scaleY(0);
      transform-origin: bottom center;
    }
  }
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: 14px;
  }
  body {
    font-size: 14px;
  }
  .o_sp {
    display: block !important;
  }
  .o_pc {
    display: none !important;
  }
  .mainHeader__logo {
    width: 180px;
  }
  .mainHeader__inner {
    padding: 10px 25px;
  }
  .gNav__mainNav__item a {
    font-size: 16px;
  }
  @keyframes scBT {
    0% {
      transform: scaleY(0);
      transform-origin: top center;
    }
    50% {
      transform: scaleY(1);
      transform-origin: top center;
    }
    50.1% {
      transform: scaleY(1);
      transform-origin: bottom center;
    }
    100% {
      transform: scaleY(0);
      transform-origin: bottom center;
    }
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 3.192vw;
    font-size: max(14px,3.192vw);
  }
  body {
    font-size: 3.192vw;
    font-size: max(14px,3.192vw);
  }
  .o_sp2 {
    display: block !important;
  }
  .no_sp2 {
    display: none !important;
  }
  .mainHeader__inner {
    padding: 0 1.33vw 0 2.66vw;
    height: 13.3vw;
  }
  .mainHeader__logo {
    width: 31.92vw;
  }
  .gNav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: -webkit-fill-available;
    width: 100%;
    z-index: 990;
    transform: translateX(150%);
    transition: opacity 0s ease 0s, transform 0s ease 0.3s;
    color: #fff;
  }
  .gNav:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #07354E;
    transition: transform 0.3s ease 0s;
    transform: translateX(100%);
  }
  .gNav a {
    text-decoration: none;
  }
  .gNav.active {
    transition: opacity 0s ease 0s, transform 0s ease 0s;
    opacity: 1;
    transform: translateX(0%);
  }
  .gNav.active:before {
    transition: transform 0.3s ease 0s;
    transform: translateX(0%);
  }
  .gNav.active .gNav__inner {
    transition: opacity 0.3s ease 0.3s;
    opacity: 1;
  }
  .gNav.active .gNav__logo {
    transition: filter 0.3s ease 0.3s;
  }
  .gNav__inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.3s ease 0s;
    opacity: 0;
    padding: 100px 30px 50px;
  }
  .gNav__content {
    max-width: 920px;
    width: 100%;
    max-height: 100%;
    padding: 1em 0;
    overflow: auto;
  }
  .gNav__contentIn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .gNav__mainNav__list {
    display: block;
  }
  .gNav__inner {
    padding: 15.96vw 5.32vw 0;
  }
  .gNav__content {
    max-width: 100%;
    padding-bottom: 4em;
  }
  .gNav__contentIn {
    flex-direction: column-reverse;
  }
  .gNav__info {
    max-width: 37.24vw;
  }
  .gNav__logo {
    margin-bottom: 7.98vw;
    margin-top: 7.98vw;
  }
  .gNav__sns a {
    width: 7.98vw;
    height: 7.98vw;
  }
  .gNav__sns a img {
    width: 50%;
  }
  .gNav__mainNav {
    margin: 0;
  }
  .gNav__mainNav__item > a {
    font-size: 4.256vw;
    position: relative;
    width: 100%;
    flex-direction: row;
    align-items: baseline;
    line-height: 1.4;
    height: auto;
    color: #fff;
  }
  .spBT {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    position: relative;
    z-index: 9999;
    width: 10.64vw;
    height: 10.64vw;
    padding: 3.458vw 2.128vw;
  }
  .spBT:hover {
    text-decoration: none;
  }
  .spBT .bar {
    height: 2px;
    background-color: #fff;
    position: relative;
    width: 100%;
    z-index: 5;
    top: 0;
    transition: width 0.2s ease 0s, transform 0.2s ease 0s, background-color 0.2s ease 0s;
    margin-left: auto;
  }
  .spBT .bar:first-child {
    transition: width 0.2s ease 0s, transform 0.2s ease 0s, background-color 0.2s ease 0s;
  }
  .spBT .bar:nth-child(2) {
    transition: width 0.2s ease 0s, transform 0.2s ease 0s, background-color 0.2s ease 0s;
  }
  .spBT .bar:nth-child(3) {
    transition: width 0.2s ease 0s, transform 0.2s ease 0s, background-color 0.2s ease 0s;
  }
  .spBT.active .bar:first-child {
    transform: translateY(6px) rotate(45deg);
  }
  .spBT.active .bar:nth-child(2) {
    transform: scaleX(0);
  }
  .spBT.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .spBT .bar {
    height: 0.532vw;
  }
  .spBT.active .bar:first-child {
    transform: translateY(1.596vw) rotate(45deg);
  }
  .spBT.active .bar:nth-child(2) {
    transform: scaleX(0);
  }
  .spBT.active .bar:nth-child(3) {
    transform: translateY(-1.596vw) rotate(-45deg);
  }
  .footContact {
    padding: 15.96vw 0;
  }
  .footContact__bt {
    max-width: 100%;
    font-size: 5.32vw;
  }
  .footContact__bt:before {
    width: 8.512vw;
    height: 7.448vw;
  }
  .inner {
    padding-left: 5.32vw;
    padding-right: 5.32vw;
  }
  @keyframes scBT {
    0% {
      transform: scaleY(0);
      transform-origin: top center;
    }
    50% {
      transform: scaleY(1);
      transform-origin: top center;
    }
    50.1% {
      transform: scaleY(1);
      transform-origin: bottom center;
    }
    100% {
      transform: scaleY(0);
      transform-origin: bottom center;
    }
  }
  .topFirstView__lead {
    font-size: 6.384vw;
  }
  .topGoal {
    padding: 18.62vw 0;
  }
  .topGoal__lead__main {
    font-size: 5.852vw;
  }
  .topGoal__lead__sub {
    font-size: 4.256vw;
  }
  .topCeo {
    padding: 21.28vw 0;
  }
  .topCeo__lead__main {
    font-size: 5.852vw;
  }
  .topCeo__lead__sub {
    font-size: 4.256vw;
  }
  .topClients {
    padding: 18.62vw 0;
  }
  .topPrice {
    padding: 18.62vw 0 21.28vw;
  }
  .topPrice__plan {
    flex-direction: column;
    gap: 1.596vw;
  }
  .topPrice__plan__item {
    width: 100%;
  }
  .topPrice__plan__heading {
    font-size: 4.256vw;
  }
  .topPrice__plan__heading strong {
    font-size: 2.4em;
    margin-left: 0.3em;
  }
  .topPrice__plan__content {
    padding: 13.3vw 5.32vw 13.3vw;
    margin-top: 1.596vw;
    font-size: 3.724vw;
  }
  .topCompany {
    padding: 18.62vw 0 21.28vw;
  }
  .topCompany__list {
    margin: 4.2em auto 0;
    max-width: 71.82vw;
  }
  .topCompany__list__row {
    line-height: 1.6;
    margin-top: 0.8em;
    display: flex;
    justify-content: space-between;
  }
  .topCompany__list__row:first-child {
    margin-top: 0;
  }
  .topCompany__list__row dt {
    flex-shrink: 0;
    width: 8em;
  }
  .topCompany__list__row dd {
    flex: 1;
  }
  .commonHeading {
    font-size: 8.512vw;
  }
  .commonHeading:before {
    width: 8.512vw;
    height: 8.512vw;
  }
  .ppc {
    display: none !important;
  }
  .psp {
    display: block !important;
  }
}
@media only screen and (max-width: 375px) {
  @keyframes scBT {
    0% {
      transform: scaleY(0);
      transform-origin: top center;
    }
    50% {
      transform: scaleY(1);
      transform-origin: top center;
    }
    50.1% {
      transform: scaleY(1);
      transform-origin: bottom center;
    }
    100% {
      transform: scaleY(0);
      transform-origin: bottom center;
    }
  }
}