@charset "UTF-8";

/* --------------------
  Basic
-------------------- */
.link {
  color: #5596c8;
}

.link:hover {
  text-decoration: underline;
}

.layout_main {
  margin-bottom: 0;
}

@media screen and (max-width: 599px) {
  .image {
    width: 100%;
  }
}

@media screen and (min-width: 600px) {
  html, body {
    min-width: inherit;
  }
  .inner {
    max-width: 960px;
    width: auto;
  }
}

.breadcrumbs {
  padding: 10px 0;
}

.breadcrumbs-list {
  display: flex;
  gap: 10px;
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  flex-shrink: 0;
}

.breadcrumbs-list li + li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-right: solid 1px #444;
  border-bottom: solid 1px #444;
  transform: rotate(-45deg);
}

.breadcrumbs-list li a {
  color: #5596c8;
}

.breadcrumbs-list li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 599px) {
  .breadcrumbs {
    padding: 15px;
    border-top: solid 1px #f4f4f4;
  }
  .breadcrumbs-list li a:hover {
    text-decoration: none;
  }
}

/* --------------------
  Hero
-------------------- */
.hero {
  background-color: #e6f2fe;
  padding: 64px 20px;
}

.hero .inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.hero-text {
  width: 572px;
}

.hero-illust-wrap {
  width: 348px;
}

.hero-illust {
  width: 100%;
}

.hero-logo {
  max-width: 160px;
  width: 100%;
}

.hero-heading {
  color: #11347e;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 40px;
}

.hero-body {
  line-height: 1.7;
  margin-top: 16px;
}

@media screen and (max-width: 599px) {
  .hero {
    padding: 48px 0;
  }

  .hero .inner {
    flex-direction: column;
    margin: 0 16px;
  }

  .pc-br {
    display: none;
  }

  .hero-text {
    width: 100%;
  }

  .hero-illust-wrap {
    width: 100%;
    margin: 40px 0 0;
  }
}

@media screen and (min-width: 599px) {
  .pc-hidden {
    display: none;
  }
}

/* --------------------
  Section
-------------------- */
.section {
  padding: 60px 20px;
}

.hero + .section {
  padding-top: 80px;
}

.section:nth-of-type(odd) {
  background-color: #e6f2fe;
}

.sub-section {
  margin-top: 48px;
}

@media screen and (max-width: 599px) {
  .sub-section:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 600px) {

  .hero + .section {
    padding-top: 69px;
  }
}

/* --------------------
  Heading
-------------------- */
.section-headline {
  border: none;
  color: #11347e;
  font-size: 24px;
  text-align: left;
  padding: 0;
}

.section-headline::after {
  background: #cd1720;
  content: "";
  display: block;
  height: 4px;
  margin-top: 16px;
  width: 48px;
}

.sub-section-headline {
  align-items: center;
  color: #11347e;
  display: flex;
  font-size: 20px;
}

.sub-section-headline::before {
  background: #cd1720;
  content: "";
  display: block;
  height: 4px;
  width: 10px;
  margin-right: 16px;
}

