@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 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: 1em; /* 2 */
}

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

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * 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: 1em; /* 2 */
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

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

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* -----------------------
  COMMON
 ------------------------- */
html {
  background-color: #fff;
  font-size: 14px;
}
@media screen and (min-width: 768px), print {
  html {
    font-size: 16px;
  }
}

body {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  position: relative;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body, button, input, select, textarea {
  color: #000000;
  /*
  font-family: $font-default;
  */
  font-family: NOW-GE, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.03em;
}

body {
  line-height: 1.6;
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

article, aside, audio, blockquote, body, canvas, caption, dd, details, div, dl, dt, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, iframe, legend, li, nav, ol, p, section, ul, video {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

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

:focus {
  outline: none;
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

*, article {
  box-sizing: border-box;
}

.scroll_fadein {
  opacity: 0;
  transform: translate(-60px, 0);
  transition: all 1s;
}
.scroll_fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* -----------------------
  LAYOUT
 ------------------------- */
.section-inner {
  position: relative;
  margin: auto;
  padding: 50px 20px;
}
@media screen and (min-width: 768px), print {
  .section-inner {
    padding: 50px 20px;
  }
}
@media screen and (min-width: 992px) {
  .section-inner {
    width: 1120px;
    padding: 65px 0;
  }
}

/* -----------------------
　　PARTS
-------------------------- */
a {
  color: #3680CC;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  a:hover {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.alignright {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .alignright {
    float: right;
    margin-left: 2rem;
    margin-bottom: 2rem;
  }
}

.alignleft {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .alignleft {
    float: left;
    margin-right: 2rem;
    margin-bottom: 2rem;
  }
}

.aligncenter {
  text-align: center;
}
.aligncenter > * {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.textleft {
  text-align: left;
}

.textright {
  text-align: right;
}

.textcenter {
  text-align: center;
}

@media screen and (min-width: 992px) {
  .only-sp {
    display: none !important;
  }
}
@media screen and (min-width: 768px), print {
  .only-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .only-sp {
    display: block !important;
  }
}

@media screen and (min-width: 768px), print {
  .only-sptab {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .only-sptab {
    display: block !important;
  }
}
@media screen and (min-width: 992px) {
  .only-sptab {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .only-pctab {
    display: block !important;
  }
}
@media screen and (min-width: 768px), print {
  .only-pctab {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .only-pctab {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .only-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px), print {
  .only-pc {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .only-pc {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .row > * {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px), print {
  .row {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-bottom: 30px;
  }
  .row .col1 > * {
    width: 90%;
  }
  .row .col2 > * {
    width: 45%;
  }
  .row .col3 > * {
    width: 30%;
  }
  .row .col4 > * {
    width: 22.5%;
  }
  .row .col5 > * {
    width: 18%;
  }
  .row .col6 > * {
    width: 15%;
  }
  .row.wrap {
    flex-wrap: wrap;
  }
  .row.row-center {
    justify-content: center;
  }
  .row.row-around {
    justify-content: space-around;
  }
}

.emoji {
  font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", "Noto Emoji";
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.breadcrumb {
  background-color: #eef5ff;
}
.breadcrumb ul {
  padding: 5px 20px;
}
.breadcrumb ul li {
  display: inline-block;
  font-size: 0.875rem;
}
.breadcrumb ul li:after {
  content: ">";
  display: inline-block;
  margin-right: 7px;
  color: #666666;
}
.breadcrumb ul li:last-child:after {
  display: none;
}
.breadcrumb ul li a {
  display: inline-block;
  margin-right: 7px;
}

#page-header {
  width: 100vw;
}
@media screen and (min-width: 768px), print {
  #page-header {
    width: 100%;
  }
}
#page-header .inner {
  height: 60px;
  padding: 15px 24px 0;
  position: relative;
}
@media screen and (min-width: 768px), print {
  #page-header .inner {
    padding: 0 20px;
    height: 78px;
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  #page-header .inner {
    width: 1120px;
    margin: 0 auto;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #page-header .site-logo {
    margin-bottom: 5px;
  }
}
#page-header .site-logo img {
  display: block;
  width: auto;
  height: 30px;
}
@media screen and (min-width: 768px), print {
  #page-header .site-logo img {
    height: 35px;
  }
}
#page-header .cta {
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
}
@media screen and (max-width: 991px) {
  #page-header .cta {
    display: none;
  }
}
#page-header .cta .btn {
  width: 180px;
  height: 100px;
  padding-left: 30px;
  background: #EE3556;
  border-radius: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
@media screen and (min-width: 992px) {
  #page-header .cta .btn:hover {
    opacity: 1;
    background-color: #c20027;
  }
}
#page-header .cta .btn strong {
  font-size: 2em;
}
#page-header .cta .btn span {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 600;
  white-space: nowrap;
}
#page-header .cta .btn span:first-of-type {
  line-height: 30px;
}
#page-header .cta .btn span:last-of-type:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 11.6px;
  background-image: url(../images/ico_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#cover {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 99;
  background-color: rgba(84, 148, 216, 0.6);
  top: 0;
  left: 0;
  display: none;
}
@media screen and (min-width: 992px) {
  #cover {
    display: none;
  }
}

