@charset "UTF-8";
/* scss関数群
------------------------------------------ */
/* ベースのスタイル
------------------------------------------ */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 12.5641025641vw;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: min(6.25vw, 4.375rem);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  color: #111111;
}

a {
  text-decoration: none;
}

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

li {
  list-style: none;
}

/* ユーティリティ
------------------------------------------ */
.u-spOnly {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-spOnly {
    display: none;
  }
}

.u-pcOnly {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pcOnly {
    display: block;
  }
}

.u-block {
  display: block;
}

.u-spBlock {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-spBlock {
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  .u-pcBlock {
    display: block;
  }
}

.underline {
  background-image: linear-gradient(transparent 0%, transparent 62%, #DFEAF8 62%, #DFEAF8 100%);
  display: inline;
  padding-bottom: 0.5128205128vw;
}
@media screen and (min-width: 768px) {
  .underline {
    padding-bottom: min(0.2678571429vw, 0.1875rem);
  }
}

.text-right-green {
  color: #349898;
}

.text-black {
  color: #111111;
}

/* 部品
------------------------------------------ */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 83.3333333333vw;
  height: 18.9743589744vw;
  gap: 3.0769230769vw;
  font-size: 4.1025641026vw;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: white;
  background-color: #349898;
  border-radius: 100vmax;
  margin-inline: auto;
  transition: background-color 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .cta-button {
    width: min(46.4285714286vw, 32.5rem);
    height: min(9.8214285714vw, 6.875rem);
    font-size: min(1.7857142857vw, 1.25rem);
    letter-spacing: 0.12em;
    gap: min(1.7857142857vw, 1.25rem);
  }
}
.cta-button:before {
  content: "";
  width: 6.1538461538vw;
  height: 4.358974359vw;
  background-image: url("../image/mail_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .cta-button:before {
    width: min(3.2142857143vw, 2.25rem);
    height: min(2.3214285714vw, 1.625rem);
  }
}
.cta-button span {
  margin-bottom: min(0.2678571429vw, 0.1875rem);
}
.cta-button:hover {
  background-color: #2a7a7a;
}

/* ヘッダー
------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 12.8205128205vw;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 4.1025641026vw;
  border-top: solid 0.7692307692vw #004499;
  padding-bottom: 0.2564102564vw;
  background-color: white;
}
@media screen and (min-width: 768px) {
  .header {
    height: min(6.25vw, 4.375rem);
    padding-left: min(2.5892857143vw, 1.8125rem);
    border-top: solid min(0.3571428571vw, 0.25rem) #004499;
    padding-bottom: min(0.0892857143vw, 0.0625rem);
    gap: min(2.5892857143vw, 1.8125rem);
  }
}
@media screen and (min-width: 768px) {
  .header__logo-link {
    flex-shrink: 0;
  }
}
.header__logo-image {
  display: block;
  width: 30.7692307692vw;
  height: 7.5333333333vw;
}
@media screen and (min-width: 768px) {
  .header__logo-image {
    width: min(14.2857142857vw, 10rem);
    height: min(3.4973214286vw, 2.448125rem);
  }
}
@media screen and (min-width: 768px) {
  .header__menu {
    height: 100%;
    display: flex;
  }
}
.header__navi {
  position: fixed;
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.6s grid-template-rows ease;
  top: 12.8205128205vw;
  left: 0;
  right: 0;
  background-color: #004499;
}
@media screen and (min-width: 768px) {
  .header__navi {
    position: static;
    display: block;
    height: 100%;
    background-color: white;
  }
}
.header__navi--active {
  grid-template-rows: 1fr;
}
.header__navi-list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .header__navi-list {
    flex-direction: row;
    height: 100%;
  }
}
.header__navi-list-item:not(:first-child) {
  border-top: 1px solid white;
}
@media screen and (min-width: 768px) {
  .header__navi-list-item:not(:first-child) {
    border-top: none;
  }
}
@media screen and (min-width: 768px) {
  .header__navi-list-item {
    border-left: 1px solid #EFEFEF;
    line-height: 1.5;
    min-width: min(14.2857142857vw, 10rem);
  }
}
.header__navi-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.8205128205vw 4.2564102564vw 3.0769230769vw 3.5897435897vw;
  color: white;
  font-size: 3.8461538462vw;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .header__navi-link {
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 0 min(1.4285714286vw, 1rem);
    font-size: min(1.25vw, 0.875rem);
    height: 100%;
    color: #111111;
    text-align: center;
    letter-spacing: 0.06em;
  }
}
@media screen and (min-width: 768px) {
  .header__navi-link span {
    display: inline-block;
  }
}
.header__navi-link::after {
  content: "";
  display: block;
  width: 1.2820512821vw;
  height: 2.0512820513vw;
  background-image: url("../image/arrow_right_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .header__navi-link::after {
    width: 0;
    height: min(0.2678571429vw, 0.1875rem);
    background-image: none;
    background-color: #799cca;
    transition: width 0.2s ease-out;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .header__navi-link:hover {
    background-color: #f3f5fb;
  }
}
@media screen and (min-width: 768px) {
  .header__navi-link:hover::after {
    width: 100%;
  }
}
.header__button-wrapper {
  display: flex;
}
.header__contact-button {
  width: 17.9487179487vw;
  height: 11.7948717949vw;
  background-color: #F3F5FB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 2.5641025641vw;
  font-weight: 500;
  color: white;
  background-color: #349898;
}
@media screen and (min-width: 768px) {
  .header__contact-button {
    width: min(12.3214285714vw, 8.625rem);
    height: min(5.8035714286vw, 4.0625rem);
    font-size: min(1.0714285714vw, 0.75rem);
    font-weight: bold;
    transition: background-color 0.2s ease-out;
  }
  .header__contact-button:hover {
    background-color: #2a7a7a;
  }
}
.header__contact-button::before {
  content: "";
  display: block;
  width: 4.6153846154vw;
  height: 3.7512820513vw;
  background-image: url("../image/mail_icon2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 1.2307692308vw;
}
@media screen and (min-width: 768px) {
  .header__contact-button::before {
    width: min(2.4107142857vw, 1.6875rem);
    height: min(1.9419642857vw, 1.359375rem);
    margin-bottom: min(0.5803571429vw, 0.40625rem);
  }
}
.header__menu-button {
  width: 14.358974359vw;
  height: 11.7948717949vw;
  background-color: #F3F5FB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 2.5641025641vw;
  font-weight: 500;
  color: #004499;
}
@media screen and (min-width: 768px) {
  .header__menu-button {
    display: none;
  }
}
.header__menu-button::before {
  content: "";
  display: block;
  width: 5.1282051282vw;
  height: 3.8461538462vw;
  background-image: url("../image/menu_icon_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 1.2307692308vw;
}
.header__menu-button--active {
  background-color: #004499;
  color: white;
}
.header__menu-button--active::before {
  background-image: url("../image/menu_icon_white.svg");
}

/* フッター
------------------------------------------ */
.footer {
  padding-block: 8.2051282051vw;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: min(2.8571428571vw, 2rem);
  }
}
@media screen and (min-width: 768px) {
  .footer__container {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    max-width: min(109.4642857143vw, 76.625rem);
    margin-inline: auto;
  }
}
.footer__link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4.358974359vw 8.2051282051vw;
  margin-bottom: 8.2051282051vw;
  font-size: 2.5641025641vw;
}
@media screen and (min-width: 768px) {
  .footer__link-list {
    width: unset;
    flex-wrap: nowrap;
    gap: min(2.8571428571vw, 2rem);
    margin-bottom: 0;
    font-size: min(0.8928571429vw, 0.625rem);
  }
}
.footer__link {
  font-weight: 500;
  color: #9A959E;
}
.footer__copyright {
  text-align: center;
  font-size: 3.0769230769vw;
  letter-spacing: 0.075em;
  color: #9A959E;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    line-height: 1;
    text-align: left;
    font-size: min(1.0714285714vw, 0.75rem);
  }
}

