@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
  padding: 0;
}

/*
figure {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

*:focus {
  outline: none;
}

/* ==========================================
 * Sass variables
 * 390px を基準に SP デザインを可変させるための設定値
 * ======================================== */
/* ブレークポイントは最小限だけ保持 */
/* インナーサイズ */
/* ==========================================
 * CSS custom properties
 * 共通で使う色・フォント・アニメーション速度
 * 現時点で使うものだけを残した最小構成
 * ======================================== */
:root {
  --font-ja: 'Zen Kaku Gothic New', sans-serif;
  --font-en: 'Montserrat', sans-serif;
  --color-bg: #F7FBFF;
  --color-text: #201F29;
  --color-sub: #D9D9D9;
  --color-brand: #0052D4;
  --color-white: #ffffff;
  /* フォントサイズの指定 */
  --font-size-title: 30px;
  --font-size-subtitle: 20px;
  --font-size-text: 16px;
  --font-size-sp-title: 22px;
  --font-size-sp-subtitle: 16px;
  --font-size-sp-text: 14px;
  --shadow-md: 0 0 8px 0 rgba(0, 0, 0, 0.05);
  --transition-base: 0.35s ease;
  /* 固定ヘッダーの高さ（40 / 390 * 100vw） */
  --header-height-sp: 10.2564102564vw;
}

/* ==========================================
 * Mixins
 * 必要最低限のメディアクエリと hover 制御
 * ======================================== */
body {
  font-family: var(--font-ja);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: vw(14);
  line-height: 1.75;
  overflow-x: clip;
  /* ドロワー表示中だけスクロールを止める */
}
body.is-menu-open {
  overflow: hidden;
}
body .is-loading {
  overflow: hidden;
}

p {
  margin-bottom: 0.5em;
}

body {
  font-size: var(--font-size-text);
  padding-top: 25px;
  text-align: justify;
}
@media (max-width: 768px) {
  body {
    font-size: var(--font-size-sp-text);
    padding-top: 30px;
  }
}

a {
  font-weight: 700;
}

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

h3 {
  font-size: var(--font-size-subtitle);
}
@media (max-width: 768px) {
  h3 {
    font-size: var(--font-size-sp-subtitle);
  }
}

.p-intro {
  background: linear-gradient(93deg, #438EF7 0.72%, #0052D4 98.24%);
  color: var(--color-white);
  padding: 60px 0 40px 0;
  margin-top: -56px;
}
.p-intro__title {
  font-size: var(--font-size-title);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 140%;
}
@media (max-width: 768px) {
  .p-intro__title {
    font-size: var(--font-size-sp-title);
  }
}
.p-intro__text {
  font-weight: 500;
}

.l-inner {
  max-width: 1000px;
  width: calc(100% - 40px);
  margin-inline: auto;
}

.p-mv__title {
  color: var(--color-brand);
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 130%;
}
@media (max-width: 768px) {
  .p-mv__title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.p-mv__img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .p-mv__img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
  }
}

.p-people {
  margin: 80px 0;
}
@media (max-width: 1000px) {
  .p-people {
    margin: 50px 0;
  }
}
.p-people__title {
  font-size: var(--font-size-title);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .p-people__title {
    font-size: var(--font-size-sp-title);
  }
}
.p-people__list {
  display: grid;
  grid-template-columns: repeat(4, 226px);
  justify-content: center;
  gap: 24px;
}
@media (max-width: 1000px) {
  .p-people__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 560px);
    margin-inline: auto;
    gap: clamp(16px, 4vw, 40px) clamp(16px, 4vw, 32px);
  }
}
.p-people__item {
  min-width: 0;
}

