@charset "UTF-8";
/* 
.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

*/
/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0;
  background-color: white;
  box-shadow: 18px 0 18px #a6a6a6;
  font-family: "Yu Gothic Medium", "YuGothic", "YuGothic-Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", sans-serif;
}
@media screen and (max-width: 1000px) {
  .header {
    height: 75px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    height: 50px;
  }
}
.header.scrolled {
  padding: 0;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: 15px 10px;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 0 20px;
  width: 410px;
}
@media screen and (max-width: 767px) {
  .header__left {
    width: 100%;
  }
}
.header__right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 20px;
}
@media screen and (max-width: 1280px) {
  .header__right {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media screen and (max-width: 1000px) {
  .header__right {
    display: none;
  }
}

.header-logo__link {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .header-logo__link {
    gap: 16px;
  }
}
.header-logo__link:hover {
  opacity: 1;
}
.header-logo__item01 {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .header-logo__item01 {
    margin-top: 1px;
    width: 143px;
  }
}
.header-logo__item02 {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  color: #1a7ea6;
}
@media screen and (max-width: 767px) {
  .header-logo__item02 {
    font-size: 10px;
  }
}

.header-nav-pc__list {
  display: flex;
  gap: 0 22px;
  margin-top: 24px;
}
@media screen and (max-width: 1280px) {
  .header-nav-pc__list {
    margin: 2px 0 5px;
    padding-right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .header-nav-pc__list {
    display: none;
  }
}
.header-nav-pc__list li {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  color: #646464;
}

.header-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.header-btns__item {
  width: 180px;
  height: 40px;
}

/* nav-btn */
.c-nav__button-wrap {
  display: none;
}

.c-nav__sp {
  display: none;
}

@media screen and (max-width: 1000px) {
  .c-nav__button-wrap {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
  }
  .c-nav__button {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 15px;
    border: none;
    background: none;
  }
  .c-nav__button-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1A7EA6;
    transition: 0.3s ease-in;
  }
  .c-nav__button-item:nth-child(2) {
    top: 50%;
    width: 100%;
  }
  .c-nav__button-item:nth-child(3) {
    top: 100%;
  }
  .c-nav__button.is-close .c-nav__button-item {
    top: 50%;
    transform: rotate(45deg);
  }
  .c-nav__button.is-close .c-nav__button-item:nth-child(2) {
    width: 0;
  }
  .c-nav__button.is-close .c-nav__button-item:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }
  /* sp ナビ */
  .c-nav__sp {
    display: block;
    position: fixed;
    top: 75px;
    right: 0;
    width: 100%;
    height: calc(100vh - 60px);
    z-index: 775;
    padding: 0 0px 0px 0;
    background-color: #fff;
    transform: translateX(110%);
    transition: all 0.2s ease-in;
    overflow-y: auto;
  }
  .c-nav__sp.is-open {
    transform: translateX(0%);
  }
  .c-nav__sp > nav > ul > li > a {
    display: block;
    padding: 15px 10px 13px 10px;
    border-bottom: 1px solid #ddd;
  }
}
@media screen and (max-width: 767px) {
  .c-nav__button-wrap {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 50px;
  }
  .c-nav__button {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    margin: auto;
    border: none;
    background: none;
  }
  .c-nav__sp {
    top: 49px;
    height: calc(100vh - 50px);
  }
}
/* Main Visual */
.mainv {
  position: relative;
}
.mainv__img-pc {
  position: relative;
  width: 100%;
  height: auto;
  height: 500px;
  z-index: 1;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mainv__img-pc {
    height: 580px;
  }
}
.mainv__img-pc img {
  width: 100%;
  height: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 50%;
     object-position: 100% 50%;
}
@media screen and (max-width: 1000px) {
  .mainv__img-pc img {
    -o-object-position: 73% 50%;
       object-position: 73% 50%;
  }
}
@media screen and (max-width: 767px) {
  .mainv__img-pc img {
    height: 580px;
    -o-object-position: 50%;
       object-position: 50%;
  }
}

.mainv-block {
  display: flex;
  align-items: flex-start;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .mainv-block {
    top: 40px;
    height: calc(100% - 40px);
  }
}
.mainv-block__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .mainv-block__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
  }
}
.mainv-block__content {
  width: 460px;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  .mainv-block__content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}