.company {
  color: #1E1E1E;
  font-size: 4.1025641026vw;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .company {
    font-size: min(1.4285714286vw, 1rem);
  }
}

/* コンテナ
------------------------------------------ */
.l-section {
  padding-block: 24.6153846154vw;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-block: min(8.5714285714vw, 6rem);
  }
}
.l-section--bg {
  background-color: #F3F5FB;
}
.l-section--noPt {
  padding-top: 0;
}

.l-container {
  padding-inline: 4.1025641026vw;
  max-width: 1120px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-container {
    padding-inline: min(1.7857142857vw, 1.25rem);
  }
}

/* 部品
------------------------------------------ */
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5.1282051282vw;
  width: 100%;
  height: 23.0769230769vw;
  border-radius: 2.0512820513vw;
  background-color: #299EAB;
  color: #fff;
  font-size: 6.1538461538vw;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn {
    column-gap: min(1.7857142857vw, 1.25rem);
    width: min(34.8214285714vw, 24.375rem);
    height: min(8.0357142857vw, 5.625rem);
    border-radius: min(0.7142857143vw, 0.5rem);
    font-size: min(2.1428571429vw, 1.5rem);
  }
}
.c-btn::before {
  content: "";
  display: block;
  width: 7.6923076923vw;
  height: 6.4102564103vw;
  background-image: url("../image/mail_icon2.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-btn::before {
    width: min(2.6785714286vw, 1.875rem);
    height: min(2.2321428571vw, 1.5625rem);
  }
}
.c-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0C626B;
  box-shadow: 0 0.5128205128vw 0.5128205128vw rgba(0, 0, 0, 0.25);
  border-radius: 2.0512820513vw;
  position: absolute;
  z-index: -1;
  bottom: -1.2820512821vw;
}
@media screen and (min-width: 768px) {
  .c-btn::after {
    box-shadow: 0 0 min(0.1785714286vw, 0.125rem) min(0.1785714286vw, 0.125rem) rgba(0, 0, 0, 0.25);
    border-radius: min(0.7142857143vw, 0.5rem);
    bottom: max(-0.4464285714vw, -0.3125rem);
  }
}
@media (hover) and (min-width: 1080px) {
  .c-btn:hover {
    background-color: #0C626B;
  }
}

