@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  outline: none;
  font: inherit;
  font-family: inherit;
  font-weight: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
img {
  border: none;
  outline: none;
}

img {
  vertical-align: middle;
}

label,
button {
  cursor: pointer;
}

a:hover {
  opacity: 0.8;
  text-decoration: none;
}

a:active {
  opacity: 0.5;
}

a {
  -webkit-transition: 0.16s ease-in-out;
  transition: 0.16s ease-in-out;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

b,
.b {
  font-weight: normal;
}

strong,
.strong {
  font-weight: bold;
}

em {
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

small,
.small {
  font-size: 85.75%;
}

ol,
ul,
li {
  list-style: none;
}

ul li p,
ol li p {
  font-size: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

img .lazy {
  opacity: 0;
}

img .fade-in {
  opacity: 1;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

a {
  color: #222;
}

a:link,
a:active,
a:hover,
a:visited {
  color: #222;
}

.sp-only {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .sp-only {
    display: inline-block !important;
  }
}

h1,
h2,
h3,
.font-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
}

body {
  opacity: 1;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  font-size: 1.6rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  line-break: strict;
}

body.no_scroll {
  overflow: hidden;
}

.body-wrap {
  background-color: #fff;
  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}

.header {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px;
}

@media only screen and (max-width: 767px) {
  .header {
    padding: 10px 5%;
    height: 50px;
  }
}

.header__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  margin: 0 auto;
  max-width: 1440px;

  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .header__wrap {
    -webkit-align-items: start;
    align-items: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
  }
}

.header__logo {
  margin-right: 3%;
}

.header__logo img {
  display: block;
  height: 26px;
}

.header__navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-box-pack: start;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-pack: start;
  -ms-flex-positive: 1;
  -webkit-justify-content: start;
  justify-content: start;
}

.header__open {
  background-color: #fff;

  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;

  display: none;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
  width: 50px;
  height: 50px;
}

@media only screen and (max-width: 767px) {
  .header__open {
    display: block;
  }
}

.header__open a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
  width: 100%;
  height: 100%;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -ms-flex-pack: center;
  gap: 5px;
  -webkit-justify-content: center;
  justify-content: center;
}

.header__open a span {
  background-color: #000;

  font-size: 0;
  line-height: 0;

  display: block;

  width: 100%;
  height: 2px;
}

.header__close {
  border: none;
  background: none;

  display: none;
}

.header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  gap: 2vw;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.header__menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.header__menu ul li {
  font-size: 1.4rem;
}

@media all and (max-width: 1440px) {
  .header__menu ul li {
    font-size: max(0.9722222222vw, 12px);
  }
}

@media only screen and (max-width: 375px) {
  .header__menu ul li {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.header__menu--sp {
  display: none;
}

.header__entry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  white-space: nowrap;

  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  gap: 10px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .header__entry {
    display: none;
  }
}

.header.open .header__menu--sp {
  background: #fff;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;

  display: block;
  overflow-y: scroll;

  padding: 0;
  padding-bottom: 30px;
  width: 100vw;
  height: 100vh;
}

.header.open .header__menu--sp ul {
  margin: 2em 5%;
}

.header.open .header__menu--sp ul li {
  border-bottom: 1px solid #424242;

  padding: 1em 0;
}

.header.open .header__logo {
  border-bottom: 1px solid #424242;
  background-color: #fff;

  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;

  margin: 0;
  padding: 10px 5%;
  width: 100%;
  height: 50px;
}

.header.open .header__close {
  position: fixed;
  top: 10px;
  right: 5%;
  z-index: 10;

  display: block;
}

.header.open .header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
}

.header.open .header__open {
  display: none;
}

.header.open .header__entry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  padding: 0 5%;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  gap: 15px;
}

.header.open .header__entry a,
.header.open .header__entry button {
  padding-top: 1em;
  padding-bottom: 1em;
}

.first-view {
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 10rem;
  padding: 40px 40px;
}