.mainv-block__title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 56px;
  color: #1A7EA6;
}
@media screen and (max-width: 767px) {
  .mainv-block__title {
    font-size: 39px;
  }
}
@media screen and (max-width: 375px) {
  .mainv-block__title {
    font-size: 37px;
  }
}
.mainv-block__title > span {
  display: block;
  font-size: 32px;
  line-height: 1.40625;
  text-align: left;
  margin-bottom: -9px;
}
@media screen and (max-width: 767px) {
  .mainv-block__title > span {
    margin-bottom: -3px;
    font-size: 22px;
  }
}
.mainv-block__lead {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .mainv-block__lead {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .mainv-block__btns {
    position: relative;
    max-width: 100%;
    z-index: 2;
    padding-block: 20px 5px;
  }
  .mainv-block__btns::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: calc(100% + 60px);
    height: 100%;
    opacity: 0.5;
    background-color: #fff;
    z-index: -1;
  }
}
.mainv-block__btns-item {
  margin-bottom: 15px;
}
.mainv-block__btns-item a {
  width: 450px;
  max-width: 100%;
}

/* 今の採血室運営に、課題を感じていませんか？ */
.problem {
  padding-block: 87px 100px;
}
@media screen and (max-width: 767px) {
  .problem {
    padding-block: 30px 50px;
  }
}
.problem h2 {
  margin-bottom: 48px;
  font-size: 28px;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .problem h2 {
    margin-bottom: 35px;
    font-size: 16.8px;
  }
}
.problem h2 > em {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #1A7EA6;
  line-height: 1.75;
  margin-top: -10px;
}
@media screen and (max-width: 1000px) {
  .problem h2 > em {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .problem h2 > em {
    margin-top: 0px;
    font-size: 24px;
    line-height: 1.5;
  }
}
.problem h3 {
  width: 100%;
  max-width: 870px;
  margin: 0 auto 32px;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.7333333333;
}
@media screen and (max-width: 1000px) {
  .problem h3 {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .problem h3 {
    font-size: 28px;
    line-height: 1.5;
  }
}

.problem-block01 {
  margin-bottom: 40px;
}
.problem-block01__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 140px;
  background-color: #dcebff;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .problem-block01__item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
  }
}
.problem-block01__img {
  width: 250px;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .problem-block01__img {
    width: 225px;
  }
}
@media screen and (max-width: 767px) {
  .problem-block01__img {
    width: 100%;
    margin-bottom: 5px;
  }
}
.problem-block01__text {
  flex: 1;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  .problem-block01__text {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .problem-block01__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .problem-block01__text {
    font-size: 15px;
  }
}

.problem-block02 {
  width: 100%;
  max-width: 870px;
  margin: 0 auto;
}
.problem-block02 p {
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .problem-block02 p {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .problem-block02 p {
    font-size: 15px;
  }
}
.problem-block02 p em {
  color: #1A7EA6;
  position: relative;
  display: inline-block;
  margin-right: 5px;
  background: linear-gradient(transparent 90%, #ff9baa 90% 100%);
}
@media screen and (max-width: 767px) {
  .problem-block02 p em {
    display: inline;
  }
}

/* 機器・システムの機能×運用・動線の分析<br>で実現するトータルソリューション */
.product {
  padding-block: 70px 60px;
  background-color: #5FA5C1;
}
@media screen and (max-width: 767px) {
  .product {
    padding-block: 40px 30px;
  }
}
.product h2 {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.75;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .product h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .product h2 {
    font-size: 21px;
  }
}
@media screen and (max-width: 375px) {
  .product h2 {
    font-size: 20px;
  }
}
.product h2 span {
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .product h2 span {
    display: block;
  }
}

.product-block01 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .product-block01 {
    gap: 5px;
    flex-direction: column;
  }
}
.product-block01__x {
  position: relative;
  bottom: 9px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .product-block01__x {
    font-size: 21px;
    bottom: 0;
  }
}

/* システム連携で「人海戦術」と「インシデント」を削減。 */
.kaiketsu {
  padding-block: 85px 100px;
  background-color: #dcebff;
}
@media screen and (max-width: 767px) {
  .kaiketsu {
    padding-block: 40px 50px;
  }
}
.kaiketsu h2 {
  margin-bottom: 33px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.75;
  color: #1A7EA6;
}
@media screen and (max-width: 1000px) {
  .kaiketsu h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .kaiketsu h2 {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
.kaiketsu__lead {
  margin: 30px 0 60px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kaiketsu__lead {
    margin: 20px 0 3%;
    font-size: 16px;
  }
}

.kaiketsu-block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block01 {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.kaiketsu-block01__contents {
  width: 62%;
  max-width: 602px;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block01__contents {
    width: 100%;
  }
}
.kaiketsu-block01__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  font-family: "Yu Gothic Medium", "YuGothic", "YuGothic-Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", sans-serif;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block01__text {
    font-size: 16px;
  }
}
.kaiketsu-block01__img {
  width: 284px;
  max-width: 31%;
  margin-top: 14px;
}
@media screen and (max-width: 1000px) {
  .kaiketsu-block01__img {
    max-width: 36%;
  }
}
@media screen and (max-width: 1000px) and (max-width: 767px) {
  .kaiketsu-block01__img {
    margin-top: 0;
    max-width: 100%;
    margin-inline: auto;
  }
}

.kaiketsu-block02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block02 {
    gap: 10px;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
}
.kaiketsu-block02__item {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 9px;
}
.kaiketsu-block02__link {
  display: block;
}
.kaiketsu-block02--pt2 {
  justify-content: flex-start;
}

.kaiketsu-block03 {
  margin-bottom: 86px;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block03 {
    margin-bottom: 45px;
  }
}
.kaiketsu-block03--pt2 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block03--pt2 {
    margin-bottom: 45px;
  }
}
.kaiketsu-block03--pt2 .kaiketsu-block03__row {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block03--pt2 .kaiketsu-block03__row {
    grid-template-columns: 1fr;
  }
}
.kaiketsu-block03--pt2 .kaiketsu-block03__item {
  padding: 22px 40px 23px;
}
@media screen and (max-width: 1000px) {
  .kaiketsu-block03--pt2 .kaiketsu-block03__item {
    padding: 22px 25px 23px;
  }
}
@media screen and (max-width: 767px) {
  .kaiketsu-block03--pt2 .kaiketsu-block03__item {
    padding: 20px 20px 20px;
  }
}
.kaiketsu-block03--pt2 .kaiketsu-block03__heading {
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .kaiketsu-block03--pt2 .kaiketsu-block03__heading {
    font-size: 19px;
  }
}
@media screen and (max-width: 767px) {
  .kaiketsu-block03--pt2 .kaiketsu-block03__heading {
    font-size: 18px;
  }
}
.kaiketsu-block03--pt2 .kaiketsu-block03__text {
  margin-top: 14px;
}
.kaiketsu-block03__title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  background-color: #1a7ea6;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block03__title {
    font-size: 16px;
  }
}
.kaiketsu-block03__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block03__row {
    grid-template-columns: 1fr;
  }
}
.kaiketsu-block03__item {
  padding: 20px 10px 30px;
  background-color: #fff;
  position: relative;
  padding: 20px 10px 20px;
}
.kaiketsu-block03__item::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #1A7EA6;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block03__item::after {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 90%;
    height: 1px;
    margin: auto;
  }
}
.kaiketsu-block03__item:last-of-type::after {
  display: none;
}
.kaiketsu-block03__heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .kaiketsu-block03__heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .kaiketsu-block03__heading {
    font-size: 16px;
  }
}
.kaiketsu-block03__text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block03__text {
    font-size: 14px;
  }
}