#site-footer {
  background-color: #1e2428;
  color: #fff;
}
#site-footer a {
  color: #fff;
}
#site-footer .section-inner {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 992px) {
  #site-footer .footer-elements {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
  }
}
#site-footer .footer-elements .footer-item:first-of-type {
  padding-bottom: 25px;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  #site-footer .footer-elements .footer-item:first-of-type {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  #site-footer .footer-elements .footer-item:first-of-type {
    padding-bottom: 0;
  }
}
#site-footer .footer-elements .footer-item:last-of-type {
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 992px) {
  #site-footer .footer-elements .footer-item:last-of-type {
    border-left: 1px solid #fff;
    padding-bottom: 0;
    padding-left: 30px;
    text-align: left;
  }
}
#site-footer .footer-item .label {
  display: inline-block;
  line-height: 25px;
  padding: 0 5px;
  background-color: #fff;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px), print {
  #site-footer .footer-item .label {
    padding: 0 15px;
    line-height: 40px;
  }
}
#site-footer .footer-item a[href^="tel:"] {
  font-size: 10vw;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 700;
  background-image: url(../images/ico_phone.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 28px auto;
  padding-left: 35px;
}
@media screen and (min-width: 768px), print {
  #site-footer .footer-item a[href^="tel:"] {
    background-size: 35px auto;
    padding-left: 40px;
    font-size: 42px;
  }
}
#site-footer .footer-item .bizhour {
  font-size: 12px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
#site-footer .footer-item .logo {
  margin-bottom: 8px;
}
#site-footer .footer-item .nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 992px) {
  #site-footer .footer-item .nav {
    justify-content: flex-start;
  }
}
#site-footer .footer-item .nav li a {
  display: inline-block;
  border-bottom: 1px solid #fff;
  font-size: 14px;
  line-height: 1.3;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 992px) {
  #site-footer .footer-item .nav li a:hover {
    opacity: 1;
    border-bottom: none;
  }
}
#site-footer .copyright {
  border-top: 1px solid rgba(237, 243, 249, 0.25);
  font-size: 11px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  padding: 15px 0 0;
}
@media screen and (min-width: 768px), print {
  #site-footer .copyright {
    border-top: 1px solid #fff;
    padding: 15px 0;
    font-size: 14px;
  }
}