@media only screen and (max-width: 767px) {
  .first-view {
    padding: 40px 5% 40px 5%;
  }
}

.first-view.service {
  border-bottom: 1px solid #dcdcdc;
}

.first-view.service h1 {
  font-size: 48px;

  margin: 0 0 20px 0;
}

@media only screen and (max-width: 767px) {
  .first-view.service h1 {
    font-size: 30px;
  }
}

.first-view .logo_fv {
  margin-bottom: 20px;
  width: 240px;
  display: block;
}

.first-view.service h1 .label {
  border-radius: 8px;
  background-color: #E44B47;

  font-size: 20px;
  font-weight: 700;
  color: #fff;

  display: inline-block;

  margin-bottom: 20px;
  padding: 5px 20px;

  letter-spacing: 0.1em;
}

@media only screen and (max-width: 767px) {
  .first-view.service h1 .label {
    font-size: 18px;
  }
}

.first-view__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  margin: 0 auto;
  max-width: 1160px;
  min-height: 720px;
  width: 100%;

  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  gap: 0 20;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .first-view__wrap {
    flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
  }
}

.first-view__main {
  color: #fff;

  padding: 20px 0;
  max-width: calc(100% - 465px);

  text-align: left;
}

@media only screen and (max-width: 767px) {
  .first-view__main {
    padding: 0;
    max-width: 100%;
  }
}

.first-view__main--catchphrase {
  font-size: 20px;
  font-weight: 700;

  display: inline;
}

@media all and (max-width: 1440px) {
  .first-view__main--catchphrase {
    font-size: max(1.3888888889vw, 12px);
  }
}

@media only screen and (max-width: 767px) {
  .first-view__main--catchphrase {
    font-size: 16px;
  }
}

@media only screen and (max-width: 375px) {
  .first-view__main--catchphrase {
    font-size: max(4.2666666667vw, 12px);
  }
}

.first-view__main h1 {
  font-size: 3.2rem;
  line-height: 1.4;
  margin: 0px 0 20px;
}

.first-view__main h1 span {
  color: #E44B47;
  font-size: 4rem;
}

@media all and (max-width: 1440px) {
  .first-view__main h1 {
    font-size: 3.2rem;
  }
}

@media only screen and (max-width: 767px) {
  .first-view__main h1 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 375px) {
  .first-view__main h1 {
    font-size: max(10.6666666667vw, 12px);
  }
}

.first-view__main--point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  margin: 15px 0;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 15px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .first-view__main--point {
    flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
  }
}

.first-view__main--point li {
  border: 1px solid #000;
  background: #fff url("../image/icon_checkmark.svg") no-repeat 20px center;

  font-size: 18px;
  color: #000;

  padding: 10px 10px 10px 80px;
}

