@charset "UTF-8";
/* ==========================================================
Name:
    reset.css

Description:
    ユーザーエージェントスタイルの初期化を行う

Contents:
    base reset style
    form parts reset style
========================================================== */
/* ---------------------------------------------
*   base reset style
--------------------------------------------- */
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, 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, hr {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption, th, td {
  vertical-align: middle;
  text-align: left;
  font-weight: normal;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

/* ---------------------------------------------
*   form parts reset style
--------------------------------------------- */
input, button, textarea, select {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: "";
  font-family: "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

textarea {
  display: block;
  overflow: auto;
  resize: none;
}

/* ==========================================================
Name:
    plugin.css

Description:
    サイトで使用するjQuery等のプラグインのCSSを記述する
    このCSSファイルにプラグインに付属するCSSを移設する
    このファイルに記述されたスタイルは変更しない
    スタイルの変更が必要な場合、他のCSSファイルにて上書きを行う

Contents:
    プラグイン名をここに記載する...
========================================================== */
/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する
    基本的にタグ自体にスタイルを定義する

Contents:
    base settings
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   Universal selector
--------------------------------------------- */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
  color: #353535;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 750px) {
  html,
  body {
    font-size: 4.26667vw;
  }
}
html.is-menu-opened {
  min-height: 100vh;
}

body {
  line-height: 1.5;
}

@media screen and (max-width: 750px) {
  body {
    min-width: 320px;
    line-height: 1.5;
  }
}
.is-menu-opened body {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
  outline: none;
  color: inherit;
  text-decoration: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュールのスタイルを記述する
    アルファベット降順(A->Z)に記述する

Contents:
    layout
    component
    utility
========================================================== */
/* ==========================================================
*
*   layout
*
========================================================== */
/* ---------------------------------------------
*   breadcrumb
--------------------------------------------- */
.breadcrumb {
  padding: 12px 0 16px;
}

.breadcrumb-wrap {
  padding: 0px 30px !important;
}

.breadcrumb-wrap .breadcrumb {
  padding: 0 0 5px !important;
}

@media screen and (max-width: 750px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

.breadcrumb__list-item {
  letter-spacing: 0.02em;
  font-size: 0.875rem;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

.breadcrumb__list-item:first-of-type::before {
  display: none;
}

.breadcrumb__list-item::before {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
  content: "＞";
}

@media screen and (min-width: 751px) {
  .breadcrumb__txt--link:hover {
    text-decoration: underline;
  }
}
/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents--gray {
  background-color: #ececec;
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
  padding: 35px 0 15px;
  background-color: #111;
  color: #fff;
}

/*  footer-pagetop
--------------------------------------------- */
@media screen and (min-width: 751px) {
  .footer-pagetop__link {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .footer-pagetop__link:hover {
    opacity: 0.6;
  }
}
/*  footer-container
--------------------------------------------- */
.footer-container {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1230px;
}

@media screen and (max-width: 750px) {
  .footer-container {
    padding: 0 5.33333vw;
  }
}
/*  footer-nav
--------------------------------------------- */
.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .footer-nav__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer-nav__list-item {
  position: relative;
  margin-left: 40px;
  padding-left: 10px;
  font-size: 0.8125rem;
}

@media screen and (max-width: 1300px) {
  .footer-nav__list-item {
    margin-left: 1.875vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer-nav__list-item {
    margin-left: 30px;
    padding-left: 0.7em;
  }
}
@media screen and (max-width: 750px) {
  .footer-nav__list-item {
    margin-left: 0;
    width: 50%;
    font-size: 13px;
  }
}
@media screen and (max-width: 320px) {
  .footer-nav__list-item {
    font-size: 12px;
  }
}
.footer-nav__list-item:first-of-type {
  margin-left: 0;
}

@media screen and (max-width: 750px) {
  .footer-nav__list-item:nth-of-type(2n) {
    margin-left: 0px;
  }
}
@media screen and (max-width: 750px) {
  .footer-nav__list-item:nth-of-type(n + 3) {
    margin-top: 30px;
  }
}
.footer-nav__list-item--column::before {
  display: none;
}

.footer-nav__list-item--logo::before {
  display: none;
}

@media screen and (max-width: 1024px) {
  .footer-nav__list-item--logo {
    margin-top: 30px;
    margin-left: 0;
    width: 100%;
  }
}
.footer-nav__list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}

.footer-nav__colum-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}

.footer-nav__colum-list-item {
  position: relative;
  margin-top: 6px;
  padding-left: 10px;
}

.footer-nav__colum-list-item:first-of-type {
  margin-top: 0;
}

.footer-nav__colum-list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}

.footer-nav__link {
  display: inline-block;
  margin-top: 6px;
}

@media screen and (min-width: 751px) {
  .footer-nav__link:hover {
    text-decoration: underline;
  }
}
.footer-nav__link:first-of-type {
  margin-top: 0;
}

.footer-nav__link-logo {
  display: inline-block;
  width: 174px;
}

@media screen and (min-width: 751px) {
  .footer-nav__link-logo {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .footer-nav__link-logo:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 750px) {
  .footer-nav__link-logo {
    width: 150px;
  }
}
/*  footer-nav-under
--------------------------------------------- */
.footer-nav-under {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
}

@media screen and (max-width: 1024px) {
  .footer-nav-under {
    display: block;
  }
}
.footer-nav-under__list {
  margin-left: 48px;
}

@media screen and (max-width: 1300px) {
  .footer-nav-under__list {
    margin-left: 1.875vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer-nav-under__list {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-nav-under__list {
    margin-left: 0;
  }
}
.footer-nav-under__list:first-of-type {
  margin-left: 0;
}

.footer-nav-under__list--2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  width: 330px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .footer-nav-under__list--2col {
    display: block;
    width: auto;
  }
}
.footer-nav-under__list--2col .footer-nav-under__list-item {
  margin-top: 10px;
  width: 45%;
  text-align: left;
}

@media screen and (max-width: 750px) {
  .footer-nav-under__list--2col .footer-nav-under__list-item {
    margin-top: 10px;
    width: 100%;
  }
}
.footer-nav-under__list--2col .footer-nav-under__list-item:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 750px) {
  .footer-nav-under__list--2col .footer-nav-under__list-item:first-of-type {
    width: 100%;
  }
}
.footer-nav-under__list--2col .footer-nav-under__list-item:nth-of-type(2) {
  margin-top: 0;
}

@media screen and (max-width: 750px) {
  .footer-nav-under__list--2col .footer-nav-under__list-item:nth-of-type(2) {
    margin-top: 10px;
    width: 100%;
  }
}
.footer-nav-under__list-item {
  position: relative;
  margin-top: 7px;
  padding-left: 14px;
}

@media screen and (max-width: 750px) {
  .footer-nav-under__list-item {
    margin-top: 10px;
    padding-left: 1em;
  }
}
.footer-nav-under__list-item:first-of-type {
  margin-top: 0;
}

.footer-nav-under__list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.footer-nav-under__link {
  display: inline-block;
}

@media screen and (min-width: 751px) {
  .footer-nav-under__link:hover {
    text-decoration: underline;
  }
}
/*  footer-bottom
--------------------------------------------- */
.footer-bottom {
  margin-top: 27px;
  padding: 15px 0;
  border-top: 1px solid #65666a;
  border-bottom: 1px solid #65666a;
}

@media screen and (max-width: 750px) {
  .footer-bottom {
    margin-top: 30px;
    padding: 20px;
  }
}
.footer-bottom__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.footer-bottom__list-item {
  position: relative;
  margin-left: 15px;
  padding-left: 10px;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

@media screen and (max-width: 750px) {
  .footer-bottom__list-item {
    margin-left: 15px;
    font-size: 12px;
  }
}
@media screen and (max-width: 320px) {
  .footer-bottom__list-item {
    font-size: 11px;
  }
}
.footer-bottom__list-item:first-of-type {
  margin-left: 0;
}

.footer-bottom__list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}

.footer-bottom__link {
  display: inline-block;
}

@media screen and (min-width: 751px) {
  .footer-bottom__link:hover {
    text-decoration: underline;
  }
}
/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
  margin-top: 27px;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 0.6875rem;
}

/* ---------------------------------------------
*   global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   header
--------------------------------------------- */
/*  header-top
--------------------------------------------- */
.header-top {
  background-color: #111;
}

@media screen and (max-width: 1024px) {
  .header-top {
    display: none;
  }
}
/*  header-lang-list
--------------------------------------------- */
.header-lang-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .header-lang-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.header-lang-list__item {
  position: relative;
  margin-left: 15px;
  padding-left: 10px;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

@media screen and (max-width: 1024px) {
  .header-lang-list__item {
    margin-left: 0;
    width: 50%;
    color: #fff;
    font-size: 14px;
  }
}
.header-lang-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}

.header-lang-list__item:first-of-type {
  margin-left: 0;
}

@media screen and (max-width: 1024px) {
  .header-lang-list__item:nth-of-type(n + 3) {
    margin-top: 20px;
  }
}
.header-lang-list__link {
  display: inline-block;
}

@media screen and (min-width: 751px) {
  .header-lang-list__link:hover {
    text-decoration: underline;
  }
}
/*  header-container
--------------------------------------------- */
.header-container {
  margin: 0 auto;
  padding: 8px 30px 10px;
  max-width: 1460px;
}

@media screen and (max-width: 750px) {
  .header-container {
    padding: 10px 0px 10px 10px;
  }
}
.header-container--top {
  padding: 0 30px 5px;
}

.header-container--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

/*  header-logo
--------------------------------------------- */
.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.header-logo__txt {
  margin-left: 13px;
  letter-spacing: 0.04em;
  font-weight: 300;
  font-size: 0.8125rem;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .header-logo__txt {
    margin-left: 10px;
    font-size: 13px;
  }
}
@media screen and (max-width: 320px) {
  .header-logo__txt {
    font-size: 10px;
  }
}
.header-logo__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  width: 151px;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (min-width: 751px) {
  .header-logo__link {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .header-logo__link:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 750px) {
  .header-logo__link {
    width: 130px;
  }
}
.header-logo__link img {
  width: 100%;
  height: auto;
}

/*  header-nav
--------------------------------------------- */
@media screen and (max-width: 1024px) {
  .header-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    display: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 60px;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }
}
.header-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .header-nav__inner {
    display: block;
    padding: 0 15px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav__inner--lang {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav__inner--lang {
    margin-top: 30px;
    padding: 10px 15px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background-color: #000;
  }
}
.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .header-nav__list {
    display: block;
  }
}
.header-nav__list-item {
  padding: 0 32px 0;
  height: 27px;
  border-left: 1px solid #d7d7d7;
  letter-spacing: 0.02em;
  font-size: 1rem;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 1350px) {
  .header-nav__list-item {
    padding: 0 1.25vw 0 1.25vw;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav__list-item {
    padding: 0;
    height: auto;
    border: none;
    border-top: 1px solid #000;
    font-weight: 700;
    font-size: 16px;
  }
}
.header-nav__list-item:last-of-type {
  border-right: 1px solid #d7d7d7;
}

@media screen and (max-width: 1024px) {
  .header-nav__list-item:last-of-type {
    border-right: none;
    border-bottom: 1px solid #000;
  }
}
.header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  height: 100%;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (min-width: 1025px) {
  .header-nav__link:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav__link {
    padding: 15px 0;
    color: #000;
  }
}
.header-nav__btn {
  margin-left: 30px;
  width: 230px;
}

@media screen and (max-width: 1350px) {
  .header-nav__btn {
    margin-left: 1.875vw;
    width: 230px;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav__btn {
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    width: 280px;
  }
  .header-nav__btn .c-btn-1 {
    font-size: 16px;
  }
}
/*  header-menu-button
--------------------------------------------- */
.header-menu-button {
  position: relative;
  z-index: 10;
  display: block;
  margin: 0;
  padding: 15px;
  outline: none;
  border: 0;
  border-radius: 0;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (min-width: 1025px) {
  .header-menu-button {
    display: none !important;
  }
}
.header-menu-button__lines {
  position: relative;
  display: block;
  width: 30px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header-menu-button__line {
  position: absolute;
  left: 0;
  display: block;
  padding-top: 2px;
  width: 100%;
  height: 0;
  background-color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.is-menu-opened .header-menu-button__line {
  background-color: #000;
}

.header-menu-button__line--top {
  top: 0;
}

.is-menu-opened .header-menu-button__line--top {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.header-menu-button__line--center {
  top: 50%;
  margin-top: -1px;
}

.is-menu-opened .header-menu-button__line--center {
  left: 30%;
  background-color: rgba(0, 0, 0, 0);
}

.header-menu-button__line--bottom {
  bottom: 0;
}

.is-menu-opened .header-menu-button__line--bottom {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
  transform: translateY(50%) rotate(-45deg);
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
/* ==========================================================
*
*   component
*
========================================================== */
/* ---------------------------------------------
*   c-block-1
--------------------------------------------- */
.c-block-1 {
  width: 48.10127%;
}

@media screen and (max-width: 750px) {
  .c-block-1 {
    margin-top: 8vw;
    width: 100%;
  }
  .c-block-1:first-of-type {
    margin-top: 0;
  }
}
.c-block-1__contants-ttl {
  color: #333333;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 1.125rem;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

.c-block-1__contants-ttl-link {
  border-bottom: 1px solid #aaa;
}

@media screen and (min-width: 751px) {
  .c-block-1__contants-ttl-link:hover {
    border-bottom: none;
  }
}
.c-block-1__contants-list {
  margin-top: 15px;
}

@media screen and (max-width: 750px) {
  .c-block-1__contants-list {
    margin-top: 5.33333vw;
  }
}
/* ---------------------------------------------
*   c-block-download
--------------------------------------------- */
.c-block-download {
  padding-bottom: 22px;
  border-bottom: 1px solid #cccccc;
}

.c-block-download:last-of-type {
  border-bottom: none;
}

.c-block-download + .c-block-download {
  margin-top: 30px;
}

@media screen and (max-width: 750px) {
  .c-block-download + .c-block-download {
    margin-top: 8vw;
  }
}
.c-block-download__head {
  margin-top: 11px;
  padding-bottom: 8px;
  border-bottom: 1px solid #cccccc;
}

@media screen and (max-width: 750px) {
  .c-block-download__head {
    margin-top: 4vw;
    padding-bottom: 2.66667vw;
  }
}
.c-block-download__head--no-border {
  border-bottom: none;
}

.c-block-download__head--detail {
  margin-top: 30px;
}

@media screen and (max-width: 750px) {
  .c-block-download__head--detail {
    margin-top: 8vw;
  }
}
.c-block-download__body {
  margin-top: 15px;
}

@media screen and (max-width: 750px) {
  .c-block-download__body {
    margin-top: 4vw;
  }
}
.c-block-download__body--webner {
  margin-top: 5px;
}

@media screen and (max-width: 750px) {
  .c-block-download__body--webner {
    margin-top: 2vw;
  }
}
.c-block-download__ttl {
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-block-download__ttl {
    font-size: 4.8vw;
  }
}
.c-block-download__btn {
  margin: 7px auto 0;
  width: 76.66667%;
}

@media screen and (max-width: 1024px) {
  .c-block-download__btn {
    width: 96.2963%;
  }
  .c-block-download__btn .c-btn-1 {
    font-size: 0.875rem;
  }
}
.c-block-download__btn--wide {
  width: 85%;
}

@media screen and (max-width: 1024px) {
  .c-block-download__btn--wide {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) and (max-width: 750px) {
  .c-block-download__btn .c-btn-1 {
    font-size: 4.26667vw;
  }
}
@media screen and (max-width: 750px) {
  .c-block-download__btn {
    margin-top: 2.66667vw;
  }
}
.c-block-download__btn--large {
  width: 83.7037%;
}

@media screen and (max-width: 1024px) {
  .c-block-download__btn--large {
    width: 100%;
  }
}
.c-block-download__btn--webner {
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  .c-block-download__btn--webner .c-btn-1 {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 750px) {
  .c-block-download__btn--webner .c-btn-1 {
    font-size: 4.26667vw;
  }
}
@media screen and (max-width: 750px) {
  .c-block-download__btn--webner {
    margin-top: 2.66667vw;
  }
}
.c-block-download__btn--detail {
  margin-top: 14px;
}

@media screen and (max-width: 1024px) {
  .c-block-download__btn--detail .c-btn-1 {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 750px) {
  .c-block-download__btn--detail .c-btn-1 {
    font-size: 4.26667vw;
  }
}
@media screen and (max-width: 750px) {
  .c-block-download__btn--detail {
    margin-top: 4vw;
  }
}
.c-block-download__link {
  margin-top: 16px;
  text-align: right;
}

@media screen and (max-width: 750px) {
  .c-block-download__link {
    margin-top: 4.26667vw;
  }
}
.c-block-download__img {
  width: 100%;
}

.c-block-download__img--narrow {
  margin: 18px auto 0;
  width: 82.22222%;
}

@media screen and (max-width: 750px) {
  .c-block-download__img--narrow {
    margin-top: 4.8vw;
  }
}
.c-block-download__img img {
  width: 100%;
  height: auto;
}

/* ---------------------------------------------
*   c-block-content
--------------------------------------------- */
.c-block-content__btn {
  margin: 20px auto 0;
  width: 48.10127%;
}

@media screen and (max-width: 1024px) {
  .c-block-content__btn {
    width: 56.96203%;
  }
}
@media screen and (max-width: 750px) {
  .c-block-content__btn {
    margin-top: 5.33333vw;
    width: 80vw;
  }
}
.c-block-content .c-ttl-4 {
  margin-top: 10px;
}

@media screen and (max-width: 750px) {
  .c-block-content .c-ttl-4 {
    margin-top: 4vw;
  }
}
.c-block-content .c-txt-2 {
  margin-top: 20px;
}

@media screen and (max-width: 750px) {
  .c-block-content .c-txt-2 {
    margin-top: 5.86667vw;
  }
}
.c-block-content .c-ttl-6 {
  margin-top: 22px;
}

@media screen and (max-width: 750px) {
  .c-block-content .c-ttl-6 {
    margin-top: 6.66667vw;
  }
}
.c-block-content .c-list-7 {
  margin-top: 25px;
}

@media screen and (max-width: 750px) {
  .c-block-content .c-list-7 {
    margin-top: 6.66667vw;
  }
}
/* ---------------------------------------------
*   c-box-1
--------------------------------------------- */
.c-box-1 {
  padding: 19px 19px 28px;
  border: 3px solid #cccccc;
  border-radius: 4px;
}

@media screen and (max-width: 750px) {
  .c-box-1 {
    padding: 4vw;
    border: 2px solid #cccccc;
    border-radius: 1.06667vw;
  }
}
.c-box-1__ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  letter-spacing: 0.025em;
  font-weight: 500;
  font-size: 1.25rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 750px) {
  .c-box-1__ttl {
    font-size: 5.33333vw;
  }
}
.c-box-1__ttl-icon {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  background-color: #333;
}

@media screen and (max-width: 750px) {
  .c-box-1__ttl-icon {
    margin-right: 1.33333vw;
    margin-right: 2.66667vw;
    width: 8.53333vw;
    height: 8.53333vw;
    border-radius: 0.8vw;
  }
}
.is-blue .c-box-1__ttl-icon {
  background-color: #2035b6;
}

.is-green .c-box-1__ttl-icon {
  background-color: #3c8d7d;
}

.is-violet .c-box-1__ttl-icon {
  background-color: #ad5e8d;
}

.is-yellow .c-box-1__ttl-icon {
  background-color: #b6c329;
}

.is-gray .c-box-1__ttl-icon {
  background-color: #333;
}

.c-box-1__ttl-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 23px;
  background: url(../../../img/common/icon_exclamation.svg) 0 0 no-repeat;
  background-size: 100% 100%;
  content: "";
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

@media screen and (max-width: 750px) {
  .c-box-1__ttl-icon::before {
    width: 2.4vw;
    height: 6.13333vw;
  }
}
.c-box-1__list {
  margin-top: 12px;
}

@media screen and (max-width: 750px) {
  .c-box-1__list {
    margin-top: 3.2vw;
  }
}
.c-box-1__list-item {
  position: relative;
  padding-left: 10px;
  letter-spacing: 0.04em;
  font-size: 1.0625rem;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-box-1__list-item {
    padding-left: 2.66667vw;
    font-size: 4vw;
  }
}
.c-box-1__list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.c-box-1__content {
  margin-top: 12px;
  letter-spacing: 0.02em;
  font-size: 1.0625rem;
}

@media screen and (max-width: 750px) {
  .c-box-1__content {
    margin-top: 3.2vw;
    font-size: 4vw;
  }
}
.c-box-1__content p {
  margin-top: 13px;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.0625rem;
}

@media screen and (max-width: 750px) {
  .c-box-1__content p {
    margin-top: 3.46667vw;
  }
}
.c-box-1__content p:first-of-type {
  margin-top: 0;
}

/* ---------------------------------------------
*   c-btn-1
--------------------------------------------- */
.c-btn-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  padding: 9px 0;
  width: 100%;
  border-radius: 22px;
  background-color: #da1f3d;
  color: #fff;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.529;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (min-width: 751px) {
  .c-btn-1 {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .c-btn-1:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 750px) {
  .c-btn-1 {
    padding: 3.33333vw 0;
    border-radius: 7.33333vw;
    font-size: 4.26667vw;
  }
}
.c-btn-1--black {
  background-color: #000;
}

.c-btn-1--large {
  padding: 18px 0;
  border-radius: 33px;
  font-size: 1.25rem;
}

@media screen and (max-width: 1024px) {
  .c-btn-1--large {
    padding: 1.5625vw 0;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 750px) {
  .c-btn-1--large {
    padding: 4vw 0;
    border-radius: 8vw;
    font-size: 4vw;
  }
}
.ie .c-btn-1__txt {
  position: relative;
  top: -0.1em;
}

.firefox .c-btn-1__txt {
  position: relative;
  top: -0.07em;
}

.safari .c-btn-1__txt {
  position: relative;
  top: -0.07em;
}

/* ---------------------------------------------
*   c-btn-2
--------------------------------------------- */
.c-btn-2 {
  display: inline-block;
  padding: 11px 21px;
  border-radius: 6px;
  background-color: #302c2a;
  color: #fff;
  letter-spacing: 0.04em;
  font-size: 0.9375rem;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (min-width: 751px) {
  .c-btn-2 {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .c-btn-2:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 750px) {
  .c-btn-2 {
    padding: 2.93333vw 5.33333vw;
    width: 100%;
    border-radius: 1.33333vw;
    font-size: 4vw;
  }
}
.c-btn-2__txt {
  position: relative;
  top: -0.05em;
}

.ie .c-btn-2__txt {
  position: relative;
  top: -0.1em;
}

.firefox .c-btn-2__txt {
  position: relative;
  top: -0.07em;
}

.safari .c-btn-2__txt {
  position: relative;
  top: -0.07em;
}

/* ---------------------------------------------
*   c-card
--------------------------------------------- */
.c-card {
  margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
  .c-card {
    margin-bottom: 8vw;
  }
}
.c-card__head {
  margin-bottom: 15px;
}

@media screen and (max-width: 750px) {
  .c-card__head {
    margin-bottom: 4vw;
  }
}
.c-card__body {
  padding: 0 10px;
}

@media screen and (max-width: 750px) {
  .c-card__body {
    padding: 0;
  }
}
/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
.c-cassette {
  margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
  .c-cassette {
    margin-bottom: 8vw;
  }
}
.c-cassette__head {
  margin-bottom: 15px;
}

@media screen and (max-width: 750px) {
  .c-cassette__head {
    margin-bottom: 4vw;
  }
}
.c-cassette__body {
  padding: 0 10px;
}

@media screen and (max-width: 750px) {
  .c-cassette__body {
    padding: 0;
  }
}
/* ---------------------------------------------
*   c-container-1
--------------------------------------------- */
.c-container-1 {
  margin: 0 auto;
  padding: 15px 30px;
  max-width: 1230px;
}

@media screen and (max-width: 750px) {
  .c-container-1 {
    padding: 0 5.33333vw;
  }
}
.c-container-1--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 2.56411%;
     -moz-column-gap: 2.56411%;
          column-gap: 2.56411%;
  padding: 0 20px !important;
}

@media screen and (max-width: 750px) {
  .c-container-1--flex {
    display: block;
  }
}
/* ---------------------------------------------
*   c-container-main
--------------------------------------------- */
.c-container-main {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 750px) {
  .c-container-main {
    width: 100%;
  }
}
/* ---------------------------------------------
*   c-container-side
--------------------------------------------- */
.c-container-side {
  margin-top: 40px;
  width: 23.07692%;
}

@media screen and (max-width: 750px) {
  .c-container-side {
    width: 100%;
  }
}
.c-container-side__body {
  margin-top: 20px;
}

.c-container-side__body--download {
  margin-top: 10px;
}

.c-container-side__body--detail {
  margin-top: 5px;
}

.c-container-side__contents {
  margin-top: 26px;
}

.c-container-side__contents--detail {
  margin-top: 7px;
}

.c-container-side__contents:first-of-type {
  margin-top: 0;
}

/* ---------------------------------------------
*   c-form
--------------------------------------------- */
/*  c-form-input-txt
--------------------------------------------- */
/*  c-form-input-pw
--------------------------------------------- */
/*  c-form-txtarea
--------------------------------------------- */
/*  c-form-select
--------------------------------------------- */
/*  c-form-chkbox
--------------------------------------------- */
/*  c-form-radio
--------------------------------------------- */
/* ---------------------------------------------
*   c-head-1
--------------------------------------------- */
.c-head-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  margin: 0 auto;
  padding: 0 30px;
  height: 100px;
  background: url(../../../img/common/img_head_bg.png) center 18% no-repeat;
  background-size: cover;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 750px) {
  .c-head-1 {
    padding: 0 5.33333vw;
    height: 33.33333vw;
  }
}
/* ---------------------------------------------
*   c-img-1
--------------------------------------------- */
.c-img-1 {
  margin-top: 14px;
  text-align: center;
}

/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv {
  background-color: #ececec;
}

@media screen and (max-width: 750px) {
  .c-kv {
    padding-bottom: 4vw;
  }
}
.c-kv__img {
  position: relative;
  margin: 0 auto;
  height: 240px;
  background: url(../../../img/top/img_kv_bg.png) center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 750px) {
  .c-kv__img {
    height: 40vw;
  }
}
.c-kv__container {
  margin-bottom: 194px;
}

@media screen and (max-width: 750px) {
  .c-kv__container {
    margin-bottom: 53.33333vw;
  }
}
.c-kv__contents {
  position: relative;
  z-index: 1;
  margin: -211px auto;
  max-width: 1230px;
  width: 100%;
}

@media screen and (max-width: 750px) {
  .c-kv__contents {
    margin-top: -28.13333vw;
  }
}
/* ---------------------------------------------
*   c-kv-container
--------------------------------------------- */
.c-kv-container {
  margin-bottom: 194px;
}

@media screen and (max-width: 750px) {
  .c-kv-container {
    margin-bottom: 53.33333vw;
  }
}
.c-kv-container__contents {
  position: relative;
  z-index: 1;
  margin: -211px auto;
  padding: 0 30px;
  max-width: 1230px;
  width: 100%;
}

@media screen and (max-width: 750px) {
  .c-kv-container__contents {
    margin-top: -28.13333vw;
    padding: 0 5.33333vw;
  }
}
/* ---------------------------------------------
*   c-link-1
--------------------------------------------- */
.c-link-1 {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  color: #666666;
  letter-spacing: 0.02em;
  font-size: 0.875rem;
  line-height: 1.92;
}

@media screen and (max-width: 750px) {
  .c-link-1 {
    font-size: 4.26667vw;
  }
}
.c-link-1::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}

.c-link-1--mgt {
  margin-top: 12px;
}

@media screen and (max-width: 750px) {
  .c-link-1--mgt {
    margin-top: 3.2vw;
  }
}
@media screen and (min-width: 751px) {
  .c-link-1__link:hover {
    text-decoration: underline;
  }
}
/* ---------------------------------------------
*   c-list-1
--------------------------------------------- */
.c-list-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
  .c-list-1 {
    display: block;
  }
}
.c-list-1--4col .c-list-1__item {
  margin-left: 2.5641%;
  width: 23.07692%;
}

@media screen and (max-width: 750px) {
  .c-list-1--4col .c-list-1__item {
    margin-left: 0;
    width: 100%;
  }
}
.c-list-1__item {
  margin-left: 2.5641%;
  width: 31.62393%;
}

@media screen and (max-width: 750px) {
  .c-list-1__item {
    margin-top: 10.66667vw;
    margin-left: 0;
    width: 100%;
  }
}
.c-list-1__item--wide {
  width: 48.71795%;
}

@media screen and (max-width: 750px) {
  .c-list-1__item--wide {
    width: 100%;
  }
}
.c-list-1__item--download {
  width: 21.64935% !important;
}

@media screen and (max-width: 750px) {
  .c-list-1__item--download {
    width: 100% !important;
  }
}
.c-list-1__item--narrow {
  margin-left: 3.8961%;
  width: 30.64935%;
}

@media screen and (max-width: 750px) {
  .c-list-1__item--narrow {
    margin-left: 0;
    width: 100%;
  }
}
.c-list-1__item--know-how {
  margin-left: 3.8961%;
  width: 48.05195%;
}

@media screen and (max-width: 750px) {
  .c-list-1__item--know-how {
    margin-left: 0;
    width: 100%;
  }
}
.c-list-1__item--know-how:nth-of-type(2n + 1) {
  margin-left: 0;
}

.c-list-1__item--know-how:nth-of-type(n + 3) {
  margin-top: 40px;
}

@media screen and (max-width: 750px) {
  .c-list-1__item--know-how:nth-of-type(n + 3) {
    margin-top: 10.66667vw;
  }
}
.c-list-1__item--device {
  margin-top: 30px;
  background-color: #f8f8f8;
}

@media screen and (max-width: 750px) {
  .c-list-1__item--device {
    margin-top: 8vw;
  }
}
.c-list-1__item--device:nth-of-type(odd) {
  margin-left: 0;
}

.c-list-1__item:first-of-type {
  margin-left: 0;
}

@media screen and (max-width: 750px) {
  .c-list-1__item:first-of-type {
    margin-top: 0;
  }
}
/* ---------------------------------------------
*   c-list-2
--------------------------------------------- */
.c-list-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -14px;
  margin-left: -0.875vw;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
  .c-list-2 {
    margin-top: -3.73333vw;
    margin-left: -3.73333vw;
  }
}
.c-list-2--mgt {
  margin-top: 7px;
}

.c-list-2--align-center {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.c-list-2--narrow {
  margin-right: auto;
  margin-left: auto;
  width: 92.68293%;
}

@media screen and (max-width: 750px) {
  .c-list-2--narrow {
    width: 100%;
  }
}
.c-list-2__item {
  margin-top: 14px;
  margin-left: 0.875vw;
}

@media screen and (max-width: 750px) {
  .c-list-2__item {
    margin-top: 3.73333vw;
    margin-left: 3.73333vw;
  }
}
.c-list-2__link {
  display: inline-block;
  padding: 14px 12px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  background-color: #fff;
  letter-spacing: 0.02em;
  font-size: 0.9375rem;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (min-width: 751px) {
  .c-list-2__link {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .c-list-2__link:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 750px) {
  .c-list-2__link {
    padding: 3.73333vw 3.2vw;
    border-radius: 1.6vw;
    font-size: 3.46667vw;
  }
}
/* ---------------------------------------------
*   c-list-3
--------------------------------------------- */
.c-list-3__item {
  position: relative;
  margin-top: 7px;
  padding-left: 10px;
}

@media screen and (max-width: 750px) {
  .c-list-3__item {
    margin-top: 1.86667vw;
    padding-left: 2.66667vw;
  }
}
.c-list-3__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}

.c-list-3__link {
  display: inline-block;
  letter-spacing: 0.02em;
  font-size: 0.9375rem;
  line-height: 1.46;
}

@media screen and (min-width: 751px) {
  .c-list-3__link:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 750px) {
  .c-list-3__link {
    font-size: 4vw;
  }
}
/* ---------------------------------------------
*   c-list-4
--------------------------------------------- */
.c-list-4__item {
  margin-top: 15px;
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}

@media screen and (max-width: 750px) {
  .c-list-4__item {
    margin-top: 4vw;
    padding-bottom: 6.93333vw;
  }
}
.c-list-4__item:first-of-type {
  margin-top: 0;
}

.c-list-4__item:last-of-type {
  border-bottom: none;
}

.c-list-4__ttl {
  letter-spacing: 0.04em;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-list-4__ttl {
    font-size: 4.26667vw;
  }
}
@media screen and (min-width: 751px) {
  .c-list-4__ttl-link:hover {
    text-decoration: underline;
  }
}
.c-list-4__date {
  margin-top: 7px;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
}

@media screen and (max-width: 750px) {
  .c-list-4__date {
    margin-top: 1.86667vw;
    font-size: 3.73333vw;
  }
}
/* ---------------------------------------------
*   c-list-5
--------------------------------------------- */
.c-list-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -11px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-list-5__item {
  margin-left: 16px;
  letter-spacing: 0.04em;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .c-list-5__item {
    margin-left: 2.93333vw;
    font-size: 4.26667vw;
  }
}
.c-list-5__item::after {
  margin-left: 13px;
  content: "/";
}

@media screen and (max-width: 750px) {
  .c-list-5__item::after {
    margin-left: 2.93333vw;
  }
}
.c-list-5__item:last-of-type::after {
  display: none;
}

.c-list-5__link {
  border-bottom: 1px solid #aaa;
}

@media screen and (min-width: 751px) {
  .c-list-5__link:hover {
    border-bottom: none;
  }
}
/* ---------------------------------------------
*   c-list-6
--------------------------------------------- */
.c-list-6__item {
  position: relative;
  margin-top: 5px;
  padding-left: 10px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media screen and (max-width: 750px) {
  .c-list-6__item {
    margin-top: 3.2vw;
    font-size: 4.26667vw;
  }
}
.c-list-6__item:first-of-type {
  margin-top: 0;
}

.c-list-6__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}

.c-list-6__link {
  margin-top: 6px;
  border-bottom: 1px dotted #aaa;
}

@media screen and (min-width: 751px) {
  .c-list-6__link:hover {
    border-bottom: none;
  }
}
/* ---------------------------------------------
*   c-list-7
--------------------------------------------- */
.c-list-7__item {
  position: relative;
  padding-left: 15px;
  letter-spacing: 0.02em;
  font-size: 1.0625rem;
  line-height: 1.88;
}

@media screen and (max-width: 750px) {
  .c-list-7__item {
    padding-left: 4vw;
    font-size: 4.26667vw;
  }
}
.c-list-7__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.c-list-7__link {
  text-decoration: underline;
  /*border-bottom: 1px solid #333;*/
}

@media screen and (min-width: 751px) {
  .c-list-7__link:hover {
    text-decoration: none;
    border-bottom: none;
  }
}
/* ---------------------------------------------
*   c-list-side-link
--------------------------------------------- */
.c-list-side-link__item {
  border-bottom: 1px solid #cccccc;
  color: #333333;
  font-weight: 700;
  font-size: 1.0625rem;
}

@media screen and (max-width: 750px) {
  .c-list-side-link__item {
    font-size: 4.8vw;
  }
}
.c-list-side-link__link {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  padding-right: 20px;
  width: 100%;
}

@media screen and (min-width: 751px) {
  .c-list-side-link__link {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .c-list-side-link__link:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 750px) {
  .c-list-side-link__link {
    padding: 3.33333vw 0;
  }
}
.c-list-side-link__link::after {
  position: absolute;
  top: 50%;
  right: -3px;
  width: 8px;
  height: 12px;
  background: url(../../../img/common/icon_arrow_1.png) 0 0 no-repeat;
  background-size: 100% 100%;
  content: "";
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

@media screen and (max-width: 750px) {
  .c-list-side-link__link::after {
    right: -0.4vw;
  }
}
.c-list-side-link__list {
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 1px solid #cccccc;
  color: #000;
  letter-spacing: 0.08em;
  font-weight: normal;
  font-size: 0.9375rem;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-list-side-link__list {
    margin-bottom: 4vw;
    padding-top: 4vw;
    font-size: 4.26667vw;
  }
}
.c-list-side-link__list-item {
  position: relative;
  margin-top: 5px;
  padding-left: 1em;
}

@media screen and (max-width: 750px) {
  .c-list-side-link__list-item {
    margin-top: 2vw;
  }
}
.c-list-side-link__list-item:first-of-type {
  margin-top: 0;
}

.c-list-side-link__list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.c-list-side-link__list-item-link {
  border-bottom: 1px solid #333;
}

@media screen and (min-width: 751px) {
  .c-list-side-link__list-item-link:hover {
    border-bottom: none;
  }
}
/* ---------------------------------------------
*   c-section-1
--------------------------------------------- */
.c-section-1 {
  padding-top: 39px;
  padding-bottom: 40px;
  width: 100%;
  background-color: #fff;
}

@media screen and (max-width: 750px) {
  .c-section-1 {
    padding: 10.66667vw 0 10.66667vw;
  }
}
.c-section-1--top {
  padding-bottom: 34px;
}

@media screen and (max-width: 750px) {
  .c-section-1--top {
    padding-bottom: 10.66667vw;
  }
}
.c-section-1--bg-gray {
  background-color: #ececec;
}

.c-section-1--know-how {
  padding-top: 48px;
  padding-bottom: 57px;
}

@media screen and (max-width: 750px) {
  .c-section-1--know-how {
    padding-top: 10.66667vw;
    padding-bottom: 10.66667vw;
  }
}
.c-section-1__container {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1230px;
}

@media screen and (max-width: 750px) {
  .c-section-1__container {
    padding: 0 5.33333vw;
  }
}
.c-section-1__flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (max-width: 750px) {
  .c-section-1__flex-wrap {
    display: block;
  }
}
.c-section-1__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .c-section-1__head {
    display: block;
  }
}
.c-section-1__body {
  margin-top: 17px;
}

@media screen and (max-width: 750px) {
  .c-section-1__body {
    margin-top: 5.33333vw;
  }
}
/* ---------------------------------------------
*   c-section-2
--------------------------------------------- */
.c-section-2 {
  width: 65.81197%;
}

@media screen and (max-width: 750px) {
  .c-section-2 {
    width: 100%;
  }
}
.c-section-2--narrow {
  margin-left: 2.5641%;
  width: 31.62393%;
}

@media screen and (max-width: 750px) {
  .c-section-2--narrow {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .c-section-2--sp-mgt {
    margin-top: 10.66667vw;
  }
}
.c-section-2__container {
  width: 100%;
}

.c-section-2__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .c-section-2__head {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .c-section-2__head {
    display: block;
  }
}
.c-section-2__body {
  margin-top: 16px;
  width: 100%;
}

@media screen and (max-width: 750px) {
  .c-section-2__body {
    margin-top: 5.33333vw;
  }
}
/* ---------------------------------------------
*   c-section-3
--------------------------------------------- */
.c-section-3__head {
  background-color: #ececec;
}

.c-section-3__head-contents {
  padding: 22px 0 34px;
  background-color: #ececec;
}

@media screen and (max-width: 750px) {
  .c-section-3__head-contents {
    padding: 6.66667vw 0 8vw;
  }
}
.c-section-3__head-contents-txt {
  text-align: center;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 1.625rem;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-section-3__head-contents-txt {
    font-size: 6.93333vw;
  }
}
.c-section-3__body {
  padding: 30px 0;
}

@media screen and (max-width: 750px) {
  .c-section-3__body {
    padding: 8vw 0 20vw;
  }
}
.c-section-3__body--2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-section-3__body--under {
  padding-top: 22px;
  padding-bottom: 10px;
}

@media screen and (max-width: 750px) {
  .c-section-3__body--under {
    padding: 8vw 0;
  }
}
.c-section-3__body-contents {
  margin-top: 33px;
}

@media screen and (max-width: 750px) {
  .c-section-3__body-contents {
    margin-top: 8.8vw;
  }
}
.c-section-3__body-ttl {
  text-align: center;
}

/* ---------------------------------------------
*   c-section-4
--------------------------------------------- */
.c-section-4 + .c-section-4 {
  margin-top: 49px;
}

@media screen and (max-width: 750px) {
  .c-section-4 + .c-section-4 {
    margin-top: 13.33333vw;
  }
}
.c-section-4__btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  margin-top: 6px;
  margin-left: -30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 750px) {
  .c-section-4__btn-area {
    margin-top: 1.33333vw;
    margin-left: -6.66667vw;
  }
}
.c-section-4__btn {
  margin-top: 30px;
  margin-left: 30px;
}

@media screen and (max-width: 750px) {
  .c-section-4__btn {
    margin-top: 6.66667vw;
    margin-left: 6.66667vw;
    width: 90%;
  }
}
.c-section-4__body {
  margin-top: 17px;
}

@media screen and (max-width: 750px) {
  .c-section-4__body {
    margin-top: 5.33333vw;
  }
}
/* ---------------------------------------------
*   c-section-5
--------------------------------------------- */
.c-section-5 {
  margin-top: 30px;
}

@media screen and (max-width: 750px) {
  .c-section-5 {
    margin-top: 8vw;
  }
}
.c-section-5:first-of-type {
  margin-top: 0;
}

.c-section-5--bg-white {
  background-color: #fff;
}

.c-section-5__container {
  padding: 40px;
}

@media screen and (max-width: 750px) {
  .c-section-5__container {
    padding: 8vw 4vw;
  }
}
.c-section-5__head-list {
  margin-top: 10px;
}

@media screen and (max-width: 750px) {
  .c-section-5__head-list {
    margin-top: 2.66667vw;
  }
}
.c-section-5__body {
  margin-top: 24px;
}

@media screen and (max-width: 750px) {
  .c-section-5__body {
    margin-top: 6.4vw;
  }
}
.c-section-5__body--detail {
  margin-top: 14px;
}

@media screen and (max-width: 750px) {
  .c-section-5__body--detail {
    margin-top: 4vw;
  }
}
/* ---------------------------------------------
*   c-section-6
--------------------------------------------- */
.c-section-6 {
  margin-top: 30px;
}

@media screen and (max-width: 750px) {
  .c-section-6 {
    margin-top: 10.66667vw;
  }
}
.c-section-6:first-of-type {
  margin-top: 0;
}

.c-section-6__head {
  padding-bottom: 17px;
  border-bottom: 1px solid #e5e5e5;
}

@media screen and (max-width: 750px) {
  .c-section-6__head {
    padding-bottom: 5.33333vw;
  }
}
.c-section-6__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  margin-top: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .c-section-6__body {
    display: block;
    margin-top: 6.4vw;
  }
}
.c-section-6__body .c-block-1:nth-of-type(n + 3) {
  margin-top: 30px;
}

/* ---------------------------------------------
*   c-section-7
--------------------------------------------- */
.c-section-7__data {
  margin-top: 10px;
  color: #666666;
  text-align: right;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-section-7__data {
    margin-top: 2.66667vw;
    font-size: 3.2vw;
  }
}
.c-section-7__head-box {
  margin-top: 18px;
}

.c-section-7__body {
  margin-top: 1.25vw;
}

@media screen and (max-width: 750px) {
  .c-section-7__body {
    margin-top: 2.66667vw;
  }
}
/* ---------------------------------------------
*   c-section-top-article
--------------------------------------------- */
.c-section-top-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 30px 10px 10px;
  border-radius: 4px;
  background-color: #fff;
}

@media screen and (max-width: 750px) {
  .c-section-top-article {
    display: block;
    padding: 4vw;
    border-radius: 1.33333vw;
  }
}
.c-section-top-article__img {
  max-width: 583px;
  width: 100%;
}

@media screen and (max-width: 750px) {
  .c-section-top-article__img {
    max-width: inherit;
    max-width: initial;
    max-width: revert;
    max-width: unset;
  }
}
.c-section-top-article__img img {
  width: 100%;
}

.c-section-top-article__desc {
  margin-left: 2.65487%;
  /*padding-top: 20px;*/
  padding-bottom: 20px;
  max-width: 516px;
}

@media screen and (max-width: 750px) {
  .c-section-top-article__desc {
    margin-left: 0;
    padding-top: 5.33333vw;
    padding-bottom: 5.33333vw;
    max-width: inherit;
    max-width: initial;
    max-width: revert;
    max-width: unset;
  }
}
.c-section-top-article__item-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  padding: 2px 0;
  background-color: #000;
  color: #fff;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 1.0625rem;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 750px) {
  .c-section-top-article__item-ttl {
    font-size: 4.53333vw;
  }
}
.mac .c-section-top-article__item-ttl-txt {
  position: relative;
  top: -0.025em;
}

.safari .c-section-top-article__item-ttl-txt {
  position: relative;
  top: -0.02em;
}

.windows .c-section-top-article__item-ttl-txt {
  position: relative;
  top: -0.03em;
}

.ie .c-section-top-article__item-ttl-txt {
  position: relative;
  top: -0.04em;
}

.c-section-top-article__ttl {
  margin-top: 6px;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 2.125rem;
  line-height: 1.29;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-section-top-article__ttl {
    margin-top: 2.66667vw;
    font-size: 6.4vw;
  }
}
.ie .c-section-top-article__ttl {
  letter-spacing: 0.02em;
}

.safari .c-section-top-article__ttl {
  letter-spacing: -0.02em;
}

@media screen and (max-width: 750px) {
  .safari .c-section-top-article__ttl {
    letter-spacing: 0.04em;
  }
}
.c-section-top-article__txt {
  margin-top: 8px;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-section-top-article__txt {
    font-size: 4vw;
  }
}
.c-section-top-article__btn {
  margin-top: 14px;
  /* max-width: 256px;*/
  width: 100%;
}

@media screen and (max-width: 750px) {
  .c-section-top-article__btn {
    margin: 4vw auto 0;
    max-width: inherit;
    max-width: initial;
    max-width: revert;
    max-width: unset;
    /*width: 66.66667vw;*/
  }
  .c-section-top-article__btn a {
    font-size: 3.8vw;
  }
}
/* ---------------------------------------------
*   c-section-article
--------------------------------------------- */
.c-section-article--mgt {
  margin-top: 10px;
}

.c-section-article--movie {
  margin-top: 23px;
}

.c-section-article--movie:first-of-type {
  margin-top: 0;
}

.c-section-article__head {
  display: inline-block;
  width: 100%;
  background-color: #fff;
}

@media screen and (min-width: 751px) {
  .c-section-article__head {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .c-section-article__head:hover {
    opacity: 0.6;
  }
}
.c-section-article__head img {
  max-width: 100%;
}

.c-section-article__head--frame {
  width: 100%;
  height: 132px;
  border: 1px solid #e2e2e2;
  -webkit-box-shadow: 1px 2px #cccccc;
  box-shadow: 1px 2px #cccccc;
}

@media screen and (max-width: 750px) {
  .c-section-article__head--frame {
    height: 40vw;
  }
}
.c-section-article__head--frame img {
  display: block;
  width: 100%;
  height: 100%;
  font-family: "object-fit: none; object-position: center top";
  -o-object-fit: none;
  object-fit: none;
  -o-object-position: center top;
  object-position: center top;
}

.c-section-article__head--frame2 {
  position: relative;
  height: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}

.c-section-article__head--frame2 img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  height: auto;
  -o-object-fit: initial;
  object-fit: initial;
  -o-object-position: initial;
  object-position: initial;
}

.c-section-article__head--shadow {
  width: 100%;
  height: 131px;
  -webkit-box-shadow: 1px 2px #bdbdbd;
  box-shadow: 1px 2px #bdbdbd;
}

@media screen and (max-width: 750px) {
  .c-section-article__head--shadow {
    height: 35.06667vw;
  }
}
.c-section-article__head--shadow img {
  display: block;
  width: 100%;
  height: 100%;
  font-family: "object-fit: none; object-position: center top";
  -o-object-fit: none;
  object-fit: none;
  -o-object-position: center top;
  object-position: center top;
}

.c-section-article__head--shadow2 {
  position: relative;
  height: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}

.c-section-article__head--shadow2 img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  height: auto;
  -o-object-fit: initial;
  object-fit: initial;
  -o-object-position: initial;
  object-position: initial;
}

.c-section-article__head--frame-document {
  border: 1px solid #e2e2e2;
  -webkit-box-shadow: 1px 2px #cccccc;
  box-shadow: 1px 2px #cccccc;
}

.c-section-article__ttl {
  margin-top: 2px;
}

@media screen and (max-width: 750px) {
  .c-section-article__ttl {
    margin-top: 2vw;
  }
}
.c-section-article__body-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  margin-top: 8px;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .c-section-article__body-top {
    margin-top: 2.13333vw;
  }
}
.c-section-article__body-top--mgt0 {
  margin-top: 0;
}

.c-section-article__category {
  position: relative;
  margin-top: 3px;
  padding-left: 21px;
  color: #65666a;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-section-article__category {
    margin-top: 0.66667vw;
    padding-left: 5.33333vw;
    font-size: 3.2vw;
  }
}
.c-section-article__category-icon {
  position: absolute;
  top: 5px;
  left: 0px;
  display: inline-block;
  width: 11px;
  height: 11px;
  background-color: #333;
  content: "";
  font-size: 0.9375rem;
}

@media screen and (max-width: 750px) {
  .c-section-article__category-icon {
    top: 1.06667vw;
    left: 0.13333vw;
    width: 2.93333vw;
    height: 2.93333vw;
    font-size: 3.73333vw;
    line-height: 2;
  }
}
.c-section-article__category-icon--red {
  background-color: #ab1818;
}

.c-section-article__category-icon--blue {
  background-color: #2035b6;
}

.c-section-article__category-icon--green {
  background-color: #3c8d7d;
}

.c-section-article__category-icon--violet {
  background-color: #ad5e8d;
}

.c-section-article__category-icon--yellow {
  background-color: #b6c329;
}

.c-section-article__category-icon--gray {
  background-color: #6e6e6e;
}

.c-section-article__date {
  color: #65666a;
  letter-spacing: 0.07em;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 2;
  margin-left: auto;
}

@media screen and (max-width: 750px) {
  .c-section-article__date {
    font-size: 3.2vw;
  }
}
.c-section-article__date--align-right {
  text-align: right;
}

.c-section-article__date--mgt {
  margin-top: 5px;
}

.c-section-article__link {
  color: #000;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-size: 1.125rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (max-width: 750px) {
  .c-section-article__link {
    font-size: 4.26667vw;
  }
}
@media screen and (min-width: 751px) {
  .c-section-article__link:hover {
    text-decoration: underline;
  }
}
.c-section-article__link--small {
  font-size: 0.9375rem;
}

/* ---------------------------------------------
*   c-section-device
--------------------------------------------- */
.c-section-device__body {
  padding: 17px 16px 21px;
}

@media screen and (max-width: 750px) {
  .c-section-device__body {
    padding: 4.53333vw 2.66667vw 5.33333vw 2.66667vw;
  }
}
/* ---------------------------------------------
*   c-section-Know-how
--------------------------------------------- */
.c-section-Know-how__body {
  margin-top: 14px;
}

/* ---------------------------------------------
*   c-section-download
--------------------------------------------- */
.c-section-download {
  margin-top: 20px;
}

@media screen and (max-width: 750px) {
  .c-section-download {
    margin-top: 5.33333vw;
  }
}
.c-section-download__btn {
  margin: 20px auto 0;
  width: 48.10127%;
}

@media screen and (max-width: 1024px) {
  .c-section-download__btn {
    width: 56.96203%;
  }
}
@media screen and (max-width: 750px) {
  .c-section-download__btn {
    margin-top: 5.33333vw;
    width: 80vw;
  }
}
/* ---------------------------------------------
*   c-section-movie 
--------------------------------------------- */
/* ---------------------------------------------
*   c-table
--------------------------------------------- */
.c-table {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.c-table__th, .c-table__td {
  padding: 1em;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}

.c-table__thead .c-table__th {
  color: red;
}

.c-table__tbody .c-table__th {
  font-weight: bold;
}

/* ---------------------------------------------
*   c-ttl-1
--------------------------------------------- */
.c-ttl-1 {
  color: #fff;
  letter-spacing: 0.06em;
  font-weight: bold;
  font-size: 2.125rem;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-ttl-1 {
    font-size: 8.53333vw;
  }
}
.c-ttl-1--black {
  color: #000;
}

/* ---------------------------------------------
*   c-ttl-2
--------------------------------------------- */
.c-ttl-2 {
  position: relative;
  padding-left: 50px;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 1.69;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-ttl-2 {
    padding-left: 13.33333vw;
    font-size: 5.33333vw;
  }
}
.c-ttl-2--articles::before {
  background: url(../../../img/top/icon_article.png) 0 0 no-repeat;
  background-size: 100%;
}

.c-ttl-2--device::before {
  background: url(../../../img/top/icon_device.png) 0 0 no-repeat;
  background-size: 100%;
}

.c-ttl-2--know-how::before {
  background: url(../../../img/top/icon_know-how.png) 0 0 no-repeat;
  background-size: 100%;
}

.c-ttl-2--movie::before {
  background: url(../../../img/top/icon_movie.png) 0 0 no-repeat;
  background-size: 100%;
}

.c-ttl-2--download::before {
  background: url(../../../img/top/icon_download.png) 0 0 no-repeat;
  background-size: 100%;
}

.c-ttl-2::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 39px;
  height: 39px;
  content: "";
}

@media screen and (max-width: 750px) {
  .c-ttl-2::before {
    top: -0.8vw;
    width: 10.66667vw;
    height: 10.66667vw;
  }
}
/* ---------------------------------------------
*   c-ttl-3
--------------------------------------------- */
.c-ttl-3 {
  padding: 8px 14px;
  background-color: #333;
  color: #fff;
  letter-spacing: 0.025em;
  font-size: 1.25rem;
  line-height: 1.35;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-ttl-3 {
    padding: 2.13333vw 3.73333vw;
    font-size: 5.33333vw;
  }
}
.c-ttl-3--small {
  padding: 12px 19px;
  font-size: 1rem;
}

.c-ttl-3--article {
  padding: 12px 14px;
}

.c-ttl-3--red {
  background-color: #ab1818;
}

.c-ttl-3--blue {
  background-color: #2035b6;
}

.c-ttl-3--green {
  background-color: #3c8d7d;
}

.c-ttl-3--violet {
  background-color: #ad5e8d;
}

.c-ttl-3--yellow {
  background-color: #b6c329;
}

.c-ttl-3--gray {
  background-color: #6e6e6e;
}

.safari .c-ttl-3__txt {
  position: relative;
  top: -0.02em;
}

.ie .c-ttl-3__txt {
  position: relative;
  top: -0.03em;
}

.is-blue .c-ttl-3 {
  background-color: #2035b6;
}

.is-green .c-ttl-3 {
  background-color: #3c8d7d;
}

.is-violet .c-ttl-3 {
  background-color: #ad5e8d;
}

.is-yellow .c-ttl-3 {
  background-color: #b6c329;
}

.is-gray .c-ttl-3 {
  background-color: #333;
}

/* ---------------------------------------------
*   c-ttl-4
--------------------------------------------- */
.c-ttl-4 {
  position: relative;
  display: inline-block;
  padding: 5px 0 6px 15px;
  border-left: 5px solid #333;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 1.375rem;
  /*margin-bottom: 1.25rem;*/
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-ttl-4 {
    padding: 1.33333vw 0 1.6vw 4vw;
    font-size: 6.13333vw;
  }
}
.is-blue .c-ttl-4 {
  border-color: #2035b6;
}

.is-green .c-ttl-4 {
  border-color: #3c8d7d;
}

.is-violet .c-ttl-4 {
  border-color: #ad5e8d;
}

.is-yellow .c-ttl-4 {
  border-color: #b6c329;
}

.is-gray .c-ttl-4 {
  border-color: #333;
}

/* ---------------------------------------------
*   c-ttl-5
--------------------------------------------- */
.c-ttl-5 {
  letter-spacing: 0.025em;
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.5;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-ttl-5 {
    font-size: 8vw;
  }
}
/* ---------------------------------------------
*   c-ttl-6
--------------------------------------------- */
.c-ttl-6 {
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 1.1875rem;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-ttl-6 {
    padding-bottom: 2.66667vw;
    font-size: 5.06667vw;
  }
}
/* ---------------------------------------------
*   c-txt-1
--------------------------------------------- */
.c-txt-1 {
  letter-spacing: 0.08em;
  font-size: 0.9375rem;
  line-height: 1.66;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .c-txt-1 {
    font-size: 4vw;
  }
}
.c-txt-1--narrow {
  letter-spacing: 0;
}

/* ---------------------------------------------
*   c-txt-2
--------------------------------------------- */
.c-txt-2 {
  letter-spacing: 0.02em;
  font-size: 1.0625rem;
  line-height: 1.88;
  font-family: helvetica, arial, "hiragino kaku gothic pro", meiryo, "ms pgothic", sans-serif;
}

@media screen and (max-width: 750px) {
  .c-txt-2 {
    font-size: 4.26667vw;
  }
}
.c-txt-2--low {
  line-height: 1.9;
}

/* ---------------------------------------------
*   wysiwyg (Wordpress案件以外は削除すること)
--------------------------------------------- */
.wysiwyg {
  overflow: hidden;
}

.wysiwyg:after {
  display: block;
  clear: both;
  content: "";
}

/* wysiwyg default
--------------------------------------------- */
.wysiwyg > :last-child {
  margin-bottom: 0 !important;
}

.wysiwyg sup {
  vertical-align: super;
  font-size: smaller;
}

.wysiwyg sub {
  vertical-align: sub;
  font-size: smaller;
}

.wysiwyg h1, .wysiwyg h2, .c-section-download h2, .c-section-movie h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg p, .wysiwyg ul, .wysiwyg ol {
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 750px) {
  .wysiwyg h1, .wysiwyg h2, .c-section-download h2, .c-section-movie h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg p, .wysiwyg ul, .wysiwyg o {
    margin-bottom: 2.66667vw;
  }
}
.wysiwyg h2 strong {
  color: #da1f3d;
  font-weight: 500;
}

.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4 {
  font-weight: bold;
}

.wysiwyg h2, .wysiwyg h3 {
  color: #000;
}

.wysiwyg h2, .c-section-download h2 {
  position: relative;
  display: inline-block;
  padding: 5px 0 6px 15px;
  border-left: 5px solid #ab1818;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 1.375rem;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .wysiwyg h2, .c-section-download h2 {
    padding: 1.33333vw 0 1.6vw 4vw;
    font-size: 6.13333vw;
  }
}
.wysiwyg h3 {
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 1.1875rem;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
  .wysiwyg h3 {
    padding-bottom: 2.66667vw;
    font-size: 5.06667vw;
  }
}
.wysiwyg i,
.wysiwyg strong {
  font-weight: bold;
}

.wysiwyg p {
  letter-spacing: 0.02em;
  font-size: 1.0625rem;
  line-height: 1.9;
  font-family: helvetica, arial, "hiragino kaku gothic pro", meiryo, "ms pgothic", sans-serif;
}

.wysiwyg p img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 750px) {
  .wysiwyg p {
    font-size: 4.26667vw;
  }
}
@media screen and (min-width: 751px) {
  .wysiwyg a {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .wysiwyg a:hover {
    opacity: 0.6;
  }
}
.wysiwyg ul,
.wysiwyg ol {
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 750px) {
  .wysiwyg ul, .wysiwyg ol {
    margin-bottom: 2.66667vw;
  }
}
.wysiwyg ul li,
.wysiwyg ol li {
  position: relative;
  padding-left: 15px;
  text-indent: -15px;
  letter-spacing: 0.02em;
  font-size: 1.0625rem;
  line-height: 1.88;
  font-family: helvetica, arial, "hiragino kaku gothic pro", meiryo, "ms pgothic", sans-serif;
}

.wysiwyg ol {
  padding-left: revert;
}

.wysiwyg ol li {
  /*list-style: decimal !important;*/
}

@media screen and (max-width: 750px) {
  .wysiwyg ul li,
  .wysiwyg ol li {
    padding-left: 4vw;
    font-size: 4.26667vw;
  }
}
/*
.wysiwyg ul li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '・';
}*/
.wysiwyg blockquote {
  margin: 2rem 0;
  padding: 2em;
  background-color: #f8f8f8;
  font-size: 0.875rem;
  font-family: helvetica, arial, "hiragino kaku gothic pro", meiryo, "ms pgothic", sans-serif;
}

@media screen and (max-width: 750px) {
  .wysiwyg blockquote {
    margin-top: 4vw;
    margin-bottom: 4vw;
    padding: 4vw;
  }
}
.wysiwyg .aligncenter {
  display: block;
  margin: 0 auto 2.5rem;
  max-width: 100%;
}

@media screen and (max-width: 750px) {
  .wysiwyg .aligncenter {
    margin-bottom: 4vw;
  }
}
.wysiwyg .alignright {
  float: right;
  max-width: 100%;
}

@media screen and (max-width: 750px) {
  .wysiwyg .alignright {
    float: none;
    margin-top: 4vw;
    margin-left: 0;
  }
}
.wysiwyg .alignleft {
  float: left;
  max-width: 100%;
}

@media screen and (max-width: 750px) {
  .wysiwyg .alignleft {
    float: none;
    margin-top: 4vw;
    margin-right: 0;
  }
}
.wysiwyg br {
  clear: both;
}

.wysiwyg img[class*=wp-image-],
.wysiwyg img[class*=attachment-] {
  max-width: 100%;
  height: auto;
}

.wysiwyg .keypoint {
  margin-bottom: 1.25rem;
  padding: 19px 19px 28px;
  border: 3px solid #cccccc;
  border-radius: 4px;
  text-indent: 0;
}

@media screen and (max-width: 750px) {
  .wysiwyg .keypoint {
    margin-bottom: 2.66667vw;
    padding: 4vw;
    border: 2px solid #cccccc;
    border-radius: 1.06667vw;
  }
}
.wysiwyg .keypoint h2,
.wysiwyg .keypoint h4 {
  position: relative;
  border-left: none;
  letter-spacing: 0.025em;
  font-weight: 500;
  font-size: 1.25rem;
  display: inline-block;
  padding: 5px 0 6px 45px;
  margin-bottom: 0;
}

@media screen and (max-width: 750px) {
  .wysiwyg .keypoint h2,
  .wysiwyg .keypoint h4 {
    padding-left: 10.66667vw;
    font-size: 5.33333vw;
  }
}
.wysiwyg .keypoint h2::before,
.wysiwyg .keypoint h4::before {
  position: absolute;
  top: 50%;
  left: 8%;
  z-index: 10;
  width: 9px;
  height: 23px;
  background: url(../../../img/common/icon_exclamation.svg) 0 0 no-repeat;
  background-size: 100% 100%;
  content: "";
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

@media screen and (max-width: 750px) {
  .wysiwyg .keypoint h2::before,
  .wysiwyg .keypoint h4::before {
    width: 2.4vw;
    height: 6.13333vw;
  }
}
.wysiwyg .keypoint h2::after,
.wysiwyg .keypoint h4::after {
  position: absolute;
  top: 50%;
  left: 8%;
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  content: "";
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  background: #333;
}

@media screen and (max-width: 750px) {
  .wysiwyg .keypoint h2::after,
  .wysiwyg .keypoint h4::after {
    margin-right: 1.33333vw;
    margin-right: 2.66667vw;
    width: 8.53333vw;
    height: 8.53333vw;
    border-radius: 0.8vw;
  }
}
.wysiwyg .keypoint p {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.0625rem;
  margin-bottom: 0;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
  background-color: #fff !important;
}

/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
  text-align: center !important;
}

.txt-al-right {
  text-align: right !important;
}

.txt-al-left {
  text-align: left !important;
}

@media screen and (min-width: 751px) {
  .pc-hide {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .sp-hide {
    display: none !important;
  }
}
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
  margin-top: 0 !important;
}

.mgt-pc--5 {
  margin-top: 5px !important;
}

.mgt-pc--10 {
  margin-top: 10px !important;
}

.mgt-pc--15 {
  margin-top: 15px !important;
}

.mgt-pc--20 {
  margin-top: 20px !important;
}

.mgt-pc--25 {
  margin-top: 25px !important;
}

.mgt-pc--30 {
  margin-top: 30px !important;
}

.mgt-pc--35 {
  margin-top: 35px !important;
}

.mgt-pc--40 {
  margin-top: 40px !important;
}

.mgt-pc--45 {
  margin-top: 45px !important;
}

.mgt-pc--50 {
  margin-top: 50px !important;
}

.mgt-pc--55 {
  margin-top: 55px !important;
}

.mgt-pc--60 {
  margin-top: 60px !important;
}

.mgt-pc--65 {
  margin-top: 65px !important;
}

.mgt-pc--70 {
  margin-top: 70px !important;
}

.mgt-pc--75 {
  margin-top: 75px !important;
}

.mgt-pc--80 {
  margin-top: 80px !important;
}

.mgt-pc--85 {
  margin-top: 85px !important;
}

.mgt-pc--90 {
  margin-top: 90px !important;
}

.mgt-pc--95 {
  margin-top: 95px !important;
}

.mgt-pc--100 {
  margin-top: 100px !important;
}

.mgt-pc--105 {
  margin-top: 105px !important;
}

.mgt-pc--110 {
  margin-top: 110px !important;
}

.mgt-pc--115 {
  margin-top: 115px !important;
}

.mgt-pc--120 {
  margin-top: 120px !important;
}

.mgt-pc--125 {
  margin-top: 125px !important;
}

.mgt-pc--130 {
  margin-top: 130px !important;
}

.mgt-pc--135 {
  margin-top: 135px !important;
}

.mgt-pc--140 {
  margin-top: 140px !important;
}

.mgt-pc--145 {
  margin-top: 145px !important;
}

.mgt-pc--150 {
  margin-top: 150px !important;
}

.mgt-pc--155 {
  margin-top: 155px !important;
}

.mgt-pc--160 {
  margin-top: 160px !important;
}

.mgt-pc--165 {
  margin-top: 165px !important;
}

.mgt-pc--170 {
  margin-top: 170px !important;
}

.mgt-pc--175 {
  margin-top: 175px !important;
}

.mgt-pc--180 {
  margin-top: 180px !important;
}

.mgt-pc--185 {
  margin-top: 185px !important;
}

.mgt-pc--190 {
  margin-top: 190px !important;
}

.mgt-pc--195 {
  margin-top: 195px !important;
}

.mgt-pc--200 {
  margin-top: 200px !important;
}

.mgt-pc--205 {
  margin-top: 205px !important;
}

.mgt-pc--210 {
  margin-top: 210px !important;
}

.mgt-pc--215 {
  margin-top: 215px !important;
}

.mgt-pc--220 {
  margin-top: 220px !important;
}

.mgt-pc--225 {
  margin-top: 225px !important;
}

.mgt-pc--230 {
  margin-top: 230px !important;
}

.mgt-pc--235 {
  margin-top: 235px !important;
}

.mgt-pc--240 {
  margin-top: 240px !important;
}

.mgt-pc--245 {
  margin-top: 245px !important;
}

.mgt-pc--250 {
  margin-top: 250px !important;
}

@media screen and (max-width: 750px) {
  .mgt-sp--0 {
    margin-top: 0 !important;
  }
  .mgt-sp--5 {
    margin-top: 0.66667vw !important;
  }
  .mgt-sp--10 {
    margin-top: 1.33333vw !important;
  }
  .mgt-sp--15 {
    margin-top: 2vw !important;
  }
  .mgt-sp--20 {
    margin-top: 2.66667vw !important;
  }
  .mgt-sp--25 {
    margin-top: 3.33333vw !important;
  }
  .mgt-sp--30 {
    margin-top: 4vw !important;
  }
  .mgt-sp--35 {
    margin-top: 4.66667vw !important;
  }
  .mgt-sp--40 {
    margin-top: 5.33333vw !important;
  }
  .mgt-sp--45 {
    margin-top: 6vw !important;
  }
  .mgt-sp--50 {
    margin-top: 6.66667vw !important;
  }
  .mgt-sp--55 {
    margin-top: 7.33333vw !important;
  }
  .mgt-sp--60 {
    margin-top: 8vw !important;
  }
  .mgt-sp--65 {
    margin-top: 8.66667vw !important;
  }
  .mgt-sp--70 {
    margin-top: 9.33333vw !important;
  }
  .mgt-sp--75 {
    margin-top: 10vw !important;
  }
  .mgt-sp--80 {
    margin-top: 10.66667vw !important;
  }
  .mgt-sp--85 {
    margin-top: 11.33333vw !important;
  }
  .mgt-sp--90 {
    margin-top: 12vw !important;
  }
  .mgt-sp--95 {
    margin-top: 12.66667vw !important;
  }
  .mgt-sp--100 {
    margin-top: 13.33333vw !important;
  }
  .mgt-sp--105 {
    margin-top: 14vw !important;
  }
  .mgt-sp--110 {
    margin-top: 14.66667vw !important;
  }
  .mgt-sp--115 {
    margin-top: 15.33333vw !important;
  }
  .mgt-sp--120 {
    margin-top: 16vw !important;
  }
  .mgt-sp--125 {
    margin-top: 16.66667vw !important;
  }
  .mgt-sp--130 {
    margin-top: 17.33333vw !important;
  }
  .mgt-sp--135 {
    margin-top: 18vw !important;
  }
  .mgt-sp--140 {
    margin-top: 18.66667vw !important;
  }
  .mgt-sp--145 {
    margin-top: 19.33333vw !important;
  }
  .mgt-sp--150 {
    margin-top: 20vw !important;
  }
  .mgt-sp--155 {
    margin-top: 20.66667vw !important;
  }
  .mgt-sp--160 {
    margin-top: 21.33333vw !important;
  }
  .mgt-sp--165 {
    margin-top: 22vw !important;
  }
  .mgt-sp--170 {
    margin-top: 22.66667vw !important;
  }
  .mgt-sp--175 {
    margin-top: 23.33333vw !important;
  }
  .mgt-sp--180 {
    margin-top: 24vw !important;
  }
  .mgt-sp--185 {
    margin-top: 24.66667vw !important;
  }
  .mgt-sp--190 {
    margin-top: 25.33333vw !important;
  }
  .mgt-sp--195 {
    margin-top: 26vw !important;
  }
  .mgt-sp--200 {
    margin-top: 26.66667vw !important;
  }
  .mgt-sp--205 {
    margin-top: 27.33333vw !important;
  }
  .mgt-sp--210 {
    margin-top: 28vw !important;
  }
  .mgt-sp--215 {
    margin-top: 28.66667vw !important;
  }
  .mgt-sp--220 {
    margin-top: 29.33333vw !important;
  }
  .mgt-sp--225 {
    margin-top: 30vw !important;
  }
  .mgt-sp--230 {
    margin-top: 30.66667vw !important;
  }
  .mgt-sp--235 {
    margin-top: 31.33333vw !important;
  }
  .mgt-sp--240 {
    margin-top: 32vw !important;
  }
  .mgt-sp--245 {
    margin-top: 32.66667vw !important;
  }
  .mgt-sp--250 {
    margin-top: 33.33333vw !important;
  }
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
  margin-bottom: 0 !important;
}

.mgb-pc--5 {
  margin-bottom: 5px !important;
}

.mgb-pc--10 {
  margin-bottom: 10px !important;
}

.mgb-pc--15 {
  margin-bottom: 15px !important;
}

.mgb-pc--20 {
  margin-bottom: 20px !important;
}

.mgb-pc--25 {
  margin-bottom: 25px !important;
}

.mgb-pc--30 {
  margin-bottom: 30px !important;
}

.mgb-pc--35 {
  margin-bottom: 35px !important;
}

.mgb-pc--40 {
  margin-bottom: 40px !important;
}

.mgb-pc--45 {
  margin-bottom: 45px !important;
}

.mgb-pc--50 {
  margin-bottom: 50px !important;
}

.mgb-pc--55 {
  margin-bottom: 55px !important;
}

.mgb-pc--60 {
  margin-bottom: 60px !important;
}

.mgb-pc--65 {
  margin-bottom: 65px !important;
}

.mgb-pc--70 {
  margin-bottom: 70px !important;
}

.mgb-pc--75 {
  margin-bottom: 75px !important;
}

.mgb-pc--80 {
  margin-bottom: 80px !important;
}

.mgb-pc--85 {
  margin-bottom: 85px !important;
}

.mgb-pc--90 {
  margin-bottom: 90px !important;
}

.mgb-pc--95 {
  margin-bottom: 95px !important;
}

.mgb-pc--100 {
  margin-bottom: 100px !important;
}

.mgb-pc--105 {
  margin-bottom: 105px !important;
}

.mgb-pc--110 {
  margin-bottom: 110px !important;
}

.mgb-pc--115 {
  margin-bottom: 115px !important;
}

.mgb-pc--120 {
  margin-bottom: 120px !important;
}

.mgb-pc--125 {
  margin-bottom: 125px !important;
}

.mgb-pc--130 {
  margin-bottom: 130px !important;
}

.mgb-pc--135 {
  margin-bottom: 135px !important;
}

.mgb-pc--140 {
  margin-bottom: 140px !important;
}

.mgb-pc--145 {
  margin-bottom: 145px !important;
}

.mgb-pc--150 {
  margin-bottom: 150px !important;
}

.mgb-pc--155 {
  margin-bottom: 155px !important;
}

.mgb-pc--160 {
  margin-bottom: 160px !important;
}

.mgb-pc--165 {
  margin-bottom: 165px !important;
}

.mgb-pc--170 {
  margin-bottom: 170px !important;
}

.mgb-pc--175 {
  margin-bottom: 175px !important;
}

.mgb-pc--180 {
  margin-bottom: 180px !important;
}

.mgb-pc--185 {
  margin-bottom: 185px !important;
}

.mgb-pc--190 {
  margin-bottom: 190px !important;
}

.mgb-pc--195 {
  margin-bottom: 195px !important;
}

.mgb-pc--200 {
  margin-bottom: 200px !important;
}

.mgb-pc--205 {
  margin-bottom: 205px !important;
}

.mgb-pc--210 {
  margin-bottom: 210px !important;
}

.mgb-pc--215 {
  margin-bottom: 215px !important;
}

.mgb-pc--220 {
  margin-bottom: 220px !important;
}

.mgb-pc--225 {
  margin-bottom: 225px !important;
}

.mgb-pc--230 {
  margin-bottom: 230px !important;
}

.mgb-pc--235 {
  margin-bottom: 235px !important;
}

.mgb-pc--240 {
  margin-bottom: 240px !important;
}

.mgb-pc--245 {
  margin-bottom: 245px !important;
}

.mgb-pc--250 {
  margin-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
  .mgb-sp--0 {
    margin-bottom: 0 !important;
  }
  .mgb-sp--5 {
    margin-bottom: 0.66667vw !important;
  }
  .mgb-sp--10 {
    margin-bottom: 1.33333vw !important;
  }
  .mgb-sp--15 {
    margin-bottom: 2vw !important;
  }
  .mgb-sp--20 {
    margin-bottom: 2.66667vw !important;
  }
  .mgb-sp--25 {
    margin-bottom: 3.33333vw !important;
  }
  .mgb-sp--30 {
    margin-bottom: 4vw !important;
  }
  .mgb-sp--35 {
    margin-bottom: 4.66667vw !important;
  }
  .mgb-sp--40 {
    margin-bottom: 5.33333vw !important;
  }
  .mgb-sp--45 {
    margin-bottom: 6vw !important;
  }
  .mgb-sp--50 {
    margin-bottom: 6.66667vw !important;
  }
  .mgb-sp--55 {
    margin-bottom: 7.33333vw !important;
  }
  .mgb-sp--60 {
    margin-bottom: 8vw !important;
  }
  .mgb-sp--65 {
    margin-bottom: 8.66667vw !important;
  }
  .mgb-sp--70 {
    margin-bottom: 9.33333vw !important;
  }
  .mgb-sp--75 {
    margin-bottom: 10vw !important;
  }
  .mgb-sp--80 {
    margin-bottom: 10.66667vw !important;
  }
  .mgb-sp--85 {
    margin-bottom: 11.33333vw !important;
  }
  .mgb-sp--90 {
    margin-bottom: 12vw !important;
  }
  .mgb-sp--95 {
    margin-bottom: 12.66667vw !important;
  }
  .mgb-sp--100 {
    margin-bottom: 13.33333vw !important;
  }
  .mgb-sp--105 {
    margin-bottom: 14vw !important;
  }
  .mgb-sp--110 {
    margin-bottom: 14.66667vw !important;
  }
  .mgb-sp--115 {
    margin-bottom: 15.33333vw !important;
  }
  .mgb-sp--120 {
    margin-bottom: 16vw !important;
  }
  .mgb-sp--125 {
    margin-bottom: 16.66667vw !important;
  }
  .mgb-sp--130 {
    margin-bottom: 17.33333vw !important;
  }
  .mgb-sp--135 {
    margin-bottom: 18vw !important;
  }
  .mgb-sp--140 {
    margin-bottom: 18.66667vw !important;
  }
  .mgb-sp--145 {
    margin-bottom: 19.33333vw !important;
  }
  .mgb-sp--150 {
    margin-bottom: 20vw !important;
  }
  .mgb-sp--155 {
    margin-bottom: 20.66667vw !important;
  }
  .mgb-sp--160 {
    margin-bottom: 21.33333vw !important;
  }
  .mgb-sp--165 {
    margin-bottom: 22vw !important;
  }
  .mgb-sp--170 {
    margin-bottom: 22.66667vw !important;
  }
  .mgb-sp--175 {
    margin-bottom: 23.33333vw !important;
  }
  .mgb-sp--180 {
    margin-bottom: 24vw !important;
  }
  .mgb-sp--185 {
    margin-bottom: 24.66667vw !important;
  }
  .mgb-sp--190 {
    margin-bottom: 25.33333vw !important;
  }
  .mgb-sp--195 {
    margin-bottom: 26vw !important;
  }
  .mgb-sp--200 {
    margin-bottom: 26.66667vw !important;
  }
  .mgb-sp--205 {
    margin-bottom: 27.33333vw !important;
  }
  .mgb-sp--210 {
    margin-bottom: 28vw !important;
  }
  .mgb-sp--215 {
    margin-bottom: 28.66667vw !important;
  }
  .mgb-sp--220 {
    margin-bottom: 29.33333vw !important;
  }
  .mgb-sp--225 {
    margin-bottom: 30vw !important;
  }
  .mgb-sp--230 {
    margin-bottom: 30.66667vw !important;
  }
  .mgb-sp--235 {
    margin-bottom: 31.33333vw !important;
  }
  .mgb-sp--240 {
    margin-bottom: 32vw !important;
  }
  .mgb-sp--245 {
    margin-bottom: 32.66667vw !important;
  }
  .mgb-sp--250 {
    margin-bottom: 33.33333vw !important;
  }
}