.section-headline-category {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.section-headline-body {
  color: #444;
  display: block;
  font-size: 14px;
  font-weight: normal;
  margin-top: 8px;
  line-height: 1.7;
}

/* --------------------
  recommend-list
-------------------- */
.recommend-list {
  background: #fafafa;
  padding: 24px;
  margin-top: 24px;
}

.recommend-list-item {
  display: flex;
  margin-top: 8px;
}

.recommend-list-item:first-child {
  margin-top: 0;
}

.recommend-list-item::before {
  background-color: #3a98ee;
  content: "";
  display: block;
  min-width: 7px;
  height: 7px;
  border-radius: 50%;
  margin: 0.5em 0.5em 0 0;
}

/* --------------------
  Service,Service02,Service03
-------------------- */
.services,.services02 {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 60px;
}

.service {
  width: 31%;
}

.service-icon {
  height: 77px;
  width: auto;
}

.service02-icon {
  height: 51px;
  width: auto;
}

.service-heading {
  font-size: 16px;
  padding-top: 32px;
  padding-bottom: 16px;
}

.service-name {
  color: #929db4;
  font-size: 14px;
  padding-top: 0;
  padding-bottom: 8px;
}

.service-text {
  margin: 0;
  line-height: 1.7;
}

.services03 {
  margin-top: 32px;
}

/* --------------------
  Flow
-------------------- */

.flow-text {
  line-height: 1.7;
}

.flow {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
}

.flow-items {
  width: 15%;
}

.flow-items:not(:last-child)::after {
  content: "";
  position: absolute;
  background: url(../images/flow_arrow.svg) no-repeat;
  display: inline-block;
  top: 80px;
  margin-left: 170px;
  width: 20px;
  height: 20px;
}

.flow-icon-wrap {
  text-align: center;
}

.flow-icon {
  height: 51px;
  width: auto;
}

.flow-item-text {
  margin-top: 16px;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .flow {
    flex-direction: column;
    align-items: center;
  }

  .flow-items {
    width: 80%;
  }

  .flow-items:not(:last-child) {
    margin-bottom: 72px;
  }

  .flow-items:not(:last-child)::after {
    background: url(../images/flow_arrow_bottom.svg) no-repeat;
    top: auto;
    margin-top: 24px;
    right: 48%;
    margin-bottom: 72px;
  }

  .flow-item-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 599px) {
  .services,.services02 {
    flex-direction: column;
  }

  .service {
    width: 100%;
  }

  .services02 > .service {
    width: 100%;
  }

  .service:not(:first-child) {
    margin-top: 48px;
  }

  .service-heading {
    padding-top: 16px;
  }

  .service-text {
    min-height: initial;
  }
}

.pricing {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  text-align: left;
  margin-top: 32px;
}

.pricing tr {
  border-bottom: solid 1px #eee;
}

.pricing th,
.pricing td {
  padding: 16px;
  text-align: left;
}

.pricing-header th {
  padding: 0 16px 16px;
}

.pricing-service th {
  background: #fafafa;
  word-break: keep-all;
}

.pricing-service li {
  line-height: 1.8;
}

.pricing-wrap {
  margin-bottom: 48px;
}

@media screen and (max-width: 599px) {
  .pricing {
    display: block;   /* はみ出たtableを横スクロールで表示 */
    overflow-x: scroll;  /* はみ出たtableを横スクロールで表示 */
    white-space: nowrap;  /* はみ出たtableを横スクロールで表示 */
    -webkit-overflow-scrolling: touch;  /* はみ出たtableを横スクロールで表示 */
    padding-bottom: 8px;  /* スクロールの分調整 */
  }

  .pricing-service td {
    word-break: keep-all;
  }
}

.pricing-notes {
  margin-top: 24px;
}

.pricing-note {
  display: flex;
  margin-top: 8px;
  line-height: 1.4;
}

.pricing-note:first-child {
  margin-top: 0;
}

.pricing-note::before {
  content: "※";
  margin-right: 4px;
}

/* --------------------
  CTA
-------------------- */
.layout_footer {
  background: #10347e;
  background-position: 50% 50%;
  background-size: cover;
  text-align: center;
  padding: 64px 0;
}

.footer-cta-heading {
  font-size: 32px;
  font-weight: bold;
  color: #e0e0e0;
  line-height: 1.4;
}

.footer-cta-button {
  margin-top: 24px;
  background: #cd1720;
  padding: 10px;
  min-width: 240px;
  display: inline-block;
  border-radius: 2rem;
  color: #fff;
  font-size: 18px;
}

.footer-cta-button:hover {
  background: #f52b3c;
}

@media screen and (max-width: 599px) {
  .layout_footer {
    padding: 32px 0;
  }

  .layout_footer .inner {
    margin: 0 16px;
  }

  .footer-cta-button {
    box-sizing: border-box;
  }

  .footer-cta-button {
    min-width: 100%;
  }
}

/* --------------------
  IE11 hack
-------------------- */
@media all and (-ms-high-contrast: none) {
  .footer-cta-button {
    line-height: 0.6;
    padding-top: 24px;
    padding-bottom: 16px;
  }
}