@charset "UTF-8";
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
@import url("board.css");
@import url("common.css");
@import url("page.css");
@import url("login.css");
@import url("join.css");
@import url("intergrated.css");
@import url("cms-contents.css");
@import url("dev-contents.css");
@import url("mypage.css");
@import url("main.css");
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: theme("borderColor.DEFAULT", "currentColor"); /* 2 */
}

::before,
::after {
  --tw-content: "";
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: theme("fontFamily.sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

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

/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}

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

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: theme("fontFamily.mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace); /* 1 */
  font-size: 1em; /* 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;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

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

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}

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

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

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

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

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

/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 1; /* 1 */
  color: theme("colors.gray.400", #9ca3af); /* 2 */
}
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: theme("colors.gray.400", #9ca3af); /* 2 */
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: theme("colors.gray.400", #9ca3af); /* 2 */
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: theme("colors.gray.400", #9ca3af); /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: theme("colors.gray.400", #9ca3af); /* 2 */
}

/*
Set the default cursor for buttons.
*/
button,
[role=button] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}

/*
Ensure the default browser behavior of the `hidden` attribute.
*/
[hidden] {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-smooth: auto;
  font-smooth: never;
  font-smooth: always;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
}

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

ul, ol, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table, th, td {
  border-collapse: collapse;
  border-spacing: 0;
}

hr, caption {
  display: none;
}

a:link, a:hover, a:active, a:focus, a:visited {
  text-decoration: none;
}

.props-init, .withdrawal .withdrawal__button-group a, .withdrawal .withdrawal__button-group button, .account-find .form .submit button, .account-find .tab .tab-button, .login .form .submit button, .author-certify .certify__form button, .author-certify .certify__form input[type=text], .author-certify .certify__form input[type=password] {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.author-certify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.author-certify .certify__image {
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .author-certify .certify__image {
    margin-bottom: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .author-certify .certify__image img {
    width: 21.3333333333vw;
  }
}
.author-certify .certify__title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .author-certify .certify__title {
    font-size: 3.4666666667vw;
  }
}
.author-certify .certify__explain {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .author-certify .certify__explain {
    font-size: 2.9333333333vw;
  }
}
.author-certify .certify__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
}
@media only screen and (max-width: 767px) {
  .author-certify .certify__form {
    width: 100%;
    margin-top: 6vw;
  }
}
.author-certify .certify__form input[type=text], .author-certify .certify__form input[type=password] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 300px;
  height: 42px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 18px;
  border: 1px solid #2875D9;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .author-certify .certify__form input[type=text], .author-certify .certify__form input[type=password] {
    width: 100%;
    height: 9.3333333333vw;
    border-width: 0.1333333333vw;
    padding: 0 3.2vw;
    font-size: 2.9333333333vw;
  }
}
.author-certify .certify__form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-top: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 100px;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2px 10px;
  background-color: #2875D9;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .author-certify .certify__form button {
    margin-top: 4.6666666667vw;
    height: 9.3333333333vw;
    border-width: 0.1333333333vw;
    padding: 0.6666666667vw 2.6666666667vw;
    font-size: 2.9333333333vw;
  }
}

