@charset "UTF-8";
/* ------------------------------------------------------
変数
------------------------------------------------------ */
:root {
  --black: #222222;
  --white: #ffffff;
  --blue01: #004ea2;
  --blue02: #002d57;
  --blue03: #28a2e1;
  --orange: #b84a0c;
  --line: #dfe4e9;
}

/* =======================================================

共通

======================================================= */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5% !important;
  min-height: 100%;
}

body {
  font-size: 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.7em;
  color: var(--black);
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  position: relative;
  transform-origin: top; /* スケール時の基準位置 */
  padding-top: 70px;
}
@media (max-width: 428px) {
  body {
    font-size: 1.3rem;
  }
}

p {
  line-height: 1.7em;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1em;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

@media (max-width: 428px) {
  br.pc {
    display: none;
  }
}

br.tab {
  display: none;
}
@media (max-width: 834px) {
  br.tab {
    display: block;
  }
}

br.sp {
  display: none;
}
@media (max-width: 428px) {
  br.sp {
    display: block;
  }
}

main {
  overflow: hidden;
}

.container {
  max-width: 1160px;
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width: 428px) {
  .container {
    padding: 0 20px;
  }
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.btn--contact {
  display: flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: bold;
  color: var(--white);
  background: var(--blue01);
  border-radius: 40px;
  transition: ease 0.3s background-color;
  text-align: center;
  line-height: 1.4em;
  box-shadow: 10px 10px 24px 0 rgba(0, 47, 97, 0.1);
}
@media (max-width: 428px) {
  .btn--contact {
    box-shadow: 6px 6px 16px 0 rgba(0, 47, 97, 0.1);
    padding: 12px 18px;
    font-size: 14px;
  }
}
.btn--contact i {
  font-size: 1.3em;
}
.btn--contact:hover {
  background-color: var(--blue03);
}

.btn--to-bidinfo {
  display: flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: bold;
  color: var(--white);
  background: var(--blue02);
  border-radius: 40px;
  transition: ease 0.3s background-color;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.4em;
  box-shadow: 10px 10px 24px 0 rgba(0, 47, 97, 0.1);
}
@media (max-width: 428px) {
  .btn--to-bidinfo {
    box-shadow: 6px 6px 16px 0 rgba(0, 47, 97, 0.1);
    padding: 12px 18px;
    font-size: 14px;
  }
}
.btn--to-bidinfo:hover {
  background-color: var(--blue03);
}

.contacts__subtext {
  text-align: center;
  font-size: 1.3rem;
}

.ttls--cmn {
  text-align: center;
  margin-bottom: 40px;
}
.ttls--cmn .h2--eng {
  font-family: 'Zen Maru Gothic';
  color: var(--blue03);
  font-size: 2rem;
  line-height: 1em;
  margin-bottom: 10px;
  display: inline-block;
}
@media (max-width: 428px) {
  .ttls--cmn .h2--eng {
    font-size: 1.6rem;
  }
}
.ttls--cmn .h2 {
  font-size: 2.8rem;
  color: var(--blue02);
  font-weight: bold;
}
@media (max-width: 428px) {
  .ttls--cmn .h2 {
    font-size: 2.2rem;
  }
}
.ttls--cmn .ttls--sub-txt {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 20px;
}
@media (max-width: 428px) {
  .ttls--cmn .ttls--sub-txt {
    font-size: 1.4rem;
  }
}
.ttls--cmn .ttls--sub-txt .big {
  font-size: 1.3em;
}

.hr--cmn {
  max-width: 1080px;
  width: calc(100% - 80px);
  margin-left: auto;
  margin-right: auto;
  border-top-color: var(--line);
}
@media (max-width: 428px) {
  .hr--cmn {
    width: calc(100% - 40px);
  }
}

/* =======================================================

header

======================================================= */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--white);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 10px 10px 24px 0 rgba(0, 47, 97, 0.1);
}
@media (max-width: 428px) {
  .header {
    box-shadow: 6px 6px 16px 0 rgba(0, 47, 97, 0.1);
    padding: 12px 20px;
  }
}

@media (max-width: 428px) {
  .header__logo {
    width: 200px;
  }
}

.header__nav__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1000px) {
  .header__nav__links {
    font-size: 1.35rem;
    gap: 10px;
  }
}
@media (max-width: 834px) {
  .header__nav__links {
    display: none;
  }
}
.header__nav__links a {
  display: flex;
  align-items: center;
  font-weight: bold;
  transition: ease 0.3s color;
  gap: 5px;
}
.header__nav__links a i {
  color: var(--blue01);
}
.header__nav__links a:hover {
  color: var(--blue01);
}