/* ---------------------------------
	COMMON
--------------------------------- */
.btn {
  width: 100%;
  height: 60px;
  display: inline-block;
  background-color: #EE3556;
  color: #fff;
  box-shadow: 0 8px 8px rgba(238, 53, 86, 0.25);
  background-image: url(../images/ico_arrow.svg);
  background-size: 15px 10px;
  background-repeat: no-repeat;
  background-position: top 50% right 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
  font-size: 5.3vw;
  font-weight: 700;
  border-radius: 40px;
  font-family: montserrat, NOW-GE, sans-serif;
}
@media screen and (min-width: 768px), print {
  .btn {
    width: 440px;
    height: 80px;
    padding-right: 30px;
    font-size: 1.625rem;
    line-height: 1.2;
    background-size: 20px 15px;
    background-position: top 50% right 31px;
  }
}
@media screen and (min-width: 992px) {
  .btn:hover {
    opacity: 1;
    background-color: #c20027;
  }
}
.btn strong {
  font-size: 1.6em;
  margin-left: 5px;
}
.btn small {
  margin-right: 5px;
}
.btn-section {
  line-height: 1.3;
}
@media screen and (min-width: 768px), print {
  .btn-section {
    margin-left: auto;
    margin-right: auto;
  }
}
.btn-section strong {
  font-weight: 700;
}
.btn-section small {
  font-size: 0.66em;
}
.btn-yellow {
  background-color: rgb(255, 199, 16);
  box-shadow: 0 16px 16px rgba(201, 162, 0, 0.2);
  background-image: url(../images/ico_arrow_black.svg), linear-gradient(140deg, rgb(255, 199, 16) 0%, rgb(247, 227, 71) 100%);
  background-size: 15px 11px, auto;
  background-repeat: no-repeat;
  background-position: top 50% right 31px, 0 0;
  color: #22272A;
}
@media screen and (max-width: 767px) {
  .btn-yellow {
    border-radius: 40px;
  }
}
@media screen and (max-width: 320px) {
  .btn-yellow {
    font-size: 5vw;
    background-position: top 50% right 20px, 0 0;
  }
}
@media screen and (min-width: 992px) {
  .btn-yellow:hover {
    background: url(../images/ico_arrow_black.svg), linear-gradient(140deg, rgb(247, 189, 0) 0%, rgb(247, 216, 51) 100%);
    background-size: 15px 11px, auto;
    background-repeat: no-repeat;
    background-position: top 50% right 31px, 0 0;
  }
}
.btn-modal {
  width: 45vw;
  display: inline-block;
  background-color: #fff;
  background-image: url(../images/ico_arrow_blue.png);
  background-position: top 50% right 15px;
  background-repeat: no-repeat;
  background-size: 12px auto;
  border-radius: 20px;
  border: 2px solid rgba(14, 110, 216, 0.3);
  line-height: 30px;
  color: #1571c6;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(10, 68, 132, 0.5);
  position: absolute;
  left: -10px;
  bottom: 20px;
  transition: all 0.3s;
  padding-right: 10px;
}
@media screen and (min-width: 768px), print {
  .btn-modal {
    width: 238px;
    background-size: auto;
    line-height: 36px;
    font-size: 1.125rem;
    left: -18px;
    bottom: 20px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 992px) {
  .btn-modal {
    bottom: 45px;
  }
}

.section {
  overflow: hidden;
}
.section .section-inner h2 {
  margin-bottom: 4rem;
  text-align: center;
  font-size: 8vw;
  font-family: NOW-GE, sans-serif;
  font-style: normal;
  line-height: 1.3;
  position: relative;
}
.section .section-inner h2:after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background-color: #2593d2;
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px), print {
  .section .section-inner h2 {
    font-size: 3.125rem;
  }
}
.section .section-inner h2 em {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-style: normal;
}
.section .section-inner h2 + p {
  font-size: 1.2857rem;
}
@media screen and (min-width: 768px), print {
  .section .section-inner h2 + p {
    text-align: center;
    font-size: 1.125rem;
  }
}
.section .section-inner .tagline {
  margin-bottom: 10px;
  font-size: 4.5vw;
  color: #2593d2;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .section .section-inner .tagline {
    font-size: 28px;
  }
}
.section .section-inner .tagline em {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-style: normal;
}

