@charset "UTF-8";
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

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

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

html {
  font-size: 10px !important;
}

body {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  height: 100%;
}

.sp {
  display: block;
}
@media screen and (max-width: 900px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (max-width: 900px) {
  .pc {
    display: block;
  }
}

.fv__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.fv__inner .title {
  font-size: 96px;
  padding: 147px 0 0 120px;
  line-height: 1.2;
  font-weight: 700;
}
.fv__inner .title-color {
  color: #07c655;
  font-size: 128px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.fv__inner .title-small {
  font-size: 64px;
}
.fv__img {
  position: absolute;
  width: 38.333%;
  aspect-ratio: 1/0.8876;
  top: 183px;
  right: 8.333%;
  z-index: -1;
}
.fv__list {
  margin: 65px 0 0 120px;
}
.fv__list__item {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}
.fv__list__item img {
  width: 32px;
  aspect-ratio: 1/1;
}
.fv__list__item-text {
  font-size: 32px;
  font-weight: 700;
  padding-left: 20px;
  letter-spacing: 0;
}
.fv__line {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #3e5686;
  height: 25px;
  margin-top: 68px;
}

@media screen and (max-width: 1440px) {
  .fv__inner .title {
    font-size: 6.667vw;
    padding: 10.208vw 0 0 8.333vw;
  }
  .fv__inner .title-color {
    font-size: 8.889vw;
  }
  .fv__inner .title-small {
    font-size: 4.444vw;
  }
  .fv__img {
    top: 12.708vw;
  }
  .fv__list {
    margin: 4.514vw 0 0 8.333vw;
  }
  .fv__list__item {
    margin-bottom: 1.806vw;
  }
  .fv__list__item img {
    width: 2.222vw;
  }
  .fv__list__item-text {
    font-size: 2.222vw;
    padding-left: 1.389vw;
  }
  .fv__line {
    height: 1.736vw;
    margin-top: 4.722vw;
  }
}
@media screen and (max-width: 800px) {
  .fv__inner {
    padding: 0 2.667vw;
  }
  .fv__inner .title {
    font-size: 11.2vw;
    padding: 31.2vw 0 0 0;
    line-height: 1.2;
    font-weight: 700;
  }
  .fv__inner .title-color {
    color: #07c655;
    font-size: 18.667vw;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
  }
  .fv__inner .title-small {
    font-size: 8vw;
  }
  .fv__img {
    position: absolute;
    width: 61.333vw;
    aspect-ratio: 1/0.8869;
    top: 59%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    z-index: -1;
  }
  .fv__list {
    margin: 68.533vw 0 0 0;
  }
  .fv__list__item {
    display: flex;
    align-items: center;
    margin-bottom: 4.267vw;
  }
  .fv__list__item img {
    width: 5.333vw;
    aspect-ratio: 1/1;
  }
  .fv__list__item-text {
    font-size: 4.8vw;
    font-weight: 700;
    padding-left: 2.667vw;
    letter-spacing: 0;
  }
  .fv__line {
    width: 100vw;
    background: #3e5686;
    height: 6.667vw;
    margin-top: 13.333vw;
    margin-left: -2.667vw;
  }
}
.flow__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 95px;
}
.flow__title {
  position: relative;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}
.flow__title:after {
  position: absolute;
  content: "";
  width: 100px;
  height: 5px;
  background: #07c655;
  top: 148%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.flow__box {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-top: 55px;
  background: #f6f7f7;
  padding: 34px 0;
}
.flow__list {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.flow__item--title {
  font-size: 28px;
  text-align: center;
  font-weight: 700;
}
.flow__item .flow__icon {
  width: 150px;
  height: 134px;
  margin: 30px auto 0 auto;
}
.flow__item:nth-of-type(2) .flow__icon {
  width: 150px;
  height: 126px;
}
.flow__item:nth-of-type(3) .flow__icon {
  width: 150px;
  height: 101px;
}

@media screen and (max-width: 900px) {
  .flow__inner {
    max-width: 160vw;
    margin: 0 auto;
    padding-top: 10.556vw;
  }
  .flow__title {
    position: relative;
    text-align: center;
    font-size: 3.556vw;
    font-weight: 700;
  }
  .flow__title:after {
    position: absolute;
    content: "";
    width: 11.111vw;
    height: 0.556vw;
    background: #07c655;
    top: 148%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .flow__box {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 6.111vw;
    background: #f6f7f7;
    padding: 3.778vw 0;
  }
  .flow__list {
    display: flex;
    justify-content: space-between;
    max-width: 88.889vw;
    width: 100%;
    margin: 0 auto;
  }
  .flow__item--title {
    font-size: 3.111vw;
    text-align: center;
    font-weight: 700;
  }
  .flow__item .flow__icon {
    width: 16.667vw;
    height: 14.889vw;
    margin: 30px auto 0 auto;
  }
  .flow__item:nth-of-type(2) .flow__icon {
    width: 16.667vw;
    height: 14vw;
  }
  .flow__item:nth-of-type(3) .flow__icon {
    width: 16.667vw;
    height: 11.222vw;
  }
}
@media screen and (max-width: 800px) {
  .flow__inner {
    max-width: 384vw;
    margin: 0 auto;
    padding-top: 17.867vw;
  }
  .flow__title {
    position: relative;
    text-align: center;
    font-size: 6.4vw;
    font-weight: 700;
  }
  .flow__title:after {
    position: absolute;
    content: "";
    width: 18.667vw;
    height: 1.333vw;
    background: #07c655;
    top: 194%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .flow__box {
    margin-top: 14.933vw;
    background: #f6f7f7;
    padding: 0;
  }
  .flow__list {
    display: block;
    justify-content: space-between;
    max-width: 213.333vw;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 5.333vw;
  }
  .flow__item {
    padding-top: 6.933vw;
  }
  .flow__item--title {
    font-size: 5.333vw;
    text-align: center;
    font-weight: 700;
  }
  .flow__item .flow__icon {
    width: 22.667vw;
    height: 20vw;
    margin: 15px auto 0 auto;
  }
  .flow__item:nth-of-type(2) .flow__icon {
    width: 22.667vw;
    height: 18.933vw;
  }
  .flow__item:nth-of-type(3) .flow__icon {
    width: 22.667vw;
    height: 15.2vw;
  }
}
.registration-flow {
  margin: 105px 0 50px 0;
}
.registration-flow__inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  border: solid 1px #3e5686;
}
.registration-flow__title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  background: #3e5686;
  padding: 17px 0 17px 30px;
}
.registration-flow__subtitle {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 27px 0 33px 50px;
}
.registration-flow__subtitle:nth-of-type(2) {
  margin: 63px 0 37px 50px;
}
.registration-flow__subtitle:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 48px;
  background: #3e5686;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.registration-flow__step {
  width: 740px;
  margin: 0 auto 24px auto;
}
.registration-flow__step-content {
  display: flex;
  justify-content: space-between;
}
.registration-flow__step--pc .registration-flow__image {
  width: 350px;
  padding: 15px 0 14px 0;
  border: solid #d9d9d9 1px;
}
.registration-flow__step--pc .registration-flow__image img {
  display: block;
  width: 170px;
  height: 185px;
  margin: 0 auto;
}
.registration-flow__step--smartphone .registration-flow__image {
  width: 350px;
  padding: 20px 0;
  border: solid #d9d9d9 1px;
}
.registration-flow__step--smartphone .registration-flow__image img {
  display: block;
  width: 317px;
  height: 286px;
  margin: 0 auto;
}
.registration-flow__step--video .registration-flow__image {
  width: 350px;
  padding: 18px 0;
  border: solid #d9d9d9 1px;
}
.registration-flow__step--video .registration-flow__image img {
  display: block;
  width: 285px;
  height: 248px;
  margin: 0 auto;
}
.registration-flow__step--menu .registration-flow__image {
  width: 350px;
  padding: 17px 0;
  border: solid #d9d9d9 1px;
}
.registration-flow__step--menu .registration-flow__image img {
  display: block;
  width: 309px;
  height: 317px;
  margin: 0 auto;
}
.registration-flow__step--text {
  width: 350px;
  background: #f6f7f7;
}
.registration-flow__step-title {
  position: relative;
  font-size: 16px;
  margin: 14px 11px 0 33px;
}
.registration-flow__step-title:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #3e5686;
  top: 50%;
  left: -10px;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.registration-flow__step-description {
  font-size: 16px;
  margin: 25px 11px 0 33px;
}

@media screen and (max-width: 900px) {
  .registration-flow {
    margin: 11.667vw 0 5.556vw 0;
  }
  .registration-flow__inner {
    max-width: 88.889vw;
    width: 100%;
    margin: 0 auto;
    border: solid 1px #3e5686;
  }
  .registration-flow__title {
    font-size: 3.111vw;
    font-weight: 700;
    color: #fff;
    background: #3e5686;
    padding: 1.889vw 0 1.889vw 3.333vw;
  }
  .registration-flow__subtitle {
    position: relative;
    font-size: 2.667vw;
    font-weight: 700;
    color: #000000;
    margin: 3vw 0 3.667vw 5.556vw;
  }
  .registration-flow__subtitle:nth-of-type(2) {
    margin: 7vw 0 4.111vw 5.556vw;
  }
  .registration-flow__subtitle:before {
    position: absolute;
    content: "";
    width: 1.111vw;
    height: 5.333vw;
    background: #3e5686;
    left: -2.222vw;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .registration-flow__step {
    width: 82.222vw;
    margin: 0 auto 2.667vw auto;
  }
  .registration-flow__step-content {
    display: flex;
    justify-content: space-between;
  }
  .registration-flow__step--pc .registration-flow__image {
    width: 38.889vw;
    padding: 1.667vw 0 1.556vw 0;
    border: solid #d9d9d9 1px;
  }
  .registration-flow__step--pc .registration-flow__image img {
    display: block;
    width: 18.889vw;
    height: 20.556vw;
    margin: 0 auto;
  }
  .registration-flow__step--smartphone .registration-flow__image {
    width: 38.889vw;
    padding: 2.222vw 0;
    border: solid #d9d9d9 1px;
  }
  .registration-flow__step--smartphone .registration-flow__image img {
    display: block;
    width: 35.222vw;
    height: 31.778vw;
    margin: 0 auto;
  }
  .registration-flow__step--video .registration-flow__image {
    width: 38.889vw;
    padding: 2vw 0;
    border: solid #d9d9d9 1px;
  }
  .registration-flow__step--video .registration-flow__image img {
    display: block;
    width: 31.667vw;
    height: 27.556vw;
    margin: 0 auto;
  }
  .registration-flow__step--menu .registration-flow__image {
    width: 38.889vw;
    padding: 1.889vw 0;
    border: solid #d9d9d9 1px;
  }
  .registration-flow__step--menu .registration-flow__image img {
    display: block;
    width: 34.333vw;
    height: 35.222vw;
    margin: 0 auto;
  }
  .registration-flow__step--text {
    width: 38.889vw;
    background: #f6f7f7;
  }
  .registration-flow__step-title {
    position: relative;
    font-size: 1.778vw;
    margin: 1.556vw 1.222vw 0 3.667vw;
  }
  .registration-flow__step-title:before {
    position: absolute;
    content: "";
    width: 1.111vw;
    height: 1.111vw;
    background: #3e5686;
    top: 50%;
    left: -1.111vw;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .registration-flow__step-description {
    font-size: 1.778vw;
    margin: 2.778vw 1.222vw 0 3.667vw;
  }
}
@media screen and (max-width: 800px) {
  .registration-flow {
    margin: 20vw 0 17.333vw 0;
  }
  .registration-flow__inner {
    max-width: 213.333vw;
    width: 94.667vw;
    margin: 0 auto;
    border: solid 1px #3e5686;
  }
  .registration-flow__title {
    font-size: 5.333vw;
    font-weight: 700;
    color: #fff;
    background: #3e5686;
    padding: 1.6vw 0 1.6vw 2.667vw;
  }
  .registration-flow__subtitle {
    position: relative;
    font-size: 4.8vw;
    font-weight: 700;
    color: #000000;
    margin: 4.533vw 0 5.333vw 7.467vw;
  }
  .registration-flow__subtitle:nth-of-type(2) {
    margin: 13.067vw 0 5.333vw 7.467vw;
  }
  .registration-flow__subtitle:before {
    position: absolute;
    content: "";
    width: 1.6vw;
    height: 8vw;
    background: #3e5686;
    left: -3.733vw;
    top: 54%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .registration-flow__step {
    width: 88vw;
    margin: 0 auto 6.4vw auto;
  }
  .registration-flow__step-content {
    display: block;
    justify-content: space-between;
  }
  .registration-flow__step--pc .registration-flow__image {
    width: 100%;
    border: solid #d9d9d9 1px;
    padding: 3.733vw 0 3.2vw 0;
  }
  .registration-flow__step--pc .registration-flow__image img {
    display: block;
    width: 42.667vw;
    height: 46.4vw;
    margin: 0 auto;
  }
  .registration-flow__step--smartphone .registration-flow__image {
    width: 100%;
    padding: 3.733vw 0 6.133vw 0;
    border: solid #d9d9d9 1px;
  }
  .registration-flow__step--smartphone .registration-flow__image img {
    display: block;
    width: 71.2vw;
    height: 64.267vw;
    margin: 0 auto;
  }
  .registration-flow__step--video .registration-flow__image {
    width: 100%;
    padding: 3.733vw 0 3.467vw 0;
    border: solid #d9d9d9 1px;
  }
  .registration-flow__step--video .registration-flow__image img {
    display: block;
    width: 71.733vw;
    height: 62.133vw;
    margin: 0 auto;
  }
  .registration-flow__step--menu .registration-flow__image {
    width: 100%;
    padding: 4.533vw 0;
    border: solid #d9d9d9 1px;
  }
  .registration-flow__step--menu .registration-flow__image img {
    display: block;
    width: 71.733vw;
    height: 74.133vw;
    margin: 0 auto;
  }
  .registration-flow__step--text {
    width: 100%;
    background: #f6f7f7;
    margin-top: 2.667vw;
    padding: 2.667vw 0;
  }
  .registration-flow__step-title {
    position: relative;
    font-size: 4.267vw;
    margin: 0 0 0 8.267vw;
    letter-spacing: -0.15em;
  }
  .registration-flow__step-title:before {
    position: absolute;
    content: "";
    width: 2.667vw;
    height: 2.667vw;
    background: #3e5686;
    top: 55%;
    left: -3.733vw;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .registration-flow__step-description {
    font-size: 3.733vw;
    margin: 4.8vw 2.933vw 0 8.8vw;
  }
}
.situation-selection__inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  border: solid 1px #3e5686;
}
.situation-selection__title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  background: #3e5686;
  padding: 17px 0 17px 30px;
}
.situation-selection__list {
  padding-bottom: 20px;
}
.situation-selection__item {
  display: flex;
  justify-content: space-between;
  width: 720px;
  margin: 40px auto 0 auto;
}
.situation-selection__figure {
  position: relative;
  width: 270px;
  height: 175px;
}
.situation-selection__figure .number {
  position: absolute;
  width: 40px;
  height: 40px;
  font-size: 28px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background: #07c655;
  text-align: center;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  top: -20px;
  left: -20px;
}
.situation-selection__content {
  position: relative;
  width: 440px;
  background: #f6f7f7;
  padding: 10px;
}
.situation-selection__heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}
.situation-selection__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 5px;
}
.situation-selection__link {
  position: absolute;
  display: block;
  width: 150px;
  height: 40px;
  background: #fff100;
  padding-left: 16px;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
  bottom: 10px;
  right: 10px;
}
.situation-selection__link:hover {
  color: #fff100;
  background-color: #000;
}
.situation-selection__link:after {
  position: absolute;
  display: block;
  content: "";
  background: url(../../img/Polygon\ 1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 11px solid #000;
  border-bottom: 0;
  top: 55%;
  right: 15px;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.situation-selection__link:hover::after {
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 11px solid #fff100;
}

@media screen and (max-width: 900px) {
  .situation-selection__inner {
    max-width: 88.889vw;
    width: 100%;
    margin: 0 auto;
    border: solid 1px #3e5686;
  }
  .situation-selection__title {
    font-size: 3.111vw;
    font-weight: 700;
    color: #fff;
    background: #3e5686;
    padding: 1.889vw 0 1.889vw 3.333vw;
  }
  .situation-selection__list {
    padding-bottom: 2.222vw;
  }
  .situation-selection__item {
    display: flex;
    justify-content: space-between;
    width: 80vw;
    margin: 4.444vw auto 0 auto;
  }
  .situation-selection__figure {
    position: relative;
    width: 30vw;
    height: 19.444vw;
  }
  .situation-selection__figure .number {
    position: absolute;
    width: 4.444vw;
    height: 4.444vw;
    font-size: 3.111vw;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    background: #07c655;
    text-align: center;
    line-height: 4.444vw;
    color: #fff;
    border-radius: 50%;
    top: -2.222vw;
    left: -2.222vw;
  }
  .situation-selection__content {
    position: relative;
    width: 48.889vw;
    background: #f6f7f7;
    padding: 1.111vw;
  }
  .situation-selection__heading {
    font-size: 1.778vw;
    font-weight: 700;
    line-height: 1.45;
  }
  .situation-selection__description {
    font-size: 1.778vw;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 0.556vw;
  }
  .situation-selection__link {
    position: absolute;
    display: block;
    width: 16.667vw;
    height: 4.444vw;
    background: #fff100;
    padding-left: 1.778vw;
    color: #000;
    font-weight: 500;
    font-size: 1.778vw;
    line-height: 4.444vw;
    bottom: 1.111vw;
    right: 1.111vw;
  }
  .situation-selection__link:hover {
    color: #fff100;
    background-color: #000;
  }
  .situation-selection__link:after {
    position: absolute;
    display: block;
    content: "";
    background: url(../../img/Polygon\ 1.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 0.556vw solid transparent;
    border-left: 0.556vw solid transparent;
    border-top: 1.222vw solid #000;
    border-bottom: 0;
    top: 55%;
    right: 1.667vw;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .situation-selection__link:hover::after {
    border-right: 0.556vw solid transparent;
    border-left: 0.556vw solid transparent;
    border-top: 1.222vw solid #fff100;
  }
}
@media screen and (max-width: 800px) {
  .situation-selection__inner {
    max-width: 213.333vw;
    width: 94.667vw;
    margin: 0 auto;
    border: solid 1px #3e5686;
  }
  .situation-selection__title {
    font-size: 5.333vw;
    font-weight: 700;
    color: #fff;
    background: #3e5686;
    padding: 1.6vw 0 1.6vw 2.667vw;
  }
  .situation-selection__list {
    padding-bottom: 5.333vw;
  }
  .situation-selection__item {
    display: block;
    justify-content: space-between;
    width: 100%;
    margin: 10.133vw auto 0 auto;
  }
  .situation-selection__figure {
    position: relative;
    width: 72vw;
    height: 46.667vw;
    margin: 0 auto;
  }
  .situation-selection__figure .number {
    position: absolute;
    width: 10.667vw;
    height: 10.667vw;
    font-size: 7.467vw;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    background: #07c655;
    text-align: center;
    line-height: 10.667vw;
    color: #fff;
    border-radius: 50%;
    top: -5.333vw;
    left: -5.333vw;
  }
  .situation-selection__content {
    position: relative;
    width: 88vw;
    margin: 2.667vw auto 0 auto;
    background: #f6f7f7;
    padding: 2.667vw;
  }
  .situation-selection__heading {
    font-size: 3.733vw;
    font-weight: 700;
    line-height: 1.45;
  }
  .situation-selection__description {
    font-size: 3.733vw;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 4.533vw;
  }
  .situation-selection__link {
    position: inherit;
    display: block;
    width: 40vw;
    height: 10.667vw;
    background: #fff100;
    padding-left: 4.267vw;
    color: #000;
    font-weight: 500;
    font-size: 4.267vw;
    line-height: 10.667vw;
    bottom: 0;
    right: 0;
    margin-top: 2.667vw;
    margin-left: auto;
  }
  .situation-selection__link:hover {
    color: #fff100;
    background-color: #000;
  }
  .situation-selection__link:after {
    position: absolute;
    display: block;
    content: "";
    background: url(../../img/Polygon\ 1.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 1.333vw solid transparent;
    border-left: 1.333vw solid transparent;
    border-top: 2.933vw solid #000;
    border-bottom: 0;
    top: 55%;
    right: 4vw;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .situation-selection__link:hover::after {
    border-right: 1.333vw solid transparent;
    border-left: 1.333vw solid transparent;
    border-top: 2.933vw solid #fff100;
  }
}
.flow-section {
  margin-top: 50px;
}
.flow-section__inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  border: solid 1px #3e5686;
  padding-bottom: 40px;
}
.flow-section__title {
  position: relative;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  background: #3e5686;
  padding: 17px 0 17px 88px;
}
.flow-section__title span {
  position: absolute;
  width: 40px;
  height: 40px;
  font-size: 28px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background: #07c655;
  text-align: center;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  top: 50%;
  left: 48px;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.flow-section__list {
  margin-top: 30px;
}
.flow-section__item {
  width: 740px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.flow-section__figure {
  width: 350px;
  padding: 13px 0;
  border: solid 1px #d9d9d9;
}
.flow-section__image {
  display: block;
  width: 260px;
  height: 374px;
  margin: 0 auto;
}
.flow-section__item--second {
  margin-top: 20px;
}
.flow-section__item--second .flow-section__figure {
  width: 350px;
  padding: 13px 0;
  border: solid 1px #d9d9d9;
}
.flow-section__item--second .flow-section__figure .flow-section__image {
  width: 260px;
  height: 256px;
  margin: 0 auto;
}
.flow-section__description {
  position: relative;
  width: 350px;
  background: #f6f7f7;
  font-size: 16px;
  padding: 14px 11px 0 33px;
}
.flow-section__description:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #3e5686;
  left: 10px;
  top: 19px;
}
.flow-section__cta {
  width: 350px;
  margin: 40px auto 0 auto;
}
.flow-section__cta p {
  text-align: center;
  align-items: center; /* 線を上下中央 */
  display: flex; /* 文字と線を横並び */
  justify-content: center; /* 文字を中央寄せ */
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 500;
}
.flow-section__cta p::before,
.flow-section__cta p::after {
  background-color: #000000; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  content: "";
  height: 2px; /* 線の高さ */
  width: 24px; /* 線の長さ */
}
.flow-section__cta p::before {
  margin-right: 10px; /* 文字との余白 */
  transform: rotate(45deg); /* 傾ける */
}
.flow-section__cta p::after {
  margin-left: 10px; /* 文字との余白 */
  transform: rotate(-45deg); /* 傾ける */
}
.flow-section__button {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 60px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0px 4px 0px #06ad4a;
  transition: 0.3s;
}
.flow-section__button:before {
  position: absolute;
  content: "";
  background: url(../../img/btn--text.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 42px;
  height: 42px;
  top: -25%;
  left: -6%;
}
.flow-section__button:hover {
  box-shadow: unset;
  transform: translateY(4px);
}
.flow-section .line_mcv_A {
  background: url(../../img/line_mcv_A.png);
  background-size: 105%;
  background-position-x: -3px;
  background-position-y: -5px;
}
.flow-section .line_mcv_B {
  background: url(../../img/line-b.png);
  background-size: 105%;
  background-position-x: -3px;
  background-position-y: -5px;
}
.flow-section .line_mcv_C {
  background: url(../../img/line_mcv_C.png);
  background-size: 105%;
  background-position-x: -3px;
  background-position-y: -5px;
}
.flow-section--type3 {
  margin-bottom: 160px;
}

@media screen and (max-width: 900px) {
  .flow-section {
    margin-top: 5.556vw;
  }
  .flow-section__inner {
    max-width: 88.889vw;
    width: 100%;
    margin: 0 auto;
    border: solid 1px #3e5686;
    padding-bottom: 4.444vw;
  }
  .flow-section__title {
    position: relative;
    font-size: 3.111vw;
    font-weight: 700;
    color: #fff;
    background: #3e5686;
    padding: 1.889vw 0 1.889vw 9.778vw;
  }
  .flow-section__title span {
    position: absolute;
    width: 4.444vw;
    height: 4.444vw;
    font-size: 3.111vw;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    background: #07c655;
    text-align: center;
    line-height: 4.444vw;
    color: #fff;
    border-radius: 50%;
    top: 50%;
    left: 5.333vw;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .flow-section__list {
    margin-top: 3.333vw;
  }
  .flow-section__item {
    width: 82.222vw;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .flow-section__figure {
    width: 38.889vw;
    padding: 1.444vw 0;
    border: solid 1px #d9d9d9;
  }
  .flow-section__image {
    display: block;
    width: 28.889vw;
    height: 41.556vw;
    margin: 0 auto;
  }
  .flow-section__item--second {
    margin-top: 2.222vw;
  }
  .flow-section__item--second .flow-section__figure {
    width: 38.889vw;
    padding: 1.444vw 0;
    border: solid 1px #d9d9d9;
  }
  .flow-section__item--second .flow-section__figure .flow-section__image {
    width: 28.889vw;
    height: 28.444vw;
    margin: 0 auto;
  }
  .flow-section__description {
    position: relative;
    width: 38.889vw;
    background: #f6f7f7;
    font-size: 1.778vw;
    padding: 1.556vw 1.222vw 0 3.667vw;
  }
  .flow-section__description:before {
    content: "";
    position: absolute;
    width: 1.111vw;
    height: 1.111vw;
    background: #3e5686;
    left: 1.111vw;
    top: 2.111vw;
  }
  .flow-section__cta {
    width: 38.889vw;
    margin: 4.444vw auto 0 auto;
  }
  .flow-section__cta p {
    text-align: center;
    align-items: center; /* 線を上下中央 */
    display: flex; /* 文字と線を横並び */
    justify-content: center; /* 文字を中央寄せ */
    font-size: 2vw;
    margin-bottom: 1.333vw;
    font-weight: 500;
  }
  .flow-section__cta p::before,
  .flow-section__cta p::after {
    background-color: #000000; /* 線の色 */
    border-radius: 0.556vw; /* 線の両端を丸く */
    content: "";
    height: 0.222vw; /* 線の高さ */
    width: 2.667vw; /* 線の長さ */
  }
  .flow-section__cta p::before {
    margin-right: 1.111vw; /* 文字との余白 */
    transform: rotate(45deg); /* 傾ける */
  }
  .flow-section__cta p::after {
    margin-left: 1.111vw; /* 文字との余白 */
    transform: rotate(-45deg); /* 傾ける */
  }
  .flow-section__button {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 6.667vw;
    text-align: center;
    text-decoration: none;
    color: #fff;
    box-shadow: 0px 4px 0px #06ad4a;
    transition: 0.3s;
  }
  .flow-section__button:before {
    position: absolute;
    content: "";
    background: url(../../img/btn--text.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 4.667vw;
    height: 4.667vw;
    top: -25%;
    left: -6%;
  }
  .flow-section__button:hover {
    box-shadow: unset;
    transform: translateY(4px);
  }
  .flow-section .line_mcv_A {
    background: url(../../img/line_mcv_A.png);
    background-size: 105%;
    background-position-x: -0.333vw;
    background-position-y: -0.556vw;
  }
  .flow-section .line_mcv_B {
    background: url(../../img/line-b.png);
    background-size: 105%;
    background-position-x: -0.333vw;
    background-position-y: -0.556vw;
  }
  .flow-section .line_mcv_C {
    background: url(../../img/line_mcv_C.png);
    background-size: 105%;
    background-position-x: -0.333vw;
    background-position-y: -0.556vw;
  }
  .flow-section--type3 {
    margin-bottom: 17.778vw;
  }
}
@media screen and (max-width: 800px) {
  .flow-section {
    margin-top: 16vw;
  }
  .flow-section__inner {
    max-width: 213.333vw;
    width: 94.667vw;
    margin: 0 auto;
    border: solid 1px #3e5686;
    padding-bottom: 9.067vw;
  }
  .flow-section__title {
    position: relative;
    font-size: 5.333vw;
    font-weight: 700;
    color: #fff;
    background: #3e5686;
    padding: 1.6vw 0 1.6vw 11.2vw;
  }
  .flow-section__title span {
    position: absolute;
    width: 5.867vw;
    height: 5.867vw;
    font-size: 4.8vw;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    background: #07c655;
    text-align: center;
    line-height: 5.867vw;
    color: #fff;
    border-radius: 50%;
    top: 50%;
    left: 5.067vw;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .flow-section__list {
    margin-top: 4vw;
  }
  .flow-section__item {
    width: 88vw;
    display: block;
    justify-content: space-between;
    margin: 0 auto;
  }
  .flow-section__figure {
    width: 100%;
    padding: 2.667vw 0;
    border: solid 1px #d9d9d9;
    margin: 0 auto;
  }
  .flow-section__image {
    display: block;
    width: 65.333vw;
    height: 93.867vw;
    margin: 0 auto;
  }
  .flow-section__item--second {
    margin-top: 8.533vw;
  }
  .flow-section__item--second .flow-section__figure {
    width: 100%;
    padding: 3.467vw 0;
    border: solid 1px #d9d9d9;
  }
  .flow-section__item--second .flow-section__figure .flow-section__image {
    width: 65.333vw;
    height: 64vw;
    margin: 0 auto;
  }
  .flow-section__description {
    position: relative;
    width: 100%;
    background: #f6f7f7;
    font-size: 4.267vw;
    padding: 2.667vw 2.667vw 2.667vw 8.2vw;
    margin-top: 2.587vw;
  }
  .flow-section__description:before {
    content: "";
    position: absolute;
    width: 2.667vw;
    height: 2.667vw;
    background: #3e5686;
    left: 2.4vw;
    top: 3.733vw;
  }
  .flow-section__cta {
    width: 82.133vw;
    margin: 30px auto 0 auto;
  }
  .flow-section__cta p {
    text-align: center;
    align-items: center; /* 線を上下中央 */
    display: flex; /* 文字と線を横並び */
    justify-content: center; /* 文字を中央寄せ */
    font-size: 3.733vw;
    margin-bottom: 3.2vw;
    font-weight: 500;
  }
  .flow-section__cta p::before,
  .flow-section__cta p::after {
    background-color: #000000; /* 線の色 */
    border-radius: 1.333vw; /* 線の両端を丸く */
    content: "";
    height: 0.533vw; /* 線の高さ */
    width: 6.4vw; /* 線の長さ */
  }
  .flow-section__cta p::before {
    margin-right: 2.667vw; /* 文字との余白 */
    transform: rotate(45deg); /* 傾ける */
  }
  .flow-section__cta p::after {
    margin-left: 2.667vw; /* 文字との余白 */
    transform: rotate(-45deg); /* 傾ける */
  }
  .flow-section__button {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 13.6vw;
    text-align: center;
    text-decoration: none;
    color: #fff;
    box-shadow: 0px 4px 0px #06ad4a;
    transition: 0.3s;
  }
  .flow-section__button:before {
    position: absolute;
    content: "";
    background: url(../../img/btn--text.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 10.667vw;
    height: 10.667vw;
    top: -25%;
    left: -6%;
  }
  .flow-section__button:hover {
    box-shadow: unset;
    transform: translateY(4px);
  }
  .flow-section .line_mcv_A {
    background: url(../../img/line_mcv_A.png);
    background-size: 105%;
    background-position-x: -0.8vw;
    background-position-y: -1.333vw;
  }
  .flow-section .line_mcv_B {
    background: url(../../img/line-b.png);
    background-size: 105%;
    background-position-x: -0.8vw;
    background-position-y: -1.333vw;
  }
  .flow-section .line_mcv_C {
    background: url(../../img/line_mcv_C.png);
    background-size: 105%;
    background-position-x: -0.8vw;
    background-position-y: -1.333vw;
  }
  .flow-section--type3 {
    margin-bottom: 42.667vw;
  }
}

/*# sourceMappingURL=style.css.map */