.btn--contact--fixed.pc {
  position: fixed;
  right: 0;
  bottom: 0;
  transition: ease 0.3s opacity;
  z-index: 999;
}
.btn--contact--fixed.pc:hover {
  opacity: 0.8;
}
@media (max-width: 428px) {
  .btn--contact--fixed.pc {
    display: none;
  }
}

.btn--contact--fixed.sp {
  display: none;
}
@media (max-width: 428px) {
  .btn--contact--fixed.sp {
    display: flex;
    position: fixed;
    justify-content: center;
    gap: 5px;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 14px 20px;
    color: var(--white);
    background: var(--blue01);
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    transition: ease 0.3s background-color;
    z-index: 999;
  }
  .btn--contact--fixed.sp:hover {
    background-color: var(--blue03);
  }
}

/* =======================================================

MV

======================================================= */
.mv__container {
  display: flex;
  align-items: center;
  height: 520px;
}
@media (max-width: 834px) {
  .mv__container {
    height: auto;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
    gap: 20px;
  }
}
@media (max-width: 428px) {
  .mv__container {
    padding-top: 20px;
    gap: 10px;
  }
}

.mv__txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 50%;
}
@media (max-width: 834px) {
  .mv__txt {
    width: 100%;
    max-width: 540px;
    gap: 20px;
  }
}

.mv__copy {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  line-height: 2.2em;
  font-size: clamp(14px, 1.7vw, 20px);
}
@media (max-width: 834px) {
  .mv__copy {
    font-size: clamp(12px, 3.2vw, 20px);
  }
}
@media (max-width: 428px) {
  .mv__copy {
    font-size: clamp(10px, 3.8vw, 16px);
  }
}
.mv__copy .dot {
  color: var(--blue01);
  font-size: 1.3em;
  background-position: top -2px left -2px;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  background-image: radial-gradient(0.09em 0.09em at center center, var(--blue01), var(--blue01) 100%, transparent);
}
@media (max-width: 428px) {
  .mv__copy .dot {
    font-size: 1.5em;
  }
}

@media (max-width: 834px) {
  .mv__logo {
    max-width: 480px;
  }
}

.mv__img {
  width: 50%;
}
@media (max-width: 834px) {
  .mv__img {
    width: 100%;
    max-width: 540px;
  }
}

/* =======================================================

お悩み

======================================================= */
.problem {
  padding-bottom: 60px;
}

.problem__inner {
  background: #f1f7fe;
  border-radius: 20px;
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 428px) {
  .problem__inner {
    padding: 20px;
    gap: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
  }
}
.problem__inner::before {
  position: absolute;
  top: 99%;
  left: calc(50% - 30px);
  content: '';
  background: #f1f7fe;
  height: 34.6410161514px;
  width: 60px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (max-width: 428px) {
  .problem__inner::before {
    width: 40px;
    left: calc(50% - 20px);
    height: 30px;
  }
}

.problem__ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8em;
}
@media (max-width: 428px) {
  .problem__ttl {
    font-size: 1.4rem;
  }
}
.problem__ttl .big {
  font-size: 1.3em;
  color: var(--blue02);
}

.problem__list {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-self: stretch;
}
@media (max-width: 834px) {
  .problem__list {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }
}
@media (max-width: 428px) {
  .problem__list {
    gap: 25px;
  }
}
.problem__list li {
  height: auto;
  padding: 40px 20px 20px 20px;
  gap: 10px;
  border-radius: 10px;
  background: var(--white);
  font-weight: bold;
  font-size: 1.5rem;
  flex: 1 0 0;
  text-align: center;
  position: relative;
  line-height: 1.8em;
  box-shadow: 10px 10px 24px 0 rgba(0, 47, 97, 0.1);
}
@media (max-width: 834px) {
  .problem__list li {
    width: 100%;
  }
}
@media (max-width: 428px) {
  .problem__list li {
    box-shadow: 6px 6px 16px 0 rgba(0, 47, 97, 0.1);
    font-size: 1.3rem;
    border-radius: 5px;
    padding-top: 25px;
  }
}
.problem__list li .big {
  font-size: 1.3em;
  color: var(--blue02);
}
.problem__list li img {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 428px) {
  .problem__list li img {
    width: 40px;
    top: -20px;
  }
}

.solve--copy {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.2em;
  margin-bottom: 20px;
}
@media (max-width: 428px) {
  .solve--copy {
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 2em;
  }
}
.solve--copy .big {
  background-position: top -3px left -2px;
  background-repeat: repeat-x;
  background-size: 1em 0.4em;
  background-image: radial-gradient(0.09em 0.09em at center center, var(--orange), var(--orange) 100%, transparent);
  color: var(--orange);
  font-size: 1.3em;
}

.solve--img {
  text-align: center;
}

/* =======================================================

特徴

======================================================= */
.features {
  background: #fff9f1;
  padding: 60px 0;
}
@media (max-width: 428px) {
  .features {
    padding: 40px 0;
  }
}