.modal {
  display: none;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(96, 96, 96, 0.75);
}
.modal-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 40px);
  padding: 15px;
  background-color: #b1bfce;
  border-radius: 5px;
}
@media screen and (min-width: 768px), print {
  .modal-wrap {
    padding: 25px;
  }
}
@media screen and (min-width: 992px) {
  .modal-wrap {
    width: 1112px;
  }
}
.modal-close {
  position: absolute;
  top: -20px;
  right: -10px;
}
@media screen and (min-width: 768px), print {
  .modal-close {
    top: -60px;
    right: 0;
  }
}
.modal-close a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  background-image: url(../images/ico_close.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -500px;
  box-shadow: 0px 0px 15px rgba(64, 64, 64, 0.4);
}
@media screen and (min-width: 992px) {
  .modal-close a:hover {
    opacity: 1;
    background-color: #098bde;
    background-image: url(../images/ico_close_on.png);
  }
}
.modal-content {
  background-color: #eef3f8;
  padding: 20px 25px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .modal-content {
    height: 30vh;
    padding: 10px;
    display: flex;
    align-items: center;
  }
}
.modal-content h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .modal-content h3 {
    margin-bottom: 10px;
    text-align: center;
  }
}
.modal-content h3 img {
  margin-right: 15px;
}
.modal-content .img {
  position: relative;
}
.modal-content .img p {
  background-color: #098BDE;
  border-radius: 8px;
  -ms-box-shadow: 1px 1px 5px 0px rgba(8, 151, 225, 0.25);
  box-shadow: 1px 1px 5px 0px rgba(8, 151, 225, 0.25);
  box-sizing: border-box;
  padding: 10px 15px 10px 15px;
  color: #fff;
  font-size: 0.75rem;
  position: absolute;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal-content .img p {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .modal#modal-screen04 .modal-content {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.slick-prev {
  border: none;
  background-color: transparent;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 50px;
  height: 50px;
  background-image: url(../images/ico_nav_prev.png);
  background-position: center;
  background-size: cover;
  text-indent: -500px;
  overflow: hidden;
  position: absolute;
  left: -35px;
  top: 50vw;
  z-index: 99;
  margin-top: -24px;
}
@media screen and (min-width: 768px), print {
  .slick-prev {
    width: 65px;
    height: 65px;
    left: -50px;
  }
}
.slick-next {
  border: none;
  background-color: transparent;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 50px;
  height: 50px;
  background-image: url(../images/ico_nav_next.png);
  background-position: center;
  background-size: cover;
  text-indent: -500px;
  overflow: hidden;
  position: absolute;
  right: -35px;
  top: 50vw;
  z-index: 99;
  margin-top: -24px;
}
@media screen and (min-width: 768px), print {
  .slick-next {
    width: 65px;
    height: 65px;
    right: -50px;
  }
}

img {
  image-rendering: -webkit-optimize-contrast;
}

/* ---------------------------------
	CONTENTS
--------------------------------- */
@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#mainimage {
  background-image: url(../images/bg_mainimage_sp.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 768px), print {
  #mainimage {
    background-image: url(../images/bg_mainimage.jpg);
  }
}
#mainimage .illust {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 768px), print {
  #mainimage .illust {
    top: 50px;
  }
}
@media screen and (min-width: 992px) {
  #mainimage .illust {
    top: 50%;
    left: calc(50% - 614px);
    transform: translate(0, -50%);
  }
}
#mainimage .illust img {
  width: 90vw;
  max-width: 614.5px;
}
#mainimage .section-inner {
  padding-top: 20px;
  padding-bottom: 0;
  z-index: 2;
  height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  #mainimage .section-inner {
    width: 1180px;
    height: 620px;
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
}
#mainimage .section-inner .text {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  #mainimage .section-inner .text {
    margin-bottom: 0;
    flex-basis: 56%;
  }
}
@media screen and (min-width: 992px) {
  #mainimage .section-inner .img {
    flex-basis: 43%;
  }
}
#mainimage h1 {
  margin-bottom: 20px;
  text-shadow: 0px 0px 35px rgba(10, 46, 119, 0.5);
  font-size: 6vw;
  font-family: NOW-GE, sans-serif;
  font-style: normal;
  letter-spacing: -0.025em;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px), print {
  #mainimage h1 {
    font-size: 2.6rem;
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  #mainimage h1 {
    margin-bottom: 60px;
    text-align: left;
    font-size: 2.8rem;
  }
}
#mainimage h1 .em {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translate(-15px, -70%);
  font-family: NOW-GE, sans-serif;
  font-style: normal;
  font-size: 1.25rem;
  font-weight: bolder;
  color: #fff;
  width: 80px;
  height: 80px;
  background-color: #fc972a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px), print {
  #mainimage h1 .em {
    width: 100px;
    height: 100px;
    transform: translate(0, -60%);
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  #mainimage h1 .em {
    transform: translate(-40%, -60%);
  }
}
#mainimage h1 strong {
  color: #ffd52c;
  font-size: 1.35em;
  display: inline-block;
  padding-right: 10px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 5;
}
#mainimage h1 .logo {
  display: inline-block;
  width: 90vw;
  height: 11.5vw;
  overflow: hidden;
  text-indent: -1000px;
  background-image: url(../images/logo-office-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-shadow: 0px 0px 35px rgba(10, 46, 119, 0.5);
}
@media screen and (min-width: 768px), print {
  #mainimage h1 .logo {
    width: 626px;
    height: 80px;
  }
}
#mainimage .cta {
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  #mainimage .cta {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  #mainimage .cta {
    margin-bottom: 0;
    text-align: right;
  }
}
#mainimage .cta .btn {
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  #mainimage .cta .btn {
    margin-left: 0;
  }
}
#mainimage .device {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #mainimage .device {
    margin-right: -20px;
    margin-left: -20px;
  }
}
#mainimage .device .img {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #mainimage .device .img {
    width: 92%;
    height: auto;
  }
}
#mainimage .device #img-02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s;
}
@media screen and (max-width: 767px) {
  #mainimage .device #img-02 {
    width: 92%;
    height: auto;
  }
}
#mainimage .device #img-02.show {
  opacity: 1;
}
#mainimage .features {
  position: relative;
  z-index: 2;
  margin-top: -60px;
}
@media screen and (min-width: 768px), print {
  #mainimage .features {
    margin-top: -90px;
  }
}
@media screen and (min-width: 992px) {
  #mainimage .features {
    margin-left: -40px;
  }
}
#mainimage .features .circle {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
}
@media screen and (min-width: 992px) {
  #mainimage .features .circle {
    justify-content: flex-start;
    gap: 15px;
  }
}
#mainimage .features .circle-item {
  background-image: url(../images/bg_mv_feature.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: 0px 0px 35px rgba(0, 129, 209, 0.6);
  border-radius: 50%;
  text-align: center;
  flex-basis: 30%;
  padding-top: 30%;
  position: relative;
}
@media screen and (min-width: 992px) {
  #mainimage .features .circle-item {
    flex-basis: 170px;
    padding-top: 170px;
  }
}
#mainimage .features .circle-item p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: #004dc0;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px), print {
  #mainimage .features .circle-item p {
    font-size: 23px;
  }
}
#mainimage .features .circle-item p .marker {
  display: inline-block;
  background: linear-gradient(transparent 70%, #ffd52c 70%);
  padding: 3px 0;
  font-size: 1.13em;
}
#mainimage .features .circle-item p sup {
  font-size: 0.5em;
}
#mainimage .features .notice {
  line-height: 1.1;
}
#mainimage .features .notice span {
  display: inline-block;
  color: #b7f0fe;
  position: relative;
  padding-left: 15px;
  font-size: 11px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