.c-heading2 {
  font-size: 6.1538461538vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  column-gap: 2.0512820513vw;
  margin-bottom: 12.3076923077vw;
}
@media screen and (min-width: 768px) {
  .c-heading2 {
    font-size: min(2.8571428571vw, 2rem);
    column-gap: min(0.7142857143vw, 0.5rem);
    margin-bottom: min(8.5714285714vw, 6rem);
  }
}
.c-heading2::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 12.6923076923vw;
  aspect-ratio: 1;
  background-image: url("../image/heading_icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .c-heading2::before {
    width: min(4.4196428571vw, 3.09375rem);
  }
}

.c-heading3 {
  color: #004499;
  font-size: 6.1538461538vw;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12.3076923077vw;
}
@media screen and (min-width: 768px) {
  .c-heading3 {
    font-size: min(2.8571428571vw, 2rem);
    text-align: left;
    margin-bottom: min(4.2857142857vw, 3rem);
  }
}

.btn_to_top {
  display: block;
  width: 12.3076923077vw;
  aspect-ratio: 1;
  position: fixed;
  bottom: 4.1025641026vw;
  right: 4.1025641026vw;
}
@media screen and (min-width: 768px) {
  .btn_to_top {
    width: min(4.2857142857vw, 3rem);
    bottom: min(1.4285714286vw, 1rem);
    right: min(1.4285714286vw, 1rem);
  }
}