.features__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  padding-top: 40px;
}
@media (max-width: 834px) {
  .features__list {
    flex-direction: column;
    justify-content: center;
    gap: 60px;
  }
}
@media (max-width: 428px) {
  .features__list {
    padding-top: 0;
    gap: 40px;
  }
}
.features__list li {
  display: flex;
  position: relative;
  padding: 40px 20px 30px 20px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 10px 10px 24px 0 rgba(0, 47, 97, 0.1);
}
@media (max-width: 428px) {
  .features__list li {
    box-shadow: 6px 6px 16px 0 rgba(0, 47, 97, 0.1);
    border-radius: 10px;
    padding: 30px 20px 20px 20px;
    gap: 10px;
  }
}
.features__list li .num {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 428px) {
  .features__list li .num {
    width: 60px;
    top: -30px;
  }
}
@media (max-width: 428px) {
  .features__list li .img {
    width: 140px;
  }
}
.features__list li p {
  font-weight: bold;
  text-align: center;
}

/* =======================================================

サービス

======================================================= */
.service {
  background: #155ead;
  padding: 60px 0;
}
@media (max-width: 428px) {
  .service {
    padding: 40px 0;
  }
}
.service .h2--eng,
.service .h2,
.service .ttls--sub-txt {
  color: var(--white);
}

.service__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  align-self: stretch;
  padding: 40px 0;
}
@media (max-width: 834px) {
  .service__list {
    flex-direction: column;
    justify-content: center;
    gap: 60px;
  }
}
@media (max-width: 428px) {
  .service__list {
    padding: 20px 0;
    gap: 45px;
  }
}

.service__list__item {
  display: flex;
  position: relative;
  padding: 60px 20px 30px 20px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 10px 10px 24px 0 rgba(0, 47, 97, 0.1);
}
@media (max-width: 428px) {
  .service__list__item {
    box-shadow: 6px 6px 16px 0 rgba(0, 47, 97, 0.1);
    padding: 40px 20px 20px;
    border-radius: 10px;
    gap: 10px;
  }
}
.service__list__item .num {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 428px) {
  .service__list__item .num {
    width: 60px;
    top: -30px;
  }
}
.service__list__item .ttl {
  text-align: center;
  font-weight: bold;
  color: var(--blue01);
  font-size: 2.4rem;
}
@media (max-width: 428px) {
  .service__list__item .ttl {
    font-size: 2rem;
  }
}
.service__list__item p {
  font-weight: bold;
  text-align: center;
}
.service__list__item .sample-dl {
  text-align: center;
  text-decoration: underline;
}

.service__btn-txt {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--white);
}
@media (max-width: 428px) {
  .service__btn-txt {
    font-size: 1.5rem;
  }
}

/* =======================================================

CTA

======================================================= */
.cta {
  padding: 40px 0;
}

.cta__inner {
  padding: 40px 20px;
  border-radius: 30px;
  border: 2px solid var(--blue01);
  background: #fff;
  box-shadow: 10px 10px 24px 0 rgba(0, 47, 97, 0.1);
}
@media (max-width: 428px) {
  .cta__inner {
    border-radius: 10px;
    box-shadow: 6px 6px 16px 0 rgba(0, 47, 97, 0.1);
  }
}

.cta__top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 428px) {
  .cta__top {
    gap: 5px;
  }
}
.cta__top p {
  font-weight: bold;
  font-size: 2rem;
}
@media (max-width: 428px) {
  .cta__top p {
    font-size: 1.5rem;
  }
}
.cta__top p .blue {
  color: var(--blue01);
}
.cta__top p .big {
  font-size: 1.4em;
}
@media (max-width: 428px) {
  .cta__top img {
    width: 26px;
  }
}