#mainimage .features .notice span:before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

#feature {
  background-color: #edf3f9;
}
#feature .icon {
  display: none;
}
@media screen and (min-width: 768px), print {
  #feature .icon {
    display: block;
    position: absolute;
    top: 120px;
    right: 30px;
  }
}
@media screen and (min-width: 992px) {
  #feature .icon {
    top: 60px;
    right: 0;
  }
}
#feature .icon img {
  width: 15vw;
  max-width: 133px;
}
#feature .card-list {
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  #feature .card-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#feature .card-item {
  display: flex;
  height: 45vw;
  margin-bottom: 30px;
  background-image: url(../images/bg_card_item.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  box-shadow: 10px 0px 20px rgba(0, 129, 209, 0.3);
}
@media screen and (min-width: 768px), print {
  #feature .card-item {
    width: calc(100vw - 80px);
    padding: 25px 20px;
    margin-left: auto;
    margin-right: auto;
    height: 240px;
  }
}
@media screen and (min-width: 992px) {
  #feature .card-item {
    display: block;
    flex-basis: 48.21%;
    max-width: 540px;
    height: 280px;
    margin-left: 0;
    margin-right: 0;
  }
  #feature .card-item:hover {
    opacity: 0.85;
  }
  #feature .card-item:hover .btn-modal {
    background-color: #1e54ad;
    color: #fff;
    background-image: url(../images/ico_arrow_white.png);
    background-size: 20px 15px;
  }
}
#feature .card-item h3 {
  color: #fff;
  font-size: 14px;
}
@media screen and (min-width: 768px), print {
  #feature .card-item h3 {
    font-size: 24px;
  }
}
#feature .card-item h3 strong {
  color: #ffd52c;
  font-size: 1.33333em;
  letter-spacing: -0.05em;
}
#feature .card-item .img {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media screen and (min-width: 768px), print {
  #feature .card-item .img {
    right: 20px;
    bottom: 15px;
  }
}
#feature .card-item .img img {
  max-width: 40vw;
}
@media screen and (min-width: 768px), print {
  #feature .card-item .img img {
    width: 100%;
    max-width: 248px;
  }
}