.kaiketsu-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .kaiketsu-btns {
    flex-direction: column;
    gap: 10px;
  }
}
.kaiketsu-btns__item {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .kaiketsu-btns__item {
    width: 100%;
    max-width: 300px;
  }
}
.kaiketsu-btns .c-btn01 > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 1px;
  height: 14px;
  background-color: #fff;
  rotate: -30deg;
}
.kaiketsu-btns .c-btn01 > span::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 1px;
  height: 14px;
  background-color: #fff;
  rotate: 30deg;
}

/* 商品ラインナップ */
.lineup {
  padding-block: 50px 100px;
}
@media screen and (max-width: 767px) {
  .lineup {
    padding-block: 30px 50px;
  }
}

.lineup-block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  .lineup-block01 {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.lineup-block01__left {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 37%;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .lineup-block01__left {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }
}
.lineup-block01__lead {
  margin-bottom: 10px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .lineup-block01__lead {
    margin-bottom: 5px;
    font-size: 16px;
  }
}
.lineup-block01__title {
  font-size: 36px;
}
@media screen and (max-width: 1000px) {
  .lineup-block01__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .lineup-block01__title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
.lineup-block01__right {
  width: 576px;
  max-width: 60%;
}
@media screen and (max-width: 767px) {
  .lineup-block01__right {
    max-width: 100%;
  }
}
.lineup-block01__text {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .lineup-block01__text {
    font-size: 16px;
  }
}

.tab .tab-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  margin-bottom: 34px;
}
@media screen and (max-width: 767px) {
  .tab .tab-head {
    gap: 2px;
    margin-bottom: 20px;
  }
}
.tab .tab-head li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  cursor: pointer;
  border-bottom: 2px solid #c1c1c1;
  background-color: #eeefef;
  color: #c1c1c1;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .tab .tab-head li {
    font-size: 12px;
    line-height: 1.5;
    padding: 2px 4px;
  }
}
.tab .tab-head li.is-active {
  background-color: #5fa5c1;
  border-bottom: 2px solid #1a7ea6;
  color: #fff;
}
.tab .tab-body__group {
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .tab .tab-body__group {
    grid-template-columns: 1fr;
    gap: 5px 2px;
  }
}
.tab .tab-body__group.is-active {
  display: grid;
}
.tab .tab-body__item {
  padding: 30px 10px;
}
.tab .tab-body__link {
  display: block;
  color: #646464;
}
.tab .tab-body__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
}
.tab .tab-body__lead {
  display: flex;
  align-items: flex-end;
  min-height: 2em;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.tab .tab-body__lead--pt2 {
  min-height: 3em;
}
.tab .tab-body__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.tab .tab-body__title--pt2 {
  font-size: 24px;
  line-height: 1;
}

/* 導入実績・お客様の声 */
.record {
  padding-block: 40px 100px;
  background-color: #eeefef;
}
@media screen and (max-width: 767px) {
  .record {
    padding-block: 30px 50px;
  }
}
.record h2 {
  margin-bottom: 34px;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .record h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.record-block01 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px 35px;
}
@media screen and (max-width: 1000px) {
  .record-block01 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .record-block01 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.record-block01__item {
  border-radius: 20px;
  overflow: hidden;
}
.record-block01__img img {
  width: 100%;
  height: auto;
}
.record-block01__contents {
  padding: 14px 20px 18px;
  background-color: #fff;
}
.record-block01__title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #1A7EA6;
}
@media screen and (max-width: 767px) {
  .record-block01__title {
    font-size: 16px;
  }
}
.record-block01__title > span {
  display: block;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .record-block01__title > span {
    font-size: 14px;
  }
}
.record-block01__text {
  min-height: 144px;
}
@media screen and (max-width: 767px) {
  .record-block01__text {
    min-height: auto;
  }
}
.record-block01__text p {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .record-block01__text p {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.record-block01__text p > em {
  background: linear-gradient(transparent 70%, #efea3a 70% 100%, transparent 100%);
}
.record-block01__btn {
  text-align: right;
}
.record-block01__btn a {
  position: relative;
  padding-left: 17px;
  font-size: 15px;
  line-height: 1.6;
  color: #1A7EA6;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .record-block01__btn a {
    font-size: 14px;
  }
}
.record-block01__btn a::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 13px;
  height: 15px;
  background: url(../img/icon-arrow.png) no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .record-block01__btn a::before {
    top: 4px;
  }
}

/* ご利用の流れ */
.flow {
  padding: 40px 0 75px;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 30px 0 50px;
  }
}
.flow h2 {
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.flow-block01__item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .flow-block01__item {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.flow-block01__no {
  font-size: 48px;
  font-weight: bold;
  color: #e5e6e5;
  line-height: 1;
  margin-right: 14px;
}
@media screen and (max-width: 767px) {
  .flow-block01__no {
    margin-right: 10px;
    font-size: 34px;
  }
}
.flow-block01__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 390px;
  height: 60px;
  margin-right: 20px;
  border-radius: 50px;
  background-color: #dcebff;
  font-size: 27px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .flow-block01__title {
    width: 240px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .flow-block01__title {
    width: 200px;
    height: 40px;
    margin-right: 0px;
    font-size: 17px;
  }
}
.flow-block01__text {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .flow-block01__text {
    flex: none;
    width: 100%;
    font-size: 16px;
    margin-top: 5px;
    padding-left: 50px;
  }
}

/* よくあるご質問 */
.faq {
  padding-block: 40px 100px;
  background-color: #dcebff;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-block: 30px 50px;
  }
}
.faq h2 {
  margin-bottom: 33px;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .faq h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.faq-block01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 50px;
}
@media screen and (max-width: 1000px) {
  .faq-block01 {
    gap: 35px 20px;
  }
}
@media screen and (max-width: 767px) {
  .faq-block01 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.faq-block01__item {
  min-height: 260px;
  background-color: #fff;
  border-radius: 15px;
  padding: 35px 40px 30px;
}
@media screen and (max-width: 767px) {
  .faq-block01__item {
    min-height: auto;
    padding: 25px 20px 20px;
  }
}
.faq-block01__title {
  min-height: 3em;
  margin-bottom: 7px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.3333333333;
  color: #1A7EA6;
}
@media screen and (max-width: 1000px) {
  .faq-block01__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .faq-block01__title {
    font-size: 19px;
  }
}
.faq-block01__text {
  font-size: 18px;
  font-family: "Yu Gothic Medium", "YuGothic", "YuGothic-Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .faq-block01__text {
    font-size: 16px;
  }
}

/* 詳しい説明・導入のご相談など、お気軽にお問い合わせください。 */
.contact {
  padding-block: 36px 100px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-block: 30px 50px;
  }
}
.contact h2 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  color: #1A7EA6;
}
@media screen and (max-width: 1000px) {
  .contact h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .contact h2 {
    font-size: 22px;
    line-height: 1.625;
  }
}
.contact__lead {
  margin-bottom: 56px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__lead {
    margin-bottom: 40px;
    font-size: 16px;
    text-align: left;
  }
}