.cta__disc {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

/* =======================================================

スタッフのご紹介

======================================================= */
.staff {
  padding: 60px 0;
}
@media (max-width: 428px) {
  .staff {
    padding: 40px 0;
  }
}

.staff__list {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
@media (max-width: 834px) {
  .staff__list {
    flex-direction: column;
    justify-content: center;
  }
}

.staff__list__item {
  display: flex;
  padding: 30px 20px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 20px;
  background: #fff;
  box-shadow: 10px 10px 24px 0 rgba(0, 47, 97, 0.1);
}
@media (max-width: 428px) {
  .staff__list__item {
    padding: 20px;
    gap: 10px;
    box-shadow: 6px 6px 16px 0 rgba(0, 47, 97, 0.1);
  }
}
.staff__list__item .job {
  color: var(--blue01);
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
@media (max-width: 428px) {
  .staff__list__item .job {
    font-size: 1.6rem;
  }
}
@media (max-width: 428px) {
  .staff__list__item img {
    width: 130px;
  }
}
.staff__list__item .name {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
@media (max-width: 428px) {
  .staff__list__item .name {
    font-size: 1.6rem;
  }
}

/* =======================================================

お客様の声・事例

======================================================= */
.voice {
  padding: 60px 0;
}
@media (max-width: 428px) {
  .voice {
    padding: 40px 0;
  }
}

.voice__list {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (max-width: 428px) {
  .voice__list {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
}

.voice__list__item {
  width: calc(50% - 20px);
}
.voice__list__item:nth-child(even) {
  transform: translateY(40px);
}
@media (max-width: 428px) {
  .voice__list__item {
    width: 100%;
    transform: none !important;
  }
}
.voice__list__item .ballon {
  margin-bottom: 20px;
  padding: 40px;
  border-radius: 20px 20px 20px 0;
  background: var(--white);
  margin-left: 30px;
  box-shadow: 10px 10px 24px 0 rgba(0, 47, 97, 0.1);
}
@media (max-width: 428px) {
  .voice__list__item .ballon {
    box-shadow: 6px 6px 16px 0 rgba(0, 47, 97, 0.1);
    margin-bottom: 15px;
    border-radius: 0px 10px 10px 0;
    padding: 20px;
    margin-left: 15px;
  }
}
.voice__list__item .ballon h3 {
  color: var(--blue01);
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media (max-width: 428px) {
  .voice__list__item .ballon h3 {
    font-size: 1.6rem;
  }
}
.voice__list__item .user {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
@media (max-width: 428px) {
  .voice__list__item .user img {
    width: 50px;
  }
}
.voice__list__item .user p {
  font-weight: bold;
  font-size: 1.6rem;
}
@media (max-width: 428px) {
  .voice__list__item .user p {
    font-size: 1.4rem;
  }
}

.voice__work {
  padding: 20px;
  border-radius: 20px 20px 20px 0;
  background: var(--white);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 10px 10px 24px 0 rgba(0, 47, 97, 0.1);
}
@media (max-width: 428px) {
  .voice__work {
    border-radius: 10px;
    box-shadow: 6px 6px 16px 0 rgba(0, 47, 97, 0.1);
  }
}
.voice__work h3 {
  color: var(--blue01);
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media (max-width: 428px) {
  .voice__work h3 {
    font-size: 1.6rem;
  }
}
.voice__work a {
  text-decoration: underline;
  font-size: 1.7rem;
  line-height: 1.7em;
}
@media (max-width: 428px) {
  .voice__work a {
    font-size: 1.4rem;
  }
}

.voice__annotation {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 40px;
}

/* =======================================================

到達インフォとは

======================================================= */
.bidinfo {
  padding: 60px 0;
  background: url(../images/bidinfo__bg.jpg) no-repeat top center;
  background-size: cover;
}
@media (max-width: 428px) {
  .bidinfo {
    padding: 40px 0;
  }
}

.bidinfo__top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 834px) {
  .bidinfo__top {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 428px) {
  .bidinfo__top {
    gap: 20px;
    margin-bottom: 20px;
  }
}

.bidinfo__top__left {
  text-align: center;
}
.bidinfo__top__left img {
  margin-bottom: 20px;
}
@media (max-width: 428px) {
  .bidinfo__top__left img {
    max-width: 260px;
  }
}
.bidinfo__top__left h3 {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.8em;
}
@media (max-width: 428px) {
  .bidinfo__top__left h3 {
    font-size: 1.5rem;
  }
}
.bidinfo__top__left h3 .blue {
  color: var(--blue01);
}
.bidinfo__top__left h3 .ora {
  color: var(--orange);
}

@media (max-width: 428px) {
  .bidinfo__top__right img {
    max-width: 280px;
  }
}

.bidinfo__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 834px) {
  .bidinfo__list {
    gap: 10px;
    flex-direction: column;
    justify-content: center;
  }
}

.bidinfo__list__item {
  flex: 1;
  padding: 20px;
  border-radius: 20px;
  background: var(--white);
  align-self: stretch;
  text-align: center;
  box-shadow: 10px 10px 24px 0 rgba(0, 47, 97, 0.1);
}
@media (max-width: 428px) {
  .bidinfo__list__item {
    box-shadow: 6px 6px 16px 0 rgba(0, 47, 97, 0.1);
    border-radius: 10px;
    padding: 10px;
  }
}
.bidinfo__list__item img {
  margin-bottom: 10px;
}
@media (max-width: 428px) {
  .bidinfo__list__item img {
    margin-bottom: 5px;
  }
}
.bidinfo__list__item .ttl {
  color: var(--blue01);
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media (max-width: 428px) {
  .bidinfo__list__item .ttl {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 428px) {
  .footer {
    padding: 20px 20px 60px;
  }
}
.footer p {
  text-align: center;
}
.footer .bold {
  font-weight: bold;
}
.footer a {
  text-decoration: underline;
  text-align: center;
}