#groupware {
  background-color: #d3e3f4;
}
#groupware .point-list {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px), print {
  #groupware .point-list {
    flex-wrap: nowrap;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 992px) {
  #groupware .point-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#groupware .point-item {
  background-color: #e4f1fd;
  border-radius: 12px;
  padding: 20px 15px 20px 20px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px), print {
  #groupware .point-item {
    width: calc(100vw - 80px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding: 24px 20px;
  }
}
@media screen and (min-width: 992px) {
  #groupware .point-item {
    flex-basis: 31.25%;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0;
  }
}
#groupware .point-item:nth-of-type(2) {
  padding-bottom: 70px;
}
@media screen and (min-width: 768px), print {
  #groupware .point-item:nth-of-type(2) {
    padding-bottom: 50px;
  }
}
#groupware .point-item .txt {
  flex-basis: 65%;
}
@media screen and (min-width: 992px) {
  #groupware .point-item .txt {
    padding-right: 5px;
    flex-basis: calc(100% - 138px);
  }
}
#groupware .point-item .img {
  flex-basis: 35%;
}
@media screen and (min-width: 992px) {
  #groupware .point-item .img {
    flex-basis: 138px;
  }
}
#groupware .point-item h3 {
  margin-bottom: 12px;
  font-family: NOW-GE, sans-serif;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #098BDE;
  font-weight: 600;
}
@media screen and (min-width: 768px), print {
  #groupware .point-item h3 {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 992px) {
  #groupware .point-item h3 {
    white-space: nowrap;
  }
}
#groupware .point-item p {
  line-height: 1.5;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