/* FV
------------------------------------------ */
.fv {
  padding-top: 12.8205128205vw;
  height: 198.2051282051vw;
  background-image: url("../image/fv_bg_sp.png");
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-top: min(6.25vw, 4.375rem);
    background-image: url("../image/fv_bg_pc.png");
    height: min(56.25vw, 39.375rem);
  }
}
.fv__inner {
  padding-top: 7.1794871795vw;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding-top: min(8.5714285714vw, 6rem);
    display: grid;
    grid-template-areas: "text img" "btn img";
    justify-content: space-between;
  }
}
.fv__text {
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6.1538461538vw;
}
@media screen and (min-width: 768px) {
  .fv__text {
    text-align: left;
    grid-area: text;
    align-self: start;
    font-size: min(2.1428571429vw, 1.5rem);
    margin-bottom: 0;
  }
}
.fv__title {
  font-size: 8.2051282051vw;
  text-shadow: 0 1.0256410256vw 1.0256410256vw rgba(0, 0, 0, 0.25);
  margin-bottom: 6.1538461538vw;
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: min(4.2857142857vw, 3rem);
    margin-bottom: min(2.8571428571vw, 2rem);
  }
}
.fv__lead {
  font-size: 5.1282051282vw;
}
@media screen and (min-width: 768px) {
  .fv__lead {
    font-size: min(2.1428571429vw, 1.5rem);
  }
}
.fv__imgWrapper {
  height: 90.7692307692vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 6.1538461538vw;
}
@media screen and (min-width: 768px) {
  .fv__imgWrapper {
    grid-area: img;
    width: min(38.4821428571vw, 26.9375rem);
    height: min(31.6071428571vw, 22.125rem);
    margin-bottom: 0;
  }
}
.fv__img {
  width: 69.4871794872vw;
}
@media screen and (min-width: 768px) {
  .fv__img {
    width: min(32.5vw, 22.75rem);
  }
}
.fv__circle {
  width: 35.3846153846vw;
  aspect-ratio: 1;
  background-image: url("../image/bg_circle.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #004499;
  font-size: 4.6153846154vw;
  font-weight: 700;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .fv__circle {
    width: min(12.3214285714vw, 8.625rem);
    font-size: min(1.7857142857vw, 1.25rem);
    line-height: 1.2;
  }
}
.fv__circle--lt {
  top: 0;
  left: 0;
}
.fv__circle--lb {
  bottom: 0;
  left: 0;
}
.fv__circle--rt {
  top: 0;
  right: 0;
}
.fv__circle--rb {
  bottom: 0;
  right: 0;
}
.fv__btn {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .fv__btn {
    grid-area: btn;
    align-self: end;
  }
}

/* COMPANY®導入・運用におけるお悩み事
------------------------------------------ */
@media screen and (min-width: 768px) {
  .worries__wrapper {
    padding-inline: min(4.2857142857vw, 3rem);
  }
}
.worries__top {
  height: 96.1538461538vw;
  position: relative;
  margin-bottom: 14.358974359vw;
}
@media screen and (min-width: 768px) {
  .worries__top {
    width: min(75.9821428571vw, 53.1875rem);
    height: min(29.4642857143vw, 20.625rem);
    margin-inline: auto;
    margin-bottom: min(5vw, 3.5rem);
  }
}
.worries__img {
  width: 44.8717948718vw;
  position: absolute;
  top: 17.6923076923vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .worries__img {
    width: min(20.3571428571vw, 14.25rem);
    top: unset;
    bottom: 0;
  }
}
.worries__balloon {
  color: #004499;
  text-align: center;
  font-size: 3.0769230769vw;
  font-weight: 700;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .worries__balloon {
    font-size: min(1.6071428571vw, 1.125rem);
  }
}
.worries__balloon--01 {
  width: 49.2307692308vw;
  height: 16.6666666667vw;
  background-image: url("../image/worrie_balloon_sp_01.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .worries__balloon--01 {
    width: min(25.7142857143vw, 18rem);
    height: min(8.3035714286vw, 5.8125rem);
    background-image: url("../image/worrie_balloon_pc_02.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: unset;
    right: min(9.6428571429vw, 6.75rem);
  }
}
.worries__balloon--02 {
  width: 38.7179487179vw;
  height: 16.6666666667vw;
  background-image: url("../image/worrie_balloon_sp_02.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 5.8974358974vw;
  right: 0;
}
@media screen and (min-width: 768px) {
  .worries__balloon--02 {
    width: min(27.2321428571vw, 19.0625rem);
    height: min(8.3035714286vw, 5.8125rem);
    background-image: url("../image/worrie_balloon_pc_01.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: min(1.1607142857vw, 0.8125rem);
    left: min(7.9464285714vw, 5.5625rem);
  }
}
.worries__balloon--03 {
  width: 50vw;
  height: 16.6666666667vw;
  background-image: url("../image/worrie_balloon_sp_03.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 21.0256410256vw;
  left: 0;
}
@media screen and (min-width: 768px) {
  .worries__balloon--03 {
    width: min(27.2321428571vw, 19.0625rem);
    height: min(8.3035714286vw, 5.8125rem);
    background-image: url("../image/worrie_balloon_pc_03.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: unset;
    bottom: min(7.6339285714vw, 5.34375rem);
    left: 0;
  }
}
.worries__balloon--04 {
  width: 57.1794871795vw;
  height: 23.0769230769vw;
  background-image: url("../image/worrie_balloon_sp_04.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .worries__balloon--04 {
    width: min(29.6428571429vw, 20.75rem);
    height: min(11.9642857143vw, 8.375rem);
    background-image: url("../image/worrie_balloon_pc_04.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: unset;
    bottom: min(7.5446428571vw, 5.28125rem);
    left: unset;
    right: 0;
  }
}
.worries__balloonInner {
  position: absolute;
  width: 100%;
  left: 0;
}
.worries__balloonInner--01 {
  top: 0.4em;
}
.worries__balloonInner--02 {
  top: 0.4em;
}
@media screen and (min-width: 768px) {
  .worries__balloonInner--02 {
    top: 1.2em;
  }
}
.worries__balloonInner--03 {
  bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  .worries__balloonInner--03 {
    bottom: unset;
    top: 0.4em;
  }
}
.worries__balloonInner--04 {
  bottom: 1em;
}
@media screen and (min-width: 768px) {
  .worries__balloonInner--04 {
    bottom: unset;
    top: 0.8em;
  }
}
.worries__textWrapper {
  text-align: center;
  font-size: 5.1282051282vw;
  font-weight: 700;
  margin-bottom: 12.3076923077vw;
}
@media screen and (min-width: 768px) {
  .worries__textWrapper {
    font-size: min(2.8571428571vw, 2rem);
    margin-bottom: min(4.2857142857vw, 3rem);
  }
}
.worries__emphasis {
  color: #17828E;
  position: relative;
}
@media screen and (min-width: 768px) {
  .worries__emphasis {
    font-size: min(4.2857142857vw, 3rem);
    margin-right: 0.2em;
  }
}
.worries__emphasis::before {
  content: "";
  width: calc(100% + 1.7948717949vw);
  height: 3.5897435897vw;
  background-image: url("../image/worries_line_sp.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: -1.7948717949vw;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .worries__emphasis::before {
    width: 100%;
    height: min(1.25vw, 0.875rem);
    background-image: url("../image/worries_line_pc.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
  }
}

/* COMPANY®とは
------------------------------------------ */
.about__top {
  background-color: #fff;
  border: 1.0256410256vw solid #004499;
  border-radius: 4.1025641026vw;
  padding-block: 12.3076923077vw;
  padding-inline: 12.0512820513vw;
  margin-bottom: 8.2051282051vw;
}
@media screen and (min-width: 768px) {
  .about__top {
    border-width: min(0.3571428571vw, 0.25rem);
    border-radius: min(1.4285714286vw, 1rem);
    padding: min(4.2857142857vw, 3rem);
    margin-bottom: min(2.8571428571vw, 2rem);
    display: flex;
    column-gap: min(4.2857142857vw, 3rem);
  }
}
.about__logo {
  display: block;
  width: 61.5384615385vw;
  margin-inline: auto;
  margin-bottom: 12.3076923077vw;
}
@media screen and (min-width: 768px) {
  .about__logo {
    flex-shrink: 0;
    width: min(21.4285714286vw, 15rem);
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .aboutList {
    width: min(80.0892857143vw, 56.0625rem);
    margin-inline: auto;
  }
}
.aboutList__item {
  display: flex;
  column-gap: 3.3333333333vw;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .aboutList__item {
    column-gap: min(1.4285714286vw, 1rem);
    align-items: center;
  }
}
.aboutList__item:not(:last-child) {
  margin-bottom: 6.1538461538vw;
}
@media screen and (min-width: 768px) {
  .aboutList__item:not(:last-child) {
    margin-bottom: min(2.8571428571vw, 2rem);
  }
}
.aboutList__item::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 4.6153846154vw;
  aspect-ratio: 1;
  background-image: url("../image/check_mark.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  top: 0.4em;
}
@media screen and (min-width: 768px) {
  .aboutList__item::before {
    width: min(3.2142857143vw, 2.25rem);
    position: static;
  }
}
.aboutList__text {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .aboutList__text {
    font-size: min(1.7857142857vw, 1.25rem);
  }
}
.aboutList__text--em {
  color: #004499;
  font-size: 5.1282051282vw;
}
@media screen and (min-width: 768px) {
  .aboutList__text--em {
    font-size: min(2.1428571429vw, 1.5rem);
  }
}

/* 富士ソフト×COMPANY®サービス内容
------------------------------------------ */
.serviceList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 8.2051282051vw;
  margin-bottom: 12.3076923077vw;
}
@media screen and (min-width: 768px) {
  .serviceList {
    column-gap: min(2.8571428571vw, 2rem);
    row-gap: min(4.2857142857vw, 3rem);
    margin-bottom: min(8.5714285714vw, 6rem);
  }
}
.serviceList__item {
  width: 100%;
  border: 0.5128205128vw solid #004499;
  border-radius: 2.0512820513vw;
  background-color: #fff;
  padding: 1.0256410256vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .serviceList__item {
    width: calc((100% - min(2.8571428571vw, 2rem)) / 2);
    border-width: min(0.1785714286vw, 0.125rem);
    border-radius: min(0.7142857143vw, 0.5rem);
    padding: min(0.3571428571vw, 0.25rem);
  }
}
.serviceList__item::before {
  content: "";
  width: 33.3333333333vw;
  height: 0.5128205128vw;
  background-color: #fff;
  position: absolute;
  top: -0.5128205128vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .serviceList__item::before {
    width: min(11.6071428571vw, 8.125rem);
    height: min(0.1785714286vw, 0.125rem);
    top: max(-0.1785714286vw, -0.125rem);
  }
}
.serviceList__itemInner {
  background-color: #F3F5FB;
  padding-block: 6.1538461538vw;
  padding-inline: 5.1282051282vw;
}
@media screen and (min-width: 768px) {
  .serviceList__itemInner {
    padding: min(2.1428571429vw, 1.5rem);
  }
}
.serviceList__heading {
  color: #004499;
  width: 25.8974358974vw;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .serviceList__heading {
    width: min(9.0178571429vw, 6.3125rem);
  }
}
.serviceList__title {
  text-align: center;
  color: #004499;
  font-size: 5.1282051282vw;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2.5641025641vw;
}
@media screen and (min-width: 768px) {
  .serviceList__title {
    font-size: min(1.7857142857vw, 1.25rem);
    margin-bottom: min(0.8928571429vw, 0.625rem);
  }
}

/* 進め方のイメージ
------------------------------------------ */
.flowList__item:not(:last-child) {
  margin-bottom: 12.3076923077vw;
}
@media screen and (min-width: 768px) {
  .flowList__item:not(:last-child) {
    margin-bottom: min(8.5714285714vw, 6rem);
  }
}
.flowList__top {
  margin-bottom: 8.2051282051vw;
}
@media screen and (min-width: 768px) {
  .flowList__top {
    display: flex;
    column-gap: min(2.8571428571vw, 2rem);
    margin-bottom: min(2.8571428571vw, 2rem);
  }
}
.flowList__title {
  width: 75.3846153846vw;
  height: 17.4358974359vw;
  margin-inline: auto;
  margin-bottom: 12.3076923077vw;
  background-image: url("../image/flow_balloon_sp.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: #004499;
  font-size: 5.1282051282vw;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding-top: 3.8461538462vw;
}
@media screen and (min-width: 768px) {
  .flowList__title {
    flex-shrink: 0;
    width: min(27.2321428571vw, 19.0625rem);
    height: min(8.3035714286vw, 5.8125rem);
    margin-inline: 0;
    margin-bottom: 0;
    background-image: url("../image/flow_balloon_pc_01.png");
    font-size: min(2.1428571429vw, 1.5rem);
    padding-top: min(2.1428571429vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) {
  .flowList__title--wide {
    width: min(29.0178571429vw, 20.3125rem);
    background-image: url("../image/flow_balloon_pc_02.png");
  }
}
.flowList__text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .flowList__text {
    text-align: left;
    font-size: min(2.1428571429vw, 1.5rem);
  }
}

.flowImg {
  width: 75.3846153846vw;
  height: 160.5128205128vw;
  margin-inline: auto;
  background-image: url("../image/flow_img_sp_01.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flowImg {
    width: 100%;
    height: min(13.3928571429vw, 9.375rem);
    margin-inline: 0;
    background-image: url("../image/flow_img_pc_01.svg");
  }
}
.flowImg::before {
  content: "";
  display: block;
  width: 21.2820512821vw;
  height: 20.5128205128vw;
  background-image: url("../image/flow_deco_01.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -2.8205128205vw;
  left: -6.4102564103vw;
}
@media screen and (min-width: 768px) {
  .flowImg::before {
    width: min(7.4107142857vw, 5.1875rem);
    height: min(7.1428571429vw, 5rem);
    top: unset;
    bottom: max(-0.9821428571vw, -0.6875rem);
    left: max(-2.2321428571vw, -1.5625rem);
  }
}
.flowImg--02 {
  height: 116.4102564103vw;
  background-image: url("../image/flow_img_sp_02.svg");
}
@media screen and (min-width: 768px) {
  .flowImg--02 {
    height: min(13.3928571429vw, 9.375rem);
    background-image: url("../image/flow_img_pc_02.svg");
  }
}
.flowImg--02::before {
  width: 18.9743589744vw;
  height: 21.5384615385vw;
  background-image: url("../image/flow_deco_02.svg");
  top: unset;
  left: unset;
  bottom: -5.1282051282vw;
  right: -4.6153846154vw;
}
@media screen and (min-width: 768px) {
  .flowImg--02::before {
    width: min(6.6071428571vw, 4.625rem);
    height: min(7.5vw, 5.25rem);
    bottom: max(-0.7142857143vw, -0.5rem);
    right: max(-0.9821428571vw, -0.6875rem);
  }
}
.flowImg__list {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .flowImg__list {
    flex-direction: row;
  }
}
.flowImg__item {
  text-align: center;
  height: calc((100% - 28.2051282051vw) / 6);
  padding-top: 1.2820512821vw;
}
@media screen and (min-width: 768px) {
  .flowImg__item {
    width: calc((100% - min(15.625vw, 10.9375rem)) / 6);
    height: 100%;
    padding-top: min(2.8571428571vw, 2rem);
  }
}
.flowImg__item--02 {
  height: calc((100% - 28.2051282051vw) / 4);
}
@media screen and (min-width: 768px) {
  .flowImg__item--02 {
    height: 100%;
    width: min(18.75vw, 13.125rem);
  }
}
.flowImg__item--first {
  height: 28.2051282051vw;
  padding-top: 7.6923076923vw;
}
@media screen and (min-width: 768px) {
  .flowImg__item--first {
    width: min(14.7321428571vw, 10.3125rem);
    height: 100%;
    padding-left: min(0.4464285714vw, 0.3125rem);
    padding-top: min(2.8571428571vw, 2rem);
  }
}
@media screen and (min-width: 768px) {
  .flowImg__item--first02 {
    width: min(19.6428571429vw, 13.75rem);
  }
}
.flowImg__item--noPt {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .flowImg__item--noPt {
    padding-top: min(2.8571428571vw, 2rem);
  }
}
.flowImg__item--last {
  padding-top: 2.5641025641vw;
}
@media screen and (min-width: 768px) {
  .flowImg__item--last {
    width: min(12.5vw, 8.75rem);
    padding-left: min(0.4464285714vw, 0.3125rem);
    padding-top: min(2.8571428571vw, 2rem);
  }
}
.flowImg__title {
  color: #002656;
  font-size: 3.5897435897vw;
  font-weight: 700;
  margin-bottom: 2.0512820513vw;
}
@media screen and (min-width: 768px) {
  .flowImg__title {
    font-size: min(1.25vw, 0.875rem);
    margin-bottom: min(0.8928571429vw, 0.625rem);
    height: min(3.3928571429vw, 2.375rem);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.flowImg__title--white {
  color: #fff;
}
.flowImg__text {
  color: #1E1E1E;
  font-size: 3.0769230769vw;
}
@media screen and (min-width: 768px) {
  .flowImg__text {
    font-size: min(1.0714285714vw, 0.75rem);
    height: min(3.3928571429vw, 2.375rem);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.flowImg__text--white {
  color: #fff;
}

/* 富士ソフト×COMPANY®の強み
------------------------------------------ */
@media screen and (min-width: 768px) {
  .strengthsList__item {
    display: grid;
    column-gap: min(4.2857142857vw, 3rem);
    grid-template-areas: "heading img" "text img";
    row-gap: 0;
    grid-template-rows: auto 1fr;
    align-items: start;
  }
  .strengthsList__item--reverse {
    grid-template-areas: "img heading" "img text";
  }
}
.strengthsList__item:not(:last-child) {
  margin-bottom: 12.3076923077vw;
}
@media screen and (min-width: 768px) {
  .strengthsList__item:not(:last-child) {
    margin-bottom: min(4.2857142857vw, 3rem);
  }
}
@media screen and (min-width: 768px) {
  .strengthsList__headingBlock {
    grid-area: heading;
    margin-bottom: min(2.8571428571vw, 2rem);
  }
}
.strengthsList__heading {
  margin-bottom: 8.2051282051vw;
}
@media screen and (min-width: 768px) {
  .strengthsList__heading {
    margin-bottom: 0;
  }
}
.strengthsList__img {
  margin-bottom: 8.2051282051vw;
}
@media screen and (min-width: 768px) {
  .strengthsList__img {
    grid-area: img;
    width: min(33.9285714286vw, 23.75rem);
    margin-bottom: 0;
  }
}
.strengthsList__text {
  grid-area: text;
  align-self: start;
}

/* 導入事例
------------------------------------------ */
.caseItem {
  background-color: #F3F5FB;
  padding: 5.1282051282vw 2.5641025641vw 12.3076923077vw;
}
@media screen and (min-width: 768px) {
  .caseItem {
    padding: min(4.2857142857vw, 3rem);
    position: relative;
  }
}
.caseItem:not(:last-child) {
  margin-bottom: 12.3076923077vw;
}
@media screen and (min-width: 768px) {
  .caseItem:not(:last-child) {
    margin-bottom: min(4.2857142857vw, 3rem);
  }
}
.caseItem__heading {
  width: 41.0256410256vw;
  margin-bottom: 5.1282051282vw;
}
@media screen and (min-width: 768px) {
  .caseItem__heading {
    width: min(14.2857142857vw, 10rem);
    margin-bottom: 0;
    position: absolute;
    top: min(1.4285714286vw, 1rem);
    left: min(1.4285714286vw, 1rem);
  }
}
.caseItem__top {
  padding-bottom: 12.3076923077vw;
}
@media screen and (min-width: 768px) {
  .caseItem__top {
    display: flex;
    column-gap: min(2.8571428571vw, 2rem);
    padding-bottom: min(4.2857142857vw, 3rem);
  }
}
@media screen and (min-width: 768px) {
  .caseItem__topLeft {
    padding-top: min(4.2857142857vw, 3rem);
  }
}
@media screen and (min-width: 768px) {
  .caseItem__topRight {
    flex-shrink: 0;
    width: min(39.2857142857vw, 27.5rem);
  }
}
.caseItem__lead {
  color: #004499;
  font-size: 5.1282051282vw;
  font-weight: 700;
  margin-bottom: 6.1538461538vw;
}
@media screen and (min-width: 768px) {
  .caseItem__lead {
    font-size: min(2.5vw, 1.75rem);
    margin-bottom: min(2.1428571429vw, 1.5rem);
  }
}
.caseItem__text {
  margin-bottom: 8.2051282051vw;
}
@media screen and (min-width: 768px) {
  .caseItem__text {
    margin-bottom: 0;
  }
}
.caseItem__bottom {
  padding-bottom: 12.3076923077vw;
  display: none;
}
@media screen and (min-width: 768px) {
  .caseItem__bottom {
    padding-bottom: min(4.2857142857vw, 3rem);
  }
}
.caseItem__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  width: fit-content;
  height: 11.2820512821vw;
  padding-inline: 8.2051282051vw;
  text-align: center;
  background-color: #fff;
  border: 0.2564102564vw solid #004499;
  border-radius: 2.0512820513vw;
  color: #004499;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .caseItem__btn {
    height: min(3.9285714286vw, 2.75rem);
    padding-inline: min(2.8571428571vw, 2rem);
    border-width: min(0.0892857143vw, 0.0625rem);
    border-radius: min(0.7142857143vw, 0.5rem);
  }
}
@media (hover) and (min-width: 1080px) {
  .caseItem__btn:hover {
    background-color: #C9C9C9;
  }
}

@media screen and (min-width: 768px) {
  .caseDescription__item {
    display: flex;
    column-gap: min(2.8571428571vw, 2rem);
    align-items: flex-start;
  }
  .caseDescription__item--aic {
    align-items: center;
  }
}
.caseDescription__item:not(:last-child) {
  margin-bottom: 6.1538461538vw;
}
@media screen and (min-width: 768px) {
  .caseDescription__item:not(:last-child) {
    margin-bottom: min(2.1428571429vw, 1.5rem);
  }
}
.caseDescription__title {
  width: 26.6666666667vw;
  aspect-ratio: 1;
  background-image: url("../image/bg_circle_blue_line.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-inline: auto;
  margin-bottom: 8.2051282051vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #004499;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .caseDescription__title {
    flex-shrink: 0;
    width: min(12.3214285714vw, 8.625rem);
    margin-inline: 0;
    margin-bottom: 0;
    font-size: min(1.7857142857vw, 1.25rem);
  }
}
.caseDescription__title--sm {
  display: block;
  font-size: 0.8em;
}
.caseDescription__dl {
  display: flex;
  column-gap: 2.5641025641vw;
}
@media screen and (min-width: 768px) {
  .caseDescription__dl {
    column-gap: min(1.0714285714vw, 0.75rem);
  }
}
.caseDescription__dl:not(:last-child) {
  margin-bottom: 3.0769230769vw;
}
@media screen and (min-width: 768px) {
  .caseDescription__dl:not(:last-child) {
    margin-bottom: min(1.0714285714vw, 0.75rem);
  }
}
.caseDescription__dt {
  flex-shrink: 0;
}
.caseDescription__dd {
  color: #004499;
  font-weight: 700;
}
.caseDescription__ul {
  list-style: initial;
  padding-left: 1em;
}
.caseDescription__li {
  list-style-type: "・";
  padding-left: 0.2em;
}

/* お問い合わせ
------------------------------------------ */
.contact {
  background-color: #003578;
  padding-block: 24.6153846154vw;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: min(8.5714285714vw, 6rem);
  }
}
.contact__text {
  color: #fff;
  text-align: center;
  font-size: 5.1282051282vw;
  font-weight: 700;
  margin-bottom: 12.3076923077vw;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: min(2.8571428571vw, 2rem);
    margin-bottom: min(4.2857142857vw, 3rem);
  }
}/*# sourceMappingURL=style.css.map */