.equipment--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .equipment--head {
    margin-bottom: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--head {
    margin-bottom: 1.8518518519vw;
  }
}
.equipment--head .all-checkbox {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .equipment--head .all-checkbox {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--head .all-checkbox {
    margin-left: 1.8518518519vw;
  }
}
.equipment--head .all-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 24px;
  font-weight: 600;
  color: #414141;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .equipment--head .all-checkbox label {
    font-size: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--head .all-checkbox label {
    font-size: 2.2222222222vw;
  }
}
.equipment--head .all-checkbox label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.equipment--head .all-checkbox label input[type=checkbox]:checked ~ .checkbox-icon:before {
  opacity: 1;
}
.equipment--head .all-checkbox label .checkbox-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  margin-right: 10px;
  background-color: #fff;
  text-indent: -9999px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .equipment--head .all-checkbox label .checkbox-icon {
    width: 5.0666666667vw;
    height: 5.0666666667vw;
    border-radius: 1.3333333333vw;
    border-width: 0.1333333333vw;
    margin-right: 1.3333333333vw;
  }
}
.equipment--head .all-checkbox label .checkbox-icon:before {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url("/resources/img/client/contents/equipment/icon-checked.svg");
  background-position: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 0;
  opacity: 0;
}
.equipment--head .all-checkbox label .checkbox-text {
  display: block;
  overflow: hidden;
}
.equipment--head .button-group button {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  width: 208px;
  height: 54px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #666666;
  font-size: 20px;
  font-weight: 500;
  color: #666666;
}
@media only screen and (max-width: 767px) {
  .equipment--head .button-group button {
    width: auto;
    height: 9.3333333333vw;
    padding: 0 2.6666666667vw;
    border-width: 0.1333333333vw;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--head .button-group button {
    width: 19.2592592593vw;
    height: 5vw;
    font-size: 1.8518518519vw;
  }
}
.equipment--head .button-group button.style--gray {
  border-color: #666666;
  background-color: #666666;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .equipment--head .button-group button.style--gray {
    -webkit-box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.16);
            box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.16);
  }
}
.equipment--head .button-group button.style--primary {
  border-color: #2875D9;
  background-color: #2875D9;
  color: #fff;
}
.equipment--head .reservation-count {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .equipment--head .reservation-count {
    font-size: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--head .reservation-count {
    font-size: 1.4814814815vw;
  }
}
.equipment--head .reservation-count span {
  font-weight: 500;
}
.equipment--head .reservation-count em {
  font-weight: 900;
  font-style: normal;
  color: #FF5E5E;
}

.equipment--apply-period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  padding: 40px 50px;
  background-color: #F7FAFA;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-period {
    padding: 3.2vw;
    margin-bottom: 4.6666666667vw;
    border-width: 0.1333333333vw;
    border-radius: 1.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-period {
    margin-bottom: 2.3148148148vw;
    padding: 1.6666666667vw;
  }
}
.equipment--apply-period .period-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-period .period-date {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-period .period-date {
    font-size: 1.6666666667vw;
  }
}
.equipment--apply-period .period-date em {
  margin-left: 30px;
  font-size: 32px;
  font-weight: 600;
  color: #28B3C0;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-period .period-date em {
    margin-left: 0;
    font-size: 4.8vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-period .period-date em {
    margin-left: 2.7777777778vw;
    font-size: 2.962962963vw;
  }
}
.equipment--apply-period .period-date ~ .period-date {
  margin-left: 75px;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-period .period-date ~ .period-date {
    margin-left: 12vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-period .period-date ~ .period-date {
    margin-left: 6.9444444444vw;
  }
}

.equipment--machine .machine__list ~ .boards--pagination {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__list ~ .boards--pagination {
    margin-top: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__list ~ .boards--pagination {
    margin-top: 2.7777777778vw;
  }
}
.equipment--machine .machine__item {
  position: relative;
}
.equipment--machine .machine__item:hover:before {
  border-color: #2875D9;
}
.equipment--machine .machine__item:hover .machine__head {
  color: #000;
}
.equipment--machine .machine__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid transparent;
  border-bottom-color: #EAEAEA;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__item:before {
    border-width: 0.2666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__item:before {
    border-width: 0.1851851852vw;
  }
}
.equipment--machine .machine__item:first-child:before {
  border-top-color: #eaeaea;
}
.equipment--machine .machine__item:first-child:hover:before {
  border-color: #2875D9;
}
.equipment--machine .machine__item.is--open .machine__head {
  background: rgb(40, 179, 192);
  background: -webkit-gradient(linear, left top, right top, from(rgb(40, 179, 192)), to(rgb(0, 158, 183)));
  background: linear-gradient(90deg, rgb(40, 179, 192) 0%, rgb(0, 158, 183) 100%);
  color: #fff;
}
.equipment--machine .machine__item.is--open .machine__delete {
  border-color: #fff;
}
.equipment--machine .machine__item.is--open .machine__delete:before {
  content: url("/resources/img/client/contents/equipment/icon-delete--on.svg");
}
.equipment--machine .machine__item.is--open .machine__toggle:before {
  content: url("/resources/img/client/contents/equipment/icon-minus.svg");
}
.equipment--machine .machine__item.is--open .machine__body {
  display: block;
}
.equipment--machine .machine__item.is--open .machine__reservation {
  border-color: #fff;
}
.equipment--machine .machine__item.is--open .machine__reservation:before {
  content: url("/resources/img/client/contents/equipment/icon-reservation--on.svg");
}
.equipment--machine .machine__item.is--open .machine__add-cart {
  border-color: #fff;
}
.equipment--machine .machine__item.is--open .machine__add-cart:before {
  content: url("/resources/img/client/contents/equipment/icon-add-cart--on.svg");
}
.equipment--machine .machine__item.is--open .machine__org .org__logo img {
  display: none;
}
.equipment--machine .machine__item.is--open .machine__org .org__logo img.cfy--open {
  display: inline;
}
.equipment--machine .machine__item.is--open .machine__title {
  color: #fff;
}
.equipment--machine .machine__item.is--open .machine__title .machine__category {
  color: #fff;
}
.equipment--machine .machine__item.is--open .machine__date {
  color: #fff;
}
.equipment--machine .machine__wrap {
  position: relative;
  z-index: 1;
}
.equipment--machine .machine__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 115px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 14px 28px;
  font-size: 20px;
  color: #666666;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__head {
    height: auto;
    min-height: 18.6666666667vw;
    padding: 3.7333333333vw 3.7333333333vw;
    font-size: 3.2vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__head {
    height: auto;
    min-height: 12.037037037vw;
    padding: 1.4814814815vw 2.7777777778vw;
    font-size: 2.037037037vw;
  }
}
.equipment--machine .machine__head .head-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__head .head-start {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.equipment--machine .machine__head .head-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 14px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__head .head-middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
.equipment--machine .machine__head .head-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__head .head-end {
    margin-left: auto;
    position: absolute;
    top: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}
.equipment--machine .machine__head .head-end > * ~ * {
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__head .head-end > * ~ * {
    margin-left: 1.3333333333vw;
  }
}
.equipment--machine .machine__body {
  display: none;
  padding: 50px 48px;
  background-color: #F7FAFA;
  border: 1px solid #EAEAEA;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__body {
    border-width: 0.1333333333vw;
    padding: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__body {
    border-width: 0.0925925926vw;
    padding: 4.6296296296vw;
  }
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__category ~ .machine__name {
    display: block;
  }
}
.equipment--machine .machine__category ~ .machine__name:before {
  content: "/";
  margin: 0 8px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__category ~ .machine__name:before {
    content: none;
  }
}
.equipment--machine .machine__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.equipment--machine .machine__title .machine__category {
  font-weight: 600;
  color: #000;
}
.equipment--machine .machine__title .machine__name:before {
  content: none;
}
.equipment--machine .machine__date {
  margin-right: 20px;
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__date {
    margin-right: 2.6666666667vw;
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__date {
    font-size: 2.2222222222vw;
  }
}
.equipment--machine .machine__org {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__org {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.equipment--machine .machine__org .org__logo {
  padding: 0 10px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__org .org__logo {
    padding: 0;
    margin-bottom: 1.3333333333vw;
  }
}
.equipment--machine .machine__org .org__logo img.cfy--open {
  display: none;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__org .org__logo img {
    width: 16vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__org .org__logo img {
    width: 11.1111111111vw;
  }
}
.equipment--machine .machine__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__toggle {
    width: 8vw;
    height: 8vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__toggle {
    width: 5.0925925926vw;
    height: 5.0925925926vw;
  }
}
.equipment--machine .machine__toggle:before {
  content: url("/resources/img/client/contents/equipment/icon-plus.svg");
  width: 25px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__toggle:before {
    width: 3.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__toggle:before {
    width: 2.3148148148vw;
  }
}
.equipment--machine .machine__checkbox {
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__checkbox {
    margin-right: 0;
    margin-bottom: 1.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__checkbox {
    margin-right: 0.9259259259vw;
  }
}
.equipment--machine .machine__checkbox label {
  display: block;
  position: relative;
  cursor: pointer;
}
.equipment--machine .machine__checkbox label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.equipment--machine .machine__checkbox label input[type=checkbox]:checked ~ .checkbox-icon:before {
  opacity: 1;
}
.equipment--machine .machine__checkbox label .checkbox-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  background-color: #fff;
  text-indent: -9999px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__checkbox label .checkbox-icon {
    width: 5.0666666667vw;
    height: 5.0666666667vw;
    border-radius: 1.3333333333vw;
    border-width: 0.1333333333vw;
  }
}
.equipment--machine .machine__checkbox label .checkbox-icon:before {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url("/resources/img/client/contents/equipment/icon-checked.svg");
  background-position: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 0;
  opacity: 0;
}
.equipment--machine .machine__delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 108px;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__delete {
    width: auto;
    height: 8vw;
    padding: 0 2.4vw;
    font-size: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__delete {
    width: 11.1111111111vw;
    height: 5.0925925926vw;
    font-size: 1.8518518519vw;
  }
}
.equipment--machine .machine__delete:before {
  margin-right: 10px;
  font-size: 0;
  content: url("/resources/img/client/contents/equipment/icon-delete.svg");
  width: 25px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__delete:before {
    width: 3.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__delete:before {
    width: 2.3148148148vw;
  }
}
.equipment--machine .machine__reservation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 108px;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__reservation {
    width: auto;
    height: 8vw;
    padding: 0 2.4vw;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__reservation {
    width: 11.1111111111vw;
    height: 5.0925925926vw;
    font-size: 1.8518518519vw;
  }
}
.equipment--machine .machine__reservation:before {
  margin-right: 10px;
  font-size: 0;
  content: url("/resources/img/client/contents/equipment/icon-reservation.svg");
  width: 24px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__reservation:before {
    width: 3.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__reservation:before {
    width: 2.3148148148vw;
  }
}
.equipment--machine .machine__add-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 108px;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__add-cart {
    width: auto;
    height: 8vw;
    padding: 0 2.4vw;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__add-cart {
    width: 11.1111111111vw;
    height: 5.0925925926vw;
    font-size: 1.8518518519vw;
  }
}
.equipment--machine .machine__add-cart:before {
  margin-right: 10px;
  font-size: 0;
  content: url("/resources/img/client/contents/equipment/icon-add-cart.svg");
  width: 24px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__add-cart:before {
    width: 3.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__add-cart:before {
    width: 2.3148148148vw;
  }
}
.equipment--machine .machine__information .basic-source {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .basic-source {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 5.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__information .basic-source {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2.7777777778vw;
  }
}
.equipment--machine .machine__information .basic-source .basic-source__name .name__kor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .basic-source .basic-source__name .name__kor {
    font-size: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__information .basic-source .basic-source__name .name__kor {
    font-size: 2.2222222222vw;
  }
}
.equipment--machine .machine__information .basic-source .basic-source__name .name__kor:before {
  content: url("/resources/img/client/contents/equipment/title-icon.svg");
  width: 18px;
  margin-right: 10px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .basic-source .basic-source__name .name__kor:before {
    width: 2.4vw;
    margin-right: 1.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__information .basic-source .basic-source__name .name__kor:before {
    width: 1.8518518519vw;
    margin-right: 1.2962962963vw;
  }
}
.equipment--machine .machine__information .basic-source .basic-source__name .name__eng {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .basic-source .basic-source__name .name__eng {
    font-size: 2.4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__information .basic-source .basic-source__name .name__eng {
    font-size: 1.6666666667vw;
  }
}
.equipment--machine .machine__information .picture .picture__banner .banner-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 400px;
  height: 280px;
  background-color: #B7B7B7;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .picture .picture__banner .banner-image {
    width: 100%;
    height: 42.6666666667vw;
    border-radius: 1.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__information .picture .picture__banner .banner-image {
    width: 100%;
    height: 25.9259259259vw;
    border-radius: 0.9259259259vw;
  }
}
.equipment--machine .machine__information .picture .picture__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}
.equipment--machine .machine__information .picture .picture__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .picture .picture__count {
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__information .picture .picture__count {
    font-size: 1.6666666667vw;
  }
}
.equipment--machine .machine__information .picture .picture__count .count__now {
  color: #2875D9;
}
.equipment--machine .machine__information .picture .picture__count .count__total::before {
  content: "/";
  margin: 0 5px;
}
.equipment--machine .machine__information .picture .picture__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.equipment--machine .machine__information .picture .picture__arrows button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 3px;
  text-indent: -9999px;
  overflow: hidden;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .picture .picture__arrows button {
    width: 6.4vw;
    height: 6.4vw;
    border-radius: 0.8vw;
    border-width: 0.1333333333vw;
  }
}
.equipment--machine .machine__information .picture .picture__arrows button ~ button {
  margin-left: 10px;
}
.equipment--machine .machine__information .picture .picture__arrows button.cfy--prev {
  background-image: url("/resources/img/client/contents/equipment/banner-prev.svg");
}
.equipment--machine .machine__information .picture .picture__arrows button.cfy--next {
  background-image: url("/resources/img/client/contents/equipment/banner-next.svg");
}
.equipment--machine .machine__information .picture .picture__arrows button.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.equipment--machine .machine__information .details .details__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px 0;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .details .details__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5.3333333333vw 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__information .details .details__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.8518518519vw 0;
  }
}
.equipment--machine .machine__information .details .details__box ~ .details__box {
  border-top: 1px solid #E9E9E9;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .details .details__box ~ .details__box {
    border-width: 0.1333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__information .details .details__box ~ .details__box {
    border-width: 0.0925925926vw;
  }
}
.equipment--machine .machine__information .details .details__box .box__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 135px;
          flex: 0 0 135px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #21B0BF;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .details .details__box .box__title {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-bottom: 1.3333333333vw;
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__information .details .details__box .box__title {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-bottom: 0.9259259259vw;
    font-size: 1.8518518519vw;
  }
}
.equipment--machine .machine__information .details .details__box .box__title:before {
  content: "·";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #21B0BF;
  text-indent: -9999px;
  text-align: left;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .details .details__box .box__title:before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__information .details .details__box .box__title:before {
    width: 0.6481481481vw;
    height: 0.6481481481vw;
  }
}
.equipment--machine .machine__information .details .details__box .box__stnc {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .details .details__box .box__stnc {
    font-size: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__information .details .details__box .box__stnc {
    font-size: 1.6666666667vw;
  }
}
.equipment--machine .machine__information .details .details__box .box__stnc i {
  float: left;
  font-style: normal;
  margin-right: 5px;
}
.equipment--machine .machine__information .details .details__box .box__stnc span {
  display: block;
  overflow: hidden;
}
.equipment--machine .machine__information .basic-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .basic-infos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.equipment--machine .machine__information .basic-infos .picture {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
  width: 400px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .basic-infos .picture {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__information .basic-infos .picture {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 37.037037037vw;
            flex: 0 0 37.037037037vw;
    width: 39vw;
  }
}
.equipment--machine .machine__information .basic-infos .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: calc(100% - 400px);
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .basic-infos .details {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    padding-left: 0;
    margin-top: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine__information .basic-infos .details {
    padding-left: 2.7777777778vw;
    width: calc(100% - 39vw);
  }
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine__information .basic-infos .details .details__box:last-child {
    border-bottom: 0.1333333333vw solid #E9E9E9;
  }
}
.equipment--machine .machine--apply-form table {
  width: 100%;
}
.equipment--machine .machine--apply-form table th, .equipment--machine .machine--apply-form table td {
  padding: 15px 0;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form table th, .equipment--machine .machine--apply-form table td {
    padding: 2vw 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form table th, .equipment--machine .machine--apply-form table td {
    padding: 1.3888888889vw 0;
  }
}
.equipment--machine .machine--apply-form table th {
  padding: 30px 0 15px 20px;
  vertical-align: top;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form table th {
    padding: 0;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form table th {
    padding: 2.7777777778vw 0 1.3888888889vw 1.8518518519vw;
    font-size: 1.8518518519vw;
  }
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form table, .equipment--machine .machine--apply-form thead, .equipment--machine .machine--apply-form tbody, .equipment--machine .machine--apply-form tr, .equipment--machine .machine--apply-form th, .equipment--machine .machine--apply-form td {
    display: block;
    width: 100%;
  }
}
.equipment--machine .machine--apply-form .form__calendar {
  display: block;
  width: 100%;
  height: 60px;
  max-width: 320px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-image: url("/resources/img/client/form/calendar.svg");
  background-size: 22px auto;
  background-position: top 50% right 20px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__calendar {
    max-width: 100%;
    height: 10vw;
    border-width: 0.1333333333vw;
    border-radius: 1.3333333333vw;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__calendar {
    max-width: 37.037037037vw;
    height: 5.5555555556vw;
    border-radius: 0.9259259259vw;
    font-size: 1.8518518519vw;
  }
}
.equipment--machine .machine--apply-form .form__calendar input {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 24px;
  border-radius: 5px;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__calendar input {
    height: 10vw;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__calendar input {
    padding: 0 1.6666666667vw;
    font-size: 1.8518518519vw;
  }
}
.equipment--machine .machine--apply-form .form__calendar input::-webkit-input-placeholder {
  color: #bbb;
}
.equipment--machine .machine--apply-form .form__calendar input::-moz-placeholder {
  color: #bbb;
}
.equipment--machine .machine--apply-form .form__calendar input:-ms-input-placeholder {
  color: #bbb;
}
.equipment--machine .machine--apply-form .form__calendar input::-ms-input-placeholder {
  color: #bbb;
}
.equipment--machine .machine--apply-form .form__calendar input::placeholder {
  color: #bbb;
}
.equipment--machine .machine--apply-form .form__select {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 24px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  background-color: #fff;
  background-repeat: no-repeat;
  background-image: url("/resources/img/client/board/select-arrow.svg");
  background-size: 22px 10px;
  background-position: top 50% right 18px;
}
.equipment--machine .machine--apply-form .form__select::-ms-expand {
  display: none;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__select {
    width: 100%;
    height: 10vw;
    padding: 0 4vw;
    background-size: 3.7333333333vw 2vw;
    border-width: 0.1333333333vw;
    border-radius: 1.3333333333vw;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__select {
    height: 5.5555555556vw;
    padding: 0 1.6666666667vw;
    border-radius: 0.462962963vw;
    font-size: 1.8518518519vw;
  }
}
.equipment--machine .machine--apply-form .form__select:not(:focus):invalid {
  color: #aaa;
}
.equipment--machine .machine--apply-form .form__select:valid::-ms-value {
  color: #101010;
}
.equipment--machine .machine--apply-form .form__select:disabled {
  background-color: #eff3fa;
  color: #7e96c9;
}
.equipment--machine .machine--apply-form .form__input {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 24px;
  background-color: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__input {
    height: 10vw;
    padding: 0 4vw;
    border-width: 0.1333333333vw;
    border-radius: 1.3333333333vw;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__input {
    height: 5.5555555556vw;
    padding: 0 1.6666666667vw;
    border-radius: 0.462962963vw;
    font-size: 1.8518518519vw;
  }
}
.equipment--machine .machine--apply-form .form__input::-webkit-input-placeholder {
  color: #aaa;
}
.equipment--machine .machine--apply-form .form__input::-moz-placeholder {
  color: #aaa;
}
.equipment--machine .machine--apply-form .form__input:-ms-input-placeholder {
  color: #aaa;
}
.equipment--machine .machine--apply-form .form__input::-ms-input-placeholder {
  color: #aaa;
}
.equipment--machine .machine--apply-form .form__input::placeholder {
  color: #aaa;
}
.equipment--machine .machine--apply-form .form__editor {
  min-height: 400px;
  background-color: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 24px;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__editor {
    min-height: 53.3333333333vw;
    padding: 0 4vw;
    border-width: 0.1333333333vw;
    border-radius: 1.3333333333vw;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__editor {
    min-height: 37.037037037vw;
    padding: 0 1.6666666667vw;
    border-radius: 0.462962963vw;
    font-size: 1.8518518519vw;
  }
}
.equipment--machine .machine--apply-form .form__attach-file {
  padding: 45px;
  background-color: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__attach-file {
    padding: 6vw;
    border-width: 0.1333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__attach-file {
    padding: 4.1666666667Vw;
  }
}
.equipment--machine .machine--apply-form .form__attach-file .attached-file {
  width: 100%;
  margin-bottom: 30px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__attach-file .attached-file {
    margin-bottom: 5.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__attach-file .attached-file {
    margin-bottom: 2.7777777778vw;
  }
}
.equipment--machine .machine--apply-form .form__attach-file .attached-file .upload-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.equipment--machine .machine--apply-form .form__attach-file .attached-file .upload-file ~ .upload-file {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__attach-file .attached-file .upload-file ~ .upload-file {
    margin-top: 1.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__attach-file .attached-file .upload-file ~ .upload-file {
    margin-top: 0.9259259259vw;
  }
}
.equipment--machine .machine--apply-form .form__attach-file .attached-file .upload-file .file__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #666;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__attach-file .attached-file .upload-file .file__name {
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__attach-file .attached-file .upload-file .file__name {
    font-size: 1.8518518519vw;
  }
}
.equipment--machine .machine--apply-form .form__attach-file .attached-file .upload-file .file__name:before {
  font-size: 0;
  margin-right: 10px;
  width: 25px;
  content: url("/resources/img/client/contents/equipment/icon-attached.svg");
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__attach-file .attached-file .upload-file .file__name:before {
    margin-right: 1.3333333333vw;
    width: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__attach-file .attached-file .upload-file .file__name:before {
    margin-right: 0.9259259259vw;
  }
}
.equipment--machine .machine--apply-form .form__attach-file .attached-file .upload-file .file__name a:hover {
  text-decoration: underline;
}
.equipment--machine .machine--apply-form .form__attach-file .attached-file .upload-file .file__remove {
  font-size: 0;
}
.equipment--machine .machine--apply-form .form__attach-file .drop-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 250px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 18px;
  border: 2px dashed #ccc;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__attach-file .drop-area {
    min-height: 40vw;
    padding: 2.4vw;
    border-width: 0.2666666667vw;
    border-radius: 1.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__attach-file .drop-area {
    min-height: 23.1481481481vw;
    padding: 2.7777777778vw;
    height: auto;
  }
}
.equipment--machine .machine--apply-form .form__attach-file .drop-area img {
  margin-top: -30px;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__attach-file .drop-area img {
    width: 16.9333333333vw;
    margin-top: -4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__attach-file .drop-area img {
    width: 11.7592592593vw;
    margin-top: -2.7777777778vw;
  }
}
.equipment--machine .machine--apply-form .form__attach-file .drop-area .explain {
  margin-top: -30px;
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 500;
  color: #666666;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__attach-file .drop-area .explain {
    margin-top: -4vw;
    margin-bottom: 3.3333333333vw;
    font-size: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__attach-file .drop-area .explain {
    margin-top: -2.7777777778vw;
    margin-bottom: 2.3148148148vw;
    font-size: 1.8518518519vw;
  }
}
.equipment--machine .machine--apply-form .form__attach-file .drop-area .upload-button {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  width: 135px;
  height: 40px;
  background-color: #28B3C0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__attach-file .drop-area .upload-button {
    width: auto;
    height: 8vw;
    padding: 0 3.2vw;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__attach-file .drop-area .upload-button {
    width: 12.5vw;
    height: 4.1666666667vw;
    font-size: 1.6666666667vw;
  }
}
.equipment--machine .machine--apply-form .form__period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.equipment--machine .machine--apply-form .form__period .period__wave {
  width: 30px;
  text-align: center;
}
.equipment--machine .machine--apply-form .form__period .form__calendar {
  width: calc(50% - 15px);
}
.equipment--machine .machine--apply-form .form__report-exist .report-exist__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.equipment--machine .machine--apply-form .form__report-exist .report-exist__radios .radios__option {
  position: relative;
  display: block;
}
.equipment--machine .machine--apply-form .form__report-exist .report-exist__radios .radios__option ~ .radios__option {
  margin-left: 10px;
}
.equipment--machine .machine--apply-form .form__report-exist .report-exist__radios .radios__option input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.equipment--machine .machine--apply-form .form__report-exist .report-exist__radios .radios__option input[type=radio]:checked ~ .option__text {
  color: #28B3C0;
  font-weight: 600;
  border-color: #28B3C0;
  border-width: 2px;
}
.equipment--machine .machine--apply-form .form__report-exist .report-exist__radios .radios__option input[type=radio]:checked ~ .option__text:before {
  content: url("/resources/img/client/contents/equipment/report-radio--checked.svg");
}
.equipment--machine .machine--apply-form .form__report-exist .report-exist__radios .radios__option .option__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 180px;
  height: 68px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__report-exist .report-exist__radios .radios__option .option__text {
    width: auto;
    min-width: 24vw;
    height: 9.3333333333vw;
    padding: 0 2.4vw;
    border-width: 0.1333333333vw;
    font-size: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--machine .machine--apply-form .form__report-exist .report-exist__radios .radios__option .option__text {
    width: 16.6666666667vw;
    height: 6.2962962963vw;
    font-size: 1.6666666667vw;
  }
}
.equipment--machine .machine--apply-form .form__report-exist .report-exist__radios .radios__option .option__text:before {
  content: url("/resources/img/client/contents/equipment/report-radio.svg");
  margin-right: 10px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .equipment--machine .machine--apply-form .form__report-exist .report-exist__radios .radios__option .option__text:before {
    margin-right: 1.3333333333vw;
  }
}

.equipment--top-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 20px;
}
.equipment--top-buttons button, .equipment--top-buttons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 100px;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 14px;
  border: 1px solid #28B3C0;
  font-size: 15px;
  font-weight: 500;
  color: #28B3C0;
}
.equipment--top-buttons button ~ button, .equipment--top-buttons button ~ a, .equipment--top-buttons a ~ button, .equipment--top-buttons a ~ a {
  margin-left: 10px;
}

.equipment--bottom-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}
.equipment--bottom-buttons button {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  width: 208px;
  height: 54px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #666666;
  font-size: 20px;
  font-weight: 500;
  color: #666666;
}
@media only screen and (max-width: 767px) {
  .equipment--bottom-buttons button {
    width: auto;
    height: 9.3333333333vw;
    padding: 0 2.6666666667vw;
    border-width: 0.1333333333vw;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--bottom-buttons button {
    width: 19.2592592593vw;
    height: 5vw;
    font-size: 1.8518518519vw;
  }
}
.equipment--bottom-buttons button.style--gray {
  border-color: #666666;
  background-color: #666666;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .equipment--bottom-buttons button.style--gray {
    -webkit-box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.16);
            box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.16);
  }
}
.equipment--bottom-buttons button.style--primary {
  border-color: #2875D9;
  background-color: #2875D9;
  color: #fff;
}
.equipment--bottom-buttons button ~ button, .equipment--bottom-buttons button ~ a {
  margin-left: 10px;
}

.equipment--apply-complete {
  background-color: #E4FDFF;
}
.equipment--apply-complete .apply-result {
  padding: 60px;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-complete .apply-result {
    padding: 5.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-complete .apply-result {
    padding: 5.5555555556vw;
  }
}
.equipment--apply-complete .apply-result .msg {
  padding-top: 40px;
  text-align: center;
  font-size: 0;
}
.equipment--apply-complete .apply-result .msg strong {
  display: block;
  margin-bottom: 55px;
  font-size: 42px;
  font-weight: 600;
  color: #000;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-complete .apply-result .msg strong {
    margin-bottom: 7.3333333333vw;
    font-size: 5.0666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-complete .apply-result .msg strong {
    margin-bottom: 5.0925925926vw;
    font-size: 3.8888888889vw;
  }
}
@media only screen and (max-width: 767px) {
  .equipment--apply-complete .apply-result .msg img {
    width: 66.2666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-complete .apply-result .msg img {
    width: 46.0185185185vw;
  }
}
.equipment--apply-complete .apply-result .process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 352px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 75px 28px;
  border: 1px solid #BCBCBC;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-complete .apply-result .process {
    height: auto;
    padding: 10vw 3.7333333333vw;
    border-width: 0.1333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-complete .apply-result .process {
    height: 32.5925925926vw;
    padding: 6.9444444444vw 2.5925925926vw;
  }
}
.equipment--apply-complete .apply-result .process .process__image img {
  max-width: 100%;
}
.equipment--apply-complete .apply-result .process .process__image img.cfy--pc {
  display: inline;
}
.equipment--apply-complete .apply-result .process .process__block {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 105px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .equipment--apply-complete .apply-result .process .process__block {
    font-size: 1.875vw;
  }
}
.equipment--apply-complete .apply-result .process .process__guide {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  text-align: center;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-complete .apply-result .process .process__guide {
    font-size: 2.6666666667vw;
  }
}
.equipment--apply-complete .apply-result .process .process__guide em {
  font-style: normal;
  color: #000;
  font-weight: 600;
}
.equipment--apply-complete .apply-result .process .process__guide p ~ p {
  margin-top: 10px;
}
.equipment--apply-complete .apply-result .ouside-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 315px;
  height: 82px;
  margin: 60px auto 0;
  background-color: #0C809C;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-complete .apply-result .ouside-link {
    width: 44vw;
    height: 12vw;
    margin: 8vw auto 0;
    font-size: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-complete .apply-result .ouside-link {
    width: 29.1666666667vw;
    height: 8.3333333333vw;
    margin: 5.5555555556vw auto 0;
    font-size: 2.4074074074vw;
  }
}
.equipment--apply-complete .apply-result .ouside-link em {
  font-style: normal;
  font-weight: 700;
  margin-right: 10px;
}
.equipment--apply-complete .apply-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 18px;
  border-top: 1px solid #CCCCCC;
  font-size: 16px;
  font-weight: 500;
  color: #666666;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-complete .apply-contact {
    min-height: 12vw;
    padding: 2.9333333333vw;
    border-width: 0.1333333333vw;
    font-size: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-complete .apply-contact {
    min-height: 7.4074074074vw;
    padding: 1.8518518519vw;
    font-size: 1.6666666667vw;
  }
}

.equipment--schedule .schedule-image {
  margin-top: 130px;
  margin-bottom: 150px;
  font-size: 0;
}
.equipment--schedule .schedule-detail {
  border-top: 2px solid #000000;
}
@media only screen and (max-width: 767px) {
  .equipment--schedule .schedule-detail {
    border-width: 0.2666666667vw;
  }
}
.equipment--schedule .schedule-period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
  padding: 0 38px;
  font-size: 24px;
  font-weight: 600;
  color: #101010;
}
@media only screen and (max-width: 767px) {
  .equipment--schedule .schedule-period {
    height: 14.6666666667vw;
    padding: 0 5.0666666667vw;
    font-size: 4.5333333333Vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--schedule .schedule-period {
    height: 8.3333333333vw;
    padding: 0 3.5185185185vw;
    font-size: 2.2222222222vw;
  }
}
.equipment--schedule .schedule-list {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .equipment--schedule .schedule-list {
    border-width: 0.1333333333vw;
  }
}
.equipment--schedule .schedule-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 38px;
}
@media only screen and (max-width: 767px) {
  .equipment--schedule .schedule-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4vw 5.0666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--schedule .schedule-item {
    padding: 2.7777777778vw 3.5185185185vw;
  }
}
.equipment--schedule .schedule-time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
}
@media only screen and (max-width: 767px) {
  .equipment--schedule .schedule-time {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-bottom: 2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--schedule .schedule-time {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22.2222222222vw;
            flex: 0 0 22.2222222222vw;
  }
}
.equipment--schedule .schedule-time .time-range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #646464;
}
@media only screen and (max-width: 767px) {
  .equipment--schedule .schedule-time .time-range {
    font-size: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--schedule .schedule-time .time-range {
    font-size: 1.8518518519vw;
  }
}
.equipment--schedule .schedule-time .time-range:before {
  content: url("/resources/img/client/contents/equipment/icon-time.svg");
  font-size: 0;
  margin-right: 8px;
}
.equipment--schedule .schedule-infos {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media only screen and (max-width: 767px) {
  .equipment--schedule .schedule-infos {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.equipment--schedule .schedule-infos .infos__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.equipment--schedule .schedule-infos .infos__body {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .equipment--schedule .schedule-infos .infos__body {
    margin-top: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--schedule .schedule-infos .infos__body {
    margin-top: 2.7777777778vw;
  }
}
.equipment--schedule .schedule-infos .infos__state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  background-color: #ddd;
  min-width: 95px;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 10px;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .equipment--schedule .schedule-infos .infos__state {
    min-width: 15.3333333333vw;
    height: 6.4vw;
    margin-right: 2.6666666667vw;
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--schedule .schedule-infos .infos__state {
    min-width: 8.7962962963vw;
    height: 2.7777777778vw;
    margin-right: 0.9259259259vw;
    font-size: 1.6666666667vw;
  }
}
.equipment--schedule .schedule-infos .infos__state.style--light-green {
  background-color: #73CFAD;
}
.equipment--schedule .schedule-infos .infos__state.style--turquoise {
  background-color: #2875D9;
}
.equipment--schedule .schedule-infos .infos__equ-name {
  font-size: 20px;
  font-weight: 600;
  color: #101010;
}
@media only screen and (max-width: 767px) {
  .equipment--schedule .schedule-infos .infos__equ-name {
    font-size: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--schedule .schedule-infos .infos__equ-name {
    font-size: 1.8518518519vw;
  }
}
.equipment--schedule .schedule-infos .infos__table table {
  width: 100%;
}
.equipment--schedule .schedule-infos .infos__table table th, .equipment--schedule .schedule-infos .infos__table table td {
  height: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 28px;
  font-size: 18px;
  font-weight: 500;
  color: #646464;
  border-bottom: 1px solid #E2E2E2;
  border-left: 1px solid #E2E2E2;
}
@media only screen and (max-width: 767px) {
  .equipment--schedule .schedule-infos .infos__table table th, .equipment--schedule .schedule-infos .infos__table table td {
    height: 8vw;
    padding: 1.3333333333vw 3.7333333333vw;
    font-size: 3.4666666667vw;
    border-width: 0.1333333333Vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--schedule .schedule-infos .infos__table table th, .equipment--schedule .schedule-infos .infos__table table td {
    height: 4.1666666667vw;
    padding: 0.9259259259vw 2.5925925926vw;
    font-size: 1.6666666667vw;
  }
}
.equipment--schedule .schedule-infos .infos__table table th:last-child, .equipment--schedule .schedule-infos .infos__table table td:last-child {
  border-right: 1px solid #E2E2E2;
}
.equipment--schedule .schedule-infos .infos__table table tr:first-child th, .equipment--schedule .schedule-infos .infos__table table tr:first-child td {
  border-top: 1px solid #E2E2E2;
}
.equipment--schedule .schedule-infos .infos__table table th {
  background-color: #EFF3F8;
}
.equipment--schedule .schedule-infos .infos__table table td {
  background-color: #F8F9FC;
}

.equipment--state .state__list {
  border-top: 2px solid #EAEAEA;
}
.equipment--state .state__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-height: 215px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 38px 28px;
  border-bottom: 2px solid #EAEAEA;
}
.equipment--state .state__item.is--on, .equipment--state .state__item:hover {
  position: relative;
}
.equipment--state .state__item.is--on:before, .equipment--state .state__item:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #2875D9;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__item {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
    padding: 5.0666666667vw 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__item {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
    padding: 3.5185185185vw 2.5925925926vw;
  }
}
.equipment--state .state__item .item__info,
.equipment--state .state__item .item__org {
  position: relative;
  z-index: 1;
}
.equipment--state .state__item .item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__item .item__info {
    width: 100%;
  }
}
.equipment--state .state__item .item__info .info__title .title__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__item .item__info .info__title .title__name {
    width: 100%;
  }
}
.equipment--state .state__item .item__info .info__title .title__name .name__state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 62px;
  height: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 8px;
  border: 1px solid #CCCCCC;
  margin-right: 15px;
  font-size: 13px;
  font-weight: 500;
  color: #CCCCCC;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__item .item__info .info__title .title__name .name__state {
    min-width: 8.2666666667vw;
    height: 4.2666666667vw;
    font-size: 2.6666666667vw;
    margin-right: 2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__item .item__info .info__title .title__name .name__state {
    min-width: 5.7407407407vw;
    height: 2.962962963vw;
    font-size: 1.4814814815vw;
    margin-right: 1.3888888889vw;
  }
}
.equipment--state .state__item .item__info .info__title .title__name .name__state.style--ing {
  border-color: #2875D9;
  color: #2875D9;
}
.equipment--state .state__item .item__info .info__title .title__name strong {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__item .item__info .info__title .title__name strong {
    font-size: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__item .item__info .info__title .title__name strong {
    font-size: 2.2222222222vw;
  }
}
.equipment--state .state__item .item__info .info__title .title__detail {
  width: 100%;
  font-size: 17px;
  color: #000000;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__item .item__info .info__title .title__detail {
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__item .item__info .info__title .title__detail {
    font-size: 1.8518518519vw;
  }
}
.equipment--state .state__item .item__info .info__title .title__detail span ~ span:before {
  content: "|";
  margin: 0 10px;
  color: #ccc;
  font-weight: 500;
}
.equipment--state .state__item .item__org {
  font-size: 14px;
  font-weight: 500;
  color: #ACACAC;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__item .item__org {
    margin-top: 2vw;
    font-size: 2.4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__item .item__org {
    margin-top: 1.3888888889vw;
    font-size: 1.6666666667vw;
  }
}
.equipment--state .state__item .item__org span ~ span {
  margin-left: 15px;
}
.equipment--state .state__progress {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 500px;
          flex: 0 0 500px;
  width: 388px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
  border-top: 0;
  border-bottom: 0;
  padding: 0 55px;
  margin: 0 55px;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__progress {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__progress {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
}
.equipment--state .state__progress .progress-steps {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__progress .progress-steps {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__progress .progress-steps {
    margin-right: 50px;
  }
}
.equipment--state .state__progress .progress-steps:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 2px;
  background-color: #ccc;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__progress .progress-steps:before {
    height: 0.2666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__progress .progress-steps:before {
    height: 0.1851851852vw;
  }
}
.equipment--state .state__progress .progress-steps .step-circle {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border: 2px solid #CCCCCC;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 500;
  color: #ccc;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__progress .progress-steps .step-circle {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    border-width: 0.2666666667vw;
    font-size: 2.4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__progress .progress-steps .step-circle {
    width: 7.4074074074vw;
    height: 7.4074074074vw;
    border-width: 0.1851851852vw;
    font-size: 1.4814814815vw;
  }
}
.equipment--state .state__progress .progress-steps .step-circle.is--on {
  border-color: #2875D9;
  color: #2875D9;
}
.equipment--state .state__progress .progress-steps .step-circle.is--on:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #2875D9;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__progress .progress-steps .step-circle.is--on:before {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    border-width: 0.1333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__progress .progress-steps .step-circle.is--on:before {
    width: 6.4814814815vw;
    height: 6.4814814815vw;
  }
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__progress .progress-steps .step-circle ~ .step-circle {
    margin-left: 6vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__progress .progress-steps .step-circle ~ .step-circle {
    margin-left: 2.3148148148vw;
  }
}
.equipment--state .state__progress .progress-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #3A3A3A;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__progress .progress-date {
    margin-top: 2vw;
    font-size: 2.4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__progress .progress-date {
    margin-top: 0;
    font-size: 1.6666666667vw;
  }
}
.equipment--state .state__progress .progress-date span ~ span {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__progress .progress-date span ~ span {
    margin-top: 1.3333333333vw;
  }
}
.equipment--state .state__links {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__links {
    position: absolute;
    bottom: 3.7333333333vw;
    right: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__links {
    position: absolute;
    top: 2.5925925926vw;
    right: 2.5925925926vw;
  }
}
.equipment--state .state__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 148px;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #666666;
  font-size: 18px;
  font-weight: 600;
  color: #666666;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__link {
    width: 19.7333333333vw;
    height: 6.6666666667vw;
    border-width: 0.2666666667vw;
    font-size: 2.4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__link {
    width: 13.7037037037vw;
    height: 4.6296296296vw;
    border-width: 0.1851851852vw;
    font-size: 1.6666666667vw;
  }
}
.equipment--state .state__article ~ .state__article {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__article ~ .state__article {
    margin-top: 8vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__article ~ .state__article {
    margin-top: 5.5555555556vw;
  }
}
.equipment--state .state__article .article__head {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__article .article__head {
    margin-bottom: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__article .article__head {
    margin-bottom: 2.7777777778vw;
  }
}
.equipment--state .state__article .article__body .state__list {
  border: none;
}
.equipment--state .state__article .article__body .state__list .state__item {
  border: none;
}
.equipment--state .state__article .article__title {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__article .article__title {
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__article .article__title {
    font-size: 2.2222222222vw;
  }
}
.equipment--state .state__request {
  padding: 60px 40px;
  background-color: #F7FAFA;
  border: 1px solid #CCCCCC;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__request {
    padding: 5.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__request {
    padding: 5.5555555556vw 3.7037037037vw;
  }
}
.equipment--state .state__request .request__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__request .request__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.equipment--state .state__request .request__row ~ .request__row {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__request .request__row ~ .request__row {
    margin-top: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__request .request__row ~ .request__row {
    margin-top: 1.8518518519vw;
  }
}
.equipment--state .state__request .request__row .row__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  margin-right: 50px;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__request .request__row .row__title {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-right: 0;
    margin-bottom: 2vw;
    font-size: 3.4666666667Vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__request .request__row .row__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 11.1111111111vw;
            flex: 0 0 11.1111111111vw;
    margin-right: 4.6296296296vw;
    font-size: 2.037037037vw;
  }
}
.equipment--state .state__request .request__row .row__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__request .request__row .row__contents {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.equipment--state .state__request .request__textarea {
  min-height: 215px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 28px;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
  color: #707070;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__request .request__textarea {
    padding: 3.7333333333vw;
    font-size: 3.2vw;
    border-width: 0.1333333333vw;
    border-radius: 0.6666666667vw;
    min-height: 28.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__request .request__textarea {
    min-height: 19.9074074074vw;
    padding: 2.5925925926vw;
    border-width: 0.0925925926vw;
    font-size: 2.037037037vw;
  }
}
.equipment--state .state__request .request__attached {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 28px;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__request .request__attached {
    padding: 3.7333333333vw;
    border-radius: 0.6666666667vw;
    border-width: 0.1333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__request .request__attached {
    padding: 2.5925925926vw;
    border-width: 0.0925925926vw;
  }
}
.equipment--state .state__request .request__attached .attached-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__request .request__attached .attached-file {
    font-size: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__request .request__attached .attached-file {
    font-size: 1.8518518519vw;
  }
}
.equipment--state .state__request .request__attached .attached-file ~ .attached-file {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__request .request__attached .attached-file ~ .attached-file {
    margin-top: 1.3333333333vw;
  }
}
.equipment--state .state__request .request__attached .attached-file:before {
  content: url("/resources/img/client/contents/equipment/icon-attached.svg");
  width: 25px;
  margin-right: 10px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__request .request__attached .attached-file:before {
    width: 3.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__request .request__attached .attached-file:before {
    width: 2.3148148148vw;
  }
}
.equipment--state .state__request .request__attached .attached-file .file-name {
  color: #707070;
}
.equipment--state .state__request .request__attached .attached-file .file-name:hover {
  text-decoration: underline;
}
.equipment--state .state__pic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 110px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 50px;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__pic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
    padding: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__pic {
    height: 10.1851851852vw;
    padding: 0 4.6296296296vw;
  }
}
.equipment--state .state__pic .pic__org,
.equipment--state .state__pic .pic__name {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__pic .pic__org,
.equipment--state .state__pic .pic__name {
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__pic .pic__org,
.equipment--state .state__pic .pic__name {
    font-size: 2.037037037vw;
  }
}
.equipment--state .state__pic .pic__org ~ .pic__name,
.equipment--state .state__pic .pic__name ~ .pic__name {
  margin-left: 70px;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__pic .pic__org ~ .pic__name,
.equipment--state .state__pic .pic__name ~ .pic__name {
    margin-left: 0;
    margin-top: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__pic .pic__org ~ .pic__name,
.equipment--state .state__pic .pic__name ~ .pic__name {
    margin-left: 6.4814814815vw;
  }
}
.equipment--state .state__product .product__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #CCCCCC;
  width: 100%;
  min-height: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__product .product__row {
    border-width: 0.2666666667vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__product .product__row {
    border-width: 0.1851851852vw;
    min-height: 9.2592592593vw;
  }
}
.equipment--state .state__product .product__row .row__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F7FAFA;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__product .product__row .row__title {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 2.4vw 3.7333333333vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__product .product__row .row__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23.1481481481vw;
            flex: 0 0 23.1481481481vw;
    font-size: 2.037037037vw;
  }
}
.equipment--state .state__product .product__row .row__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 14px 28px;
  border-left: 2px solid #CCCCCC;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__product .product__row .row__contents {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 1.8666666667vw 3.7333333333vw;
    border-left-width: 0;
    border-top: 0.2666666667vw solid #ccc;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__product .product__row .row__contents {
    padding: 1.2962962963vw 2.5925925926vw;
    border-left-width: 0.1851851852vw;
  }
}
.equipment--state .state__product .product__row .product__attached .attached-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__product .product__row .product__attached .attached-file {
    font-size: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__product .product__row .product__attached .attached-file {
    font-size: 1.8518518519vw;
  }
}
.equipment--state .state__product .product__row .product__attached .attached-file ~ .attached-file {
  margin-top: 10px;
}
.equipment--state .state__product .product__row .product__attached .attached-file:before {
  content: url("/resources/img/client/contents/equipment/icon-clip.svg");
  width: 20px;
  margin-right: 10px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .equipment--state .state__product .product__row .product__attached .attached-file:before {
    width: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--state .state__product .product__row .product__attached .attached-file:before {
    width: 1.8518518519vw;
  }
}
.equipment--state .state__product .product__row .product__attached .attached-file .file-name {
  color: #707070;
}
.equipment--state .state__product .product__row .product__attached .attached-file .file-name:hover {
  text-decoration: underline;
}

.withdrawal {
  width: 1140px;
  max-width: 100%;
}
.withdrawal .withdrawal__head {
  padding-top: 25px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .withdrawal .withdrawal__head {
    padding-top: 2.3148148148vw;
    margin-bottom: 3.7037037037vw;
  }
}
.withdrawal .withdrawal__head .head__logo {
  margin-bottom: 25px;
  text-align: center;
}
.withdrawal .withdrawal__head .head__title {
  display: block;
  font-size: 40px;
  font-weight: 600;
  color: #000000;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .withdrawal .withdrawal__head .head__title {
    font-size: 5.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .withdrawal .withdrawal__head .head__title {
    font-size: 3.7037037037vw;
  }
}
.withdrawal .withdrawal__pragraph-group {
  padding: 35px 30px;
  background-color: #fafafa;
  border: 1px solid #CCCCCC;
}
@media only screen and (max-width: 767px) {
  .withdrawal .withdrawal__pragraph-group {
    padding: 4vw;
    border-width: 0.1333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .withdrawal .withdrawal__pragraph-group {
    padding: 2.7777777778vw;
  }
}
.withdrawal .withdrawal__guide ~ .withdrawal__guide {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .withdrawal .withdrawal__guide ~ .withdrawal__guide {
    margin-top: 6.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .withdrawal .withdrawal__guide ~ .withdrawal__guide {
    margin-top: 4.6296296296vw;
  }
}
.withdrawal .withdrawal__guide .guide__title {
  display: block;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .withdrawal .withdrawal__guide .guide__title {
    margin-bottom: 4vw;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .withdrawal .withdrawal__guide .guide__title {
    margin-bottom: 2.7777777778vw;
    font-size: 2.2222222222vw;
  }
}
.withdrawal .withdrawal__guide .guide__title:before {
  content: "·";
  margin-right: 8px;
}
.withdrawal .withdrawal__guide p {
  font-size: 18px;
  font-weight: 500;
  word-break: keep-all;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .withdrawal .withdrawal__guide p {
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .withdrawal .withdrawal__guide p {
    font-size: 2.037037037vw;
  }
}
.withdrawal .withdrawal__guide p ~ p {
  margin-top: 10px;
}
.withdrawal .withdrawal__password {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .withdrawal .withdrawal__password {
    margin-top: 3.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .withdrawal .withdrawal__password {
    margin-top: 2.3148148148vw;
  }
}
.withdrawal .withdrawal__password .withdrawal__guide {
  margin-bottom: 20px;
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .withdrawal .withdrawal__password .withdrawal__guide {
    margin-bottom: 2.6666666667vw;
    padding-left: 4Vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .withdrawal .withdrawal__password .withdrawal__guide {
    padding-left: 2.7777777778vw;
  }
}
.withdrawal .withdrawal__password input[type=password] {
  width: 100%;
  height: 58px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 28px;
  border: 1px solid #CCCCCC;
  font-size: 18px;
  color: #101010;
}
@media only screen and (max-width: 767px) {
  .withdrawal .withdrawal__password input[type=password] {
    height: 10.6666666667vw;
    padding: 0 3.7333333333vw;
    font-size: 3.2vw;
    border-width: 0.1333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .withdrawal .withdrawal__password input[type=password] {
    height: 6.4814814815vw;
    padding: 0 2.5925925926vw;
    font-size: 2.037037037vw;
  }
}
.withdrawal .withdrawal__password input[type=password]::-webkit-input-placeholder {
  color: #CCCCCC;
}
.withdrawal .withdrawal__password input[type=password]::-moz-placeholder {
  color: #CCCCCC;
}
.withdrawal .withdrawal__password input[type=password]:-ms-input-placeholder {
  color: #CCCCCC;
}
.withdrawal .withdrawal__password input[type=password]::-ms-input-placeholder {
  color: #CCCCCC;
}
.withdrawal .withdrawal__password input[type=password]::placeholder {
  color: #CCCCCC;
}
.withdrawal .withdrawal__checkbox {
  margin-top: 15px;
  text-align: center;
}
.withdrawal .withdrawal__checkbox .choicebox {
  display: inline-block;
  cursor: pointer;
}
.withdrawal .withdrawal__checkbox .choicebox:after {
  content: "";
  display: block;
  clear: both;
}
.withdrawal .withdrawal__checkbox .choicebox input[type=radio],
.withdrawal .withdrawal__checkbox .choicebox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.withdrawal .withdrawal__checkbox .choicebox input[type=radio]:checked ~ .choicebox-icon,
.withdrawal .withdrawal__checkbox .choicebox input[type=checkbox]:checked ~ .choicebox-icon {
  border-color: #101010;
}
.withdrawal .withdrawal__checkbox .choicebox input[type=radio]:checked ~ .choicebox-icon:after,
.withdrawal .withdrawal__checkbox .choicebox input[type=checkbox]:checked ~ .choicebox-icon:after {
  visibility: visible;
  opacity: 1;
}
.withdrawal .withdrawal__checkbox .choicebox input[type=radio]:disabled ~ .choicebox-icon,
.withdrawal .withdrawal__checkbox .choicebox input[type=checkbox]:disabled ~ .choicebox-icon {
  background-color: #f5f5f5;
}
.withdrawal .withdrawal__checkbox .choicebox input[type=radio]:disabled ~ .choicebox-text,
.withdrawal .withdrawal__checkbox .choicebox input[type=checkbox]:disabled ~ .choicebox-text {
  color: #aaa;
}
.withdrawal .withdrawal__checkbox .choicebox .choicebox-icon {
  position: relative;
  float: left;
  width: 26px;
  height: 26px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #ACACAC;
  background-color: #fff;
  text-indent: -9999px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .withdrawal .withdrawal__checkbox .choicebox .choicebox-icon {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    border-width: 0.1333333333vw;
    border-radius: 0.6666666667vw;
  }
}
.withdrawal .withdrawal__checkbox .choicebox .choicebox-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url("/resources/img/client/board/checked.svg");
  background-size: 15px 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.withdrawal .withdrawal__checkbox .choicebox .choicebox-text {
  padding-left: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #101010;
  line-height: 26px;
}
@media only screen and (max-width: 767px) {
  .withdrawal .withdrawal__checkbox .choicebox .choicebox-text {
    padding-left: 2.6666666667vw;
    font-size: 3.4666666667vw;
    line-height: 6.6666666667vw;
  }
}
.withdrawal .withdrawal__checkbox .choicebox:hover .choicebox-icon {
  -webkit-box-shadow: inset 0px 0px 2px #000;
          box-shadow: inset 0px 0px 2px #000;
}
.withdrawal .withdrawal__checkbox .choicebox:hover .choicebox-text {
  text-decoration: underline;
}
.withdrawal .withdrawal__checkbox .choicebox input[type=radio] ~ .choicebox-icon {
  border-radius: 50%;
}
.withdrawal .withdrawal__checkbox .choicebox input[type=radio] ~ .choicebox-icon:after {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: none;
  background-color: #101010;
}
@media only screen and (max-width: 767px) {
  .withdrawal .withdrawal__checkbox .choicebox input[type=radio] ~ .choicebox-icon:after {
    width: 5.0666666667vw;
    height: 5.0666666667vw;
  }
}
.withdrawal .withdrawal__button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
}
@media only screen and (max-width: 767px) {
  .withdrawal .withdrawal__button-group {
    width: 100%;
    margin-top: 6vw;
  }
}
.withdrawal .withdrawal__button-group a, .withdrawal .withdrawal__button-group button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 100px;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2px 10px;
  border: 1px solid #666666;
  color: #666666;
  font-size: 14px;
  font-weight: 500;
}
.withdrawal .withdrawal__button-group a.style--primary, .withdrawal .withdrawal__button-group button.style--primary {
  border-color: #2875D9;
  background-color: #2875D9;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .withdrawal .withdrawal__button-group a, .withdrawal .withdrawal__button-group button {
    height: 9.3333333333vw;
    border-width: 0.1333333333vw;
    padding: 0.6666666667vw 2.6666666667vw;
    font-size: 2.9333333333vw;
  }
}
.withdrawal .withdrawal__button-group a ~ a, .withdrawal .withdrawal__button-group a ~ button, .withdrawal .withdrawal__button-group button ~ a, .withdrawal .withdrawal__button-group button ~ button {
  margin-left: 10px;
}

.equipment--apply-guide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  padding: 35px 70px;
  border: 1px solid #CCCCCC;
  background-color: #FAFAFA;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-guide {
    padding: 4vw;
    margin-bottom: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-guide {
    margin-bottom: 2.7777777778vw;
    padding: 3.2407407407vw 6.4814814815vw;
  }
}
.equipment--apply-guide .apply-guide__icon {
  margin-right: 50px;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-guide .apply-guide__icon {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-guide .apply-guide__icon {
    margin-right: 4.6296296296vw;
  }
}
.equipment--apply-guide .apply-guide__text {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-guide .apply-guide__text {
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-guide .apply-guide__text {
    font-size: 2.037037037vw;
  }
}
.equipment--apply-guide .apply-guide__text strong {
  color: #000;
  font-weight: 700;
}
.equipment--apply-guide .apply-guide__text p {
  margin-top: 10px;
  color: #707070;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-guide .apply-guide__text p {
    margin-top: 1.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-guide .apply-guide__text p {
    margin-top: 0.9259259259vw;
  }
}

.equipment--apply-cart {
  margin-bottom: 65px;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart {
    margin-bottom: 8.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-cart {
    margin-bottom: 6.0185185185vw;
  }
}
.equipment--apply-cart .apply-cart__toggle {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 72px;
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  background-color: #28B3C0;
  background-image: url("/resources/img/client/contents/equipment/apply-cart-toggle.svg");
  font-size: 23px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__toggle {
    height: 10.6666666667vw;
    font-size: 3.4666666667vw;
    background-size: 3.7333333333vw auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-cart .apply-cart__toggle {
    height: 6.6666666667vw;
    font-size: 2.1296296296vw;
    background-size: 2.5925925926vw auto;
  }
}
.equipment--apply-cart .apply-cart__panel {
  padding: 40px;
  background-color: #fafafa;
  border: 1px solid #CCCCCC;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__panel {
    padding: 5.3333333333vw;
    border-width: 0.1333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-cart .apply-cart__panel {
    padding: 3.7037037037vw;
  }
}
.equipment--apply-cart .apply-cart__panel .panel__button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__panel .panel__button-group {
    margin-top: 5.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-cart .apply-cart__panel .panel__button-group {
    margin-top: 0.9259259259vw;
  }
}
.equipment--apply-cart .apply-cart__panel .panel__button {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 290px;
  height: 56px;
  background-color: #fff;
  border: 1px solid #28B3C0;
  font-size: 22px;
  color: #28B3C0;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__panel .panel__button {
    width: 38.6666666667vw;
    height: 8.6666666667vw;
    border-width: 0.1333333333vw;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-cart .apply-cart__panel .panel__button {
    width: 26.8518518519vw;
    height: 5.1851851852vw;
    font-size: 2.037037037vw;
  }
}
.equipment--apply-cart .apply-cart__panel .panel__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #CCCCCC;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__panel .panel__item {
    min-height: 13.3333333333vw;
    padding: 2.6666666667Vw;
    border-width: 0.1333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-cart .apply-cart__panel .panel__item {
    min-height: 9.2592592593vw;
    padding: 1.8518518519vw;
  }
}
.equipment--apply-cart .apply-cart__panel .panel__item ~ .panel__item {
  margin-top: 10px;
}
.equipment--apply-cart .apply-cart__panel .panel__item .item__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__cell {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.equipment--apply-cart .apply-cart__panel .panel__item .item__cell > * ~ * {
  margin-left: 40px;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__cell > * ~ * {
    margin-left: 0;
    margin-top: 1.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__cell > * ~ * {
    margin-left: 3.7037037037vw;
  }
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__logo img {
    width: 16vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__logo img {
    width: 11.1111111111vw;
  }
}
.equipment--apply-cart .apply-cart__panel .panel__item .item__date {
  font-size: 23px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__date {
    font-size: 3.0666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__date {
    font-size: 2.1296296296vw;
  }
}
.equipment--apply-cart .apply-cart__panel .panel__item .item__title {
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.equipment--apply-cart .apply-cart__panel .panel__item .item__title .title__name {
  font-size: 23px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__title .title__name {
    font-size: 3.3333333333vw;
    margin-right: 2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__title .title__name {
    font-size: 2.1296296296vw;
  }
}
.equipment--apply-cart .apply-cart__panel .panel__item .item__title .title__category {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__title .title__category {
    font-size: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__title .title__category {
    font-size: 1.6666666667vw;
  }
}
.equipment--apply-cart .apply-cart__panel .panel__item .item__remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__remove {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
.equipment--apply-cart .apply-cart__panel .panel__item .item__remove:before {
  content: url("/resources/img/client/contents/equipment/icon-delete.svg");
  font-size: 0;
  width: 24px;
}
@media only screen and (max-width: 767px) {
  .equipment--apply-cart .apply-cart__panel .panel__item .item__remove:before {
    width: 3.2vw;
  }
}

.login--alert {
  width: 680px;
  max-width: 100%;
  margin: 30px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 20px 20px 20px;
  border: 1px solid #ccc;
  background-color: #F7FAFA;
}
@media only screen and (max-width: 767px) {
  .login--alert {
    padding: 5.3333333333vw 2.6666666667vw 2.6666666667vw 2.6666666667vw;
    border-width: 0.1333333333vw;
  }
}
.login--alert .alert-image {
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .login--alert .alert-image {
    margin-bottom: 2.6666666667vw;
  }
}
.login--alert .alert-image img {
  width: 100px;
}
@media only screen and (max-width: 767px) {
  .login--alert .alert-image img {
    width: 13.3333333333vw;
  }
}
.login--alert .alert-title {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #000;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .login--alert .alert-title {
    margin-bottom: 3.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.login--alert .alert-notice-text {
  font-size: 20px;
  font-weight: 500;
  color: #666;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .login--alert .alert-notice-text {
    font-size: 3.2vw;
  }
}
.login--alert .alert-ref-group {
  margin-top: 40px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .login--alert .alert-ref-group {
    margin-top: 5.3333333333vw;
    border-width: 0.1333333333vw;
  }
}
.login--alert .alert-ref-stnc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  word-break: keep-all;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .login--alert .alert-ref-stnc {
    font-size: 2.9333333333vw;
  }
}
.login--alert .alert-ref-stnc ~ .alert-ref-stnc {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .login--alert .alert-ref-stnc ~ .alert-ref-stnc {
    margin-top: 2vw;
  }
}
.login--alert .alert-ref-stnc > i {
  float: left;
  margin-right: 8px;
  font-weight: 900;
  width: 20px;
  position: relative;
  text-indent: -9999px;
  text-align: left;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .login--alert .alert-ref-stnc > i {
    width: 2.6666666667vw;
    margin-right: 1.0666666667vw;
  }
}
.login--alert .alert-ref-stnc > i:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: 12px;
  background-repeat: no-repeat;
  background-image: url("/resources/img/client/join/checked.svg");
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  .login--alert .alert-ref-stnc > i:before {
    width: 1.8666666667vw;
    height: 1.6vw;
  }
}
.login--alert .alert-ref-stnc > span {
  display: block;
  overflow: hidden;
}
.login--alert .alert-ref-stnc > span em {
  font-weight: 700;
  font-style: normal;
}
.login--alert .alert-ref-stnc > span .style--high-light {
  font-weight: 900;
  background-color: rgb(241, 201, 0);
}

.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}
@media only screen and (max-width: 767px) {
  .section {
    height: auto;
    padding-top: 24vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .section {
    height: auto;
    padding: 5.5555555556vw 0;
    padding-top: 18.5185185185vw;
  }
}
@media only screen and (max-width: 767px) {
  .section.common--footer {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .section.common--footer {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .section.common--footer .inner {
    padding: 8vw 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .section.common--footer .inner {
    padding: 5.5555555556vw 2.7777777778vw;
  }
}
.section .section-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1600px;
  max-width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 15px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .section .section-inner {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .section .section-inner {
    padding: 0 24px;
  }
}
.section .section-title {
  font-size: 50px;
  font-weight: 700;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .section .section-title {
    margin-bottom: 5.3333333333vw;
    font-size: 6vw;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .section .section-title {
    font-size: 4.6296296296vw;
  }
}
.section .section-text-image {
  width: 100%;
  margin-bottom: 15px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .section .section-text-image {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .section .section-text-image {
    margin-bottom: 1.3888888889vw;
  }
}
.section .section-text-image img {
  max-width: 100%;
}
.section.cfy--visual {
  position: relative;
  overflow: hidden;
}
.section.cfy--visual:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 100%;
  background-image: url("/resources/img/client/main/visual/background--pc.png");
}
@media only screen and (max-width: 767px) {
  .section.cfy--visual:before {
    height: 100%;
    background-image: url("/resources/img/client/main/visual/background--mobile.png");
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .section.cfy--visual:before {
    height: 100%;
    background-image: url("/resources/img/client/main/visual/background--mobile.png");
  }
}
.section.cfy--platform {
  position: relative;
  overflow: hidden;
}
.section.cfy--platform:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("/resources/img/client/main/platform/background--pc.jpg");
  background-size: cover;
  background-position: 50%;
}
.section.cfy--equipment {
  position: relative;
  overflow: hidden;
}
.section.cfy--equipment:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("/resources/img/client/main/equipment/background--pc.png");
  background-size: cover;
  background-position: 50%;
}
.section.cfy--news {
  position: relative;
  overflow: hidden;
}
.section.cfy--news:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("/resources/img/client/main/news/background--pc.png");
  background-size: cover;
  background-position: 50%;
}
@media only screen and (max-width: 767px) {
  .section.cfy--news:before {
    height: 100%;
    background-image: url("/resources/img/client/main/news/background--mobile.png");
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .section.cfy--news:before {
    height: 100%;
  }
}

.platform {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .platform {
    padding: 8.6666666667vw 0;
  }
}
.platform .section-title {
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .platform .section-text-image {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .platform .section-text-image img {
    width: 46.2962962963vw;
  }
}
.platform .platform-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 50%;
}
@media only screen and (max-width: 767px) {
  .platform .platform-row {
    height: auto;
    padding: 0 2.6666666667vw;
  }
}
.platform .platform-row .platform-cell {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .platform .platform-row .platform-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .platform .platform-row .platform-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
    padding-top: 6.9444444444vw;
  }
}
.platform .platform-row .platform-cell.cfy--half {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .platform .platform-row .platform-cell.cfy--half {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .platform .platform-row .platform-cell.cfy--half {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .platform .platform-row .platform-cell:nth-child(2) .platform-card, .platform .platform-row .platform-cell:nth-child(3) .platform-card {
    border-top-width: 0.1333333333vw;
  }
}
@media only screen and (max-width: 767px) {
  .platform .platform-row .platform-cell:nth-child(2n) .platform-card {
    border-left-width: 0.1333333333vw;
  }
}
.platform .platform-row .platform-cell:nth-child(3) ~ .platform-cell {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 75px;
}
@media only screen and (max-width: 767px) {
  .platform .platform-row .platform-cell:nth-child(3) ~ .platform-cell {
    padding-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .platform .platform-row .platform-cell:nth-child(3) ~ .platform-cell {
    padding-top: 6.9444444444vw;
  }
}
.platform .platform-card {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 400px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 0 30px 30px;
}
@media only screen and (max-width: 767px) {
  .platform .platform-card {
    height: 45.3333333333vw;
    border: 0.1333333333vw solid #ccc;
    border-left-width: 0;
    border-top-width: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .platform .platform-card {
    height: 37.037037037vw;
    padding: 2.7777777778vw 0 2.7777777778vw 2.7777777778vw;
  }
}
.platform .platform-card:before {
  content: "";
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 0;
  width: 80%;
  height: 100%;
  background-color: rgba(37, 46, 206, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 767px) {
  .platform .platform-card:before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .platform .platform-card:before {
    height: 90%;
    bottom: 6.9444444444vw;
  }
}
.platform .platform-card:after {
  content: "";
  width: 30px;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
  background-repeat: no-repeat;
  background-image: url("/resources/img/client/main/platform/more-white.svg");
  background-position: 50%;
  background-size: 18px 18px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 767px) {
  .platform .platform-card:after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .platform .platform-card:after {
    opacity: 0;
    visibility: hidden;
  }
}
.platform .platform-card .card__contents {
  position: relative;
  z-index: 1;
}
.platform .platform-card .card__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 90px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .platform .platform-card .card__icon {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 13.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .platform .platform-card .card__icon {
    height: 8.3333333333vw;
    margin-bottom: 1.8518518519vw;
  }
}
@media only screen and (max-width: 767px) {
  .platform .platform-card .card__icon img {
    width: 10vw;
  }
}
.platform .platform-card .card__name {
  display: block;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .platform .platform-card .card__name {
    margin-bottom: 4vw;
    font-size: 4.6666666667vw;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .platform .platform-card .card__name {
    margin-bottom: 1.3888888889vw;
    font-size: 2.5925925926vw;
  }
}
.platform .platform-card .card__explain {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .platform .platform-card .card__explain {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .platform .platform-card .card__explain {
    font-size: 1.6666666667vw;
  }
}
.platform .platform-card .card__explain span {
  display: block;
}
.platform .platform-card .card__link {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 220px;
  height: 68px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 28px;
  border: 1px solid #ccc;
  overflow: hidden;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.platform .platform-card .card__link:after {
  display: block;
  content: url("/resources/img/client/main/platform/more-white.svg");
  width: 18px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .platform .platform-card .card__link:after {
    width: 2.4vw;
  }
}
@media only screen and (max-width: 767px) {
  .platform .platform-card .card__link {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    position: relative;
    bottom: inherit;
    right: inherit;
    width: 24.6666666667vw;
    height: 6.6666666667vw;
    padding: 0 3.7333333333vw;
    font-size: 2.5333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .platform .platform-card .card__link {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    width: 20.3703703704vw;
    height: 6.2962962963vw;
    font-size: 1.7592592593vw;
  }
}
.platform .platform-card:hover:before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.platform .platform-card:hover:after {
  opacity: 0;
  visibility: hidden;
}
.platform .platform-card:hover .card__link {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.equipment {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .equipment {
    padding-top: 13.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .section-text-image img {
    width: 35.1851851852vw;
  }
}
.equipment .equipment-group .equipment-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-tab {
    width: 100%;
    margin-bottom: 0;
    overflow-x: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-tab {
    margin-bottom: 1.8518518519vw;
  }
}
.equipment .equipment-group .equipment-tab .tab-button {
  position: relative;
  width: 248px;
  height: 68px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-tab .tab-button {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33.33%;
            flex: 1 0 33.33%;
    width: 40vw;
    height: 12vw;
    font-size: 3.3333333333vw;
    white-space: nowrap;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-tab .tab-button {
    width: 22.962962963vw;
    height: 6.2962962963vw;
    font-size: 2.2222222222vw;
  }
}
.equipment .equipment-group .equipment-tab .tab-button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-tab .tab-button:after {
    height: 1.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-tab .tab-button:after {
    height: 0.462962963vw;
  }
}
.equipment .equipment-group .equipment-tab .tab-button.is--on {
  font-weight: 700;
}
.equipment .equipment-group .equipment-tab .tab-button.is--on:after {
  background-color: #00A0FB;
}
.equipment .equipment-group .equipment-contents .equipment-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipment-company {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 745px;
  height: 440px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 45px 30px;
  margin-right: 20px;
  background-image: url("/resources/img/client/main/equipment/background--pc.png");
  background-position: 0 0;
  background-size: cover;
  background-color: #ddd;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipment-company.cfy--01 {
  background-image: url("/resources/img/client/main/equipment/background--01.jpg");
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipment-company.cfy--02 {
  background-image: url("/resources/img/client/main/equipment/background--02.jpg");
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipment-company.cfy--03 {
  background-image: url("/resources/img/client/main/equipment/background--03.jpg");
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 96.6666666667vw;
    padding-bottom: 16.6666666667vw;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 37.037037037vw;
            flex: 0 0 37.037037037vw;
    width: 37.037037037vw;
    height: 50.1851851852vw;
    padding: 4.1666666667vw 2.7777777778vw;
    margin-right: 1.8518518519vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35.1851851852vw;
            flex: 0 0 35.1851851852vw;
    width: 35.1851851852vw;
    padding: 3.2407407407vw 1.8518518519vw;
    margin-right: 1.8518518519vw;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipment-company:after {
  position: absolute;
  bottom: 20px;
  right: 30px;
  content: url("/resources/img/client/main/equipment/arrow.svg");
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company:after {
    display: none;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__logo {
  position: absolute;
  top: 20px;
  right: 30px;
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__logo {
    position: relative;
    top: inherit;
    right: inherit;
    margin-bottom: 8vw;
    text-align: center;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__logo img {
  width: 81px;
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__logo img {
    width: 36.6666666667vw;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__name {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__name {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__name {
    font-size: 2.962962963vw;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__intro {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__intro {
    font-size: 3.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__intro {
    font-size: 1.6666666667vw;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__intro span {
  display: block;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__intro span {
    display: inline;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__intro span {
    display: inline;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    border-top: 0.1333333333vw solid #aaa;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__links a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  text-align: left;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50%;
    height: 16.6666666667vw;
    font-size: 4vw;
    color: #AAAAAA;
    text-indent: 0;
    text-align: inherit;
    overflow: auto;
  }
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__links a ~ a {
    border-left: 0.1333333333vw solid #aaa;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__links a.cfy--equipment {
  display: none;
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipment-company .company__links a.cfy--equipment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: rgba(63, 233, 255, 0.5);
    color: #fff;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 813px;
          flex: 1 1 813px;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 815px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #AAAAAA;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipments {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    position: absolute;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipments {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% - 54.6666666667vw);
            flex: 1 0 calc(100% - 54.6666666667vw);
    -ms-flex-preferred-size: 54.6666666667vw;
        flex-basis: 54.6666666667vw;
    width: calc(100% - 54.6666666667vw);
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipments {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% - 53.3333333333vw);
            flex: 1 0 calc(100% - 53.3333333333vw);
    -ms-flex-preferred-size: 53.3333333333vw;
        flex-basis: 53.3333333333vw;
    width: calc(100% - 53.3333333333vw);
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .equipment-banner {
  width: 100%;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .equipment-navi {
  position: absolute;
  right: 0;
  top: -20px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .equipment-navi span {
  margin: 0 10px;
  font-size: 0;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .equipment-navi .navi-button {
  width: 30px;
  height: 30px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 0;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .equipment-navi .navi-button:hover {
  background-color: #f4f4f4;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .equipment-navi .swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine-list > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  width: 33.33%;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine-list > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine-list > li:nth-child(2n) .machine {
    border-right-width: 0;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine-list > li:nth-child(2n+1) .machine {
  border-left-width: 0;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine-list > li:nth-child(3n) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.34%;
          flex: 0 0 33.34%;
  width: 33.34%;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine-list > li:nth-child(3n) .machine {
  border-right-width: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine-list > li:nth-child(3n) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }
  .equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine-list > li:nth-child(3n) .machine {
    border-right-width: 1px;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine-list > li:nth-child(4) .machine, .equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine-list > li:nth-child(5) .machine, .equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine-list > li:nth-child(6) .machine {
  border-bottom-width: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine-list > li:nth-child(4) .machine {
    border-bottom-width: 1px;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 220px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 15px 10px;
  border-right: 1px solid #AAAAAA;
  border-bottom: 1px solid #AAAAAA;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine {
    padding: 1.3888888889vw 0.9259259259vw;
    height: 16.6666666667vw;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine .machine-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine .machine-category {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  word-break: keep-all;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine .machine-category {
    font-size: 2.2222222222vw;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine .machine-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #696969;
  word-break: keep-all;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine .machine-name {
    font-size: 1.4814814815vw;
    font-weight: 500;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine .machine-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine .machine-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #AAAAAA;
  border-right-width: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  color: #aaa;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine .machine-links a {
    font-size: 1.6666666667vw;
  }
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine .machine-links a ~ a {
  border-right-width: 1px;
  border-color: #F7AE02;
  color: #F7AE02;
}
.equipment .equipment-group .equipment-contents .equipment-panel .equipments .machine .machine-links a:hover {
  background-color: #F7AE02;
  border-color: #F7AE02;
  color: #fff;
}

.news {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .news {
    padding: 21.3333333333vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .news .section-title {
    margin-bottom: 14.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .news .section-text-image img {
    width: 69.4444444444vw;
  }
}
.news .news-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1320px;
  max-width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .news .news-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.news .news-group .news-card {
  display: block;
  position: relative;
  width: 405px;
  height: 385px;
  max-width: 32%;
  background-color: #f5f5f5;
}
@media only screen and (max-width: 767px) {
  .news .news-group .news-card {
    width: 54vw;
    height: 51.3333333333vw;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .news .news-group .news-card {
    width: 37.5vw;
    height: 35.6481481481vw;
  }
}
.news .news-group .news-card ~ .news-card {
  margin-left: 30px;
}
@media only screen and (max-width: 767px) {
  .news .news-group .news-card ~ .news-card {
    margin-left: 0;
    margin-top: 9.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .news .news-group .news-card ~ .news-card {
    margin-left: 2.7777777778vw;
  }
}
.news .news-group .news-card .card__figure {
  position: relative;
  width: 100%;
  height: 100%;
}
.news .news-group .news-card .card__figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  max-width: none;
}
.news .news-group .news-card .card__figcation {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 370px;
  max-width: 100%;
  height: 175px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 28px;
  background-color: rgba(80, 80, 80, 0.9);
}
@media only screen and (max-width: 767px) {
  .news .news-group .news-card .card__figcation {
    width: 49.3333333333vw;
    height: 23.3333333333vw;
    padding: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .news .news-group .news-card .card__figcation {
    height: 16.2037037037vw;
    padding: 2.5925925926vw;
  }
}
.news .news-group .news-card .card__figcation .card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .news .news-group .news-card .card__figcation .card__title {
    font-size: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .news .news-group .news-card .card__figcation .card__title {
    font-size: 2.7777777778vw;
  }
}
.news .news-group .news-card .card__figcation .card__title:after {
  display: block;
  font-size: 0;
  content: url("/resources/img/client/main/news/arrow.svg");
  width: 13px;
}
@media only screen and (max-width: 767px) {
  .news .news-group .news-card .card__figcation .card__title:after {
    width: 1.6vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .news .news-group .news-card .card__figcation .card__title:after {
    width: 1.2037037037vw;
  }
}
.news .news-group .news-card .card__figcation .card__explain {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 767px) {
  .news .news-group .news-card .card__figcation .card__explain {
    font-size: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .news .news-group .news-card .card__figcation .card__explain {
    font-size: 1.8518518519vw;
  }
}
.news .news-group .news-card .card__figcation .card__explain span {
  display: block;
}
.news .news-group .news-card:hover .card__figcation {
  background-color: rgba(55, 162, 124, 0.9);
}

.visual {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .visual {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 2.6666666667vw;
    padding-bottom: 22.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .visual {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.visual .visual-text-group {
  padding-top: 110px;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .visual .visual-text-group {
    padding-top: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .visual .visual-text-group {
    padding-top: 0;
    margin-right: 0;
    margin-bottom: 4.1666666667vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .visual .visual-text-group {
    padding-top: 8.59375vw;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1479px) {
  .visual .visual-text-group {
    padding-top: 8.59375vw;
  }
}
.visual .visual-text-group .visual-title {
  margin-bottom: 30px;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  word-break: break-all;
}
@media only screen and (max-width: 767px) {
  .visual .visual-text-group .visual-title {
    margin-bottom: 0;
    font-size: 9.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .visual .visual-text-group .visual-title {
    margin-bottom: 2.7777777778vw;
    font-size: 7.4074074074vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .visual .visual-text-group .visual-title {
    font-size: 5.078125vw;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1479px) {
  .visual .visual-text-group .visual-title {
    font-size: 4.6875vw;
  }
}
.visual .visual-text-group .visual-title span {
  display: block;
}
.visual .visual-text-group .visual-explain {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .visual .visual-text-group .visual-explain {
    display: none;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .visual .visual-text-group .visual-explain {
    font-size: 2.037037037vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .visual .visual-text-group .visual-explain {
    font-size: 1.40625vw;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1479px) {
  .visual .visual-text-group .visual-explain {
    font-size: 1.40625vw;
  }
}
.visual .visual-text-group .visual-explain span {
  display: block;
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .visual .visual-text-group .visual-explain span {
    display: inline;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1479px) {
  .visual .visual-text-group .visual-explain span {
    display: inline;
  }
}
.visual .visual-banner {
  width: 915px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 915px;
          flex: 0 0 915px;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .visual .visual-banner {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .visual .visual-banner {
    width: 59.765625vw;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 55.859375vw;
            flex: 1 0 55.859375vw;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1479px) {
  .visual .visual-banner {
    width: 63.671875vw;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 63.671875vw;
            flex: 1 0 63.671875vw;
  }
}
.visual .visual-banner .banner-frame {
  position: relative;
  width: 1085px;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-frame {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .visual .visual-banner .banner-frame {
    width: 100%;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .visual .visual-banner .banner-frame {
    width: 84.765625vw;
  }
}
.visual .visual-banner .banner-frame:after {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 1;
  width: 170px;
  height: 225px;
  background-color: rgba(1, 203, 216, 0.88);
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-frame:after {
    content: none;
    height: 30vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .visual .visual-banner .banner-frame:after {
    height: 20.8333333333vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .visual .visual-banner .banner-frame:after {
    height: 17.578125vw;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1479px) {
  .visual .visual-banner .banner-frame:after {
    height: 17.578125vw;
  }
}
.visual .visual-banner .banner-slide {
  width: 100%;
  overflow: hidden;
  opacity: 0 !important;
}
.visual .visual-banner .banner-slide.swiper-slide-active {
  opacity: 1 !important;
}
.visual .visual-banner .banner-contents {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-contents {
    padding-bottom: 5.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .visual .visual-banner .banner-contents {
    padding-bottom: 3.7037037037vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .visual .visual-banner .banner-contents {
    padding-bottom: 50/12.8;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1479px) {
  .visual .visual-banner .banner-contents {
    padding-bottom: 50/12.8;
  }
}
.visual .visual-banner .banner-contents .banner-figure {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 635px;
  max-width: 915px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-contents .banner-figure {
    height: 63.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .visual .visual-banner .banner-contents .banner-figure {
    height: 58.7962962963vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .visual .visual-banner .banner-contents .banner-figure {
    height: 38.671875vw;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1479px) {
  .visual .visual-banner .banner-contents .banner-figure {
    height: 41.796875vw;
  }
}
.visual .visual-banner .banner-contents .banner-figure img {
  width: 100%;
  height: 100%;
}
.visual .visual-banner .banner-contents .banner-figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 510px;
  max-width: 100%;
  height: 225px;
  width: 680px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 50px;
  padding-right: 170px;
  background-color: rgba(1, 203, 216, 0.88);
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-contents .banner-figcaption {
    height: 30vw;
    padding: 0 6.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .visual .visual-banner .banner-contents .banner-figcaption {
    height: 20.8333333333vw;
    padding: 0 4.6296296296vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .visual .visual-banner .banner-contents .banner-figcaption {
    height: 17.578125vw;
    padding: 0 3.90625vw;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1479px) {
  .visual .visual-banner .banner-contents .banner-figcaption {
    height: 17.578125vw;
    padding: 0 3.90625vw;
  }
}
.visual .visual-banner .banner-contents .banner-figcaption strong {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-contents .banner-figcaption strong {
    font-size: 4.2666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .visual .visual-banner .banner-contents .banner-figcaption strong {
    font-size: 2.5925925926vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .visual .visual-banner .banner-contents .banner-figcaption strong {
    font-size: 1.875vw;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1479px) {
  .visual .visual-banner .banner-contents .banner-figcaption strong {
    font-size: 1.875vw;
  }
}
.visual .visual-banner .banner-contents .banner-figcaption p {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #fff;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-contents .banner-figcaption p {
    margin-top: 2.6666666667vw;
    padding-top: 2.6666666667vw;
    font-size: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .visual .visual-banner .banner-contents .banner-figcaption p {
    margin-top: 1.8518518519vw;
    padding-top: 1.8518518519vw;
    font-size: 1.8518518519vw;
  }
}
.visual .visual-banner .banner-contents .banner-figcaption p span {
  display: block;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-contents .banner-figcaption p span {
    display: inline;
  }
}
.visual .visual-banner .banner-funcs {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-funcs {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
    margin-bottom: 6.6666666667vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .visual .visual-banner .banner-funcs {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: 4.6296296296vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .visual .visual-banner .banner-funcs {
    margin-top: 3.90625vw;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1479px) {
  .visual .visual-banner .banner-funcs {
    margin-top: 3.90625vw;
  }
}
.visual .visual-banner .banner-pagi {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  font-size: 0;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-pagi {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.visual .visual-banner .banner-pagi .pagi__bar {
  position: relative;
  width: 355px;
  height: 2px;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-pagi .pagi__bar {
    width: 47.3333333333vw;
    height: 0.2666666667vw;
  }
}
.visual .visual-banner .banner-pagi .pagi__bar i {
  display: block;
  background-color: #fff;
  height: 100%;
}
.visual .visual-banner .banner-pagi .pagi__nums {
  width: 0;
}
.visual .visual-banner .banner-pagi .pagi__nums .nums__now, .visual .visual-banner .banner-pagi .pagi__nums .nums__total {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.visual .visual-banner .banner-pagi .pagi__nums .nums__now {
  left: 0;
  font-size: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-pagi .pagi__nums .nums__now {
    font-size: 4vw;
  }
}
.visual .visual-banner .banner-pagi .pagi__nums .nums__total {
  right: 0;
  font-size: 22px;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-pagi .pagi__nums .nums__total {
    font-size: 3.3333333333vw;
  }
}
.visual .visual-banner .banner-pagi ~ .banner-navi {
  margin-left: 80px;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-pagi ~ .banner-navi {
    margin-left: 0;
  }
}
.visual .visual-banner .banner-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-navi {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 6vw;
  }
}
.visual .visual-banner .banner-navi .navi__button {
  width: 40px;
  height: 40px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-navi .navi__button {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.visual .visual-banner .banner-navi .navi__button img {
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-navi .navi__button img {
    width: 2vw;
  }
}
.visual .visual-banner .banner-navi .navi__button ~ .navi__button {
  margin-left: 5px;
}
@media only screen and (max-width: 767px) {
  .visual .visual-banner .banner-navi .navi__button ~ .navi__button {
    margin-left: 0.6666666667vw;
  }
}

.cms-section ~ .cms-section {
  margin-top: 160px;
}
@media only screen and (max-width: 767px) {
  .cms-section ~ .cms-section {
    margin-top: 21.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms-section ~ .cms-section {
    margin-top: 14.8148148148vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms-section ~ .cms-section {
    margin-top: 12.5vw;
  }
}
.cms-section .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
  color: #1079CA;
}
@media only screen and (max-width: 767px) {
  .cms-section .section-title {
    font-size: 4.2666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms-section .section-title {
    font-size: 2.962962963vw;
    margin-bottom: 1.8518518519vw;
  }
}
.cms-section .section-title:before {
  content: url("/resources/img/client/cms/icon-article-title.svg");
  width: 40px;
  margin-right: 20px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .cms-section .section-title:before {
    width: 5.3333333333vw;
    margin-right: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms-section .section-title:before {
    width: 3.7037037037vw;
    margin-right: 1.8518518519vw;
  }
}

.cms-article ~ .cms-article {
  margin-top: 130px;
}
@media only screen and (max-width: 767px) {
  .cms-article ~ .cms-article {
    margin-top: 17.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms-article ~ .cms-article {
    margin-top: 12.037037037vw;
  }
}
.cms-article .article-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
  color: #1079CA;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms-article .article-title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 4.2666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms-article .article-title {
    font-size: 2.962962963vw;
    margin-bottom: 1.8518518519vw;
  }
}
.cms-article .article-title:before {
  content: "";
  width: 10px;
  height: 30px;
  background-color: #1079CA;
  margin-right: 15px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .cms-article .article-title:before {
    width: 1.3333333333vw;
    height: 4vw;
    margin-right: 2vw;
    margin-top: 1.1vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms-article .article-title:before {
    width: 0.9259259259vw;
    height: 2.7777777778vw;
    margin-right: 1.3888888889vw;
  }
}
.cms-article .article-title span {
  font-size: 18px;
  font-weight: 500;
  color: #707070;
  white-space: pre-wrap;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms-article .article-title span {
    font-size: 2.4vw;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms-article .article-title span {
    font-size: 1.6666666667vw;
  }
}
.cms--org__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 205px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #4B9AD7;
}
@media only screen and (max-width: 767px) {
  .cms--org__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    padding: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    padding: 2.5925925926vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__intro {
    height: 17.578125vw;
  }
}
.cms--org__intro .logo {
  display: block;
  text-align: center;
  width: 480px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 480px;
          flex: 0 0 480px;
}
@media only screen and (max-width: 767px) {
  .cms--org__intro .logo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    margin-bottom: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__intro .logo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    margin-bottom: 2.7777777778vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__intro .logo {
    width: 29.6875vw;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 29.6875vw;
            flex: 0 0 29.6875vw;
  }
}
.cms--org__intro .logo img {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .cms--org__intro .logo img {
    width: 50.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__intro .logo img {
    width: 36.1111111111vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__intro .logo img {
    width: 30.46875vw;
  }
}
.cms--org__intro .org {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 18px;
}
@media only screen and (max-width: 767px) {
  .cms--org__intro .org {
    padding: 2.4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__intro .org {
    padding: 1.6666666667vw;
  }
}
.cms--org__intro .org .org-name {
  display: block;
  margin-bottom: 15px;
  font-size: 28px;
  color: #101010;
  font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .cms--org__intro .org .org-name {
    margin-bottom: 2.6666666667vw;
    font-size: 4.5333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__intro .org .org-name {
    margin-bottom: 1.3888888889vw;
    font-size: 2.5925925926vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__intro .org .org-name {
    font-size: 2.1875vw;
  }
}
.cms--org__intro .org .org-explain {
  font-size: 22px;
  color: #101010;
  font-weight: 500;
  word-break: keep-all;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .cms--org__intro .org .org-explain {
    font-size: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__intro .org .org-explain {
    font-size: 2.037037037vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__intro .org .org-explain {
    font-size: 1.71875vw;
  }
}

.cms--org__role {
  padding: 60px;
  background-color: #F9F9F9;
  border: 1px solid #CCCCCC;
}
@media only screen and (max-width: 767px) {
  .cms--org__role {
    padding: 8vw;
    border-width: 0.1333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__role {
    padding: 5.5555555556vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__role {
    padding: 5.078125vw;
  }
}
.cms--org__role .role__figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .cms--org__role .role__figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__role .role__figure {
    margin-bottom: 0.375vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__role .role__figure {
    margin-bottom: 2.34375vw;
  }
}
.cms--org__role .role__figure .figure-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 490px;
          flex: 0 0 490px;
  margin-right: 30px;
}
.cms--org__role .role__figure .figure-image img {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .cms--org__role .role__figure .figure-image {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-right: 0;
    margin-bottom: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__role .role__figure .figure-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35.1851851852vw;
            flex: 0 0 35.1851851852vw;
    margin-right: 2.7777777778vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__role .role__figure .figure-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 38.28125vw;
            flex: 0 0 38.28125vw;
    margin-right: 2.34375vw;
  }
}
.cms--org__role .role__figure .figure-caption {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--org__role .role__figure .figure-caption {
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__role .role__figure .figure-caption {
    font-size: 2.2222222222vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__role .role__figure .figure-caption {
    font-size: 1.875vw;
  }
}
.cms--org__role > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -50px 0 0 -50px;
}
@media only screen and (max-width: 767px) {
  .cms--org__role > ul {
    margin: 0;
    margin-top: -6.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__role > ul {
    margin: -4.5vw 0 0 -4.5vw;
  }
}
.cms--org__role > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 50px);
          flex: 0 1 calc(50% - 50px);
  width: calc(50% - 50px);
  margin: 50px 0 0 50px;
}
@media only screen and (max-width: 767px) {
  .cms--org__role > ul > li {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    margin: 0;
    margin-top: 6.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__role > ul > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 4.5vw);
            flex: 0 1 calc(50% - 4.5vw);
    width: calc(50% - 4.5vw);
    margin: 4.5vw 0 0 4.5vw;
  }
}
.cms--org__role .role-card {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 18px 0;
  background-color: #fff;
  -webkit-box-shadow: 10px 10px 10px rgb(241, 241, 241);
          box-shadow: 10px 10px 10px rgb(241, 241, 241);
}
@media only screen and (max-width: 767px) {
  .cms--org__role .role-card {
    padding: 2.4vw 0;
  }
}
.cms--org__role .role-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
  width: 480px;
  min-height: 52px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  padding-left: 28px;
  margin-bottom: 30px;
  background-color: #ddd;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--org__role .role-name {
    width: 64vw;
    min-height: 6.9333333333vw;
    padding: 1.3333333333vw;
    padding-left: 3.7333333333vw;
    margin-bottom: 4vw;
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__role .role-name {
    width: 44.4444444444vw;
    min-height: 4.8148148148vw;
    max-width: 100%;
    padding: 0.9259259259vw;
    padding-left: 2.5925925926vw;
    margin-bottom: 0;
    font-size: 2.037037037vw;
  }
}
.cms--org__role .role-name.style--red {
  background-color: #FF7176;
}
.cms--org__role .role-name.style--green {
  background-color: #7BC532;
}
.cms--org__role .role-name.style--violet {
  background-color: #8B83F8;
}
.cms--org__role .role-name.style--yellow {
  background-color: #FFAF47;
}
.cms--org__role .role-name.style--blue {
  background-color: #6BC2F2;
}
.cms--org__role .role-name.style--pink {
  background-color: #E985BD;
}
.cms--org__role .role-name.style--purple {
  background-color: #AF73D1;
}
.cms--org__role .role-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__role .role-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.8518518519vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__role .role-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cms--org__role .role-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  margin-right: 28px;
}
@media only screen and (max-width: 767px) {
  .cms--org__role .role-icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667vw;
            flex: 0 0 16.6666666667vw;
    margin-right: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__role .role-icon {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin: 0;
    margin-bottom: 2.7777777778vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__role .role-icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 11.71875vw;
            flex: 0 0 11.71875vw;
    margin-right: 2.1875vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__role .role-icon {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin: 0;
    margin-bottom: 30px;
  }
}
.cms--org__role .role-icon img {
  width: 150px;
}
@media only screen and (max-width: 767px) {
  .cms--org__role .role-icon img {
    width: 16.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__role .role-icon img {
    width: 13.8888888889vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__role .role-icon img {
    width: 11.71875vw;
  }
}
.cms--org__role .role-conts {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__role .role-conts {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__role .role-conts {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.cms--org__role .role-stnc {
  font-size: 20px;
  font-weight: 500;
  color: #101010;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--org__role .role-stnc {
    font-size: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__role .role-stnc {
    font-size: 1.8518518519vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__role .role-stnc {
    font-size: 1.5625vw;
  }
}
.cms--org__role .role-stnc:before {
  content: "";
  clear: both;
}
.cms--org__role .role-stnc > i {
  float: left;
  margin-right: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__role .role-stnc > i {
    margin-right: 0.9259259259vw;
  }
}
.cms--org__role .role-stnc > span {
  display: block;
  overflow: hidden;
}

.cms--org__funcs > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -30px;
}
.cms--org__funcs > ul > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(16.66% - 1px);
          flex: 1 1 calc(16.66% - 1px);
  width: calc(16.66% - 1px);
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: calc(16.66% - 1px);
      flex-basis: calc(16.66% - 1px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .cms--org__funcs > ul > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.33% - 1px);
            flex: 0 0 calc(33.33% - 1px);
    -ms-flex-positive: 0;
        flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: calc(33.33% - 1px);
        flex-basis: calc(33.33% - 1px);
    width: calc(33.33% - 1px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__funcs > ul > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.33% - 1px);
            flex: 0 0 calc(33.33% - 1px);
    -ms-flex-positive: 0;
        flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: calc(33.33% - 1px);
        flex-basis: calc(33.33% - 1px);
    width: calc(33.33% - 1px);
  }
}
.cms--org__funcs > ul > li ~ li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 1px solid #ccc;
}
.cms--org__funcs > ul > li:nth-child(5n+1) {
  border-left-width: 0;
}
@media only screen and (max-width: 767px) {
  .cms--org__funcs > ul > li:nth-child(5n+1) {
    border-left-width: 1px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__funcs > ul > li:nth-child(5n+1) {
    border-left-width: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .cms--org__funcs > ul > li:nth-child(3n+1) {
    border-left-width: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__funcs > ul > li:nth-child(3n+1) {
    border-left-width: 0;
  }
}
.cms--org__funcs .funcs-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .cms--org__funcs .funcs-icon {
    height: 16vw;
    margin-bottom: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__funcs .funcs-icon {
    height: 13.8888888889vw;
    margin-bottom: 1.8518518519vw;
  }
}
.cms--org__funcs .funcs-icon img {
  max-width: 100%;
  height: 120px;
}
@media only screen and (max-width: 767px) {
  .cms--org__funcs .funcs-icon img {
    height: 16vw;
    max-width: 20vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__funcs .funcs-icon img {
    height: 9.2592592593vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__funcs .funcs-icon img {
    height: 7.8125vw;
  }
}
.cms--org__funcs .funcs-name {
  font-size: 20px;
  font-weight: 600;
  color: #101010;
  text-align: center;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--org__funcs .funcs-name {
    font-size: 3.7333333333vw;
    font-size: 2.2222222222vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__funcs .funcs-name {
    font-size: 2.2222222222vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__funcs .funcs-name {
    font-size: 1.5625vw;
  }
}

.cms--bps {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cms--bps:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
  height: 100%;
  border-left: 2px dashed #707070;
}
@media only screen and (max-width: 767px) {
  .cms--bps:before {
    content: "";
    top: 18.6666666667vw;
    left: 0;
    -webkit-transform: none;
            transform: none;
    width: 0.1333333333vw;
  }
}
.cms--bps .bps-org {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-org {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cms--bps .bps-org:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  border-top: 2px dashed #707070;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-org:before {
    width: 0.1333333333vw;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: none;
    border-left: 0.2666666667vw dashed #ccc;
  }
}
.cms--bps .bps-org .org-circle {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-org .org-circle {
    margin-bottom: 10vw;
  }
}
.cms--bps .bps-org .org-name {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 370px;
  max-height: 370px;
  width: 23.4375vw;
  height: 23.4375vw;
  border-radius: 50%;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-image: url("/resources/img/client/cms/bps/org-background.png");
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-org .org-name {
    width: 37.3333333333vw;
    height: 37.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--bps .bps-org .org-name {
    width: 25.9259259259vw;
    height: 25.9259259259vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--bps .bps-org .org-name {
    width: 28.90625vw;
    height: 28.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-org .org-name:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
    width: 50vw;
    height: 0.2666666667vw;
    border-top: 2px dashed #707070;
  }
}
.cms--bps .bps-org .org-name span {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-org .org-name span {
    font-size: 2.4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--bps .bps-org .org-name span {
    font-size: 1.8518518519vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--bps .bps-org .org-name span {
    font-size: 1.875vw;
  }
}
.cms--bps .bps-org .org-name strong {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-org .org-name strong {
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--bps .bps-org .org-name strong {
    font-size: 2.4074074074vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--bps .bps-org .org-name strong {
    font-size: 2.5vw;
  }
}
.cms--bps .bps-org .org-do {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 450px;
  height: 190px;
  width: 29.6875vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
  border-radius: 20px;
  border: 2px dashed #707070;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-org .org-do {
    width: 100%;
    height: auto;
    width: 60vw;
    padding: 3.7333333333vw;
    border-radius: 2.6666666667vw;
    border-width: 0.2666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--bps .bps-org .org-do {
    width: 29.6296296296vw;
    height: auto;
    min-height: 17.5925925926vw;
    padding: 2.2222222222vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--bps .bps-org .org-do {
    width: 27.34375vw;
    height: auto;
    min-height: 14.84375vw;
    padding: 1.40625vw 2.34375vw;
  }
}
.cms--bps .bps-org .org-do.style--left, .cms--bps .bps-org .org-do.style--right {
  position: absolute;
  top: 50%;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-org .org-do.style--left, .cms--bps .bps-org .org-do.style--right {
    position: relative;
    top: 0;
  }
}
.cms--bps .bps-org .org-do.style--left {
  right: 0%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-org .org-do.style--left {
    right: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.cms--bps .bps-org .org-do.style--right {
  left: 0%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-org .org-do.style--right {
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-org .org-do ~ .org-do {
    margin-top: 5vw;
  }
}
.cms--bps .bps-org .org-do .bps-stnc {
  font-weight: 600;
  color: #101010;
}
.cms--bps .bps-stnc {
  font-size: 20px;
  font-weight: 500;
  color: #707070;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-stnc {
    font-size: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--bps .bps-stnc {
    font-size: 1.8518518519vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--bps .bps-stnc {
    font-size: 1.5625vw;
  }
}
.cms--bps .bps-stnc:before {
  content: "";
  clear: both;
}
.cms--bps .bps-stnc > i {
  float: left;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-stnc > i {
    margin-right: 1.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--bps .bps-stnc > i {
    margin-right: 0.9259259259vw;
  }
}
.cms--bps .bps-stnc > span {
  display: block;
  overflow: hidden;
}
.cms--bps .bps-box {
  position: relative;
  z-index: 1;
  border: 1px solid #ccc;
}
.cms--bps .bps-box .box-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 62px;
  padding: 0 28px;
  background-color: #f4f4f4;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-box .box-head {
    height: 9.0666666667vw;
    padding: 0 3.7333333333vw;
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--bps .bps-box .box-head {
    padding: 0 2.5925925926vw;
    font-size: 1.8518518519vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--bps .bps-box .box-head {
    padding: 0 2.1875vw;
    font-size: 1.71875vw;
  }
}
.cms--bps .bps-box .box-body {
  padding: 28px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-box .box-body {
    padding: 2.6666666667vw 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--bps .bps-box .box-body {
    padding: 1.8518518519vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--bps .bps-box .box-body {
    padding: 2.1875vw;
  }
}
.cms--bps .bps-rows ~ .bps-rows {
  margin-top: 150px;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows ~ .bps-rows {
    margin-top: 20vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--bps .bps-rows ~ .bps-rows {
    margin-top: 13.8888888889vw;
  }
}
.cms--bps .bps-rows.cfy--second {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--second {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cms--bps .bps-rows.cfy--second:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) skewY(-0.01deg);
          transform: translate(-50%, -50%) skewY(-0.01deg);
  width: 200px;
  border-top: 2px dashed #707070;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--second:before {
    top: 0;
    left: 5vw;
    width: 2px;
    height: 100%;
    border-top: none;
    border-left: 2px dashed #707070;
    -webkit-transform: none;
            transform: none;
  }
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--second:after {
    content: "";
    width: 5vw;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-top: 2px dashed #707070;
  }
}
.cms--bps .bps-rows.cfy--second .bps-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 530px;
          flex: 0 0 530px;
  width: 530px;
  max-width: 50%;
  border-color: #1B7ECD;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--second .bps-box {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    max-width: 71.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--bps .bps-rows.cfy--second .bps-box {
    width: 34.2592592593vw;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34.2592592593vw;
            flex: 0 0 34.2592592593vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--bps .bps-rows.cfy--second .bps-box {
    width: 33.59375vw;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.59375vw;
            flex: 0 0 33.59375vw;
  }
}
.cms--bps .bps-rows.cfy--second .bps-box ~ .bps-box {
  margin-left: 180px;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--second .bps-box ~ .bps-box {
    margin-left: 0;
    margin-top: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--bps .bps-rows.cfy--second .bps-box ~ .bps-box {
    margin-left: 16.6666666667vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--bps .bps-rows.cfy--second .bps-box ~ .bps-box {
    margin-left: 14.0625vw;
  }
}
.cms--bps .bps-rows.cfy--second .bps-box .box-head {
  background: rgb(66, 120, 213);
  background: -webkit-gradient(linear, left top, right top, from(rgb(66, 120, 213)), to(rgb(24, 126, 204)));
  background: linear-gradient(90deg, rgb(66, 120, 213) 0%, rgb(24, 126, 204) 100%);
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--second .bps-box:before {
    content: "";
    width: 5vw;
    height: 2px;
    position: absolute;
    top: 50%;
    left: -5vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-top: 2px dashed #707070;
  }
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--second .bps-box:first-child:after, .cms--bps .bps-rows.cfy--second .bps-box:last-child:after {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    width: 9vw;
    height: 50%;
    background-color: #fff;
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--second .bps-box:first-child:after {
    top: -1px;
  }
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--second .bps-box:last-child:after {
    top: inherit;
    bottom: -1px;
  }
}
.cms--bps .bps-rows.cfy--third {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--third {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 10vw;
  }
}
.cms--bps .bps-rows.cfy--third:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -75px;
  left: 50%;
  -webkit-transform: translateX(-50%) skewY(-0.01deg);
          transform: translateX(-50%) skewY(-0.01deg);
  width: 950px;
  border-top: 2px dashed #707070;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--third:before {
    top: 0;
    left: 5vw;
    width: 2px;
    height: 100%;
    border-top: none;
    border-left: 2px dashed #707070;
    -webkit-transform: none;
            transform: none;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--bps .bps-rows.cfy--third:before {
    width: 74.21875vw;
  }
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--third:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 2vw;
    height: 50%;
    background-color: #fff;
  }
}
.cms--bps .bps-rows.cfy--third .bps-box {
  position: relative;
  width: 445px;
  border-color: #47BDD7;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--third .bps-box {
    width: 100%;
    max-width: 71.3333333333vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--bps .bps-rows.cfy--third .bps-box {
    width: 34.765625vw;
  }
}
.cms--bps .bps-rows.cfy--third .bps-box:nth-child(2):before {
  content: none;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--third .bps-box:nth-child(2):before {
    content: "";
    width: 10vw;
    left: -10vw;
  }
}
.cms--bps .bps-rows.cfy--third .bps-box:before {
  content: "";
  position: absolute;
  top: -75px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: 2px dashed #707070;
  height: 75px;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--third .bps-box:before {
    border-left: none;
    width: 5vw;
    height: 2px;
    top: 50%;
    left: -5vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-top: 2px dashed #707070;
  }
}
.cms--bps .bps-rows.cfy--third .bps-box ~ .bps-box {
  margin-left: 60px;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--third .bps-box ~ .bps-box {
    margin-left: 0;
    margin-top: 4.6666666667vw;
  }
}
.cms--bps .bps-rows.cfy--third .bps-box .box-head {
  background: rgb(71, 189, 215);
  background: -webkit-gradient(linear, left top, right top, from(rgb(71, 189, 215)), to(rgb(76, 190, 193)));
  background: linear-gradient(90deg, rgb(71, 189, 215) 0%, rgb(76, 190, 193) 100%);
}
.cms--bps .bps-rows.cfy--third .bps-box:first-child:after, .cms--bps .bps-rows.cfy--third .bps-box:last-child:after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  -webkit-transform: translateY(-100%) skewY(-0.01deg);
          transform: translateY(-100%) skewY(-0.01deg);
  width: 50%;
  height: 77px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--third .bps-box:first-child:after, .cms--bps .bps-rows.cfy--third .bps-box:last-child:after {
    left: -2px;
    width: 9vw;
    height: 50%;
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
}
.cms--bps .bps-rows.cfy--third .bps-box:first-child:after {
  left: -1px;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--third .bps-box:first-child:after {
    top: -1px;
  }
}
.cms--bps .bps-rows.cfy--third .bps-box:last-child:after {
  right: -1px;
}
@media only screen and (max-width: 767px) {
  .cms--bps .bps-rows.cfy--third .bps-box:last-child:after {
    top: inherit;
    bottom: -1px;
  }
}

.cms--training__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .cms--training__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--training__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cms--training__intro .intro__figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 620px;
          flex: 0 0 620px;
  margin-right: 45px;
}
@media only screen and (max-width: 767px) {
  .cms--training__intro .intro__figure {
    display: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--training__intro .intro__figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667vw;
            flex: 0 0 41.6666666667vw;
    margin-right: 4.1666666667Vw;
    -ms-flex: none;
        flex: none;
    margin-right: 0;
    margin-bottom: 2.7777777778vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--training__intro .intro__figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 39.0625vw;
            flex: 0 0 39.0625vw;
  }
}
.cms--training__intro .intro__figure img {
  max-width: 100%;
}
.cms--training__intro .intro__figure-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--training__intro .intro__figure-caption {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cms--training__intro .intro__pragraph {
  width: 100%;
  font-size: 22px;
  font-weight: 500;
  color: #101010;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--training__intro .intro__pragraph {
    margin-bottom: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--training__intro .intro__pragraph {
    margin-bottom: 2.3148148148vw;
    font-size: 2.037037037vw;
  }
}

.cms--traning__ways {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 20px;
  border: 1px solid #CCCCCC;
}
@media only screen and (max-width: 767px) {
  .cms--traning__ways {
    padding: 5.3333333333vw 2.6666666667vw;
    border-width: 0.1333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--traning__ways {
    padding: 3.7037037037vw 1.8518518519vw;
  }
}
.cms--traning__ways .ways__step {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  padding-top: 80px;
  margin-right: 18px;
}
@media only screen and (max-width: 767px) {
  .cms--traning__ways .ways__step {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--traning__ways .ways__step {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.4814814815vw;
            flex: 0 0 6.4814814815vw;
    padding-top: 7.4074074074vw;
    margin-right: 1.6666666667vw;
  }
}
.cms--traning__ways .ways__step .step__year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  width: 100%;
  height: 270px;
  background-color: #f4f4f4;
  font-size: 22px;
  font-weight: 600;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--traning__ways .ways__step .step__year {
    border-radius: 1.8518518519vw;
    height: 25vw;
    font-size: 2.037037037vw;
  }
}
.cms--traning__ways .ways__step .step__year ~ .step__year {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--traning__ways .ways__step .step__year ~ .step__year {
    margin-top: 1.8518518519vw;
  }
}
.cms--traning__ways .ways__step .step__year.style--01 {
  background-color: #BFC6D2;
  color: #fff;
}
.cms--traning__ways .ways__step .step__year.style--02 {
  background-color: #848D99;
  color: #fff;
}
.cms--traning__ways .ways__step .step__year.style--03 {
  background-color: #474C54;
  color: #fff;
}
.cms--traning__ways .ways__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .cms--traning__ways .ways__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cms--traning__ways .ways__contents .ways__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.33% - 20px);
          flex: 0 0 calc(33.33% - 20px);
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(33.33% - 20px);
      flex-basis: calc(33.33% - 20px);
  width: calc(33.33% - 20px);
}
@media only screen and (max-width: 767px) {
  .cms--traning__ways .ways__contents .ways__item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.cms--traning__ways .ways__contents .ways__item ~ .ways__item {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .cms--traning__ways .ways__contents .ways__item ~ .ways__item {
    margin-left: 0;
    margin-top: 8vw;
  }
}
.cms--traning__ways .ways__contents .ways__item .item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 62px;
  margin-bottom: 18px;
  background-color: #f4f4f4;
  border-radius: 20px;
  font-size: 22px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .cms--traning__ways .ways__contents .ways__item .item__title {
    width: 90%;
    height: 9.0666666667vw;
    margin: 0 auto;
    margin-bottom: 2vw;
    border-radius: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--traning__ways .ways__contents .ways__item .item__title {
    height: 5.7407407407vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 1.6666666667vw;
    border-radius: 1.8518518519vw;
    margin-bottom: 1.6666666667vw;
    font-size: 2.037037037vw;
    word-break: keep-all;
    line-height: 1.2;
    text-align: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--traning__ways .ways__contents .ways__item .item__title {
    font-size: 1.71875vw;
  }
}
.cms--traning__ways .ways__contents .ways__item .item__title.style--01 {
  background-color: #2BAEF9;
  color: #fff;
}
.cms--traning__ways .ways__contents .ways__item .item__title.style--02 {
  background-color: #346EC2;
  color: #fff;
}
.cms--traning__ways .ways__contents .ways__item .item__title.style--03 {
  background-color: #723DCE;
  color: #fff;
}
.cms--traning__ways .ways__contents .ways__item .item__contents .item__box {
  width: 100%;
  height: 270px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 18px 0 18px;
  border-radius: 20px;
  border: 1px solid #CCCCCC;
}
@media only screen and (max-width: 767px) {
  .cms--traning__ways .ways__contents .ways__item .item__contents .item__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    padding: 3.7333333333vw;
    border-width: 0.1333333333vw;
    border-radius: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--traning__ways .ways__contents .ways__item .item__contents .item__box {
    height: 25vw;
    padding: 1.8518518519vw 1.6666666667vw 0 1.6666666667vw;
    border-radius: 1.8518518519vw;
  }
}
.cms--traning__ways .ways__contents .ways__item .item__contents .item__box ~ .item__box {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .cms--traning__ways .ways__contents .ways__item .item__contents .item__box ~ .item__box {
    margin-top: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--traning__ways .ways__contents .ways__item .item__contents .item__box ~ .item__box {
    margin-top: 1.8518518519vw;
  }
}
.cms--traning__ways .ways__contents .ways__item .item__contents .item__stnc {
  font-size: 20px;
  font-weight: 500;
  color: #101010;
  word-break: keep-all;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .cms--traning__ways .ways__contents .ways__item .item__contents .item__stnc {
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--traning__ways .ways__contents .ways__item .item__contents .item__stnc {
    font-size: 1.8518518519vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--traning__ways .ways__contents .ways__item .item__contents .item__stnc {
    font-size: 1.5625vw;
  }
}
.cms--traning__ways .ways__contents .ways__item .item__contents .item__stnc:before {
  content: "";
  clear: both;
}
.cms--traning__ways .ways__contents .ways__item .item__contents .item__stnc > i {
  float: left;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .cms--traning__ways .ways__contents .ways__item .item__contents .item__stnc > i {
    margin-right: 1.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--traning__ways .ways__contents .ways__item .item__contents .item__stnc > i {
    margin-right: 0.9259259259vw;
  }
}
.cms--traning__ways .ways__contents .ways__item .item__contents .item__stnc > span {
  display: block;
  overflow: hidden;
}
.cms--traning__ways .ways__contents .ways__item .item__contents .item__stnc ~ .item__stnc {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .cms--traning__ways .ways__contents .ways__item .item__contents .item__stnc ~ .item__stnc {
    margin-top: 1.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--traning__ways .ways__contents .ways__item .item__contents .item__stnc ~ .item__stnc {
    margin-top: 0.9259259259vw;
  }
}
.cms--traning__ways .ways__contents .ways__item .item__contents .item__year {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12.6666666667vw;
          flex: 0 0 12.6666666667vw;
  width: 12.6666666667vw;
  height: 6.4vw;
  margin-right: 2.6666666667vw;
  border-radius: 0.6666666667vw;
  background-color: #f4f4f4;
  font-size: 2.9333333333vw;
  font-weight: 600;
  white-space: nowrap;
}
.cms--traning__ways .ways__contents .ways__item .item__contents .item__year.style--01 {
  background-color: #BFC6D2;
  color: #fff;
}
.cms--traning__ways .ways__contents .ways__item .item__contents .item__year.style--02 {
  background-color: #848D99;
  color: #fff;
}
.cms--traning__ways .ways__contents .ways__item .item__contents .item__year.style--03 {
  background-color: #474C54;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .cms--traning__ways .ways__contents .ways__item .item__contents .item__year {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.cms--traning__ways .ways__contents .ways__item .item__contents .item__stnc-group {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.cms--support__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .cms--support__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--support__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cms--support__intro .intro__figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 620px;
          flex: 0 0 620px;
  margin-right: 45px;
}
@media only screen and (max-width: 767px) {
  .cms--support__intro .intro__figure {
    display: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--support__intro .intro__figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667vw;
            flex: 0 0 41.6666666667vw;
    margin-right: 4.1666666667Vw;
    -ms-flex: none;
        flex: none;
    margin-right: 0;
    margin-bottom: 2.7777777778vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--support__intro .intro__figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 39.0625vw;
            flex: 0 0 39.0625vw;
  }
}
.cms--support__intro .intro__figure img {
  max-width: 100%;
}
.cms--support__intro .intro__figure-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--support__intro .intro__figure-caption {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cms--support__intro .intro__pragraph {
  width: 100%;
  font-size: 22px;
  font-weight: 500;
  color: #101010;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--support__intro .intro__pragraph {
    margin-bottom: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--support__intro .intro__pragraph {
    margin-bottom: 2.3148148148vw;
    font-size: 2.037037037vw;
  }
}

.cms--support__diagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 20px;
  border: 1px solid #CCCCCC;
}
@media only screen and (max-width: 767px) {
  .cms--support__diagram {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5.3333333333vw 2.6666666667vw;
    border-width: 0.1333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--support__diagram {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3.7037037037vw 1.8518518519vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--support__diagram {
    padding: 80px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cms--support__diagram img {
  max-width: calc(50% - 20px);
  width: 693px;
}
@media only screen and (max-width: 767px) {
  .cms--support__diagram img {
    max-width: none;
    width: 86.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--support__diagram img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--support__diagram img {
    max-width: 100%;
  }
}
.cms--support__diagram img ~ img {
  margin-left: -20px;
}
@media only screen and (max-width: 767px) {
  .cms--support__diagram img ~ img {
    margin-left: 0;
    margin-top: 4Vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--support__diagram img ~ img {
    margin-left: 0;
    margin-top: 5.5555555556Vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--support__diagram img ~ img {
    margin-left: 0;
    margin-top: 6.25Vw;
  }
}

.cms--build__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .cms--build__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--build__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cms--build__intro .intro__figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 620px;
          flex: 0 0 620px;
  margin-right: 45px;
}
@media only screen and (max-width: 767px) {
  .cms--build__intro .intro__figure {
    display: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--build__intro .intro__figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667vw;
            flex: 0 0 41.6666666667vw;
    margin-right: 4.1666666667Vw;
    -ms-flex: none;
        flex: none;
    margin-right: 0;
    margin-bottom: 2.7777777778vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--build__intro .intro__figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 39.0625vw;
            flex: 0 0 39.0625vw;
  }
}
.cms--build__intro .intro__figure img {
  max-width: 100%;
}
.cms--build__intro .intro__figure-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--build__intro .intro__figure-caption {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cms--build__intro .intro__pragraph {
  font-size: 22px;
  font-weight: 500;
  color: #101010;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--build__intro .intro__pragraph {
    margin-bottom: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--build__intro .intro__pragraph {
    margin-bottom: 2.3148148148vw;
    font-size: 2.037037037vw;
  }
}

.cms--build__equ-images {
  border: 1px solid #CCCCCC;
  padding: 48px;
}
@media only screen and (max-width: 767px) {
  .cms--build__equ-images {
    padding: 0;
    border: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--build__equ-images {
    padding: 4.4444444444vw;
  }
}
.cms--build__equ-images > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -90px 0 0 -20px;
}
@media only screen and (max-width: 767px) {
  .cms--build__equ-images > ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: -5.3333333333vw 0 0 -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--build__equ-images > ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: -3.7037037037vw 0 0 -20px;
  }
}
.cms--build__equ-images > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 20px);
          flex: 0 0 calc(25% - 20px);
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(25% - 20px);
      flex-basis: calc(25% - 20px);
  margin: 90px 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .cms--build__equ-images > ul > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 20px);
            flex: 0 0 calc(50% - 20px);
    -ms-flex-positive: 0;
        flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    margin: 5.3333333333vw 0 0 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--build__equ-images > ul > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33% - 20px);
            flex: 0 0 calc(33% - 20px);
    -ms-flex-positive: 0;
        flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: calc(33% - 20px);
        flex-basis: calc(33% - 20px);
    margin: 3.7037037037vw 0 0 20px;
  }
}
.cms--build__equ-images .figure-image {
  margin-bottom: 10px;
}
.cms--build__equ-images .figure-image img {
  max-width: 100%;
}
.cms--build__equ-images .figure-caption {
  font-size: 17px;
  font-weight: 600;
  color: #101010;
  word-break: keep-all;
}
.cms--build__equ-images .figure-caption:after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (max-width: 767px) {
  .cms--build__equ-images .figure-caption {
    font-size: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--build__equ-images .figure-caption {
    font-size: 1.8518518519vw;
  }
}
.cms--build__equ-images .figure-caption .figure-org {
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 8px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .cms--build__equ-images .figure-caption .figure-org {
    height: 5.0666666667vw;
    padding: 0 1.0666666667vw;
    border-radius: 0.6666666667vw;
    border-width: 0.1333333333vw;
    margin-right: 1.3333333333Vw;
  }
}
.cms--build__equ-images .figure-caption .figure-org.style--blue {
  color: #1079CA;
  border-color: #1079CA;
}
.cms--build__equ-images .figure-caption .figure-org.style--purple {
  color: #7910CA;
  border-color: #7910CA;
}
.cms--build__equ-images .figure-caption .figure-name {
  display: block;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .cms--build__equ-images .figure-caption .figure-name {
    padding-top: 0.6666666667vw;
  }
}

.cms--effect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .cms--effect {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--effect {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.cms--effect .effect__diagram {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 470px;
          flex: 0 0 470px;
  margin-right: 80px;
}
@media only screen and (max-width: 767px) {
  .cms--effect .effect__diagram {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--effect .effect__diagram {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin: 0;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--effect .effect__diagram {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 36.71875vw;
            flex: 0 0 36.71875vw;
    margin-right: 3.90625vw;
  }
}
.cms--effect .effect__list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}
.cms--effect .effect__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cms--effect .effect__item:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 1px;
  background-color: #707070;
  -webkit-transform: translateY(-50%) skewY(-0.01deg);
          transform: translateY(-50%) skewY(-0.01deg);
}
.cms--effect .effect__item ~ .effect__item {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .cms--effect .effect__item ~ .effect__item {
    margin-top: 5.3333333333Vw;
  }
}
.cms--effect .effect__item .item__title,
.cms--effect .effect__item .item__contents {
  position: relative;
  z-index: 1;
}
.cms--effect .effect__item .item__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
}
@media only screen and (max-width: 767px) {
  .cms--effect .effect__item .item__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24vw;
            flex: 0 0 24vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: 5.3333333333vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--effect .effect__item .item__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.0625vw;
            flex: 0 0 14.0625vw;
  }
}
.cms--effect .effect__item .item__title .title__image {
  display: inline-block;
  background-color: #fff;
}
.cms--effect .effect__item .item__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px 45px;
  border-radius: 20px;
  background-color: #F9F9F9;
}
@media only screen and (max-width: 767px) {
  .cms--effect .effect__item .item__contents {
    padding: 3.3333333333vw 4vw;
    border-radius: 2.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--effect .effect__item .item__contents {
    padding: 3.3333333333vw 6vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--effect .effect__item .item__contents {
    padding: 1.953125vw 3.515625vw;
  }
}
.cms--effect .effect__item .item__stnc {
  font-size: 22px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .cms--effect .effect__item .item__stnc {
    font-size: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--effect .effect__item .item__stnc {
    font-size: 2.037037037vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--effect .effect__item .item__stnc {
    font-size: 1.71875vw;
  }
}
.cms--effect .effect__item .item__stnc ~ .item__stnc {
  margin-top: 5px;
}
.cms--effect .effect__item .item__stnc ~ .item__stnc.style--indent {
  margin-top: 0;
}
.cms--effect .effect__item .item__stnc:after {
  content: "";
  display: block;
  clear: both;
}
.cms--effect .effect__item .item__stnc i {
  float: left;
  margin-right: 5px;
}
.cms--effect .effect__item .item__stnc span {
  display: block;
  overflow: hidden;
}
.cms--effect .effect__item .item__stnc.style--indent {
  padding-left: 15px;
}
@media only screen and (max-width: 767px) {
  .cms--effect .effect__item .item__stnc.style--indent {
    padding-left: 2vw;
  }
}

.cms--platform__intro .intro__image {
  margin: 60px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .cms--platform__intro .intro__image {
    margin: 8vw 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--platform__intro .intro__image {
    margin: 5.5555555556vw 0;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--platform__intro .intro__image {
    margin: 4.6875vw 0;
  }
}
.cms--platform__intro .intro__image img {
  max-width: 100%;
}
.cms--platform__intro .intro__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 140px;
  background-color: #ECF0F5;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 600;
  color: #101010;
  text-align: center;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--platform__intro .intro__text {
    height: 18.6666666667vw;
    border-radius: 6.6666666667vw;
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--platform__intro .intro__text {
    height: 12.962962963vw;
    border-radius: 4.6296296296vw;
    font-size: 2.037037037vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--platform__intro .intro__text {
    font-size: 1.875vw;
  }
}

.cms--platform__detail > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .cms--platform__detail > ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: -8vw;
  }
}
.cms--platform__detail > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .cms--platform__detail > ul > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
    margin-top: 8vw;
  }
}
.cms--platform__detail > ul > li ~ li {
  position: relative;
}
.cms--platform__detail > ul > li ~ li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 2px dashed #ccc;
}
@media only screen and (max-width: 767px) {
  .cms--platform__detail > ul > li ~ li:before {
    width: 0.2666666667Vw;
    border-left-width: 0.2666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .cms--platform__detail > ul > li:nth-child(2n+1):before {
    content: none;
  }
}
.cms--platform__detail .item__image {
  height: 160px;
  text-align: center;
}
.cms--platform__detail .item__image img {
  max-width: 100%;
}
.cms--platform__detail .item__title {
  font-size: 24px;
  font-weight: 600;
  color: #101010;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .cms--platform__detail .item__title {
    font-size: 3.2Vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--platform__detail .item__title {
    font-size: 2.037037037vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--platform__detail .item__title {
    font-size: 1.875vw;
  }
}
.cms--platform__detail .item__contents {
  margin-top: 30px;
  padding: 0 40px 0 20px;
}
@media only screen and (max-width: 767px) {
  .cms--platform__detail .item__contents {
    margin-top: 4vw;
    padding: 0 2.4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--platform__detail .item__contents {
    padding: 0 1.6666666667vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--platform__detail .item__contents {
    margin-top: 2.34375vw;
    padding: 0 3.125vw 0 1.5625vw;
  }
}
.cms--platform__detail .item__stnc {
  font-size: 22px;
  font-weight: 500;
  color: #707070;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--platform__detail .item__stnc {
    font-size: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--platform__detail .item__stnc {
    font-size: 1.8518518519vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--platform__detail .item__stnc {
    font-size: 1.71875vw;
  }
}
.cms--platform__detail .item__stnc:after {
  content: "";
  display: block;
  clear: both;
}
.cms--platform__detail .item__stnc i {
  float: left;
  margin-right: 5px;
}
.cms--platform__detail .item__stnc span {
  display: block;
  overflow: hidden;
}

.cms--org__eav .figure {
  margin: 60px 0 70px 0;
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .figure {
    margin: 4vw 0 4vw 0;
  }
}
.cms--org__eav .figure img {
  max-width: 100%;
}
.cms--org__eav .figure-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .figure-caption {
    display: block;
    word-break: keep-all;
    font-size: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__eav .figure-caption {
    display: block;
    word-break: keep-all;
    font-size: 2.037037037vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__eav .figure-caption {
    display: block;
    word-break: keep-all;
    font-size: 1.71875vw;
  }
}
.cms--org__eav .diagram {
  margin-top: 80px;
  padding: 75px;
  text-align: center;
  background-color: #ECF0F5;
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .diagram {
    position: relative;
    margin-top: 6.6666666667vw;
    padding: 6vw 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__eav .diagram {
    padding: 2.3148148148vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__eav .diagram {
    padding: 5.859375vw;
  }
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .diagram > * {
    position: relative;
    z-index: 1;
  }
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .diagram:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #ECF0F5;
  }
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .diagram img {
    display: none;
  }
}
.cms--org__eav .diagram img.cfy--mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .diagram img.cfy--mobile {
    display: inline;
  }
}
.cms--org__eav .diagram .mobile-text {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 5.3333333333vw;
  overflow: hidden;
  border: 0.1333333333vw solid #ccc;
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .diagram .mobile-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.cms--org__eav .diagram .mobile-text li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background-color: #fff;
}
.cms--org__eav .diagram .mobile-text li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 13.3333333333vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 4vw;
  border: 0.1333333333vw solid #ccc;
  font-size: 2.9333333333vw;
  font-weight: 500;
  word-break: keep-all;
}
.cms--org__eav .center__intro {
  font-size: 22px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .center__intro {
    font-size: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__eav .center__intro {
    font-size: 2.037037037vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__eav .center__intro {
    font-size: 1.71875vw;
  }
}
.cms--org__eav .center__tech {
  margin: 60px 0;
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .center__tech {
    margin: 8vw 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__eav .center__tech {
    margin: 5.5555555556vw 0;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__eav .center__tech {
    margin: 4.6875vw 0;
  }
}
.cms--org__eav .center__tech > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -20px;
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .center__tech > ul {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
  }
}
.cms--org__eav .center__tech > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 20px);
          flex: 0 0 calc(25% - 20px);
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(25% - 20px);
      flex-basis: calc(25% - 20px);
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .center__tech > ul > li {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .center__tech > ul > li ~ li {
    margin-top: 6vw;
  }
}
.cms--org__eav .center__tech .order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background-color: #45ADDF;
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .center__tech .order {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 9.7333333333vw;
            flex: 0 0 9.7333333333vw;
    width: 9.7333333333vw;
    height: 9.7333333333Vw;
    margin-right: 10.6666666667vw;
    font-size: 2.8vw;
  }
}
.cms--org__eav .center__tech .tech-name {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 110px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 30px;
  margin-top: 95px;
  border: 2px solid #45ADDF;
  border-radius: 20px;
  font-size: 22px;
  font-weight: 500;
  color: #101010;
  word-break: keep-all;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .center__tech .tech-name {
    height: auto;
    padding: 3.7333333333vw;
    border-width: 0.2666666667vw;
    font-size: 2.9333333333vw;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--org__eav .center__tech .tech-name {
    height: 14.8148148148vw;
    padding: 0 2.7777777778vw;
    font-size: 2.037037037vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--org__eav .center__tech .tech-name {
    font-size: 1.71875vw;
  }
}
.cms--org__eav .center__tech .tech-name:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  width: 1px;
  height: 65px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: -20px;
  border-left: 2px dashed #ccc;
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .center__tech .tech-name:before {
    top: 50%;
    left: 0;
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
    border-left: 0;
    width: 8vw;
    height: 0.2666666667vw;
    margin-top: 0;
    margin-left: -1.3333333333vw;
    border-top: 0.2666666667vw dashed #ccc;
  }
}
.cms--org__eav .center__tech-images > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -20px 0 0 -20px;
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .center__tech-images > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: -20px 0 0 0;
  }
}
.cms--org__eav .center__tech-images > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 20px);
          flex: 0 0 calc(50% - 20px);
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - 20px);
      flex-basis: calc(50% - 20px);
  margin: 20px 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .cms--org__eav .center__tech-images > ul > li {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin: 20px 0 0 0;
  }
}
.cms--org__eav .center__tech-images > ul > li img {
  max-width: 100%;
}

.cms--outline .outline__vsp > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -35px;
}
@media only screen and (max-width: 767px) {
  .cms--outline .outline__vsp > ul {
    display: block;
    margin-left: 0;
  }
}
.cms--outline .outline__vsp > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.33% - 35px);
          flex: 0 0 calc(33.33% - 35px);
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(33.33% - 35px);
      flex-basis: calc(33.33% - 35px);
  width: calc(33.33% - 35px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 35px;
}
@media only screen and (max-width: 767px) {
  .cms--outline .outline__vsp > ul > li {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .cms--outline .outline__vsp > ul > li ~ li {
    margin-top: 4Vw;
  }
}
@media only screen and (max-width: 767px) {
  .cms--outline .outline__vsp > ul > li:last-child .vsp__text:after {
    content: "";
    position: absolute;
    left: -5.3333333333vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 14.6666666667vw;
    border-left: 2px dashed #ccc;
  }
}
.cms--outline .outline__vsp .vsp__image {
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .cms--outline .outline__vsp .vsp__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26.6666666667vw;
            flex: 0 0 26.6666666667vw;
    margin-right: 12vw;
  }
}
@media only screen and (max-width: 767px) {
  .cms--outline .outline__vsp .vsp__image img {
    width: 26.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .outline__vsp .vsp__image img {
    width: 23.3333333333vw;
  }
}
.cms--outline .outline__vsp .vsp__text {
  position: relative;
  width: 100%;
  margin-top: 135px;
}
@media only screen and (max-width: 767px) {
  .cms--outline .outline__vsp .vsp__text {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .outline__vsp .vsp__text {
    margin-top: 12.5vw;
  }
}
.cms--outline .outline__vsp .vsp__text:before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  width: 1px;
  height: 95px;
  border-left: 2px dashed #ccc;
}
@media only screen and (max-width: 767px) {
  .cms--outline .outline__vsp .vsp__text:before {
    width: 4.6666666667vw;
    height: 1px;
    border-left: 0;
    border-top: 2px dashed #ccc;
    top: 50%;
    left: -6Vw;
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .outline__vsp .vsp__text:before {
    top: -2.3148148148vw;
    height: 8.7962962963vw;
  }
}
.cms--outline .outline__vsp .vsp__text > p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 18px;
  border-radius: 70px;
  background-color: #F8F8F8;
  font-size: 22px;
  font-weight: 500;
  color: #101010;
  text-align: center;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--outline .outline__vsp .vsp__text > p {
    min-height: 10.6666666667Vw;
    padding: 1.3333333333Vw 2.4Vw;
    border-radius: 9.3333333333vw;
    font-size: 2.9333333333Vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .outline__vsp .vsp__text > p {
    min-height: 7.4074074074vw;
    padding: 0.9259259259vw 1.6666666667vw;
    border-radius: 6.4814814815vw;
    font-size: 2.037037037vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .outline__vsp .vsp__text > p {
    font-size: 1.71875vw;
  }
}
.cms--outline .outline__vsp .vsp__text > p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  width: 1px;
  height: 30px;
  border-left: 2px dashed #ccc;
}
@media only screen and (max-width: 767px) {
  .cms--outline .outline__vsp .vsp__text > p:before {
    width: 4.6666666667vw;
    height: 1px;
    left: 0;
    top: 50%;
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
    border-left: none;
    border-top: 2px dashed #ccc;
  }
}
.cms--outline .outline__vsp .vsp__text > p:first-child:before {
  content: none;
}
@media only screen and (max-width: 767px) {
  .cms--outline .outline__vsp .vsp__text > p:first-child:before {
    content: "";
  }
}
.cms--outline .outline__vsp .vsp__text > p ~ p {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .cms--outline .outline__vsp .vsp__text > p ~ p {
    margin-top: 4vw;
  }
}
.cms--outline .ouline__env {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cms--outline .ouline__env {
    margin-top: 8vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .ouline__env {
    margin-top: 5.5555555556vw;
  }
}
.cms--outline .ouline__env .env__diagram img {
  width: 585px;
}
@media only screen and (max-width: 767px) {
  .cms--outline .ouline__env .env__diagram img {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .ouline__env .env__diagram img {
    display: none;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .ouline__env .env__diagram img {
    width: 45.703125vw;
  }
}
.cms--outline .ouline__env .env__diagram .diagram__mobile-text {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--outline .ouline__env .env__diagram .diagram__mobile-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 4.2666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .ouline__env .env__diagram .diagram__mobile-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 2.962962963vw;
    margin-bottom: 1.8518518519vw;
  }
}
.cms--outline .ouline__env .env__diagram .diagram__mobile-text:before {
  content: "";
  width: 10px;
  height: 30px;
  background-color: #1079CA;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .cms--outline .ouline__env .env__diagram .diagram__mobile-text:before {
    width: 1.3333333333vw;
    height: 4vw;
    margin-right: 2vw;
    margin-top: 1.1vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .ouline__env .env__diagram .diagram__mobile-text:before {
    width: 0.9259259259vw;
    height: 2.7777777778vw;
    margin-right: 1.3888888889vw;
  }
}
.cms--outline .ouline__env .env__item {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .cms--outline .ouline__env .env__item {
    position: relative;
    top: inherit !important;
    left: inherit !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .ouline__env .env__item {
    position: relative;
    top: inherit !important;
    left: inherit !important;
  }
}
@media only screen and (max-width: 767px) {
  .cms--outline .ouline__env .env__item ~ .env__item {
    margin-top: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .ouline__env .env__item ~ .env__item {
    margin-top: 2.7777777778vw;
  }
}
.cms--outline .ouline__env .env__item .item__box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 665px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 20px 20px 100px;
  border-radius: 30px;
  background-repeat: no-repeat;
  background-position: top 50% right 55px;
}
@media only screen and (max-width: 767px) {
  .cms--outline .ouline__env .env__item .item__box {
    width: 100%;
    height: auto !important;
    min-height: 32vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 6.4vw;
    background-position: top 50% right 7.3333333333vw;
    background-size: 20vw 20vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .ouline__env .env__item .item__box {
    width: 100%;
    height: auto !important;
    min-height: 22.2222222222vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 4.4444444444vw;
    background-position: top 50% right 5.0925925926vw;
    background-size: 13.8888888889vw 13.8888888889vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .ouline__env .env__item .item__box {
    width: 47.265625vw;
    padding: 1.5625vw 1.5625vw 1.5625vw 7.8125vw;
    background-position: top 50% right 4.296875vw;
    background-size: 11.71875vw 11.71875vw;
  }
}
.cms--outline .ouline__env .env__item .item__order {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
@media only screen and (max-width: 767px) {
  .cms--outline .ouline__env .env__item .item__order {
    position: relative;
    -webkit-transform: none;
            transform: none;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10.6666666667vw;
            flex: 0 0 10.6666666667vw;
    margin-right: 5.3333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .ouline__env .env__item .item__order {
    position: relative;
    -webkit-transform: none;
            transform: none;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7.4074074074vw;
            flex: 0 0 7.4074074074vw;
    margin-right: 3.7037037037vw;
  }
}
.cms--outline .ouline__env .env__item .item__order .order__circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: #48BED0;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 23px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .cms--outline .ouline__env .env__item .item__order .order__circle {
    width: 10.1333333333vw;
    height: 10.1333333333vw;
    font-size: 3.0666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .ouline__env .env__item .item__order .order__circle {
    width: 7.037037037vw;
    height: 7.037037037vw;
    font-size: 2.1296296296vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .ouline__env .env__item .item__order .order__circle {
    width: 76/12.8;
    height: 76/12.8;
  }
}
.cms--outline .ouline__env .env__item .item__config {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.cms--outline .ouline__env .env__item .item__title {
  font-size: 24px;
  font-weight: 600;
  color: #101010;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .cms--outline .ouline__env .env__item .item__title {
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .ouline__env .env__item .item__title {
    font-size: 2.2222222222vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .ouline__env .env__item .item__title {
    font-size: 1.875vw;
  }
}
.cms--outline .ouline__env .env__item .item__contents {
  margin-top: 10px;
}
.cms--outline .ouline__env .env__item .item__stnc {
  font-size: 16px;
  font-weight: 500;
  color: #3d3d3d;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--outline .ouline__env .env__item .item__stnc {
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .ouline__env .env__item .item__stnc {
    font-size: 1.8518518519vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .ouline__env .env__item .item__stnc {
    font-size: 1.25vw;
  }
}
.cms--outline .ouline__env .env__item .item__stnc ~ .item__stnc {
  margin-top: 5px;
}
.cms--outline .ouline__env .env__item .item__stnc:before {
  content: "";
  clear: both;
}
.cms--outline .ouline__env .env__item .item__stnc > i {
  float: left;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .cms--outline .ouline__env .env__item .item__stnc > i {
    margin-right: 0.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--outline .ouline__env .env__item .item__stnc > i {
    margin-right: 0.462962963vw;
  }
}
.cms--outline .ouline__env .env__item .item__stnc > span {
  display: block;
  overflow: hidden;
}
.cms--outline .ouline__env .env__item:nth-child(1) {
  top: 230px;
  left: 490px;
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .ouline__env .env__item:nth-child(1) {
    top: 17.96875vw;
    left: 38.28125vw;
  }
}
.cms--outline .ouline__env .env__item:nth-child(1) .item__order .order__circle {
  background-color: #48BED0;
}
.cms--outline .ouline__env .env__item:nth-child(1) .item__box {
  height: 275px;
  background-color: #EEFEFF;
  background-image: url("/resources/img/client/cms/bo/task/icon--01.svg");
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .ouline__env .env__item:nth-child(1) .item__box {
    height: 21.484375vw;
  }
}
.cms--outline .ouline__env .env__item:nth-child(2) {
  top: 525px;
  left: 580px;
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .ouline__env .env__item:nth-child(2) {
    top: 41.015625vw;
    left: 45.3125vw;
  }
}
.cms--outline .ouline__env .env__item:nth-child(2) .item__order .order__circle {
  background-color: #47B9D5;
}
.cms--outline .ouline__env .env__item:nth-child(2) .item__box {
  height: 240px;
  background-color: #EDFAFF;
  background-image: url("/resources/img/client/cms/bo/task/icon--02.svg");
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .ouline__env .env__item:nth-child(2) .item__box {
    height: 18.75vw;
  }
}
.cms--outline .ouline__env .env__item:nth-child(3) {
  top: 785px;
  left: 550px;
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .ouline__env .env__item:nth-child(3) {
    top: 61.328125vw;
    left: 42.96875vw;
  }
}
.cms--outline .ouline__env .env__item:nth-child(3) .item__order .order__circle {
  background-color: #46B1DC;
}
.cms--outline .ouline__env .env__item:nth-child(3) .item__box {
  height: 230px;
  background-color: #F1FDFE;
  background-image: url("/resources/img/client/cms/bo/task/icon--03.svg");
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .ouline__env .env__item:nth-child(3) .item__box {
    height: 17.96875vw;
  }
}
.cms--outline .ouline__env .env__item:nth-child(4) {
  top: 1050px;
  left: 420px;
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .ouline__env .env__item:nth-child(4) {
    top: 82.03125vw;
    left: 32.8125vw;
  }
}
.cms--outline .ouline__env .env__item:nth-child(4) .item__order .order__circle {
  background-color: #45ADDF;
}
.cms--outline .ouline__env .env__item:nth-child(4) .item__box {
  height: 245px;
  background-color: #EDFAFF;
  background-image: url("/resources/img/client/cms/bo/task/icon--04.svg");
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--outline .ouline__env .env__item:nth-child(4) .item__box {
    height: 19.140625vw;
  }
}

.cms--strategy {
  overflow: hidden;
}
.cms--strategy .strategy-image {
  text-align: center;
}
.cms--strategy .strategy-image img {
  max-width: 100%;
}
.cms--strategy .strategy-slogan {
  position: relative;
  margin-top: 35px;
  padding-bottom: 40px;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-slogan {
    margin-top: 4.6666666667vw;
    padding-bottom: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-slogan {
    margin-top: 3.2407407407vw;
    padding-bottom: 3.7037037037vw;
    font-size: 2.962962963vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--strategy .strategy-slogan {
    margin-top: 2.734375vw;
    padding-bottom: 3.125vw;
    font-size: 2.5vw;
  }
}
.cms--strategy .strategy-slogan:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 920px;
  height: 1px;
  background-color: #396FD1;
  max-width: 70%;
}
.cms--strategy .strategy-task .task-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cms--strategy .strategy-task .task-box ~ .task-box {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-task .task-box ~ .task-box {
    margin-top: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-task .task-box ~ .task-box {
    margin-top: 2.7777777778vw;
  }
}
.cms--strategy .strategy-task .task-box .box-icon {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  margin-right: 180px;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-task .task-box .box-icon {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-task .task-box .box-icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 13.8888888889vw;
            flex: 0 0 13.8888888889vw;
    margin-right: 13.8888888889vw;
  }
}
.cms--strategy .strategy-task .task-box .box-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  width: 180px;
  height: 1px;
  border-top: 2px dashed #ccc;
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-task .task-box .box-icon:before {
    width: 13.8888888889vw;
  }
}
.cms--strategy .strategy-task .task-box .box-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 230px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px 60px;
  background-color: #F9F9F9;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-task .task-box .box-contents {
    height: auto;
    min-height: 30.6666666667vw;
    padding: 6.6666666667vw;
    background-color: #f9f9f9;
    background-image: url("/resources/img/client/cms/bo/strategy/task--01--mobile.svg");
    background-repeat: no-repeat;
    background-position: right 4vw top 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-task .task-box .box-contents {
    height: auto;
    min-height: 21.2962962963vw;
    padding: 4.6296296296vw;
  }
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-task .task-box:nth-child(1) .box-contents {
    background-color: #f9f9f9;
    background-image: url("/resources/img/client/cms/bo/strategy/task--01--mobile.svg");
    background-repeat: no-repeat;
    background-position: right 4vw top 50%;
  }
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-task .task-box:nth-child(2) .box-contents {
    background-color: #f9f9f9;
    background-image: url("/resources/img/client/cms/bo/strategy/task--02--mobile.svg");
    background-repeat: no-repeat;
    background-position: right 4vw top 50%;
  }
}
.cms--strategy .strategy-task .task-title {
  display: block;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
  color: #101010;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-task .task-title {
    margin-bottom: 2vw;
    font-size: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-task .task-title {
    font-size: 2.2222222222vw;
  }
}
.cms--strategy .strategy-task .task-stnc {
  font-size: 18px;
  font-weight: 500;
  color: #707070;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-task .task-stnc {
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-task .task-stnc {
    font-size: 1.8518518519vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--strategy .strategy-task .task-stnc {
    font-size: 1.40625pxvw;
  }
}
.cms--strategy .strategy-task .task-stnc ~ .item__stnc {
  margin-top: 5px;
}
.cms--strategy .strategy-task .task-stnc:before {
  content: "";
  clear: both;
}
.cms--strategy .strategy-task .task-stnc > i {
  float: left;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-task .task-stnc > i {
    margin-right: 0.6666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-task .task-stnc > i {
    margin-right: 0.462962963vw;
  }
}
.cms--strategy .strategy-task .task-stnc > span {
  display: block;
  overflow: hidden;
}
.cms--strategy .strategy-process {
  margin-top: 130px;
  padding: 95px 28px;
  background-color: #F6FCFD;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-process {
    margin-top: 8.6666666667vw;
    padding: 6vw 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-process {
    margin-top: 12.037037037vw;
    padding: 8.7962962963vw 2.5925925926vw;
  }
}
.cms--strategy .strategy-process .process-title {
  margin-bottom: 100px;
  font-size: 32px;
  font-weight: 600;
  color: #101010;
  line-height: 1.4;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-process .process-title {
    margin-bottom: 6.6666666667Vw;
    font-size: 4.2666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-process .process-title {
    margin-bottom: 9.2592592593vw;
    font-size: 2.962962963vw;
  }
}
.cms--strategy .strategy-process .process-image {
  text-align: center;
  font-size: 0;
}
.cms--strategy .strategy-process .process-image img {
  max-width: 100%;
}
.cms--strategy .strategy-system {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cms--strategy .strategy-system .system-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 560px;
          flex: 0 0 560px;
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-system .system-image {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-system .system-image {
    display: none;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--strategy .strategy-system .system-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 39.0625vw;
            flex: 0 0 39.0625vw;
    margin-right: 2.34375vw;
  }
}
.cms--strategy .strategy-system .system-list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.cms--strategy .strategy-system .system-list > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: -20px;
}
.cms--strategy .strategy-system .system-list > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-system .system-list > ul > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-system .system-list > ul > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.cms--strategy .strategy-system .system-square {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 162px;
  height: 162px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 20px rgba(184, 184, 184, 0.16);
          box-shadow: 0px 3px 20px rgba(184, 184, 184, 0.16);
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-system .system-square {
    width: 100%;
    height: 32Vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--strategy .strategy-system .system-square {
    width: 11.875vw;
    height: 11.875vw;
  }
}
.cms--strategy .strategy-system .system-square .square-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 70px;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-system .system-square .square-icon {
    height: 6.6666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-system .system-square .square-icon img {
    max-height: 100%;
  }
}
.cms--strategy .strategy-system .system-square .square-name {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-system .system-square .square-name {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-system .system-square .square-name {
    font-size: 2.2222222222vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--strategy .strategy-system .system-square .square-name {
    font-size: 1.875vw;
  }
}
.cms--strategy .strategy-db {
  padding: 135px 80px;
  background-color: #F6FCFD;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-db {
    padding: 10.6666666667Vw 3.7333333333vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-db {
    padding: 12.5vw 7.4074074074vw;
  }
}
.cms--strategy .strategy-db .db-diagram {
  margin-bottom: 140px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-db .db-diagram {
    margin-bottom: 10.6666666667Vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-db .db-diagram {
    margin-bottom: 11.1111111111vw;
  }
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-db .db-diagram img {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-db .db-diagram img.cfy--mobile {
    display: block;
  }
}
.cms--strategy .strategy-db .db-figures {
  text-align: center;
}
.cms--strategy .strategy-db .db-figure-caption {
  margin-top: 90px;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-db .db-figure-caption {
    margin-top: 5.3333333333Vw;
    font-size: 3.7333333333Vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-db .db-figure-caption {
    margin-top: 8.3333333333vw;
    font-size: 2.2222222222vw;
  }
}
.cms--strategy .strategy-db .db-figure-caption span {
  margin-left: 10px;
  font-size: 18px;
  color: #707070;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-db .db-figure-caption span {
    display: block;
    font-size: 3.2Vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-db .db-figure-caption span {
    display: block;
    font-size: 1.6666666667vw;
  }
}
.cms--strategy .strategy-support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cms--strategy .strategy-support .support-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 560px;
          flex: 0 0 560px;
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-support .support-image {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-support .support-image {
    display: none;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--strategy .strategy-support .support-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.25vw;
            flex: 0 0 31.25vw;
    margin-right: 2.34375vw;
  }
}
.cms--strategy .strategy-support .support-list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.cms--strategy .strategy-support .support-list > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -50px;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-support .support-list > ul {
    margin-top: -2.6666666667vw;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.cms--strategy .strategy-support .support-list > ul > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.33%;
          flex: 1 0 33.33%;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-support .support-list > ul > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47.5%;
            flex: 0 0 47.5%;
    margin-top: 2.6666666667vw;
    padding-bottom: 1.3333333333vw;
  }
}
.cms--strategy .strategy-support .support-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-support .support-item {
    border-bottom: 0.1333333333Vw solid #ccc;
  }
}
.cms--strategy .strategy-support .support-item .item__order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #48BDCF;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-support .support-item .item__order {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6Vw;
            flex: 0 0 6Vw;
    width: 6vw;
    height: 6Vw;
    font-size: 2.6666666667Vw;
  }
}
.cms--strategy .strategy-support .support-item .item__icon {
  margin: 0 20px;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-support .support-item .item__icon {
    margin: 0 2.6666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-support .support-item .item__icon img {
    width: 8vw;
  }
}
.cms--strategy .strategy-support .support-item .item__name {
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .cms--strategy .strategy-support .support-item .item__name {
    font-size: 3.4666666667vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .cms--strategy .strategy-support .support-item .item__name {
    font-size: 2.2222222222vw;
  }
}
@media only screen and (min-width: 1081px) and (max-width: 1279px) {
  .cms--strategy .strategy-support .support-item .item__name {
    font-size: 1.5625vw;
  }
}