#groupware .point-item p small {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.2;
}
#groupware .point-item p small.ab {
  position: absolute;
  bottom: 20px;
  left: 20px;
  white-space: nowrap;
}
#groupware .voice {
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 50px;
  padding: 30px 20px 20px;
  position: relative;
}
@media screen and (min-width: 768px), print {
  #groupware .voice {
    padding: 50px 20px 20px;
  }
}
#groupware .voice h3 {
  font-size: 27px;
  color: #1b8ddb;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #groupware .voice h3 {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px), print {
  #groupware .voice h3 {
    font-size: 40px;
  }
}
#groupware .voice .lead {
  margin-bottom: 10px;
  text-align: center;
  color: #565757;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px), print {
  #groupware .voice .lead {
    margin-bottom: 25px;
    font-size: 24px;
  }
}
@media screen and (min-width: 992px) {
  #groupware .voice .lead {
    margin-bottom: 45px;
  }
}
#groupware .voice .icon {
  position: absolute;
  top: 10px;
  left: 15px;
}
@media screen and (min-width: 768px), print {
  #groupware .voice .icon {
    top: 20px;
    left: 20px;
  }
}
@media screen and (min-width: 992px) {
  #groupware .voice .icon {
    top: 60px;
    left: 80px;
  }
}
#groupware .voice .icon img {
  width: 20vw;
  max-width: 124px;
}
@media screen and (min-width: 768px), print {
  #groupware .voice-list {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  #groupware .voice-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-left: 0;
    margin-right: 0;
  }
}
#groupware .voice-item {
  padding: 10px 13px 15px;
  background-color: #e4f1fd;
  border-radius: 10px;
}
@media screen and (min-width: 768px), print {
  #groupware .voice-item {
    padding: 25px 20px 20px;
  }
}
@media screen and (min-width: 992px) {
  #groupware .voice-item {
    flex-basis: 32%;
    max-width: 340px;
  }
}
#groupware .voice-item h4 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 20px;
  color: #1b8ddb;
  line-height: 1.2;
}
@media screen and (min-width: 768px), print {
  #groupware .voice-item h4 {
    margin-bottom: 25px;
    font-size: 25px;
  }
}
#groupware .voice-item h4 small {
  font-size: 0.64em;
  font-weight: 400;
}
#groupware .voice-item p {
  margin-bottom: 1rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5;
}
#groupware .voice-item p:not(.cat):last-of-type {
  margin-bottom: 0;
}
#groupware .voice-item .cat {
  margin-bottom: 15px;
  background-color: #1b8ddb;
  color: #fff;
  border-radius: 5px;
  line-height: 30px;
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
#groupware .voice-item .photo {
  margin-bottom: 15px;
}
#groupware .voice-item .photo img {
  border-radius: 3px;
}