.contact-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .contact-btns {
    flex-direction: column;
    gap: 10px;
  }
}
.contact-btns__item {
  width: 300px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .contact-btns__item {
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }
}
.contact-btns .c-btn01 > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 1px;
  height: 14px;
  background-color: #fff;
  rotate: -30deg;
}
@media screen and (max-width: 767px) {
  .contact-btns .c-btn01 > span::before {
    height: 11px;
  }
}
.contact-btns .c-btn01 > span::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 1px;
  height: 14px;
  background-color: #fff;
  rotate: 30deg;
}
@media screen and (max-width: 767px) {
  .contact-btns .c-btn01 > span::after {
    height: 11px;
  }
}

/* Footer */
.footer {
  padding: 20px 0 0 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 15px 0 0 0;
    text-align: center;
  }
}
.footer__inner {
  padding-inline: 24px;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    padding-inline: 0;
  }
}
.footer__left {
  width: calc(100% - 100px);
}
@media screen and (max-width: 767px) {
  .footer__left {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    width: 100%;
  }
}
.footer__left h2 {
  margin: 14px 0 28px 0;
  width: 400px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__left h2 {
    margin: 10px 0 20px 0;
  }
}
.footer__left h2 img {
  width: 100%;
}
.footer .footer-link {
  display: flex;
  font-size: 18px;
  gap: 5px;
}
@media screen and (max-width: 1000px) {
  .footer .footer-link {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-link {
    flex-wrap: wrap;
    gap: 5px 10px;
    margin: 0px;
    font-size: 14px;
  }
}
.footer .footer-link a {
  position: relative;
  top: 1px;
}
.footer__right {
  width: 100px;
  padding-top: 22px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer__right {
    width: 100%;
    text-align: center;
  }
}
.footer__memo {
  font-size: 14px;
  margin: 27px 0 20px;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .footer__memo {
    margin: 20px 0 20px;
    font-size: 12px;
    padding-left: 0;
    text-align: left;
  }
}
.footer__area2 {
  background-color: #1A7EA6;
  color: #fff;
  text-align: center;
  padding: 24.5px 0 24px 0;
}
@media screen and (max-width: 767px) {
  .footer__area2 {
    padding: 14.5px 0 20px 0;
  }
}
.footer__area2 small {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .footer__area2 small {
    font-size: 15px;
  }
}