.p-people-card {
  position: relative;
  width: 100%;
}
.p-people-card__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.p-people-card__text {
  background-color: var(--color-white);
  padding: 10px 15px;
  border-radius: 0 10px 0 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
}
.p-people-card__position {
  font-size: 14px;
  line-height: 1.45;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
@media (max-width: 1000px) {
  .p-people-card__position {
    font-size: 10px;
    line-height: 1.4;
  }
}
.p-people-card__name {
  font-size: 18px;
  font-weight: 700;
  padding-left: 13px;
  line-height: 1.35;
}
@media (max-width: 1000px) {
  .p-people-card__name {
    font-size: 16px;
  }
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #438EF7, #0052D4);
  flex-shrink: 0;
  margin-top: 7px;
}
@media (max-width: 1000px) {
  .dot {
    width: 7px;
    height: 7px;
    margin-top: 5px;
  }
}

.p-interview__people {
  display: flex;
  flex-direction: column;
  flex: 0 0 80px;
  gap: 10px;
}
@media (max-width: 768px) {
  .p-interview__people {
    flex: 0 0 60px;
  }
}
.p-interview__article {
  position: relative;
  top: -70px;
  padding: clamp(32px, 4vw, 50px);
  border-radius: 20px;
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .p-interview__article {
    top: -50px;
    padding: 20px;
  }
}
.p-interview__label {
  color: var(--color-brand);
  font-size: var(--font-size-subtitle);
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-interview__label {
    font-size: var(--font-size-sp-subtitle);
  }
}
.p-interview__title {
  font-size: var(--font-size-title);
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-interview__title {
    font-size: var(--font-size-sp-title);
  }
}
.p-interview__question {
  font-size: var(--font-size-subtitle);
  color: var(--color-brand);
  font-weight: 500;
  display: flex;
  gap: 25px;
  margin: 35px 0 25px 0;
  line-height: 150%;
}
.p-interview__question::before {
  content: "";
  display: block;
  flex: 0 0 75px;
  width: 80px;
  height: 1px;
  margin-top: 13px;
  background-color: var(--color-brand);
}
@media (max-width: 768px) {
  .p-interview__question {
    font-size: var(--font-size-sp-subtitle);
  }
  .p-interview__question::before {
    flex: 0 0 50px;
  }
}
.p-interview__block {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.p-interview__name {
  text-align: center;
  font-weight: 700;
}
.p-interview__answer {
  line-height: 170%;
}
.p-interview__backimage {
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.p-interview__backimage--01 {
  background-image: url("../images/interview1.jpg");
}
.p-interview__backimage--02 {
  background-image: url("../images/interview2.jpg");
}
.p-interview__backimage--03 {
  background-image: url("../images/interview3.jpg");
}
.p-interview__backimage--04 {
  background-image: url("../images/interview4.jpg");
}
@media (max-width: 768px) {
  .p-interview__backimage {
    height: 240px;
    background-position: center top;
    background-size: cover;
  }
  .p-interview__backimage--01 {
    background-image: url("../images/interview1_sp.jpg");
  }
  .p-interview__backimage--02 {
    background-image: url("../images/interview2_sp.jpg");
    background-position: center;
  }
  .p-interview__backimage--03 {
    background-image: url("../images/interview3_sp.jpg");
  }
  .p-interview__backimage--04 {
    background-image: url("../images/interview4_sp.jpg");
  }
}

.p-textLink {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.p-interviewImage__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .p-interviewImage__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-interviewImage__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}
.p-interviewImage__img {
  width: 100%;
  max-width: 460px;
  height: auto;
}

.p-case {
  padding: 80px 0;
  background-color: var(--color-white);
}
@media (max-width: 768px) {
  .p-case {
    padding: 50px 0;
  }
}
.p-casePC__img {
  width: 100%;
  height: auto;
  display: block;
  margin: 50px auto;
}
@media (max-width: 768px) {
  .p-casePC__img {
    max-width: 460px;
  }
}
.p-case__block {
  display: flex;
  margin-bottom: 25px;
  justify-content: flex-end;
  gap: 20px;
}
.p-case__label {
  color: var(--color-brand);
  font-size: var(--font-size-subtitle);
  font-weight: 700;
}
.p-case__title {
  font-size: var(--font-size-title);
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-case__title {
    font-size: var(--font-size-sp-title);
  }
}
.p-case__question {
  font-size: var(--font-size-subtitle);
  color: var(--color-brand);
  font-weight: 500;
  display: flex;
  gap: 25px;
  margin: 35px 0 25px 0;
  line-height: 150%;
}
.p-case__question::before {
  content: "";
  display: block;
  flex: 0 0 80px;
  width: 80px;
  height: 1px;
  margin-top: 13px;
  background-color: var(--color-brand);
}
@media (max-width: 768px) {
  .p-case__question {
    font-size: var(--font-size-sp-subtitle);
  }
  .p-case__question::before {
    flex: 0 0 50px;
  }
}
.p-case__people {
  display: block;
  width: 80px;
  text-align: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .p-case__people {
    width: 60px;
  }
}
.p-case__name {
  font-weight: 700;
}
.p-case__answer {
  width: auto;
  flex: 1;
  min-width: 0;
  line-height: 170%;
}
@media (max-width: 768px) {
  .p-case__answer {
    width: 100%;
  }
}
.p-case__subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .p-case__subtitle {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.p-case__company {
  font-size: var(--font-size-subtitle);
}
.p-case__tag {
  font-size: 14px;
  color: var(--color-white);
  background-color: black;
  border-radius: 5px;
  padding: 5px 10px;
  display: inline-block;
}
@media (max-width: 768px) {
  .p-case__tag {
    font-size: 12px;
    padding: 2px 8px;
  }
}

.p-case__flex {
  display: flex;
  gap: 35px;
}
@media (max-width: 768px) {
  .p-case__flex {
    display: block;
  }
}

.p-caseImage__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .p-caseImage__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-caseImage__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.p-caseWork {
  width: 50%;
}
@media (max-width: 768px) {
  .p-caseWork {
    width: 100%;
    margin-bottom: 25px;
  }
}
.p-caseWork__title {
  margin-bottom: 15px;
  font-weight: 500;
}
.p-caseWork span {
  color: var(--color-brand);
  font-weight: 700;
}
.p-caseWork__label {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.p-caseWork__img {
  width: 49px;
  height: auto;
}
@media (max-width: 768px) {
  .p-caseWork__img {
    width: 43px;
  }
}

.p-caseFlow {
  width: 50%;
}
@media (max-width: 768px) {
  .p-caseFlow {
    width: 100%;
  }
}
.p-caseFlow__flowimg {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.p-caseFlow__label {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .p-caseFlow__label {
    display: block;
  }
}
.p-caseFlow__list {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
@media (max-width: 768px) {
  .p-caseFlow__list {
    gap: 4px;
  }
}
.p-caseFlow__img {
  width: auto;
  height: 241px;
  padding-top: 7px;
  flex-shrink: 0;
}
.p-caseFlow__title {
  margin-bottom: 15px;
  font-weight: 500;
}
.p-caseFlow__time {
  color: #636363;
  width: 108px;
}
.p-caseFlow__text {
  margin-top: 16px;
}

.p-caseComment h3 {
  padding-top: 50px;
  margin-bottom: 25px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-caseComment h3 {
    padding-top: 25px;
  }
}
.p-caseComment__flex {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 768px) {
  .p-caseComment__flex {
    padding-top: 15px;
  }
}
.p-caseComment__people {
  display: block;
  width: 80px;
  text-align: center;
  gap: 10px;
}
.p-caseComment__name {
  font-weight: 700;
}
.p-caseComment__block {
  background-color: #EDF6FF;
  padding: 35px 50px;
  display: flex;
  gap: 20px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .p-caseComment__block {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.p-caseComment__answer {
  width: auto;
  flex: 1;
  min-width: 0;
  line-height: 170%;
}

.p-product {
  background-color: var(--color-white);
  padding: 80px 0 0 0;
}
@media (max-width: 768px) {
  .p-product {
    padding: 50px 0 0 0;
  }
}
.p-product__label {
  color: var(--color-brand);
  font-size: var(--font-size-subtitle);
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-product__label {
    font-size: var(--font-size-sp-subtitle);
  }
}
.p-product__title {
  font-size: var(--font-size-title);
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-product__title {
    font-size: var(--font-size-sp-title);
  }
}
.p-product__text {
  font-size: var(--font-size-subtitle);
}
@media (max-width: 768px) {
  .p-product__text {
    font-size: var(--font-size-sp-subtitle);
  }
}
.p-product__product {
  width: 460px;
  height: auto;
}
.p-product__itemFlex {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-product__itemFlex {
    flex-direction: column;
    gap: 0;
  }
}
.p-product__itemText {
  text-align: center;
}
.p-product__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .p-product__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-product__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 15px;
}

.p-productCompany {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .p-productCompany {
    padding-top: 50px;
  }
}
.p-productCompany__title {
  font-weight: 700;
  margin-bottom: 20px;
}
.p-productCompany__contents {
  display: flex;
  gap: 50px;
}
@media (max-width: 768px) {
  .p-productCompany__contents {
    display: block;
  }
  .p-productCompany__contents__text {
    order: 2;
  }
  .p-productCompany__contents__img {
    order: 1;
  }
}
.p-productCompany__img {
  width: 330px;
  height: 217px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .p-productCompany__text {
    margin-bottom: 15px;
  }
}

.p-contact {
  background-color: var(--color-white);
  padding: 80px 0;
}
@media (max-width: 768px) {
  .p-contact {
    padding: 50px 0;
  }
}
.p-contact__label {
  color: var(--color-brand);
  font-size: var(--font-size-subtitle);
  font-weight: 700;
}
.p-contact__title {
  font-size: var(--font-size-title);
  font-weight: 700;
}

.p-contactCompany__contents {
  display: flex;
  align-items: center;
  margin: 35px 0 20px 0;
  gap: 10px;
}
@media (max-width: 768px) {
  .p-contactCompany__contents {
    margin-top: 25px 0 15px 0;
  }
}
.p-contactCompany__title {
  font-weight: 700;
  text-decoration: underline;
}
.p-contactCompany__tel {
  margin-bottom: -0.5px;
}

.p-fixed {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 900;
  display: flex;
  justify-content: center;
  gap: 12px;
  background: #002D75;
  padding: 15px 20px;
}
@media (max-width: 768px) {
  .p-fixed {
    flex-direction: column;
  }
}
.p-fixed__button {
  padding: 10px 30px;
  border-radius: 999px;
  background: #F69B33;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.p-fixed__buttonsvg {
  width: 24px;
  height: 24px;
}

.p-pageTop {
  position: fixed;
  bottom: 120px;
  right: 50px;
}
@media (max-width: 1000px) {
  .p-pageTop {
    bottom: 150px;
    right: 20px;
  }
}

.l-footer {
  margin-top: 35px;
  padding-bottom: 130px;
}
.l-footer h3 {
  font-weight: 700;
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .l-footer {
    padding-bottom: 200px;
  }
}

.fancyArea {
  max-width: 1000px;
  margin: 0 auto;
}

.fancyArea a {
  display: block;
}

.fancyArea a img {
  width: 100%;
  height: auto;
}

.fancybox-slide--image {
  padding: 44px 50px;
}
@media (max-width: 768px) {
  .fancybox-slide--image {
    padding: 40px 20px;
  }
}/*# sourceMappingURL=style.css.map */