#flow {
  background-color: #edf3f9;
  position: relative;
}
@media screen and (min-width: 992px) {
  #flow .section-inner {
    padding-bottom: 80px;
  }
}
#flow .icon {
  position: absolute;
  top: 120px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  #flow .icon {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  #flow .icon {
    top: 60px;
    right: -50px;
  }
}
#flow .icon img {
  width: 16vw;
  max-width: 141.5px;
}
#flow .lead {
  margin-bottom: 80px;
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px), print {
  #flow .lead {
    width: 80%;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  #flow .lead {
    width: 100%;
    margin-bottom: 50px;
    margin-left: 0;
    margin-right: 0;
    font-weight: 600;
    text-align: center;
  }
}
#flow .flow {
  position: relative;
  margin-bottom: 25px;
}
#flow .flow .circle-orange {
  width: 100px;
  height: 100px;
  background-color: #fc972a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.2;
  color: #fff;
  position: absolute;
  top: -70px;
  left: 0;
  text-align: center;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  #flow .flow .circle-orange {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px), print {
  #flow .flow .circle-orange {
    width: 140px;
    height: 140px;
    top: 0;
    left: 20px;
  }
}
@media screen and (min-width: 992px) {
  #flow .flow .circle-orange {
    top: -105px;
    left: -37px;
  }
}
#flow .flow .circle-orange strong {
  font-size: 1.8em;
  padding-left: 8px;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  #flow .flow-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 992px) {
  #flow .flow-list .flow-item:nth-of-type(2) {
    flex-basis: 25% !important;
    max-width: 280px !important;
  }
}
#flow .flow-list .flow-item:last-child:after {
  display: none !important;
}
#flow .flow-item {
  padding: 0 0 10px;
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px), print {
  #flow .flow-item {
    width: 50%;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 992px) {
  #flow .flow-item {
    width: auto;
    flex-basis: 34%;
    max-width: 380px;
    margin: 0;
  }
}
#flow .flow-item:after {
  content: "";
  display: block;
  width: 25px;
  height: 17.5px;
  background-image: url(../images/ico_arrow_blue_l.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, 0) rotate(90deg);
}
@media screen and (min-width: 768px), print {
  #flow .flow-item:after {
    width: 40px;
    height: 28px;
    bottom: -50px;
  }
}
@media screen and (min-width: 992px) {
  #flow .flow-item:after {
    top: 50%;
    right: -40px;
    left: auto;
    transform: translate(0, -50%) rotate(0);
  }
}
#flow .flow-item .img {
  text-align: center;
}
#flow .flow-item .img img {
  width: 100%;
  max-width: 380px;
}
@media screen and (min-width: 992px) {
  #flow .flow-item .img img {
    width: auto;
    max-width: initial;
    max-height: 260px;
  }
}
#flow .flow-item .badge {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  right: -30px;
  display: block;
  background-color: #1b8ddb;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5px;
  color: #fff;
  font-weight: 600;
}
@media screen and (min-width: 768px), print {
  #flow .flow-item .badge {
    width: 92px;
    height: 92px;
    font-size: 1.125rem;
    top: -20px;
    right: -50px;
    padding-right: 10px;
  }
}
@media screen and (min-width: 992px) {
  #flow .flow-item .badge {
    top: -20px;
    right: -20px;
  }
}
#flow .flow-item .badge:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 17px 5px 0;
  border-color: transparent #1b8ddb transparent transparent;
  transform: rotate(-35deg);
  position: absolute;
  bottom: 12px;
  left: -4px;
}
#flow .flow-item .label {
  width: 75%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #1b8ddb;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  line-height: 1.3;
  font-size: 0.9rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px), print {
  #flow .flow-item .label {
    height: 70px;
    border-radius: 10px;
    font-size: 1.125rem;
  }
}
#flow .information {
  margin-top: 35px;
  background-color: #d3e3f4;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px), print {
  #flow .information {
    margin-top: 55px;
    padding: 35px 20px 20px;
  }
}
#flow .information:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 20px 10px;
  border-color: transparent transparent #d3e3f4 transparent;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px), print {
  #flow .information:before {
    border-width: 0 16px 37px 16px;
    top: -37px;
  }
}
#flow .information h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (min-width: 768px), print {
  #flow .information h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  #flow .information h3 small {
    font-size: 0.6em;
  }
}
@media screen and (min-width: 768px), print {
  #flow .information .capture-list {
    display: flex;
    justify-content: center;
    gap: 70px;
  }
}
#flow .information .capture-list .capture-item:last-child:after {
  display: none !important;
}
#flow .information .capture-item {
  flex-basis: 42%;
  position: relative;
}
@media screen and (max-width: 767px) {
  #flow .information .capture-item {
    margin-bottom: 30px;
  }
}
#flow .information .capture-item:after {
  content: "";
  display: block;
  width: 25px;
  height: 17.5px;
  background-image: url(../images/ico_arrow_blue_l.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%, 0) rotate(90deg);
}
@media screen and (min-width: 768px), print {
  #flow .information .capture-item:after {
    width: 40px;
    height: 28px;
    left: auto;
    top: 50%;
    right: -55px;
    transform: translate(0, -50%);
  }
}
#flow .information .message {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
@media screen and (min-width: 768px), print {
  #flow .information .message {
    font-size: 22px;
  }
}
#flow .information .message:before {
  content: "";
  width: 20vw;
  height: 16vw;
  display: inline-block;
  background-image: url(../images/ico_mail_phone.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 992px) {
  #flow .information .message:before {
    width: 143px;
    height: 115px;
  }
}
@media screen and (min-width: 992px) {
  #flow .information .message {
    width: 80%;
    height: 115px;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  #flow .information .message span {
    flex-basis: calc(100% - 22vw);
  }
}