.first-view__main--keyword {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

@media only screen and (max-width: 767px) {
  .first-view__main--keyword {
    gap: 5px;
  }
}

.first-view__main--keyword span {
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  background: #fff;

  font-size: 13px;
  color: #666;

  display: inline-block;

  padding: 5px 10px;
}

@media only screen and (max-width: 767px) {
  .first-view__main--keyword span {
    padding: 5px 8px;
  }
}

.first-view__main--achieve {
  font-family: "Inter", sans-serif;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  margin-top: 30px;
  max-width: 560px;

  -webkit-box-pack: start;
  -ms-flex-pack: start;
  gap: 8px;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

@media only screen and (max-width: 767px) {
  .first-view__main--achieve {
    max-width: initial;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.first-view__main--achieve p {
  background: url("../image/img_awardframe.svg") no-repeat center center;
  background-size: contain;

  font-size: 12px;
  font-weight: 700;
  line-height: 1;

  padding: 10px 20px 0 20px;
  width: auto;

  text-align: center;
}

@media all and (max-width: 1440px) {
  .first-view__main--achieve p {
    font-size: max(0.8333333333vw, 12px);
  }
}

.first-view__main--achieve p .title {
  font-size: 15px;

  letter-spacing: 0.3em;
}

@media all and (max-width: 1440px) {
  .first-view__main--achieve p .title {
    font-size: max(1.0416666667vw, 12px);
  }
}

@media only screen and (max-width: 767px) {
  .first-view__main--achieve p .title {
    font-size: 10px;
  }
}

@media only screen and (max-width: 900px) {
  .first-view__main--achieve p .title {
    letter-spacing: 0.3em;
  }

  .first-view__main--achieve p .title::after {
    content: "\a";
    white-space: pre;
  }
}

@media only screen and (max-width: 375px) {
  .first-view__main--achieve p .title {
    font-size: max(2.6666666667vw, 12px);
  }
}

.first-view__main--achieve p .score {
  font-size: 50px;
  font-weight: 900;
}

.first-view__main--achieve p .score::after {
  content: "\a";
  white-space: pre;
}

@media all and (max-width: 1440px) {
  .first-view__main--achieve p .score {
    font-size: max(3.4722222222vw, 12px);
  }
}

@media only screen and (max-width: 767px) {
  .first-view__main--achieve p .score {
    font-size: 26px;
  }
}

@media only screen and (max-width: 375px) {
  .first-view__main--achieve p .score {
    font-size: max(6.9333333333vw, 12px);
  }
}

.service .first-view__main {
  color: #E44B47;
}

.first-view__form {
  border-radius: 5px;
  background-color: #f2f6f9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 20px;
  width: 415px;

  text-align: center;
}

.first-view__form h2,
.single-view__form h2 {
  font-size: 24px !important;
  margin: 0;
  padding: 0;
}

.first-view__form--caption,
.single-view__form--caption {
  font-size: 14px;
  line-height: 1.4;
  margin: 1em 0;
}

.first-view__form .close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
}

@media only screen and (max-width: 767px) {
  .first-view__form {
    margin-top: 30px;
    width: 100%;
  }

  .first-view__form .form__area,
  .first-view__form .form__note,
  .first-view__form iframe {
    display: none;
  }
}

.first-view__form.open {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  width: 100vw;
  height: 100vh;
}

.first-view__form.open .form__area,
.first-view__form.open .form__note,
.first-view__form.open iframe,
.first-view__form.open .close {
  display: block;
}

.first-view__form.open .sp-form {
  display: none;
}

.first-view__form iframe {
  border: none;

  width: 100%;
  min-height: 570px;
}

@media only screen and (max-width: 767px) {
  .first-view__form iframe {
    min-height: 480px;
  }
}

.first-view__form .form__button {
  width: 100%;
}

.point-order {
  counter-reset: point-order;
}


.point-order li {
  font-size: 18px;
  font-weight: 700;

  position: relative;

  padding: 5px 0 5px 50px;
}

.point-order li::before {
  border-radius: 50%;
  background-color: #E44B47;

  font-family: "Roboto", sans-serif;
  font-size: 19px;
  line-height: 1;
  color: #fff;

  position: absolute;
  top: 20px;
  left: 10px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 27px;
  height: 27px;

  content: counter(point-order);
  counter-increment: point-order;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);

  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.first-view.top-fv {
  background: url("./fv.png") no-repeat center center;
  background-size: cover;
}

.first-view.top-fv .first-view__form {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 24px rgba(4, 83, 150, 0.1);
  box-shadow: 0 4px 24px rgba(4, 83, 150, 0.1);
}

.download__detail--form {
  background-color: #f1f5f6;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  padding: 40px;
  width: 100%;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .download__detail--form {
    border-radius: 0;

    top: 0;
    left: 0;

    overflow-y: scroll;

    margin-bottom: -50px;
    padding: 40px 23px;
    width: 100%;
  }
}

.download__detail--form.open {
  display: block;
}

.download__detail--form h3 {
  font-size: 24px;

  text-align: center;
}

.download__detail--form h3 ~ p {
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .download__detail--form h3 {
    font-size: 1.6em;

    margin-bottom: 0.8em;

    text-align: left;
  }
}

.download__detail--form .close {
  display: none;
}

@media only screen and (max-width: 767px) {
  .download__detail--form .close {
    position: absolute;
    top: 1.3em;
    right: 5%;

    display: block;

    padding: 0.5em;
    width: 2.5em;
    height: 2.5em;
  }
}

.download__detail--form iframe {
  border: none;

  width: 100%;
  min-height: 650px;
}

.download__detail--intro {
  color: #878080;

  margin: 1em 0;

  text-align: center;
}

.download__detail__sp-link {
  display: none;
}

.form__button a.sp-form,
.form__button button.sp-form {
  margin-top: 10px;
}

.button-small a,
.button-small span,
.button-small button {
  border: 2px solid #000;
  border-radius: 30px;

  font-size: 16px;
  font-weight: 700;

  display: inline-block;

  padding: 10px 20px;

  text-align: center;
}

@media all and (max-width: 1440px) {
  .button-small a,
  .button-small span,
  .button-small button {
    font-size: max(1.1111111111vw, 12px);
  }
}

@media only screen and (max-width: 767px) {
  .button-small a,
  .button-small span,
  .button-small button {
    font-size: 12px;

    padding: 5px 20px;
  }
}

@media only screen and (max-width: 375px) {
  .button-small a,
  .button-small span,
  .button-small button {
    font-size: max(3.2vw, 12px);
  }
}

.button-small a.green,
.button-small span.green,
.button-small button.green {
  border: 2px solid #26ac76;
  background-color: #26ac76;

  color: #fff;
}

.button-small a.white,
.button-small span.white,
.button-small button.white {
  border: 2px solid #26ac76;

  color: #26ac76;
}

.button-small a.type01,
.button-small span.type01,
.button-small button.type01 {
  border: 1px solid #E44B47;
  background-color: #E44B47;

  color: #fff;
}

.button-small a.type02,
.button-small span.type02,
.button-small button.type02 {
  border: 1px solid #E44B47;
  background-color: #fff;

  color: #E44B47;
}

.button-small a[target="_blank"]::after,
.button-small span[target="_blank"]::after,
.button-small button[target="_blank"]::after {
  display: none;
}

.footer {
  background-color: #f2f6f9;

  padding: 80px 5% 20px 5%;
}

.footer__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  margin: 0 auto;
  max-width: 1440px;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.footer__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  margin: 0 auto 80px auto;
  max-width: 1440px;

  -webkit-align-items: last baseline;
  align-items: last baseline;
  -webkit-box-align: last baseline;
  -webkit-box-pack: justify;
  -ms-flex-align: last baseline;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.footer__logo--image {
  max-width: 250px;
}

.footer__logo--image a img {
  display: block;
}

.footer__corp {
  width: 40%;
}

.footer__link {


  width: 60%;

  line-height: 1.8;
}

.footer__to-head a {
  background: url("https://www.marubeni-idigio.com/security/wp-content/themes/marubeni-idigio/common/image/icon_to-head.svg")
    no-repeat 0 0;
  background-size: cover;

  display: inline-block;

  width: 45px;
  height: 45px;
}

.footer__name {
  font-size: 18px;
  font-weight: 700;
}

.footer__address {
  margin-top: 10px;
}

.footer__address .zip {
  font-family: "Outfit", sans-serif;

  display: inline-block;

  padding-right: 1em;
}

.footer__map a {
  text-decoration: underline;
}

.footer__map a::after {
  display: none;
}

.footer__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  margin-bottom: 20px;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  gap: 10px 20px;
}

.footer__menu li {
  font-weight: 500;
}

.footer__menu li a::after {
  display: none;
}

.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  margin: 150px auto 0 auto;
  max-width: 1440px;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.footer__nav li {
  font-size: 12px;

  display: inline-block;

  padding-left: 10px;
}

.footer__nav li::before {
  margin-right: 10px;

  content: "|";
}

.footer__nav li:first-child {
  padding-left: 0;
}

.footer__nav li:first-child::before {
  display: none;
}

.footer__nav li a {
  padding-right: 0;
}

.footer__nav li a[target="_blank"]:after {
  display: none;
}

@media only screen and (max-width: 767px) {
  .footer {
    padding: 40px 5%;
  }

  .footer__wrap {
    flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
  }

  .footer__logo {
    margin: 0 auto 40px auto;
  }

  .footer__logo--image {
    max-width: 40%;
  }

  .footer__corp {
    width: 100%;
  }

  .footer__link {
    flex-direction: column;

    margin-top: 30px;
    width: 100%;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: start;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -ms-flex-pack: start;
    gap: 20px;
    -webkit-justify-content: start;
    justify-content: start;
  }

  .footer__address .zip {
    display: block;
  }

  .footer__menu li {
    display: block;
  }

  .footer__nav {
    flex-direction: column;

    margin: 30px auto 140px auto;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
  }

  .footer__nav li:last-child {
    padding-left: 0;
  }

  .footer__nav li:last-child::before {
    display: none;
  }
}

.bridge {
  background: url("./bg_strongpoint.png") no-repeat center center #E44B47;

  color: #fff;

  position: relative;

  overflow: hidden;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 160px 0 80px 0;
  margin-bottom: 10rem;
}

@media only screen and (max-width: 767px) {
  .bridge {
    margin-top: 60px;
    padding: 60px 0 20px 0;
  }
}

.bridge::before {
  border-top: 80px solid #fff;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;

  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  box-sizing: border-box;
  margin-left: -50%;
  width: 100%;

  content: "";
}

@media only screen and (max-width: 767px) {
  .bridge::before {
    border-top: 40px solid #fff;
  }
}

.bridge__eyecatch {
  text-align: center;
}

.bridge__eyecatch p {
  font-size: 24px;

  position: relative;

  display: inline-block;

  margin: 0 auto;
  padding-left: 80px;
}

.bridge__eyecatch p span {
  font-size: 32px;
}

.bridge__eyecatch p:before {
  border-radius: 50%;
  background: #fff url("../image/icon_check_gray.svg") no-repeat center center;

  font-size: 25px;
  line-height: 1;

  position: absolute;
  top: 50%;
  left: 0;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 60px;
  height: 60px;

  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);

  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.bridge__eyecatch p::after {
  background-color: #fff;

  position: absolute;
  bottom: -20px;
  left: calc(50% + 30px);

  display: block;

  width: 82%;
  height: 2px;

  content: "";
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.bridge__strong {
  text-align: center;
}

.bridge__strong p {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;

  margin: 0 auto;
}

.bridge__strong p .small {
  font-size: 24px;

  display: block;
}

.cv {
  background-color: #E44B47;
  color: #fff;
  padding: 30px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .cv {
    padding: 30px 5vw;
  }
}

.cv__wrap {
  margin: 0 auto;
  max-width: 1240px;
}

.cv__wrap h2 {
  font-size: 28px;
  font-weight: 600;

  padding-bottom: 0.8em;
}

@media all and (max-width: 1440px) {
  .cv__wrap h2 {
    font-size: max(1.9444444444vw, 12px);
  }
}

@media only screen and (max-width: 767px) {
  .cv__wrap h2 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 375px) {
  .cv__wrap h2 {
    font-size: max(6.4vw, 12px);
  }
}

.cv__wrap h2 + p {
  margin-bottom: 0.5em;
}

.cv__wrap h2 + .button p a,
.cv__wrap h2 + .button p button {
  margin-top: 1em;
}

.cv .button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  gap: 30px;
  -webkit-justify-content: center;
  justify-content: center;
}

.cv .button p {
  font-size: 16px;
  font-weight: 600;
}

.cv .button p a,
.cv .button p button {
  border: 2px solid #fff;

  font-size: 20px;

  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .cv .button {
    flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    gap: 0;
  }

  .cv .button p {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) and (max-width: 375px) {
  .cv .button p {
    font-size: max(4.2666666667vw, 12px);
  }
}

@media only screen and (max-width: 767px) {
  .cv .button p a,
  .cv .button p button {
    font-size: 17px;
  }
}

@media only screen and (max-width: 767px) and (max-width: 375px) {
  .cv .button p a,
  .cv .button p button {
    font-size: max(4.5333333333vw, 12px);
  }
}

.button {
  text-align: center;
}

.button a,
.button span,
.button button {
  border: 2px solid #E44B47;
  border-radius: 30px;

  font-size: 20px;
  font-weight: 700;
  color: #E44B47;

  position: relative;

  display: inline-block;

  padding: 15px 40px;
  min-width: 400px;

  text-align: center;
}

@media all and (max-width: 1440px) {
  .button a,
  .button span,
  .button button {
    font-size: max(1.3888888889vw, 12px);
  }
}

@media only screen and (max-width: 767px) {
  .button a,
  .button span,
  .button button {
    font-size: 16px;

    padding: 10px 40px;
    min-width: 100%;
  }
}

@media only screen and (max-width: 375px) {
  .button a,
  .button span,
  .button button {
    font-size: max(4.2666666667vw, 12px);
  }
}

.button a::after,
.button span::after,
.button button::after {
  background: url("../image/icon_arrow_blue.svg") no-repeat 0 0;
  background-size: 15px 14px;

  position: absolute;
  top: 50%;
  right: 20px;

  display: block;

  width: 15px;
  height: 14px;

  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.button a.green,
.button span.green,
.button button.green {
  border: 2px solid #26ac76;
  background-color: #26ac76;

  color: #fff;
}

.button a.green::after,
.button span.green::after,
.button button.green::after {
  background: url("../image/icon_arrow_white.svg") no-repeat 0 0;
}

.button a.white,
.button span.white,
.button button.white {
  border: 2px solid #26ac76;
  background-color: #fff;

  color: #26ac76;
}

.button a.white::after,
.button span.white::after,
.button button.white::after {
  background: url("../image/icon_arrow_blue.svg") no-repeat 0 0;
}

.button a.none::after,
.button span.none::after,
.button button.none::after {
  display: none;
}

.button a.type01,
.button span.type01,
.button button.type01 {
  border: 2px solid #E44B47;
  background-color: #E44B47;

  color: #fff;
}

.button a.type01::after,
.button span.type01::after,
.button button.type01::after {
  background: url("../image/icon_arrow_white.svg") no-repeat 0 0;
}

.button a.type02,
.button span.type02,
.button button.type02 {
  border: 2px solid #E44B47;
  background-color: #fff;

  color: #E44B47;
}

.button a.type02::after,
.button span.type02::after,
.button button.type02::after {
  background: url("../image/icon_arrow_blue.svg") no-repeat 0 0;
}

.button a.download,
.button span.download,
.button button.download {
  border: 2px solid #E44B47;
  background-color: #E44B47;

  color: #fff;
}

.button a.download::after,
.button span.download::after,
.button button.download::after {
  background: url("../image/icon_dl.svg") no-repeat 0 0;

  width: 22px;
  height: 22px;
}

.button-small a,
.button-small span,
.button-small button {
  border: 2px solid #000;
  border-radius: 30px;

  font-size: 16px;
  font-weight: 700;

  display: inline-block;

  padding: 10px 20px;

  text-align: center;
}

@media all and (max-width: 1440px) {
  .button-small a,
  .button-small span,
  .button-small button {
    font-size: max(1.1111111111vw, 12px);
  }
}

@media only screen and (max-width: 767px) {
  .button-small a,
  .button-small span,
  .button-small button {
    font-size: 12px;

    padding: 5px 20px;
  }
}

@media only screen and (max-width: 375px) {
  .button-small a,
  .button-small span,
  .button-small button {
    font-size: max(3.2vw, 12px);
  }
}

.button-small a.green,
.button-small span.green,
.button-small button.green {
  border: 2px solid #26ac76;
  background-color: #26ac76;

  color: #fff;
}

.button-small a.white,
.button-small span.white,
.button-small button.white {
  border: 2px solid #26ac76;

  color: #26ac76;
}

.button-small a.type01,
.button-small span.type01,
.button-small button.type01 {
  border: 1px solid #E44B47;
  background-color: #E44B47;

  color: #fff;
}

.button-small a.type02,
.button-small span.type02,
.button-small button.type02 {
  border: 1px solid #E44B47;
  background-color: #fff;

  color: #E44B47;
}

.button-small a[target="_blank"]::after,
.button-small span[target="_blank"]::after,
.button-small button[target="_blank"]::after {
  display: none;
}

.sec1,
.sec2,
.sec3,
.sec4,
.sec5,
.sec6 {
  margin-bottom: 10rem;
}


.sec1 h2,.sec2 h2,.sec3 h2,.sec3 h2,.sec4 h2,.sec6 h2 {
  position: relative;
  padding: 1.5rem;
  text-align: center;
  font-size: 3rem;
  line-height: 1.6;
}

.sec1 h2:before,.sec2 h2:before,.sec3 h2:before,.sec4 h2:before,.sec6 h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #E44B47;
}

.sec3 h2,.sec5 h2,.sec6 h2 {
  margin-bottom: 6rem;
}

.sec6 h2 {
  margin-top: 6rem;
}

.sec1 h2 span,.sec2 h3 span,.sec4 h2 span {
  color: #E44B47;
}




.sec1-1 h3 {
  text-align: center;
  padding-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: #E44B47;
}

.sec1-1 .desc {
  padding-bottom: 6rem;
  line-height: 1.8;
}


.sec1 ol li {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 5px 0;
}

/*.sec h2 {
  text-align: center;
  font-size: 3rem;
  line-height: 1.6;
  margin-top: 6rem;
  margin-bottom: 5rem;
  position: relative;
}*/

/* .sec h2::before {
  content: attr(data-number);
  display: block;
  margin-bottom: 30px;
  color: #E44B47;
  font-size: 30px;
}

.sec h2::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background-color: #E44B47;
} */

.sec2 {
  max-width: 1140px;
  margin: 0 auto;
  padding-bottom: 12rem;
}






.sec2 .cap {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}


.sec2 h3 {
  font-size: 2.4rem;
  padding-bottom: 2.4rem;
  position: relative;
}

.sec2 h3::before {
  content: attr(data-number);
  display: inline-block;
  color: #E44B47;
  font-size: 30px;
}

.sec1 .box {
  margin-top: 6rem;
}


.sec1 ul li {
  padding: 15px 0;
  font-size: 1.8rem;
  text-align: center;
}

.sec1 ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.sec1-1 ul li {
  font-size: 1.8rem;
}

.sec1-1 ul,
.sec2 ul {
  counter-reset: list;
  list-style-type: none;
  padding: 0;
}

.sec1-1 ul li,
.sec2 ul li {
  position: relative;
  padding: 0 0 0 20px;
  margin: 15px 0 15px 0px;
  font-weight: bold;
}

.sec1-1 ul li:before,
.sec2 ul li:before {
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ccc;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sec3,
.sec4,
.sec5 {
  margin-top: 6rem;
}

.sec3 .box,
.sec4 .box,
.sec5 .box,
.sec6 .box {
  margin-top: 6rem;
}

.sec4 .table td,
.sec4 .table th {
  padding: 20px;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #ccc;
}

.sec5 .table {
  border-bottom: 1px solid #ccc;
}

.sec5 .table td,
.sec5 .table th {
  padding: 15px 0;
  border-color: #ccc;
}

.sec5 .table th {
  font-weight: bold;
}





.sec6 .title {
  padding: 1rem 0 .5rem;
  font-weight: bold;
  line-height: 1.6;
}

.sec6 .cap {
  font-size: 1.4rem;
}










.header__entry img {
  height: 26px;
}

.brochure {
  padding: 30px;
  background-color: #eee;
}

.brochure img {
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.19);
}

.add {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 1.8;
  font-weight: bold;
}

span.highlight {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(73, 142, 224, 0.4);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}

ul.compare {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

ul.compare li {
  float: left;
  position: relative;
}

ul.compare li:last-child {
  margin-left: 50px;
}

ul.compare li span {
  display: block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #c00;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: -20px;
  right: -20px;
}

ul.compare li:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  margin: auto;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  border: 15px solid transparent;
  border-left: 15px solid #2a75bf;
}

.triangle {
  position: relative;
  background: #EEE;
  /* 好みで色を変えてください */
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
}

.triangle:before {
  content: '';
  position: absolute;
  top: -16%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #eee;
}



@media (min-width: 1200px) {
    .sec1 .container,.sec4 .container {
        max-width: none;
        padding: 0 120px;
    }
}


@media (min-width: 1200px) {
  .sec2 .container .image {
    max-width: 920px;
    margin: 0 auto;
  }
}


.list--2 {
  display: flex;
  flex-flow: row wrap;
}

.list--2>.list__list {
  width: 50%;
}









.headline {
  text-align: center;
  margin-bottom: 3rem;
}

.sec1 h3 {
  position: relative;
  display: inline-block;
  padding: 0 45px;
  font-size: 2.4rem;
}

.sec1 h3:before,
.sec1 h3:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.sec1 h3:before {
  left: 0;
}

.sec1 h3:after {
  right: 0;
}

.sec1 .caption {
  text-align: center;
  font-size: 2rem;
}

.sec1 img {
  margin: 5rem 0 2rem;
}




.sec2 h3 {
  text-align: center;
  font-size: 3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  position: relative;
}

.sec2 h3::before {
  content: attr(data-number);
  display: block;
  margin-bottom: 30px;
  color: #E44B47;
  font-size: 30px;
}

.sec2 h3::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background-color: #E44B47;
}

@media (min-width: 1200px) {
.sec2 .wrapper-list {
  max-width: 920px;
  margin: 0 auto;
}
}

.sec2 .point {
  padding-top: 10rem;
}

.sec2 .point1 img,.sec2 .point3 img {
  padding: 30px;
  border: 1px solid #eee;
  background: #fff;
}



.sec2 .point2 .list {
  padding: 30px;
    border: 1px solid #eee;
    background: #fff;
}

.sec2 .point2 .list:nth-of-type(2) {
  margin: 3rem 0;
}



.sec3 .case1,.sec3 .case2,.sec3 .case3 {
      font-weight: bold;
      padding: 0.5em 1em;
      background-color: #E44B47;
      color: #fff;
      position: relative;
    }

.sec3 .case1:before,.sec3 .case2:before,.sec3 .case3:before {
    content: '';
    height: 0;
    width: 0;
    border: solid transparent;
    position: absolute;
    left: 30px;
    top: 100%;
    border-color: transparent;
    border-top-color: #E44B47;
    border-right-color: #E44B47;
    border-width: 6.5px;
  }

.sec3 ul {
  padding: 2rem 0 3rem;
}

.sec3 h2 span {
  display: block;
}


.sec3 ul li,.sec4 ul li {
  position: relative;
  padding-left: 18px;
  list-style: none;
  font-size: 1.8rem;
  line-height: 1.8;
}

.sec3 ul li:before,.sec4 ul li:before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #E44B47;
  border-radius: 50%;
}


.wrapper-gray {
  background-image: linear-gradient(180deg, rgba(252, 252, 252, 1), rgba(251, 247, 247, 1) 97%);

  padding-top: 10rem;

}


.sec4 h3 {
  background: #E44B47;
  color: #fff;
  border-radius: 25px;
  padding: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.sec4 .image {
  text-align: center;
  padding: 3rem 0;
}

.sec2 .title {
  color: #E44B47;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .sec2 .list div:first-child {
    width: 480px;
  }
}
