

/*========================================
Foundation（初期化）
==========================================*/

/* IE、旧EdgeのViewport解除 */
@-ms-viewport {
  width: auto;
}

/* 印刷用 */
@page { /* IE用 */
  size: 420mm 594mm;
}
@media print and (-ms-high-contrast: none) {
  body {
    -webkit-print-color-adjust: exact;
    width: 1120px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
  font-size: 62.5%; /* remのルートを10pxに初期化 */
  overflow-y: scroll; /* スクロールバー領域を常に表示 */
}
body {
  background-color: #121A38;
  color: #fff;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 1.6em;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%; /* iOS横向き用 */
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}
ul, ol {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.7;
  font-weight: normal;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
@media (min-width: 768px) {
  a:hover {
    text-decoration: underline;
  }
  a img {
    transition: opacity 0.2s;
  }
  a:hover img {
    opacity: 0.7;
  }
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 600;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-bottom: 1px solid #3B486F;
  margin: 1em 0;
  padding: 0;
}
.c-bg-white hr {
  border-bottom: 1px solid #D5DDEB;
}
input, select {
  vertical-align: middle;
}
input[type="radio"] {
  display: inline-block;
  position: relative;
  top: 1px;
  margin: 0 3px 0 0;
}
button, input, select, textarea {
  font: inherit;
}



/*========================================
Layout（接頭辞 l-）
==========================================*/

/* ラッパー
-----------------------*/
.l-wrapper {
  display: flex;
  position: relative;
}
.l-wrapper__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

/* ヘッダー
-----------------------*/
.l-header {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 70px;
  transition: all 0.3s;
}
.l-header.is-bg {
  background: #121A38;
}
.l-header.is-scroll {
  background: #121A38;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 100%;
}
@media (max-width: 1023px) {
  .l-header.is-open {
    background: #070F26;
  }
}
@media (min-width: 1024px) {
  .l-header {
    height: 160px;
    font-size: 1.4rem;
    transition: none;
  }
  .l-header.is-scroll {
    height: 80px;
  }
  .l-header.is-open {
    background: #121A38;
  }
  .l-header__inner {
    display: block;
    padding: 40px;
    height: 100%;
  }
  .l-header a:hover {
    text-decoration: none;
  }
}

.l-header__logo {
  width: 120px;
  font-size: 0;
}
@media (min-width: 1024px) {
  .l-header__logo {
    position: absolute;
    left: 40px;
    top: 40px;
    width: auto;
  }
  .is-scroll .l-header__logo {
    overflow: hidden;
    top: 29px;
    height: 23px;
  }
}

.l-header__subnav {
  margin-left: auto;
}

.l-header__subnav li:not(.l-header__ico-search) {
  display: none;
}
.l-header__ico-search {
  font-size: 0;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .l-header__subnav {
    position: absolute;
    right: 40px;
    top: 48px;
    margin-left: auto;
  }
  .is-scroll .l-header__subnav {
    display: none;
  }
  .l-header__subnav ul {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    line-height: 1;
  }
  .l-header__subnav li {
    margin-left: 40px;
  }
  .l-header__subnav li:not(.l-header__ico-search) {
    display: block;
  }
  .l-header__subnav li a:hover {
    text-decoration: underline;
  }
}

.l-header__country {
  display: none;
}
@media (min-width: 1024px) {
  .l-header__country {
    display: block;
    position: absolute;
    left: 40px;
    bottom: 40px;
    font-size: 1.1rem;
    line-height: 1;
  }
  .is-scroll .l-header__country {
    display: none;
  }
  .l-header__country a {
    display: inline-flex;
    align-items: center;
  }
  .l-header__country a::before {
    content: '';
    display: inline-block;
    margin-right: 4px;
    background: url("../image/world.svg") no-repeat;
    background-size: 100%;
    width: 16px;
    height: 16px;
  }
  .l-header__country a span {
    display: inline-flex;
    align-items: center;
  }
  .l-header__country a span::before {
    content: '';
    display: inline-block;
    position: relative;
    top: 0px;
    margin: 0 6px;
    background: #fff;
    width: 1px;
    height: 14px;
  }
}

.l-header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .l-header__nav {
    display: block;
    position: absolute;
    right: 40px;
    bottom: 40px;
  }
  .is-scroll .l-header__nav {
    bottom: 33px;
  }
  .l-header__nav ul {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    line-height: 1;
  }
  .l-header__nav li {
    position: relative;
    margin-left: 40px;
  }
  .l-header__nav li:hover::before,
  .l-header__nav li.is-open::before,
  .l-header__nav li.is-current::before {
    content: '';
    position: absolute;
    left: -10px;
    bottom: -40px;
    background: #6785C1;
    width: calc(100% + 20px);
    height: 4px;
  }
  .is-scroll .l-header__nav li:hover::before,
  .is-scroll .l-header__nav li.is-open::before,
  .is-scroll .l-header__nav li.is-current::before {
    bottom: -33px;
  }
  .l-header__nav li a::before {
    content: '';
    display: block;
    position: absolute;
    left: -10px;
    right: -10px;
    top: -20px;
    bottom: -40px;
  }
  .is-scroll .l-header__nav li a::before {
    bottom: -33px;
  }
}

.l-header__ico-menu {
  position: relative;
  margin-left: 30px;
  width: 20px;
  height: 14px;
  cursor: pointer;
}
.l-header__ico-menu span,
.l-header__ico-menu span::before,
.l-header__ico-menu span::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  background: #fff;
  width: 100%;
  height: 2px;
}
.l-header__ico-menu span {
  top: 6px;
}
.l-header__ico-menu span::before {
  content: "";
  top: -6px;
}
.l-header__ico-menu span::after {
  content: "";
  top: 6px;
}
@media (min-width: 1024px) {
  .l-header__ico-menu {
    display: none;
  }
}

@media (max-width: 1023px) {
  .l-header__menu {
    overflow: auto;
    position: absolute;
    left: 0;
    top: 70px;
    background: #070F26;
    width: 100%;
    height: 0;
    transition: all 0.3s;
  }
  .is-menu-open .l-header__menu {
    height: calc(100vh - 70px);
  }

  .l-header__menu-nav > ul {
    border-bottom: 1px solid #3B486F;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
  }
  .l-header__menu-nav > ul > li {
    border-top: 1px solid #3B486F;
  }
  .l-header__menu-nav > ul > li > a,
  .l-header__menu-nav > ul > li > span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 64px;
  }
  .l-header__menu-nav > ul > li > *::after,
  .l-header__menu-nav > ul > li > span::after {
    content: '';
    background: url(../image/plus.svg) no-repeat;
    background-size: 100%;
    width: 24px;
    height: 24px;
  }
  .l-header__menu-nav > ul > li.is-open > a::after,
  .l-header__menu-nav > ul > li.is-open > span::after {
    background: url(../image/minus.svg) no-repeat;
    background-size: 100%;
  }
  .l-header__menu-nav li.is-no-icon > a::after,
  .l-header__menu-nav li.is-no-icon > span::after {
    display: none;
  }

  .l-header__menu-nav > ul > li > ul {
    display: none;
    border-top: 1px solid #3B486F;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .l-header__menu-nav > ul > li > ul > li:first-child {
    padding-top: 10px;
  }
  .l-header__menu-nav > ul > li > ul > li:last-child {
    padding-bottom: 10px;
  }
  .l-header__menu-nav > ul > li > ul > li > a,
  .l-header__menu-nav > ul > li > ul > li > span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 10px 40px;
  }
  .l-header__menu-nav > ul > li > ul > li > a::after,
  .l-header__menu-nav > ul > li > ul > li > span::after {
    content: '';
    background: url(../image/plus.svg) no-repeat;
    background-size: 100%;
    width: 16px;
    height: 16px;
  }
  .l-header__menu-nav > ul > li > ul > li.is-open > a::after,
  .l-header__menu-nav > ul > li > ul > li.is-open > span::after {
    background: url(../image/minus.svg) no-repeat;
    background-size: 100%;
  }

  .l-header__menu-nav > ul > li > ul > li > ul {
    display: none;
    background: #121A38;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .l-header__menu-nav > ul > li > ul > li > ul > li:first-child {
    padding-top: 10px;
  }
  .l-header__menu-nav > ul > li > ul > li > ul > li:last-child {
    padding-bottom: 10px;
  }
  .l-header__menu-nav > ul > li > ul > li > ul > li > a,
  .l-header__menu-nav > ul > li > ul > li > ul > li > span {
    display: block;
    padding: 10px 20px 10px 60px;
  }

  .l-header__menu-nav > ul > li > ul > li > ul > li > ul {
    color: #6785C1;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.17;
  }
  .l-header__menu-nav > ul > li > ul > li > ul > li > ul > li > a,
  .l-header__menu-nav > ul > li > ul > li > ul > li > ul > li > span {
    display: block;
    padding: 10px 20px 10px 80px;
  }

  .l-header__menu-subnav {
    margin-top: 40px;
  }
  .l-header__menu-subnav ul {
    padding: 0 20px;
    font-size: 1.4rem;
    line-height: 1;
  }
  .l-header__menu-subnav ul li a {
    display: inline-block;
    padding: 10px 0;
  }

  .l-header__menu-country {
    margin-top: 40px;
    padding: 0 20px;
    font-size: 1.1rem;
    line-height: 1;
  }
  .l-header__menu-country a {
    display: inline-flex;
    align-items: center;
  }
  .l-header__menu-country a::before {
    content: '';
    display: inline-block;
    margin-right: 4px;
    background: url("../image/world.svg") no-repeat;
    background-size: 100%;
    width: 16px;
    height: 16px;
  }
  .l-header__menu-country a span {
    display: inline-flex;
    align-items: center;
  }
  .l-header__menu-country a span::before {
    content: '';
    display: inline-block;
    position: relative;
    top: 0px;
    margin: 0 6px;
    background: #fff;
    width: 1px;
    height: 14px;
  }
}
@media (min-width: 1024px) {
  .l-header__menu {
    overflow: auto;
    position: absolute;
    left: 0;
    top: 160px;
    width: 100%;
    max-height: calc(100vh - 160px);
  }
  .is-scroll .l-header__menu {
    top: 80px;
    max-height: calc(100vh - 80px);
  }

  .l-header__menu-nav > ul > li {
    display: none;
    padding: 50px 40px;
    background: #070F26;
  }
  .l-header__menu-nav > ul > li.is-open {
    display: block;
  }
  .l-header__menu-nav > ul > li > a,
  .l-header__menu-nav > ul > li > span {
    display: inline-flex;
    align-items: center;
    font-size: 3.2rem;
    line-height: 1;
  }
  .l-header__menu-nav > ul > li > a::after,
  .l-header__menu-nav > ul > li > span::after {
    content: '';
    position: relative;
    right: 0;
    background: url(../image/arrow_right.svg) no-repeat;
    background-size: 100%;
    margin-left: 25px;
    width: 24px;
    height: 24px;
    transition: all 0.2s;
  }
  .l-header__menu-nav > ul > li > a:hover::after,
  .l-header__menu-nav > ul > li > span:hover::after {
    right: -5px;
  }

  .l-header__menu-nav > ul > li > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0;
    font-size: 2rem;
    line-height: 1.3;
  }
  .l-header__menu-nav > ul > li > ul > li {
    margin-top: 50px;
    width: calc((100% - (2 * 50px)) / 3);
  }
  .l-header__menu-nav > ul > li > ul::after {
    content: '';
    width: calc((100% - (2 * 50px)) / 3);
  }
  .l-header__menu-nav > ul > li.is-services-style > ul > li {
    width: calc((100% - (3 * 50px)) / 4);
  }
  .l-header__menu-nav > ul > li.is-services-style > ul::before,
  .l-header__menu-nav > ul > li.is-services-style > ul::after {
    content: '';
    width: calc((100% - (3 * 50px)) / 4);
    order:1;
  }
  .l-header__menu-nav > ul > li.is-services-style > ul > li:nth-child(2) {
    width: calc(((100% - (3 * 50px)) / 4) * 2 + 50px);
  }
  .l-header__menu-nav > ul > li > ul > li a:hover {
    text-decoration: underline;
  }

  .l-header__menu-nav > ul > li > ul > li > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .l-header__menu-nav > ul > li > ul > li > ul > li {
    margin-top: 15px;
    width: 100%;
  }
  .l-header__menu-nav > ul > li.is-services-style > ul > li:nth-child(2) > ul {
    display: block;
    margin-top: 0;
  }
  .l-header__menu-nav > ul > li.is-services-style > ul > li:nth-child(2) > ul > li {
    float: left;
    margin-top: 35px;
    width: calc((100% - (1 * 50px)) / 2);
    color: #fff;
    font-size: 1.4rem;
  }
  .l-header__menu-nav > ul > li.is-services-style > ul > li:nth-child(2) > ul > li:nth-child(odd),
  .l-header__menu-nav > ul > li.is-services-style > ul > li:nth-child(2) > ul > li:last-child {
    margin-left: 50px;
  }

  .l-header__menu-nav > ul > li > ul > li > ul > li > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
    color: #6785C1;
    font-size: 1.2rem;
    line-height: 1;
  }
  .l-header__menu-nav > ul > li > ul > li > ul > li > ul > li {
    margin-top: 15px;
    width: 100%;
  }

  .l-header__menu-subnav {
    display: none;
  }

  .l-header__menu-country {
    display: none;
  }
}
@media (min-width: 1024px) {
  .l-header__menu-nav > ul > li {
    padding: 50px 8%;
  }
}

@media (max-width: 1023px) {
  .l-header__search {
    overflow: auto;
    position: absolute;
    left: 0;
    top: 70px;
    background: #070F26;
    width: 100%;
    height: 0;
    transition: all 0.3s;
  }
  .is-search-open .l-header__search {
    height: calc(100vh - 70px);
    background: #070F26;
  }
  .l-header__search__inner {
    padding: 40px 20px;
  }
  .l-header__search-form {
    position: relative;
  }
  .l-header__search-form__ico-search {
    display: none;
  }
  .l-header__search-form__input {
    position: relative;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 0 30px 8px 0;
    background: none;
    width: 100%;
    color: #fff;
    font-size: 2rem;
    line-height: 1.3;
    outline: none;
  }
  .l-header__search-form__input::placeholder {
    color: #3B486F;
  }
  .l-header__search-form__input:-ms-input-placeholder {
    color: #3B486F;
  }
  .l-header__search-form__button {
    position: absolute;
    right: 0;
    bottom: 9px;
    border: none;
    padding: 0;
    background: none;
    width: 24px;
    font-size: 0;
    cursor: pointer;
  }
  .l-header__search-form__button img {
    width: 100%;
  }
  .l-header__search-list {
    margin-top: 80px;
  }
  .l-header__search-list dl dt {
    font-size: 1.6rem;
    font-weight: 700;
  }
  .l-header__search-list dl dd {
    margin-top: 24px;
  }
  .l-header__search-list dl dd ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: -20px;
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .l-header__search-list dl dd ul li {
    margin-top: 20px;
    margin-right: 43px;
  }
}
@media (min-width: 1024px) {
  .l-header__search {
    display: none;
    position: absolute;
    left: 0;
    top: 160px;
    background: #070F26;
    width: 100%;
  }
  .is-scroll .l-header__search {
    top: 80px;
  }
  .l-header__search__inner {
    padding: 80px 40px;
  }
  .is-search-open .l-header__search {
    display: block;
  }
  .l-header__search-form {
    position: relative;
  }
  .l-header__search-form__ico-search {
    position: absolute;
    left: 0;
    bottom: 15px;
    width: 48px;
    font-size: 0;
  }
  .l-header__search-form__ico-search img {
    width: 100%;
  }
  .l-header__search-form__input {
    position: relative;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 0 30px 17px 88px;
    background: none;
    width: 100%;
    color: #fff;
    font-size: 3.2rem;
    line-height: 1.3;
    outline: none;
  }
  .l-header__search-form__input::placeholder {
    color: #3B486F;
  }
  .l-header__search-form__input:-ms-input-placeholder {
    color: #3B486F;
  }
  .l-header__search-form__button {
    position: absolute;
    right: 0;
    bottom: 27px;
    border: none;
    padding: 0;
    background: none;
    width: 24px;
    font-size: 0;
    cursor: pointer;
  }
  .l-header__search-form__button img {
    width: 100%;
  }
  .l-header__search-list {
    margin-top: 64px;
  }
  .l-header__search-list dl dt {
    font-size: 2rem;
    font-weight: 700;
  }
  .l-header__search-list dl dd {
    margin-top: 32px;
  }
  .l-header__search-list dl dd ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -10px;
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .l-header__search-list dl dd ul li {
    margin-top: 10px;
    width: calc((100% - (2 * 50px)) / 3);
  }
  .l-header__search-list dl dd ul::after {
    content: '';
    width: calc((100% - (2 * 50px)) / 3);
  }
}
@media (min-width: 1024px) {
  .l-header__search__inner {
    padding: 80px 8%;
  }
}

/* メイン
-----------------------*/
.l-main {
  flex: none;
}
@media (min-width: 768px) {
  .l-main {
  }
}

/* フッター
-----------------------*/
.l-footer {
  position: relative;
  margin-top: auto;
}

.l-footer__page-top {
  overflow: hidden;
  position: fixed;
  z-index: 99;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-footer__page-top.is-bottom {
    position: absolute;
    bottom: auto;
    top: -70px;
  }
}
.l-footer__page-top a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  right: -70px;
  align-items: center;
  background: #5876aa;
  height: 100%;
  font-size: 1.4rem;
  line-height: 1;
  text-decoration: none;
  transition: right 0.4s, background 0.2s;
}
.l-footer__page-top a:hover {
  background: #7493CA;
}
.l-footer__page-top.is-scroll a {
  right: 0;
}
.l-footer__page-top a::before {
  content: '';
  margin-bottom: 5px;
  background: url(../image/arrow_s_top.svg) no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
}

.l-footer__breadcrumb {
/*  background: #121A38;*/
}
.l-footer__breadcrumb__inner {
  padding: 20px;
}
.l-footer__breadcrumb__nav {
  display: flex;
  align-items: center;
  color: #A0A9C1;
  font-size: 1.1rem;
  line-height: 1;
}
.l-footer__breadcrumb__nav li:not(:first-child)::before {
  content: '';
  display: inline-block;
  position: relative;
  top: 1px;
  margin: 0 10px;
  background: url(../image/arrow_s_right1.svg) no-repeat;
  background-size: 100%;
  width: 12px;
  height: 12px;
}
@media (min-width: 768px) {
  .l-footer__breadcrumb__inner {
    padding: 30px 40px;
  }
}
@media (min-width: 1024px) {
  .l-footer__breadcrumb__inner {
    padding: 30px 8%;
  }
}
@media (min-width: 1904px) {
  .l-footer__breadcrumb__inner {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    width: 1600px;
  }
}

.l-footer__upper {
  position: relative;
  background: #070F26;
}
.l-footer__upper__inner {
  padding: 60px 20px 40px;
}
@media (min-width: 768px) {
  .l-footer__upper__inner {
    padding: 80px 20px;
  }
}
@media (min-width: 1024px) {
  .l-footer__upper__inner {
    padding: 80px 40px;
  }
}
@media (min-width: 1904px) {
  .l-footer__upper__inner {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    width: 1600px;
  }
}

.l-footer__upper__page-top {
  display: none;
}
@media (min-width: 768px) {
  .l-footer__upper__page-top {
    display: none;
    position: absolute;
    right: 20px;
    top: 115px;
    font-size: 1.1rem;
    line-height: 1;
    transform: rotate(-90deg);
    transform-origin: right;
  }
  .l-footer__upper__page-top::before {
    content: '';
    position: absolute;
    top: 5px;
    right: -71px;
    background: #fff;
    width: 64px;
    height: 1px;
    animation: pageTopPromotion 1.5s cubic-bezier(1, 0, 0, 1) infinite;
  }
}
@keyframes pageTopPromotion {
  0% {
    transform: scale(0, 1);
    transform-origin: 0 0
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 100% 0
  }
  100% {
    transform: scale(0, 1);
    transform-origin: 100% 0
  }
}
@media (min-width: 1024px) {
  .l-footer__upper__page-top {
    display: block;
    right: 45px;
  }
}

.l-footer__upper__logo {
  width: 120px;
  font-size: 0;
}
@media (min-width: 768px) {
  .l-footer__upper__logo {
    width: auto;
  }
}

.l-footer__upper__country {
  margin-top: 25px;
  font-size: 1.1rem;
  line-height: 1;
}
.l-footer__upper__country a {
  display: inline-flex;
  align-items: center;
}
.l-footer__upper__country a::before {
  content: '';
  display: inline-block;
  margin-right: 4px;
  background: url("../image/world.svg") no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
}
.l-footer__upper__country a span {
  display: inline-flex;
  align-items: center;
}
.l-footer__upper__country a span::before {
  content: '';
  display: inline-block;
  position: relative;
  top: 0px;
  margin: 0 6px;
  background: #fff;
  width: 1px;
  height: 14px;
}

.l-footer__upper__nav {
  margin-top: 40px;
}
.l-footer__upper__nav > ul {
  font-size: 1.6rem;
  line-height: 1.2;
}
.l-footer__upper__nav > ul > li {
  font-weight: 700;
  line-height: 1.5;
}
.l-footer__upper__nav > ul > li:not(:first-child) {
  margin-top: 25px;
}
.l-footer__upper__nav > ul > li > a,
.l-footer__upper__nav > ul > li > span {
  display: inline-block;
  margin-bottom: 3px;
}
.l-footer__upper__nav > ul > li > ul {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
.l-footer__upper__nav > ul > li > ul > li {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .l-footer__upper__nav > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-footer__upper__nav > ul > li {
    width: calc((100% - (3 * 30px)) / 4);
  }
  .l-footer__upper__nav > ul::before,
  .l-footer__upper__nav > ul::after {
    content: '';
    margin-left: 30px;
    width: calc((100% - (3 * 30px)) / 4);
    order:1;
  }
  .l-footer__upper__nav > ul > li:not(:first-child):not(:nth-child(4n-3)) {
    margin-left: 30px;
  }
.l-footer__upper__nav > ul > li:not(:first-child) {
    margin-top: 0;
}
  .l-footer__upper__nav > ul > li:nth-child(n+5) {
    margin-top: 25px;
  }
}

.l-footer__lower {
  position: relative;
  border-top: 1px solid #3B486F;
  background: #070F26;
}
.l-footer__lower__inner {
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .l-footer__lower__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: -20px;
    padding: 40px 40px;
  }
}
@media (min-width: 1024px) {
  .l-footer__lower__inner {
    padding: 40px 40px;
  }
}
@media (min-width: 1904px) {
  .l-footer__lower__inner {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    width: 1600px;
  }
}

.l-footer__lower__sns {
  display: flex;
  align-items: center;
  font-size: 0;
}
.l-footer__lower__sns > li:not(:first-child) {
  margin-left: 25px;
}
@media (min-width: 768px) {
  .l-footer__lower__sns {
    order: 2;
    margin-top: 24px;
  }
}

.l-footer__lower__nav {
  margin-top: 40px;
}
.l-footer__lower__nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #A0A9C1;
  font-size: 1.2rem;
  line-height: 1.1;
}
.l-footer__lower__nav > ul > li {
  width: calc((100% - 20px) / 2);
}
.l-footer__lower__nav > ul > li:nth-child(n+3) {
  margin-top: 20px;
}
.l-footer__lower__nav > ul > li:nth-child(even) {
  margin-left: 20px;
}
@media (min-width: 768px) {
  .l-footer__lower__nav {
    order: 1;
    margin-top: 0;
    width: 100%;
  }
  .l-footer__lower__nav > ul {
    justify-content: flex-start;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .l-footer__lower__nav > ul > li {
    width: auto;
    margin-top: 16px;
    margin-right: 24px;
  }
  .l-footer__lower__nav > ul > li:nth-child(n+3) {
    margin-top: 16px;
  }
  .l-footer__lower__nav > ul > li:nth-child(even) {
    margin-left: 0;
  }
}

.l-footer__lower__copyright {
  margin-top: 40px;
  color: #A0A9C1;
  font-size: 1.2rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .l-footer__lower__copyright {
    order: 3;
    margin-top: 20px;
    margin-left: auto;
    padding-left: 30px;
  }
}



/*========================================
Project（接頭辞 p-）
==========================================*/
/* メインビジュアル */
.p-mainvisual {
  position: relative;
  padding-top: 70px;
}
.p-mainvisual__bg {
  position: absolute;
  left: 0;
  bottom: -280px;
  z-index: -1;
  width: 100%;
}
.p-mainvisual__img {
  width: 100%;
/*  height: 250px;*/
  position: relative;
  font-size: 0;
}
.p-mainvisual__inner {
  position: relative;
  padding: 20px 20px 0;
}
.p-mainvisual__title {
  font-size: 3.2rem;
  line-height: 1.3;
}
.p-mainvisual__lead {
  margin-top: 15px;
}
.p-mainvisual__link {
  margin-top: 40px;
  line-height: 1;
}
.p-mainvisual__scroll {
  display: none;
}
@media (min-width: 768px) {
  .p-mainvisual {
    padding-top: 70px;
  }
  .p-mainvisual__bg {
    bottom: -600px;
    width: auto;
  }
  .p-mainvisual__img {
/*
    position: absolute;
    top: 160px;
    right: 0;
    width: calc(100% - 290px);
    height: calc(100vh - 160px);
*/
  }
  .p-mainvisual__img {
    margin-left: auto;
    width: calc(100% - 290px);
  }
  .p-mainvisual__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    padding: 0 40px;
    width: 100%;
    max-width: 1904px;
    height: calc(100% - 70px);
  }
  .p-mainvisual__title {
    font-size: 5.6rem;
    line-height: 1.3;
  }
  .p-mainvisual__lead {
    margin-top: 25px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .p-mainvisual__link {
    margin-top: 40px;
  }
  .p-mainvisual__scroll {
    display: none;
    position: absolute;
    left: 15px;
    top: calc(100vh - 100px);
    font-size: 1.1rem;
    line-height: 1;
    transform: rotate(-90deg);
    transform-origin: top left;
  }
  .p-mainvisual__scroll::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -71px;
    background: #fff;
    width: 64px;
    height: 1px;
    animation: scrollPromotion 1.5s cubic-bezier(1, 0, 0, 1) infinite;
  }
}
@keyframes scrollPromotion {
  0% {
    transform: scale(0, 1);
    transform-origin: 100% 0
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 100% 0
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 0
  }
  100% {
    transform: scale(0, 1);
    transform-origin: 0 0
  }
}
@media (min-width: 1024px) {
  .p-mainvisual {
    padding-top: 160px;
  }
  .p-mainvisual__img {
    width: calc(100% - 8% - 250px);
  }
  .p-mainvisual__inner {
    top: 160px;
    padding: 0 8%;
    height: calc(100% - 160px);
  }
  .p-mainvisual__scroll {
    display: block;
    left: 40px;
  }
}
@media (min-width: 1904px) {
  .p-mainvisual__img {
    width: calc(((100% - 1600px) / 2) + 1600px - 250px);
  }
  .p-mainvisual__inner {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    width: 1600px;
  }
}

/* コンテンツヘッダー */
.p-content-header {
  position: relative;
}
.p-content-header__img {
  width: 100%;
  position: relative;
  font-size: 0;
}
.p-content-header__inner {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 20px 24px;
}
.p-content-header__category {
  display: none;
  margin-bottom: 24px;
  font-size: 1.4rem;
  font-weight: 700;
}
.p-content-header__title.c-head-xlg {
  margin-bottom: 0;
}
@media (max-width: 374px) {
  .p-content-header__img {
    height: 300px;
  }
}
@media (min-width: 768px) {
  .p-content-header {
    height: 500px;
  }
  .p-content-header__img {
    height: 100%;
  }
  .p-content-header__inner {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    padding: 70px 40px 0;
    width: 100%;
    height: 100%;
  }
  .p-content-header__category {
    display: block;
  }
  .p-content-header__title.c-head-xlg {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .p-content-header__inner {
    padding: 120px 8% 0;
  }
}
@media (min-width: 1323px) {
  .p-content-header {
    height: auto;
  }
}

/* ワイドイメージセクション */
.p-wide-image-section {
  position: relative;
}
.p-wide-image-section__img {
  overflow: hidden;
  font-size: 0;
  width: 100%;
}
.p-wide-image-section__img picture {
  display: block;
  overflow: hidden;
  font-size: 0;
  width: 100%;
}
.p-wide-image-section__inner {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 20px 32px;
  background: #5876AA;
  color: #fff;
}
.p-wide-image-section .c-head-lg {
  margin-bottom: 16px;
}
.p-wide-image-section .c-head-md {
  margin-bottom: 16px;
}
.p-wide-image-section__lead {
  font-size: 1.4rem;
  line-height: 1.5;
}
.p-wide-image-section__link {
  margin-top: auto;
  padding-top: 40px;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-wide-image-section {
    padding-bottom: 80px;
  }
  .p-wide-image-section__inner {
    position: absolute;
    left: 40px;
    bottom: 0;
    padding: 40px;
    width: 550px;
  }
  .p-wide-image-section__inner--right {
    left: auto;
    right: 40px;
  }

  .p-wide-image-section.p-wide-image-section--md .p-wide-image-section__img {
    width: calc(100% - 80px);
  }
  .p-wide-image-section.p-wide-image-section--md .p-wide-image-section__img.p-wide-image-section__img--right {
    margin-left: auto;
  }
  .p-wide-image-section.p-wide-image-section--md .p-wide-image-section__inner {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 40px;
    width: 550px;
  }
  .p-wide-image-section.p-wide-image-section--md .p-wide-image-section__inner--right {
    left: auto;
    right: 0;
  }
}
@media (min-width: 1024px) {
  .p-wide-image-section__inner {
    left: 8%;
    padding: 80px 48px;
  }
  .p-wide-image-section__inner--right {
    left: auto;
    right: 8%;
    padding: 80px 48px;
  }

  .p-wide-image-section.p-wide-image-section--md .p-wide-image-section__img {
    width: 73.69%;
  }
  .p-wide-image-section.p-wide-image-section--md .p-wide-image-section__inner {
    padding: 48px;
  }
}
@media (min-width: 1904px) {
  .p-wide-image-section__inner {
    left: calc((100%  - 1600px) / 2);
  }
  .p-wide-image-section__inner--right {
    left: auto;
    right: calc((100%  - 1600px) / 2);
  }
}

/* スライダー
-----------------------*/
.p-slider {
  position: relative;
}
.p-slider__inner {
  padding: 80px 20px;
}
.p-slider__title {
  margin-bottom: 46px;
  font-size: 3.2rem;
  line-height: 1.3;
}
.p-slider__list {
  position: relative;
  margin: 0 -20px;
}

.p-slider__item {
  padding: 0 12px;
}
.p-slider__item__img {
  font-size: 0;
  text-align: center;
}
.p-slider__list .slick-previ,
.p-slider__list .slick-nexti {
  display: none !important;
  position: absolute;
  top: -128px;
  z-index: 1;
  background: none;
  border: 1px solid #7493CA;
  padding: 0;
  width: 64px;
  height: 64px;
  font-size: 0;
  outline: none;
  cursor: pointer;
  transition: all 0.2s;
}
.c-bg-white .p-slider__list .slick-previ,
.c-bg-white .p-slider__list .slick-nexti {
  border: 1px solid #5876AA;
}
.p-slider__list .slick-previ:hover,
.p-slider__list .slick-nexti:hover {
  border: 1px solid #5876AA;
}
.c-bg-white .p-slider__list .slick-previ:hover,
.c-bg-white .p-slider__list .slick-nexti:hover {
  border: 1px solid #7493CA;
}

.p-slider__list.p-slider__list--sm .slick-previ,
.p-slider__list.p-slider__list--sm .slick-nexti {
  top: -72px;
  width: 40px;
  height: 40px;
}
.p-slider__list .slick-previ {
  right: calc(8% + 63px);
}
.p-slider__list.p-slider__list--sm .slick-previ {
  right: calc(8% + 39px);
}
.p-slider__list .slick-nexti {
  right: 8%;
}
.p-slider__list .slick-previ.slick-disabled,
.p-slider__list .slick-nexti.slick-disabled {
  border: 1px solid #3B486F;
  z-index: 0;
  pointer-events: none;
}
.c-bg-white .p-slider__list .slick-previ.slick-disabled,
.c-bg-white .p-slider__list .slick-nexti.slick-disabled {
  border: 1px solid #D5DDEB;
}
.p-slider__list .slick-previ::before,
.p-slider__list .slick-nexti::before,
.p-slider__list .slick-previ::after,
.p-slider__list .slick-nexti::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
}
.p-slider__list .slick-previ::before {
  background: url(../image/arrow_left1.svg) no-repeat;
  background-size: 100%;
}
.p-slider__list .slick-nexti::before {
  background: url(../image/arrow_right3.svg) no-repeat;
  background-size: 100%;
}
.c-bg-white .p-slider__list .slick-previ::before {
  background: url(../image/arrow_left2.svg) no-repeat;
  background-size: 100%;
}
.c-bg-white .p-slider__list .slick-nexti::before {
  background: url(../image/arrow_right4.svg) no-repeat;
  background-size: 100%;
}
.p-slider__list .slick-previ::after {
  z-index: 1;
  background: url(../image/arrow_left2.svg) no-repeat;
  background-size: 100%;
  opacity: 0;
  transition: all 0.2s;
}
.p-slider__list .slick-nexti::after {
  z-index: 1;
  background: url(../image/arrow_right4.svg) no-repeat;
  background-size: 100%;
  opacity: 0;
  transition: all 0.2s;
}
.c-bg-white .p-slider__list .slick-previ::after {
  background: url(../image/arrow_left1.svg) no-repeat;
  background-size: 100%;
}
.c-bg-white .p-slider__list .slick-nexti::after {
  background: url(../image/arrow_right3.svg) no-repeat;
  background-size: 100%;
}
.p-slider__list .slick-previ:hover::after,
.p-slider__list .slick-nexti:hover::after {
  opacity: 1;
}



.p-slider__list .slick-previ.slick-disabled::before {
  background: url(../image/arrow_left3.svg) no-repeat;
  background-size: 100%;
}
.p-slider__list .slick-nexti.slick-disabled::before {
  background: url(../image/arrow_right5.svg) no-repeat;
  background-size: 100%;
}
.c-bg-white .p-slider__list .slick-previ.slick-disabled::before {
  background: url(../image/arrow_left4.svg) no-repeat;
  background-size: 100%;
}
.c-bg-white .p-slider__list .slick-nexti.slick-disabled::before {
  background: url(../image/arrow_right6.svg) no-repeat;
  background-size: 100%;
}


.p-slider__item__body {
  display: flex;
  flex-direction: column;
  padding: 16px 20px 17px;
  background: #1D264D;
}
.c-bg-white .p-slider__item__body {
  background: #F8FAFD;
}
.p-slider__item__title {
  font-size: 1.4rem;
  font-weight: 700;
}
.p-slider__item__link {
  margin-top: auto;
  padding-top: 17px;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-slider {
    position: relative;
  }
  .p-slider__inner {
    padding: 120px 40px;
  }
  .p-slider__title {
    margin-bottom: 74px;
    font-size: 4rem;
    line-height: 1.3;
  }
  .p-slider__list {
    margin: 0 -40px;
  }
  .p-slider__list.p-slider__list--1column {
    margin: 0 -24px;
  }

  .p-slider__item {
    padding: 0 24px;
  }
  .p-slider__list.js-slick-4column .p-slider__item {
    padding: 0 16px;
  }

  .p-slider__item__img img {
    width: 100%;
  }
  .p-slider__list .slick-previ,
  .p-slider__list .slick-nexti {
    display: block !important;
  }
  .p-slider__list.p-slider__list--sm .slick-previ,
  .p-slider__list.p-slider__list--sm .slick-nexti {
    top: -72px;
    width: 40px;
    height: 40px;
  }

  .p-slider__list .slick-previ {
    right: calc(40px + 63px);
  }
  .p-slider__list.p-slider__list--sm .slick-previ {
    right: calc(40px + 39px);
  }
  .p-slider__list.p-slider__list--1column .slick-previ {
    right: calc(24px + 63px);
  }

  .p-slider__list .slick-nexti {
    right: 40px;
  }
  .p-slider__list.p-slider__list--1column .slick-nexti {
    right: 24px;
  }
  .p-slider__list .slick-previ.slick-disabled,
  .p-slider__list .slick-nexti.slick-disabled {
    border: 1px solid #3B486F;
    z-index: 0;
    pointer-events: none;
  }
  .c-bg-white .p-slider__list .slick-previ.slick-disabled,
  .c-bg-white .p-slider__list .slick-nexti.slick-disabled {
    border: 1px solid #D5DDEB;
  }
  .p-slider__list .slick-previ::before,
  .p-slider__list .slick-nexti::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 24px;
    height: 24px;
  }
  .p-slider__list .slick-previ::before {
    background: url(../image/arrow_left1.svg) no-repeat;
    background-size: 100%;
  }
  .p-slider__list .slick-nexti::before {
    background: url(../image/arrow_right3.svg) no-repeat;
    background-size: 100%;
  }
  .p-slider__list .slick-previ.slick-disabled::before {
    background: url(../image/arrow_left3.svg) no-repeat;
    background-size: 100%;
  }
  .p-slider__list .slick-nexti.slick-disabled::before {
    background: url(../image/arrow_right5.svg) no-repeat;
    background-size: 100%;
  }
  .c-bg-white .p-slider__list .slick-previ.slick-disabled::before {
    background: url(../image/arrow_left4.svg) no-repeat;
    background-size: 100%;
  }
  .c-bg-white .p-slider__list .slick-nexti.slick-disabled::before {
    background: url(../image/arrow_right6.svg) no-repeat;
    background-size: 100%;
  }
  .p-slider__item__body {
    display: flex;
    flex-direction: column;
    padding: 24px 32px;
    background: #1D264D;
  }
  .p-slider__item__title {
    font-size: 2rem;
    font-weight: 700;
  }
  .p-slider__item__link {
    margin-top: auto;
    padding-top: 24px;
  }
}
@media (min-width: 1024px) {
  .p-slider__inner {
    padding: 120px 8%;
  }
  .p-slider__list {
    margin: 0 -9.52380952380952%;
  }

  .p-slider__list.js-slick-4column .p-slider__item {
    padding: 0 24px;
  }

  .p-slider__list .slick-previ {
    right: calc(8% + 63px);
  }
  .p-slider__list.p-slider__list--sm .slick-previ {
    right: calc(8% + 39px);
  }

  .p-slider__list .slick-nexti {
    right: 8%;
  }
}
@media (min-width: 1366px) {
  .p-slider__item {
    padding: 0 24px;
  }
  .p-slider__list--logo .p-slider__item__img {
    padding: 0;
  }
}
@media (min-width: 1904px) {
  .p-slider__list .slick-previ {
    right: calc(((100% - 1600px) / 2) + 63px);
  }
  .p-slider__list .slick-nexti {
    right: calc((100% - 1600px) / 2);
  }
  .p-slider__inner {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    width: 1600px;
  }
  .p-slider__list {
/*    margin: 0 0;*/
  }
}

/* フォームフッター用
-----------------------*/
.p-docked-form-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #D5DDEB;
  background: #F8FAFD;
  height: 64px;
}
.p-docked-form-footer > *:last-child {
  margin-left: 16px;
}

/* ブロック
-----------------------*/
/* 汎用コンテンツブロック */
.p-block {
  position: relative;
}
.p-block.p-block--bg-ntt-logo {
  background: url(../image/bg_nttdata_logo.svg) right top no-repeat #5876AA;
  background-size: auto 100%;
}
.p-block__img {
  font-size: 0;
}
.p-block__inner {
  padding: 80px 20px;
}
.p-block:not(.p-block--bg-ntt-logo):not(.p-block--bg-img):not(.c-bg-white) +.p-block:not(.p-block--bg-ntt-logo):not(.p-block--bg-img):not(.c-bg-white) .p-block__inner,
.p-block.c-bg-white + .p-block.c-bg-white .p-block__inner {
  padding: 0 20px 80px;
}
.p-block--bg-img .p-block__inner {
  padding: 40px 20px 80px;
}
.p-block--bg-ntt-logo .p-block__inner {
  display: flex;
  align-items: center;
  min-height: 320px;
}
.p-block--bg-img .c-head-lg {
/*  margin-bottom: 16px;*/
}
.p-block__link {
  margin-top: 24px;
}
.p-block--bg-img .p-block__link,
.p-block--bg-ntt-logo .p-block__link {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .p-block--bg-img .p-block__img {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .p-block__inner {
    padding: 120px 40px;
  }
  .p-block:not(.p-block--bg-ntt-logo):not(.p-block--bg-img):not(.c-bg-white) +.p-block:not(.p-block--bg-ntt-logo):not(.p-block--bg-img):not(.c-bg-white) .p-block__inner,
  .p-block.c-bg-white + .p-block.c-bg-white .p-block__inner {
    padding: 0 40px 120px;
  }
  .p-block--bg-img .p-block__inner {
    display: flex;
    padding: 120px 40px;
    align-items: center;
    position: relative;
    min-height: 640px;
  }
  .p-block--bg-ntt-logo .p-block__inner {
    min-height: 420px;
  }
  .p-block--bg-img .p-block__lead,
  .p-block--bg-ntt-logo .p-block__lead {
    width: calc((100% - 50px) / 2);
    width: 550px;
  }
}
@media (min-width: 1024px) {
  .p-block__inner {
    padding: 120px 8%;
  }
  .p-block--bg-img .p-block__inner {
    padding: 120px 8%;
  }
  .p-block:not(.p-block--bg-ntt-logo):not(.p-block--bg-img):not(.c-bg-white) +.p-block:not(.p-block--bg-ntt-logo):not(.p-block--bg-img):not(.c-bg-white) .p-block__inner,
  .p-block.c-bg-white + .p-block.c-bg-white .p-block__inner {
    padding: 0 8% 120px;
  }
}
@media (min-width: 1904px) {
  .p-block__inner {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 1600px;
  }
  .p-block--bg-img .p-block__inner {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 1600px;
  }
}

*:not(h2):not(h3):not(h4):not(h5):not(h6) + .p-block-2nd {
  margin-top: 80px;
}
*:not(h2):not(h3):not(h4):not(h5):not(h6) + .p-block-3rd {
  margin-top: 64px;
}
*:not(h2):not(h3):not(h4):not(h5):not(h6) + .p-block-4th {
  margin-top: 40px;
}

/* サイドナビ */
.p-sidenav-block {
  font-size: 1.4rem;
}
.p-sidenav-block + .p-sidenav-block {
  margin-top: 64px;
}

.p-sidenav-block__link {
  margin-top: 16px;
}

.p-sidenav-block__data-list dl {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  line-height: 1.5;
}
.p-sidenav-block__data-list {
  max-width: 250px;
}
.p-sidenav-block__data-list dl + dl {
  margin-top: 12px;
}
.p-sidenav-block__data-list dl dd {
  color: #7493CA;
}
.c-bg-whiye .p-sidenav-block__data-list dl dd {
  color: #5876AA;
}

/* ボックス
-----------------------*/
.p-box {
  display: block;
  padding: 40px 20px;
  background: #1D264D;
  font-size: 1.4rem;
}
.c-bg-white .p-box {
  background: #F8FAFD;
}
@media (min-width: 768px) {
  .p-box {
    padding: 48px 64px;
  }
}

.p-box.p-box--img-sm {
  padding: 20px 20px 40px;
}
.p-box.p-box--img-sm > *:first-child {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-box.p-box--img-sm {
    display: flex;
    padding: 48px;
  }
  .p-box.p-box--img-sm > *:first-child {
    flex: none;
    margin-bottom: 0;
    margin-right: 48px;
    width: 30.48%;
  }
}

.p-box.p-box--img-lg {
  padding: 0;
}
.p-box.p-box--img-lg > *:last-child {
  padding: 24px 20px 48px;
}
@media (min-width: 768px) {
  .p-box.p-box--img-lg {
  display: flex;
    padding: 0;
  }
  .p-box.p-box--img-lg > *:first-child {
    flex: none;
    width: 50%;
  }
  .p-box.p-box--img-lg > *:last-child {
    padding: 64px 48px;
  }
}

/* Modal
-----------------------*/
.p-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 20px;
  background: rgba(7, 15, 38, 0.8);
  width: 100%;
  height: 100%;
}
.p-modal__inner {
  overflow-y: auto;
  position: relative;
  padding: 40px 20px;
  background: #fff;
  width: 100%;
  max-height: calc(100vh - 100px);
}
.p-modal__close {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
  font-size: 0;
}
@media (min-width: 768px) {
  .p-modal {
    padding: 0 50px;
    cursor: pointer;
  }
  .p-modal__inner {
    padding: 64px;
    max-width: 944px;
    max-height: calc(100vh - 100px);
    cursor: default;
  }
  .p-modal__close {
  }
}

/* Panel
-----------------------*/
.p-panel {
  font-size: 1.4rem;
}
.p-panel a {
  display: block;
  text-decoration: none;
}
.p-panel__img {
  font-size: 0;
  text-align: center;
}
.p-panel__body {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  background: #1D264D;
  color: #A0A9C1;
  line-height: 1.5;
}
.p-panel .c-calendar {
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.p-panel .c-name-date {
  margin-bottom: 16px;
}
.p-panel .c-name-date dd {
  font-size: 1.1rem;
}
.p-panel__title {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-panel__link {
  margin-top: auto;
  padding-top: 16px;
}
p + .p-panel__link {
  padding-top: 40px;
}
.c-bg-white .p-panel__body {
  background: #F8FAFD;
  color: #667493;
}
.c-bg-white .p-panel__title {
  color: #121A38;
}
@media (min-width: 768px) {
  .p-panel {
    display: flex;
  }
  .p-panel a {
    display: flex;
  }
  .p-panel__img {
    flex: none;
    width: 30.48%;
  }
  .p-panel__title {
    font-size: 2rem;
  }
  .p-panel__body {
    padding: 32px;
  }

  .c-2column .p-panel,
  .js-slick-2column .p-panel,
  .p-panel.p-panel--2column {
    display: block;
  }
  .c-2column .p-panel a,
  .js-slick-2column .p-panel a,
  .p-panel.p-panel--2column a {
    display: block;
  }
  .c-2column .p-panel .p-panel__img,
  .js-slick-2column .p-panel .p-panel__img,
  .p-panel.p-panel--2column .p-panel__img {
    width: auto;
  }
  .c-2column .p-panel .p-panel__body,
  .js-slick-2column .p-panel .p-panel__body,
  .p-panel.p-panel--2column .p-panel__body {
    padding: 24px 32px;
  }

  .c-3column .p-panel,
  .js-slick-3column .p-panel,
  .p-panel.p-panel--3column {
    display: block;
  }
  .c-3column .p-panel a,
  .js-slick-3column .p-panel a,
  .p-panel.p-panel--3column a {
    display: block;
  }
  .c-3column .p-panel .p-panel__img,
  .js-slick-3column .p-panel .p-panel__img,
  .p-panel.p-panel--3column .p-panel__img {
    width: auto;
  }
  .c-3column .p-panel .p-panel__body,
  .js-slick-3column .p-panel .p-panel__body,
  .p-panel.p-panel--3column .p-panel__body {
    padding: 24px;
  }
  .c-3column .p-panel .p-panel__title,
  .js-slick-3column .p-panel .p-panel__title,
  .p-panel.p-panel--3column .p-panel__title {
    font-size: 16px;
  }

  .c-4column .p-panel,
  .js-slick-4column .p-panel,
  .p-panel.p-panel--4column {
    display: block;
  }
  .c-4column .p-panel a,
  .js-slick-4column .p-panel a,
  .p-panel.p-panel--4column a {
    display: block;
  }
  .c-4column .p-panel .p-panel__img,
  .js-slick-4column .p-panel .p-panel__img,
  .p-panel.p-panel--4column .p-panel__img {
    width: auto;
  }
  .c-4column .p-panel .p-panel__body,
  .js-slick-4column .p-panel .p-panel__body,
  .p-panel.p-panel--4column .p-panel__body {
    padding: 16px;
  }
  .c-4column .p-panel .p-panel__title,
  .js-slick-4column .p-panel .p-panel__title,
  .p-panel.p-panel--4column .p-panel__title {
    font-size: 16px;
  }
}

.p-panel-img__img {
  border: 1px solid #D5DDEB;
  font-size: 0;
}

/* 縦長背景画像 */
.p-panel-bg-img {
  position: relative;
  color: #fff;
}
.p-panel-bg-img a {
  display: block;
  text-decoration: none;
}
.p-panel-bg-img__img {
  height: 467px;
}
.p-panel-bg-img__body {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 24px 40px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-panel-bg-img__body .c-head-md {
    font-size: 2.4rem;
  }
}

/* 画像＋テキスト */
.p-panel-img-text a {
  text-decoration: none;
}
.p-panel-img-text__img {
  font-size: 0;
  text-align: center;
}
.p-panel-img-text__body {
  display: flex;
  flex-direction: column;
  padding: 16px 20px 17px;
  background: #1D264D;
}
.c-bg-white .p-panel-img-text__body {
  background: #F8FAFD;
}
.p-panel-img-text__title {
  font-size: 1.4rem;
  font-weight: 700;
}
.p-panel-img-text__link {
  margin-top: auto;
  padding-top: 17px;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-panel-img-text__img img {
    width: 100%;
  }
  .p-panel-img-text__body {
    display: flex;
    flex-direction: column;
    padding: 24px 32px;
    background: #1D264D;
  }
  .p-panel-img-text__title {
    font-size: 2rem;
    font-weight: 700;
  }
  .p-panel-img-text__link {
    padding-top: 24px;
  }
}

/* ニュース用 */
.p-panel-news {
  position: relative;
}
.p-panel-news a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 24px;
  background: #1D264D;
}
.c-bg-white .p-panel-news a {
  background: #f8fafd;
}
.p-panel-news__date {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: #A0A9C1;
  font-size: 1.1rem;
  line-height: 2;
}
.c-bg-white .p-panel-news__date {
  color: #667493;
}
.p-panel-news__date dt::before {
  content: '';
  display: inline-block;
  position: relative;
  top: 3px;
  margin-right: 8px;
  background: url(../image/calendar.svg) no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
}
.c-bg-white .p-panel-news__date dt::before {
  background: url(../image/calendar1.svg) no-repeat;
  background-size: 100%;
}
.p-panel-news__date dd::before {
  content: '';
  display: inline-block;
  position: relative;
  top: 3px;
  margin-left: 8px;
  margin-right: 8px;
  background: #3B486F;
  width: 1px;
  height: 16px;
}
.c-bg-white .p-panel-news__date dd::before {
  background: #D5DDEB;
}
.p-panel-news__title {
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.5;
}
.p-panel-news__subtitle {
  color: #667493;
  font-size: 1.4rem;
  line-height: 1.5;
}
.p-panel-news__link {
  margin-top: auto;
  padding-top: 24px;
}
@media (min-width: 768px) {
  .p-panel-news a {
  padding-top: 24px;
  }
}



/*========================================
Component（接頭辞 c-）
==========================================*/

/* Button
-----------------------*/
/* Button_important */
.c-btn-important {
  display: inline-flex;
  align-items: center;
  border: none;
  padding: 5px 40px;
  background: #5876AA;
  min-height: 64px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.c-btn-important:hover{
  background: #7493CA;
  text-decoration: none;
}
.c-btn-important.c-btn-important--sm {
  padding: 5px 20px;
  min-height: 40px;
  font-size: 1.4rem;
}

.c-btn-important-arrow {
  display: inline-flex;
  align-items: center;
  border: none;
  padding: 5px 40px;
  background: #5876AA;
  min-height: 64px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.c-btn-important-arrow:hover {
  background: #7493CA;
  text-decoration: none;
}
.c-btn-important-arrow::after {
  content: '';
  position: relative;
  left: 0;
  top: -1px;
  background: url(../image/arrow_right.svg) no-repeat;
  background-size: 100%;
  margin-left: 8px;
  width: 24px;
  height: 24px;
  transition: left 0.2s;
}
a:hover .c-btn-important-arrow::after,
.c-btn-important-arrow:hover::after {
  left: 5px;
}

/* Button_CTA */
.c-btn-cta {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 5px;
  background: #5876AA;
  width: 88px;
  height: 88px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.c-btn-cta:hover {
  background: #7493CA;
  text-decoration: none;
}
.c-btn-cta::before {
  content: '';
  display: inline-block;
  position: relative;
  left: 0;
  top: -6px;
  background: url(../image/mail.svg) no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
}
.c-btn-cta.c-btn-cta--sm {
  width: 64px;
  height: 64px;
  font-size: 1.1rem;
}
.c-btn-cta.c-btn-cta--sm::before {
  top: -4px;
}

/* Button */
.c-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid #7493CA;
  padding: 5px 40px;
  background: none;
  min-height: 64px;
  color: #7493CA;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.c-bg-white .c-btn {
  border: 1px solid #5876AA;
  color: #5876AA;
}
.c-btn:hover {
  border: 1px solid #5876AA;
  color: #5876AA;
  text-decoration: none;
}
.c-bg-white .c-btn:hover {
  border: 1px solid #7493CA;
  color: #7493CA;
}
.c-btn.c-btn--sm {
  padding: 5px 20px;
  min-height: 40px;
  font-size: 1.4rem;
}

.c-btn-arrow {
  display: inline-flex;
  align-items: center;
  position: relative;
  border: 1px solid #7493CA;
  padding: 5px 40px;
  background: none;
  min-height: 64px;
  color: #7493CA;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.c-bg-white .c-btn-arrow {
  border: 1px solid #5876AA;
  color: #5876AA;
}
.c-btn-arrow:hover {
  border: 1px solid #5876AA;
  color: #5876AA;
  text-decoration: none;
}
.c-bg-white .c-btn-arrow:hover {
  border: 1px solid #7493CA;
  color: #7493CA;
}
.c-btn-arrow::after {
  content: '';
  position: relative;
  left: 0;
  top: -1px;
  background: url(../image/arrow_right3.svg) no-repeat;
  background-size: 100%;
  margin-left: 8px;
  width: 24px;
  height: 24px;
  transition: all 0.2s;
}
.c-bg-white .c-btn-arrow::after {
  background: url(../image/arrow_right4.svg) no-repeat;
  background-size: 100%;
}
a:hover .c-btn-arrow::after,
.c-btn-arrow:hover::after {
  left: 5px;
}
.c-btn-arrow::before {
  content: '';
  position: absolute;
  z-index: 1;
  right: 40px;
  top: 50%;
  margin-top: -1px;
  background: url(../image/arrow_right4.svg) no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.c-bg-white .c-btn-arrow:hover::before {
  background: url(../image/arrow_right3.svg) no-repeat;
  background-size: 100%;
}
a:hover .c-btn-arrow::before,
.c-btn-arrow:hover::before {
  right: 35px;
  opacity: 1;
}

.c-btn-arrow.c-btn-arrow--sm {
  padding: 5px 20px;
  min-height: 40px;
  font-size: 1.4rem;
}
.c-btn-arrow.c-btn-arrow--sm::after {
  width: 16px;
  height: 16px;
}
.c-btn-arrow.c-btn-arrow--sm::before {
  right: 20px;
  width: 16px;
  height: 16px;
}
.c-btn-arrow.c-btn-arrow--sm:hover::before {
  right: 15px;
}

.c-btn-arrow.c-btn-arrow--world span {
  content: '';
  display: block;
  position: relative;
  left: 0;
  top: -1px;
  background: url(../image/world1.svg) no-repeat;
  background-size: 100%;
  margin-right: 8px;
  width: 24px;
  height: 24px;
  
}
.c-bg-white .c-btn-arrow.c-btn-arrow--world span {
  background: url(../image/world2.svg) no-repeat;
  background-size: 100%;
}
.c-btn-arrow.c-btn-arrow--world span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  background: url(../image/world1.svg) no-repeat;
  background-size: 100%;
  margin-right: 8px;
  width: 24px;
  height: 24px;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.c-bg-white .c-btn-arrow.c-btn-arrow--world span {
  background: url(../image/world2.svg) no-repeat;
  background-size: 100%;
}
.c-btn-arrow.c-btn-arrow--world span::before {
  background: url(../image/world2.svg) no-repeat;
  background-size: 100%;
}
.c-bg-white .c-btn-arrow.c-btn-arrow--world span::before {
  background: url(../image/world1.svg) no-repeat;
  background-size: 100%;
}
.c-btn-arrow.c-btn-arrow--world:hover span::before {
  opacity: 1;
}

.c-btn-download {
  display: inline-flex;
  align-items: center;
  position: relative;
  border: 1px solid #7493CA;
  padding: 5px 40px;
  background: none;
  min-height: 64px;
  color: #7493CA;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.c-bg-white .c-btn-download {
  border: 1px solid #5876AA;
  color: #5876AA;
}
.c-btn-download:hover {
  border: 1px solid #5876AA;
  color: #5876AA;
  text-decoration: none;
}
.c-bg-white .c-btn-download:hover {
  border: 1px solid #7493CA;
  color: #7493CA;
}
.c-btn-download::before {
  content: '';
  position: relative;
  left: 0;
  top: -1px;
  background: url(../image/download1.svg) no-repeat;
  background-size: 100%;
  margin-right: 8px;
  width: 24px;
  height: 24px;
  transition: all 0.2s;
}
.c-bg-white .c-btn-download::before {
  background: url(../image/download2.svg) no-repeat;
  background-size: 100%;
}
a:hover .c-btn-download::before,
.c-btn-download:hover::before {
  top: 4px;
}
.c-btn-download::after {
  content: '';
  position: absolute;
  z-index: 1;
  left: 40px;
  top: 50%;
  margin-top: -1px;
  background: url(../image/download2.svg) no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.c-bg-white .c-btn-download::after {
  background: url(../image/download1.svg) no-repeat;
  background-size: 100%;
}
a:hover .c-btn-download::after,
.c-btn-download:hover::after {
  margin-top: 4px;
  opacity: 1;
}

.c-btn-download.c-btn-download--sm {
  padding: 5px 20px;
  min-height: 40px;
  font-size: 1.4rem;
}
.c-btn-download.c-btn-download--sm::before {
  width: 16px;
  height: 16px;
}
.c-btn-download.c-btn-download--sm::after {
  left: 20px;
  width: 16px;
  height: 16px;
}

/* Button_text */
.c-btn-text-arrow {
  display: inline-flex;
  align-items: center;
  background: none;
  color: #7493CA;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.c-bg-white .c-btn-text-arrow {
  color: #5876AA;
}
.c-btn-text-arrow:hover {
  text-decoration: none;
}
.c-btn-text-arrow::after {
  content: '';
  position: relative;
  left: 0;
  top: -1px;
  background: url(../image/arrow_right3.svg) no-repeat;
  background-size: 100%;
  margin-left: 8px;
  width: 16px;
  height: 16px;
  transition: left 0.2s;
}
.c-bg-white .c-btn-text-arrow::after {
  background: url(../image/arrow_right4.svg) no-repeat;
  background-size: 100%;
}
a:hover .c-btn-text-arrow::after,
.c-btn-text-arrow:hover::after {
  left: 5px;
}

.c-btn-text-arrow.c-btn-text-arrow--white {
  color: #fff;
}
.c-btn-text-arrow.c-btn-text-arrow--white::after {
  background: url(../image/arrow_right.svg) no-repeat;
  background-size: 100%;
}

.c-btn-text-arrow.c-btn-text-arrow--sm {
  font-size: 1.1rem;
}
.c-btn-text-arrow.c-btn-text-arrow--sm::after {
  width: 12px;
  height: 12px;
}

@media (min-width: 768px) {
  .c-btn-text-arrow.c-btn-text-arrow--white-pc {
    color: #fff;
  }
  .c-btn-text-arrow.c-btn-text-arrow--white-pc::after {
    background: url(../image/arrow_right.svg) no-repeat;
    background-size: 100%;
  }
}

.c-btn-text-download {
  display: inline-flex;
  align-items: center;
  background: none;
  color: #7493CA;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.c-bg-white .c-btn-text-download {
  color: #5876AA;
}
.c-btn-text-download:hover {
  text-decoration: none;
}
.c-btn-text-download::before {
  content: '';
  position: relative;
  left: 0;
  top: -1px;
  background: url(../image/download1.svg) no-repeat;
  background-size: 100%;
  margin-right: 8px;
  width: 16px;
  height: 16px;
  transition: all 0.2s;
}
.c-bg-white .c-btn-text-download::before {
  background: url(../image/download2.svg) no-repeat;
  background-size: 100%;
}
a:hover .c-btn-text-download::before,
.c-btn-text-download:hover::before {
  top: 4px;
}
.c-btn-text-download.c-btn-text-download--sm {
  font-size: 1.1rem;
}
.c-btn-text-download.c-btn-text-download--sm::before {
  width: 12px;
  height: 12px;
}

.c-btn-text-plus {
  display: inline-flex;
  align-items: center;
  background: none;
  color: #7493CA;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.c-bg-white .c-btn-text-plus {
  color: #5876AA;
}
.c-btn-text-plus::before {
  content: '';
  position: relative;
  left: 0;
  top: -1px;
  background: url(../image/plus4.svg) no-repeat;
  background-size: 100%;
  margin-right: 8px;
  width: 16px;
  height: 16px;
}
.c-bg-white .c-btn-text-plus::before {
  background: url(../image/plus5.svg) no-repeat;
  background-size: 100%;
}
a:hover .c-btn-text-plus::before,
.c-btn-text-plus.c-btn-text-plus--sm {
  font-size: 1.1rem;
}
.c-btn-text-plus.c-btn-text-plus--sm::before {
  width: 12px;
  height: 12px;
}

/* Button_slide */
.c-btn-slide {
  display: inline-flex;
  align-items: center;
}
.c-btn-slide__prev,
.c-btn-slide__next {
  display: inline-block;
  position: relative;
  background: none;
  border: 1px solid #7493CA;
  width: 64px;
  height: 64px;
  font-size: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.c-btn-slide__next {
  left: -1px;
}
.c-bg-white .c-btn-slide__prev,
.c-bg-white .c-btn-slide__next {
  border: 1px solid #5876AA;
}
.c-btn-slide__prev:hover,
.c-btn-slide__next:hover {
  border: 1px solid #5876AA;
  text-decoration: none;
}
.c-bg-white .c-btn-slide__prev:hover,
.c-bg-white .c-btn-slide__next:hover {
  border: 1px solid #7493CA;
}

.c-btn-slide__prev::before,
.c-btn-slide__next::before,
.c-btn-slide__prev::after,
.c-btn-slide__next::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
}
.c-btn-slide__prev::after,
.c-btn-slide__next::after {
  z-index: 1;
  opacity: 0;
  transition: all 0.2s;
}
.c-btn-slide__prev::before {
  background: url(../image/arrow_left1.svg) no-repeat;
  background-size: 100%;
}
.c-btn-slide__next::before {
  background: url(../image/arrow_right3.svg) no-repeat;
  background-size: 100%;
}
.c-bg-white .c-btn-slide__prev::before {
  background: url(../image/arrow_left2.svg) no-repeat;
  background-size: 100%;
}
.c-bg-white .c-btn-slide__next::before {
  background: url(../image/arrow_right4.svg) no-repeat;
  background-size: 100%;
}
.c-btn-slide__prev:hover::after {
  background: url(../image/arrow_left2.svg) no-repeat;
  background-size: 100%;
  opacity: 1;
}
.c-btn-slide__next:hover::after {
  background: url(../image/arrow_right4.svg) no-repeat;
  background-size: 100%;
  opacity: 1;
}
.c-bg-white .c-btn-slide__prev:hover::after {
  background: url(../image/arrow_left1.svg) no-repeat;
  background-size: 100%;
}
.c-bg-white .c-btn-slide__next:hover::after {
  background: url(../image/arrow_right3.svg) no-repeat;
  background-size: 100%;
}

.c-btn-slide.c-btn-slide--sm .c-btn-slide__prev,
.c-btn-slide.c-btn-slide--sm .c-btn-slide__next {
  width: 40px;
  height: 40px;
}
.c-btn-slide.c-btn-slide--sm .c-btn-slide__prev::before,
.c-btn-slide.c-btn-slide--sm .c-btn-slide__next::before,
.c-btn-slide.c-btn-slide--sm .c-btn-slide__prev::after,
.c-btn-slide.c-btn-slide--sm .c-btn-slide__next::after {
  width: 16px;
  height: 16px;
}

.c-btn-slide.c-btn-slide--nobdr .c-btn-slide__prev,
.c-btn-slide.c-btn-slide--nobdr .c-btn-slide__next {
  border: none;
} 

.c-btn-close {
  display: inline-block;
  position: relative;
  background: none;
  border: 1px solid #7493CA;
  width: 64px;
  height: 64px;
  font-size: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.c-bg-white .c-btn-close {
  border: 1px solid #5876AA;
}
.c-btn-close:hover {
  border: 1px solid #5876AA;
  text-decoration: none;
}
.c-bg-white .c-btn-close:hover {
  border: 1px solid #7493CA;
}

.c-btn-close::before,
.c-btn-close::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
}
.c-btn-close::before {
  background: url(../image/close.svg) no-repeat;
  background-size: 100%;
}
.c-bg-white .c-btn-close::before {
  background: url(../image/close1.svg) no-repeat;
  background-size: 100%;
}
.c-btn-close::after {
  z-index: 1;
  background: url(../image/close1.svg) no-repeat;
  background-size: 100%;
  opacity: 0;
  transition: all 0.2s;
}
.c-bg-white .c-btn-close::after {
  background: url(../image/close.svg) no-repeat;
  background-size: 100%;
}
.c-btn-close:hover::after {
  opacity: 1;
}

@media (max-width: 767px) {
  .c-btn-close.c-btn-close--sm {
    width: 24px;
    height: 24px;
  }
  .c-btn-close.c-btn-close--sm::before,
  .c-btn-close.c-btn-close--sm::after {
    width: 9px;
    height: 9px;
  }
}
@media (min-width: 768px) {
  .c-btn-close.c-btn-close--sm {
    width: 40px;
    height: 40px;
  }
  .c-btn-close.c-btn-close--sm::before,
  .c-btn-close.c-btn-close--sm::after {
    width: 16px;
    height: 16px;
  }
}

.c-btn-close.c-btn-close--nobdr,
.c-btn-close.c-btn-close--nobdr:hover {
  border: none;
}

.c-btn-zoom {
  display: inline-block;
  position: relative;
  background: #070F26;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.c-btn-zoom:hover,
a:hover .c-btn-zoom {
  background: #121A38;
}
.c-btn-zoom::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../image/zoom_in.svg) no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
}

.c-btn-accordion {
  border-top: 1px solid #3B486F;
  border-bottom: 1px solid #3B486F;
  padding: 0 16px;
}
.c-bg-white .c-btn-accordion {
  border-top: 1px solid #D5DDEB;
  border-bottom: 1px solid #D5DDEB;
}
.c-btn-accordion + .c-btn-accordion {
  margin-top: -1px;
}
.c-btn-accordion dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  line-height: 1;
  cursor: pointer;
}
.c-btn-accordion dt:hover {
  text-decoration: underline;
}
.c-btn-accordion dt::after {
  content: '';
  display: inline-block;
  position: relative;
  right: 0;
  top: 0;
  background: url(../image/plus5.svg) no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
}
.c-btn-accordion.is-open dt::after {
  background: url(../image/minus4.svg) no-repeat;
  background-size: 100%;
}
.c-btn-accordion dd {
  display: none;
  padding-bottom: 20px;
}
.c-btn-accordion.c-btn-accordion--blue {
  border-top: 1px solid #3B486F;
  border-bottom: 1px solid #3B486F;
  background: #1D264D;
}
.c-bg-white .c-btn-accordion.c-btn-accordion--blue {
  border-top: 1px solid #D5DDEB;
  border-bottom: 1px solid #D5DDEB;
  background: #F8FAFD;
}

/* Data Table
-----------------------*/
.c-data-table table {
  border-top: 1px solid #D5DDEB;
  width: 100%;
  color: #667493;
  font-size: 1.4rem;
  line-height: 1.3;
}
.c-data-table table tr {
  border-bottom: 1px solid #D5DDEB;
}
.c-data-table table tr th {
  padding: 12px 8px;
  background: #F8FAFD;
  text-align: left;
}
.c-data-table table tr td {
  padding: 12px 8px;
}

/* Divider
-----------------------*/
.c-divider {
  border-top: 1px solid #D5DDEB;
  padding: 40px 0;
}
.c-divider + .c-divider {
  margin-top: -1px;
}

.c-divider.c-divider--2col {
  display: flex;
  justify-content: space-between;
}
.c-divider.c-divider--2col .c-divider--2col__left {
  flex: none;
  width: calc((100% - 40px) * 0.2707);
}
.c-divider.c-divider--2col .c-divider--2col__right {
  width: calc((100% - 40px) * 0.7283);
}

.c-divider.c-divider--sm {
  padding: 16px 0;
  font-size: 1.4rem;
}
.c-divider.c-divider--sm + .c-divider.c-divider--sm {
  margin-top: 0;
}
.c-2column .c-divider.c-divider--sm:nth-child(n-2) {
  margin-top: -1px;
}

.c-divider.c-divider--sm.c-divider--2col .c-divider--2col__left {
  flex: none;
  width: calc((100% - 16px) * 0.2247);
}
.c-divider.c-divider--sm.c-divider--2col .c-divider--2col__right {
  width: calc((100% - 16px) * 0.7752);
}

/* Feedback
-----------------------*/
.c-tooltip {
  display: inline-block;
  border-radius: 4px;
  padding: 6px 8px;
  background: rgba(7, 15, 38, 0.8);
  max-width: 188px;
  color: #fff;
  font-size: 1.1rem;
}

.c-dialog {
  position: relative;
  padding: 64px;
  background: #fff;
  max-width: 944px;
  color: #121A38;
  font-size: 1.4rem;
}
.c-dialog.c-dialog--sm {
  padding: 24px;
  max-width: 400px;
}
.c-dialog__close {
  position: absolute;
  right: 8px;
  top: 8px;
}

/* Form
-----------------------*/
.c-label {
  font-size: 1.2rem;
}
.c-label--required::after {
  content: '*';
  margin-left: 4px;
  color: #EB0055;
}
.c-label--disabled,
.c-label--disabled::after {
  color: #D5DDEB;
}

.c-input-text-type-a {
  border: none;
  border-bottom: 1px solid #D5DDEB;
  border-radius: 0;
  padding: 0 0 4px 0;
  background: none;
  width: 100%;
  color: inherit;
  line-height: 1.5;
  outline: none;
}
.c-color-error .c-input-text-type-a {
  border-bottom: 1px solid #EB0055;
}

.c-input-text-type-b {
  border: none;
  border: 1px solid #D5DDEB;
  border-radius: 4px;
  padding: 13px 8px;
  background: #fff;
  width: 100%;
  color: inherit;
  line-height: 1.5;
  outline: none;
}
.c-color-error .c-input-text-type-b {
  border: 1px solid #EB0055;
}

.c-textarea {
  border: 1px solid #D5DDEB;
  border-radius: 0;
  background: none;
  width: 100%;
  color: inherit;
  line-height: 1.5;
  outline: none;
}

.c-select-type-a {
  position: relative;
}
.c-select-type-a::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 5px;
  background: url(../image/arrow_s_bottom.svg) center center no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.c-select-type-a.c-select-type-a--disabled::after {
  background: url(../image/arrow_s_bottom1.svg) center center no-repeat;
  background-size: 100%;
}
.c-select-type-a select {
  border: none;
  border-bottom: 1px solid #D5DDEB;
  border-radius: 0;
  padding: 0 0 4px 0;
  background: none;
  width: 100%;
  color: inherit;
  line-height: 1.5;
  outline: none;
  appearance: none;
}
.c-select-type-a select::-ms-expand {
  display: none;
}
.c-select-type-a select[disabled] {
  color: #D5DDEB;
}
.c-color-error .c-select-type-a select {
  border-bottom: 1px solid #EB0055;
  color: #EB0055;
}
.c-select-type-a option {
  color: #121A38;
}
.c-select-type-a option:nth-child(odd) {
  background: #F8FAFD;
}

.c-select-type-b {
  position: relative;
}
.c-select-type-b::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../image/arrow_s_bottom.svg) center center no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.c-select-type-b.c-select-type-b--disabled::after {
  background: url(../image/arrow_s_bottom1.svg) center center no-repeat;
  background-size: 100%;
}
.c-select-type-b select {
  border: 1px solid #D5DDEB;
  border-radius: 4px;
  padding: 13px 8px;
  background: #fff;
  width: 100%;
  line-height: 1.5;
  outline: none;
  appearance: none;
}
.c-select-type-b select::-ms-expand {
  display: none;
}
.c-select-type-b select[disabled] {
  color: #D5DDEB;
}
.c-color-error .c-select-type-b select {
  border: 1px solid #EB0055;
}
.c-select-type-b option:nth-child(odd) {
  background: #F8FAFD;
}

.c-checkbox {
  cursor: pointer;
}
.c-checkbox input[type="checkbox"] {
  display: none;
}
.c-checkbox span {
  display: inline-flex;
  position: relative;
}
.c-checkbox span::before {
  content: '';
  flex: none;
  margin-right: 7px;
  border: 1px solid #667493;
  border-radius: 4px;
  background: #fff;
  width: 24px;
  height: 24px;
}
.c-checkbox input[type="checkbox"]:checked + span::before {
  border: none;
  background: url(../image/check.svg) no-repeat center center #5876AA;
  background-size: 16px;
}
.c-checkbox.c-checkbox--sm {
  font-size: 1.1rem;
  line-height: 1.5;
}
.c-checkbox.c-checkbox--sm span::before {
  width: 16px;
  height: 16px;
}
.c-checkbox.c-checkbox--sm input[type="checkbox"]:checked + span::before {
  background: url(../image/check.svg) no-repeat center center #5876AA;
  background-size: 12px;
}

.c-radio {
  cursor: pointer;
}
.c-radio input[type="radio"] {
  display: none;
}
.c-radio span {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.c-radio span::before {
  content: '';
  margin-right: 7px;
  border: 1px solid #667493;
  border-radius: 50%;
  background: #fff;
  width: 24px;
  height: 24px;
}
.c-radio input[type="radio"]:checked + span::before {
  border: 8px solid #5876AA;
}

/* Filter */
.c-btn-filter {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.c-btn-filter::after {
  content: '';
  margin-left: 10px;
  background: url(../image/arrow_s_bottom.svg) no-repeat center center;
  background-size: 100%;
  width: 16px;
  height: 16px;
}

.c-filter {
  display: inline-flex;
  align-items: center;
  border: 1px solid #5876AA;
  border-radius: 4px;
  padding: 0 8px;
  color: #5876AA;
  font-size: 1.4rem;
  height: 30px;
  line-height: 1.2;
  cursor: pointer;
}
.c-filter.c-filter--close::after {
  content: '';
  margin-left: 15px;
  background: url(../image/close1.svg) no-repeat center center;
  background-size: 100%;
  width: 12px;
  height: 12px;
}

/* Tag */
.c-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid #5876AA;
  border-radius: 12px;
  padding: 0 8px;
  height: 24px;
  color: #5876AA;
  font-size: 1.1rem;
  line-height: 1;
}
.c-tag:hover {
  text-decoration: none;
}
.c-tag.c-tag--blue {
  border: none;
  background: #5876AA;
  color: #fff;
}
.c-tag.c-tag--light {
  border: none;
  background: #D5DDEB;
  color: #121A38;
}
.c-tag.c-tag--dark {
  border: none;
  background: #1D264D;
  color: #fff;
}

/* List
-----------------------*/
.c-list-link li {
  border-bottom: 1px solid #D5DDEB;
}
.c-list-link li:nth-child(1) {
  border-top: 1px solid #D5DDEB;
}
.c-list-link li a {
  display: flex;
  justify-content: space-between;
  padding: 20px 10px;
  text-decoration: none;
}
.c-list-link li a::after {
  content: '';
  flex: none;
  align-self: center;
  position: relative;
  left: 0;
  top: 0;
  margin-left: 24px;
  background: url(../image/arrow_right3.svg) no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
  transition: left 0.2s;
}
.c-bg-white .c-list-link li a::after {
  background: url(../image/arrow_right4.svg) no-repeat;
  background-size: 100%;
}
.c-list-link li a:hover::after {
  left: 8px;
}
@media (min-width: 1024px) {
  .c-list-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-list-link li {
    width: calc((100% - 50px) / 2);
  }
  .c-list-link li:nth-child(2) {
    border-top: 1px solid #D5DDEB;
  }
}

.c-list-news li {
  border-bottom: 1px solid #D5DDEB;
}
.c-list-news li:nth-child(1) {
  border-top: 1px solid #D5DDEB;
}
.c-list-news li a {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 20px 10px;
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-list-news li a {
    flex-wrap: nowrap;
  }
}
.c-list-news li a::after {
  content: '';
  flex: none;
  align-self: center;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-left: auto;
  background: url(../image/arrow_right.svg) no-repeat center center;
  background-size: 100%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  transition: left 0.2s;
}
@media (min-width: 768px) {
  .c-list-news li a::after {
    position: relative;
    left: 0;
    right: auto;
    top: 0;
    transform: translateY(0);
  }
}
.c-bg-white .c-list-news li a::after {
  background: url(../image/arrow_right4.svg) no-repeat;
  background-size: 100%;
}
.c-list-news li a:hover::after {
  left: 8px;
}
.c-list-news dl {
  flex: none;
  width: calc(100% - 24px);
  color: #A0A9C1;
}
.c-bg-white .c-list-news dl {
  color: #667493;
}
@media (min-width: 768px) {
  .c-list-news dl {
    margin-right: 24px;
    width: auto;
    min-width: 143px;
  }
}
.c-list-news dl dt {
  font-size: 1.4rem;
}
.c-list-news dl dd {
  font-size: 1.1rem;
}
.c-list-news h3 {
  margin-right: 24px;
  margin-top: 16px;
  width: calc(100% - 48px);
}
@media (min-width: 768px) {
  .c-list-news h3 {
    margin-top: 0;
    width: auto;
  }
}
.c-list-news h3 span {
  display: block;
  color: #A0A9C1;
  font-size: 1.4rem;
}
.c-bg-white .c-list-news h3 span {
  color: #667493;
}
@media (min-width: 1024px) {
/*
  .c-list-news {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-list-news li {
    width: calc((100% - 50px) / 2);
  }
  .c-list-news li:nth-child(2) {
    border-top: 1px solid #D5DDEB;
  }
*/
}

.c-list-download li {
  border-bottom: 1px solid #D5DDEB;
}
.c-list-download li:nth-child(1) {
  border-top: 1px solid #D5DDEB;
}
.c-list-download li a {
  display: flex;
  align-items: center;
  padding: 20px 10px;
  text-decoration: none;
}
.c-list-download li a::after {
  content: '';
  flex: none;
  align-self: center;
  position: relative;
  left: 0;
  top: 0;
  margin-left: auto;
  background: url(../image/download.svg) no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
  transition: top 0.2s;
}
.c-list-download li a:hover::after {
  top: 8px;
}
.c-list-download li a span span {
  display: block;
  color: #667493;
  font-size: 1.1rem;
}
.c-bg-white .c-list-download li a::after {
  background: url(../image/download2.svg) no-repeat;
  background-size: 100%;
}

.c-list-download.c-list-download--img li a::before {
  content: '';
  flex: none;
  align-self: flex-start;
  position: relative;
  left: 0;
  top: 0;
  margin-right: 16px;
  background: url(../image/document.svg) no-repeat center center #667493;
  background-size: 24px;
  width: 49px;
  height: 65px;
  transition: top 0.2s;
}
.c-bg-white .c-list-download.c-list-download--img li a::before {
  background: url(../image/document1.svg) no-repeat center center #3B486F;
  background-size: 24px;
}

.c-list-bulleted li {
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}
.c-list-bulleted li + li,
.c-list-bulleted li li {
  margin-top: 16px;
}
.c-list-bulleted li::before {
  content: '';
  display: inline-block;
  flex: none;
  position: absolute;
  left: 0;
  top: calc(1em * 1.5 / 2);
  background: #5876AA;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
}

.c-list-bulleted.c-list-bulleted--number {
  counter-reset: count 0;
}
.c-list-bulleted.c-list-bulleted--number .c-list-bulleted.c-list-bulleted--number li {
/*  padding-left: 40px;*/
}
.c-list-bulleted.c-list-bulleted--number li::before {
  counter-increment: count;
  content: counter(count);
  background: none;
  width: auto;
  height: auto;
  color: #5876AA;
  font-weight: 700;
}

.c-list-bulleted.c-list-bulleted--checkmark li::before {
  background: url(../image/check1.svg) no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
}

/* Navigation
-----------------------*/
.c-indicator {
  display: flex;
  align-items: center;
}
.c-indicator li {
  margin-right: 12px;
  font-size: 0;
  line-height: 8px;
}
.c-indicator li:last-child {
  margin-right: 0;
}
.c-indicator li a {
  display: inline-block;
  background: #667493;
  width: 8px;
  height: 8px;
}
.c-indicator li.is-current a {
  background: #7493CA;
}
.c-bg-white .c-indicator li a {
  background: #A0A9C1;
}
.c-bg-white .c-indicator li.is-current a {
  background: #5876AA;
}

.c-pagenation {
  display: flex;
  align-items: center;
}
.c-pagenation li {
  margin-right: 24px;
  font-size: 1.4rem;
  line-height: 1;
}
.c-pagenation li:last-child {
  margin-right: 0;
}
.c-pagenation li a {
  color: #A0A9C1;
}
.c-pagenation li.is-current a {
  color: #5876AA;
  font-weight: 700;
}
.c-pagenation li.c-pagenation__prev,
.c-pagenation li.c-pagenation__next {
  width: 16px;
  height: 16px;
  font-size: 0;
}
.c-pagenation li.c-pagenation__prev a,
.c-pagenation li.c-pagenation__next a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.c-pagenation li.c-pagenation__prev a {
  background: url(../image/arrow_left5.svg) no-repeat center center;
  background-size: 100%;
}
.c-pagenation li.c-pagenation__next a {
  background: url(../image/arrow_right7.svg) no-repeat center center;
  background-size: 100%;
}
.c-pagenation li.c-pagenation__prev.is-disabled a {
  background: url(../image/arrow_left3.svg) no-repeat center center;
  background-size: 100%;
}
.c-pagenation li.c-pagenation__next.is-disabled a {
  background: url(../image/arrow_right5.svg) no-repeat center center;
  background-size: 100%;
}
.c-bg-white .c-pagenation li a {
  color: #667493;
}
.c-bg-white .c-pagenation li.is-current a {
  color: #7493CA;
}
.c-bg-white .c-pagenation li.c-pagenation__prev a {
  background: url(../image/arrow_left6.svg) no-repeat center center;
  background-size: 100%;
}
.c-bg-white .c-pagenation li.c-pagenation__next a {
  background: url(../image/arrow_right8.svg) no-repeat center center;
  background-size: 100%;
}
.c-bg-white .c-pagenation li.c-pagenation__prev.is-disabled a {
  background: url(../image/arrow_left4.svg) no-repeat center center;
  background-size: 100%;
}
.c-bg-white .c-pagenation li.c-pagenation__next.is-disabled a {
  background: url(../image/arrow_right6.svg) no-repeat center center;
  background-size: 100%;
}

.c-vertical-nav a:hover {
  text-decoration: underline;
}
.c-vertical-nav > li {
  margin-top: 16px;
  line-height: 1.5;
}
.c-vertical-nav > li:first-child {
  margin-top: 0;
}
.c-vertical-nav > li.is-current > a {
  color: #7493CA;
  font-weight: 700;
}
.c-vertical-nav > li ul {
  margin-left: 16px;
}
.c-vertical-nav > li ul li {
  margin-top: 12px;
  color: #A0A9C1;
  font-size: 1.4rem;
}
.c-vertical-nav > li ul li.is-current a {
  color: #7493CA;
  font-weight: 700;
}
.c-bg-white .c-vertical-nav > li.is-current > a {
  color: #5876AA;
}
.c-bg-white .c-vertical-nav > li ul li {
  color: #667493;
}
.c-bg-white .c-vertical-nav > li ul li.is-current a {
  color: #5876AA;
}

.c-breadcrumb {
  display: flex;
  align-items: center;
  background-size: 100%;
  font-size: 1.1rem;
  line-height: 1;
}
.c-breadcrumb li:not(:last-child)::after {
  content: '';
  display: inline-block;
  position: relative;
  top: 2px;
  margin: 0 8px;
  background: url(../image/d2cce6580e5143a1bec43261f9ce8517.svg) no-repeat center center;
  background-size: 100%;
  width: 12px;
  height: 12px;
}
.c-breadcrumb li a {
  color: #A0A9C1;
}
.c-bg-white .c-breadcrumb li:not(:last-child)::after {
  background: url(../image/arrow_s_right2.svg) no-repeat center center;
  background-size: 100%;
}
.c-bg-white .c-breadcrumb li a {
  color: #667493;
}

/* Text
-----------------------*/
@media (max-width: 767px) {
  .c-head-xlg,
  .c-head-xlg-sp {
    margin-bottom: 16px;
    font-size: 3.2rem;
    line-height: 1.3;
  }
  .c-head-lg,
  .c-head-lg-sp {
    margin-bottom: 40px;
    font-size: 3.2rem;
    line-height: 1.3;
  }
  .c-head-md,
  .c-head-md-sp {
    margin-bottom: 40px;
    font-size: 3.2rem;
    line-height: 1.3;
  }
  .c-head-sm,
  .c-head-sm-sp {
    margin-bottom: 32px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .c-head-xsm,
  .c-head-xsm-sp {
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
  }
  .c-head-xxsm,
  .c-head-xxsm-sp {
    margin-bottom: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .c-head-xxxsm,
  .c-head-xxxsm-sp {
    margin-bottom: 16px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .c-head-xlg,
  .c-head-xlg-pc {
    margin-bottom: 24px;
    font-size: 5.6rem;
    line-height: 1.3;
  }
  .c-head-lg,
  .c-head-lg-pc {
    margin-bottom: 64px;
    font-size: 4rem;
    line-height: 1.3;
  }
  .c-head-md,
  .c-head-md-pc {
    margin-bottom: 40px;
    font-size: 3.2rem;
    line-height: 1.3;
  }
  .c-head-sm,
  .c-head-sm-pc {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 1.5;
  }
  .c-head-xsm,
  .c-head-xsm-pc {
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
  }
  .c-head-xxsm,
  .c-head-xxsm-pc {
    margin-bottom: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .c-head-xxxsm,
  .c-head-xxxsm-pc {
    margin-bottom: 16px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.c-text-body-sm {
  font-size: 1.4rem;
}

.c-text-caption {
  font-size: 1.1rem;
  line-height: 1.5;
}
.c-img-caption {
  margin-top: 16px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.c-text-link {
  color: #7493CA;
}
.c-text-link:hover {
  text-decoration: underline;
}
.c-bg-white .c-text-link {
  color: #5876AA;
}

.c-location {
  display: flex;
  align-items: center;
  color: #A0A9C1;
  font-size: 1.4rem;
  line-height: 1.17;
}
.c-location::before {
  content: '';
  margin-right: 8px;
  background: url(../image/location.svg) no-repeat center center;
  background-size: 100%;
  width: 16px;
  height: 16px;
}
.c-bg-white .c-location {
  color: #667493;
}
.c-bg-white .c-location::before {
  background: url(../image/location1.svg) no-repeat center center;
  background-size: 100%;
}

.c-calendar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
  color: #A0A9C1;
  font-size: 1.4rem;
  line-height: 2;
}
.c-calendar dt::before {
  content: '';
  display: inline-block;
  position: relative;
  top: 3px;
  margin-right: 8px;
  background: url(../image/calendar.svg) no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
}
.c-calendar dd::before {
  content: '';
  display: inline-block;
  position: relative;
  top: 3px;
  margin-left: 8px;
  margin-right: 8px;
  background: #3B486F;
  width: 1px;
  height: 16px;
}
.c-bg-white .c-calendar {
  color: #667493;
}
.c-bg-white .c-calendar dt::before {
  background: url(../image/calendar1.svg) no-repeat;
  background-size: 100%;
}
.c-bg-white .c-calendar dd::before {
  background: #D5DDEB;
}

.c-name-date {
  display: flex;
  align-items: center;
}
.c-name-date__img {
  flex: none;
  overflow: hidden;
  margin-right: 8px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.c-name-date__text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 2;
}
.c-name-date__text dt {
  color: #5876AA;
  font-size: 1.6rem;
}
.c-name-date__text dd {
  color: #A0A9C1;
  font-size: 1.4rem;
}
.c-name-date__text dd::before {
  content: '';
  display: inline-block;
  position: relative;
  top: 3px;
  margin-left: 8px;
  margin-right: 8px;
  background: #3B486F;
  width: 1px;
  height: 16px;
}
.c-bg-white .c-name-date {
  color: #667493;
}
.c-bg-white .c-name-date__text dd::before {
  background: #D5DDEB;
}

.c-name-date.c-name-date--2row .c-name-date__img {
  margin-right: 16px;
  width: 48px;
  height: 48px;
}
.c-name-date.c-name-date--2row .c-name-date__text {
  display: block;
  line-height: 1.8;
}
.c-name-date.c-name-date--2row dd {
  font-size: 1.1rem;
}
.c-name-date.c-name-date--2row dd::before {
  display: none;
}

/* リンク
-----------------------*/
.c-link-arrow {
  display: inline-flex;
  align-items: center;
  color: #7493CA;
  font-size: 1.4rem;
}
.c-bg-white .c-link-arrow {
  color: #5876AA;

}
.c-link-arrow::after {
  content: '';
  position: relative;
  left: 0;
  top: -1px;
  background: url(../image/arrow_right3.svg) no-repeat;
  background-size: 100%;
  margin-left: 8px;
  width: 16px;
  height: 16px;
  transition: left 0.2s;
}
.c-bg-white .c-link-arrow::after {
  background: url(../image/arrow_right4.svg) no-repeat;
  background-size: 100%;
}
a:hover .c-link-arrow::after,
.c-link-arrow:hover::after {
  left: 5px;
}

.c-link-arrow.c-link-arrow--white {
  color: #fff;
}
.c-link-arrow.c-link-arrow--white::after {
  background: url(../image/arrow_right.svg) no-repeat;
  background-size: 100%;
}

@media (min-width: 768px) {
  .c-link-arrow.c-link-arrow--white-pc {
    color: #fff;
  }
  .c-link-arrow.c-link-arrow--white-pc::after {
    background: url(../image/arrow_right.svg) no-repeat;
    background-size: 100%;
  }
}

/* 画像用
-----------------------*/
.c-img {
  font-size: 0;
}
.c-img--face-icon {
  overflow: hidden;
  border-radius: 50%;
  width: 80px !important;
  height: 80px !important;
}
@media (min-width: 768px) {
  .c-img--face-icon {
    width: 120px !important;
    height: 120px !important;
  }
}

/* 背景色
-----------------------*/
.c-bg-white {
  background: #fff !important;
  color: #121A38 !important;
}

.c-bg-human-blue-light {
  background: #7493CA !important;
  color: #fff !important;
}
.c-bg-human-blue-dark {
  background: #5876AA !important;
  color: #fff !important;
}

.c-bg-smart-navy-300 {
  background: #A0A9C1 !important;
  color: #fff !important;
}
.c-bg-smart-navy-500 {
  background: #3B486F !important;
  color: #fff !important;
}
.c-bg-smart-navy-600 {
  background: #1D264D !important;
  color: #fff !important;
}
.c-bg-smart-navy-700 {
  background: #121A38 !important;
  color: #fff !important;
}
.c-bg-smart-navy-800 {
  background: #070F26 !important;
  color: #fff !important;
}
.c-bg-smart-navy-800-80p {
  background: rgba(7, 15, 38, 0.8) !important;
  color: #fff !important;
}

.c-bg-gray-100 {
  background: #F8FAFD !important;
  color: #121A38 !important;
}
.c-bg-gray-200 {
  background: #D5DDEB !important;
  color: #121A38 !important;
}
.c-bg-gray-400 {
  background: #667493 !important;
  color: #121A38 !important;
}

.c-bg-red {
  background: #EB0055 !important;
  color: #fff !important;
}

/* 文字色
-----------------------*/
.c-color-white {
  color: #fff !important;
}
.c-color-black {
  color: #121A38 !important;
}

.c-color-human-blue {
  color: #7493CA !important;
}
.c-bg-white .c-color-human-blue {
  color: #5876AA !important;
}

.c-color-human-blue-light {
  color: #7493CA !important;
}
.c-color-human-blue-dark {
  color: #5876AA !important;
}

.c-color-smart-navy {
  color: #A0A9C1 !important;
}
.c-bg-white .c-color-smart-navy {
  color: #667493 !important;
}

.c-color-smart-navy-300 {
  color: #A0A9C1 !important;
}
.c-color-smart-navy-500 {
  color: #3B486F !important;
}
.c-color-smart-navy-600 {
  color: #1D264D !important;
}
.c-color-smart-navy-700 {
  color: #121A38 !important;
}
.c-color-smart-navy-800 {
  color: #070F26 !important;
}

.c-color-gray-100 {
  color: #F8FAFD !important;
}
.c-color-gray-200 {
  color: #D5DDEB !important;
}
.c-color-gray-400 {
  color: #667493 !important;
}

.c-color-red,
.c-color-error {
  color: #EB0055 !important;
}

/* 2カラム
-----------------------*/
@media (max-width: 767px) {
  .c-2column > *:not(:first-child) {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .c-2column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-2column > * {
    width: calc((100% - 5.58%) / 2);
  }

  .c-2column .c-2column > * {
    width: calc((100% - 24px) / 2);
  }

  .c-2column.c-2column--7to3 > *:first-child {
    width: calc((100% - 48px) / 10 * 7);
  }
  .c-2column.c-2column--7to3 > *:last-child {
    width: calc((100% - 48px) / 10 * 3);
  }
  
  .c-2column.c-2column--3to7 > *:first-child {
    width: calc((100% - 48px) / 10 * 3);
  }
  .c-2column.c-2column--3to7 > *:last-child {
    width: calc((100% - 48px) / 10 * 7);
  }

  .c-2column > *:nth-child(n+3) {
    margin-top: 48px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .c-2column.c-2column--sidenav-left,
  .c-2column.c-2column--sidenav-right {
    display: block;
  }
  .c-2column.c-2column--sidenav-left > *:not(:first-child),
  .c-2column.c-2column--sidenav-right > *:not(:first-child) {
    margin-top: 40px;
  }
  .c-2column.c-2column--sidenav-left,
  .c-2column.c-2column--sidenav-right {
    display: block;
  }
  .c-2column.c-2column--sidenav-left > *,
  .c-2column.c-2column--sidenav-right > * {
    width: 100%;
  }
  .c-2column.c-2column--sidenav-left > *:not(:first-child),
  .c-2column.c-2column--sidenav-right > *:not(:first-child) {
    margin-top: 80px;
  }
}
@media (min-width: 1024px) {
  .c-2column > * {
    width: calc((100% - 48px) / 2);
  }

  .c-2column.c-2column--sidenav-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-2column.c-2column--sidenav-left > *:first-child {
    flex: none;
    width: 250px;
  }
  .c-2column.c-2column--sidenav-left > *:last-child {
    width: calc(100% - 346px);
  }
  .c-2column.c-2column--sidenav-right > *:first-child {
    width: calc(100% - 346px);
  }
  .c-2column.c-2column--sidenav-right > *:last-child {
    flex: none;
    width: 250px;
  }
}

/* 3カラム
-----------------------*/
@media (max-width: 767px) {
  .c-3column > *:not(:first-child) {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .c-3column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .c-3column > * {
    width: calc((100% - (2 * 5.58%)) / 3);
  }
  .c-3column::after {
    content: '';
    width: calc((100% - (2 * 5.58%)) / 3);
  }
}
  .c-3column > *:nth-child(n+4) {
    margin-top: 48px;
  }
@media (min-width: 1024px) {
  .c-3column > * {
    width: calc((100% - (2 * 48px)) / 3);
  }
  .c-3column::after {
    content: '';
    width: calc((100% - (2 * 48px)) / 3);
  }
}

/* 4カラム
-----------------------*/
@media (max-width: 767px) {
  .c-4column > *:not(:first-child) {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .c-4column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-4column > * {
    width: calc((100% - (3 * 5.58%)) / 4);
  }
  .c-4column::before,
  .c-4column::after {
    content: '';
    width: calc((100% - (3 * 5.58%)) / 4);
    order:1;
  }
  .c-4column > *:nth-child(n+5) {
    margin-top: 48px;
  }
}
@media (min-width: 1024px) {
  .c-4column > * {
    width: calc((100% - (3 * 48px)) / 4);
  }
  .c-4column::before,
  .c-4column::after {
    content: '';
    width: calc((100% - (3 * 48px)) / 4);
    order:1;
  }
}

/* フレックス
-----------------------*/
.c-flex-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: -8px;
}
.c-flex-wrap > * {
  margin: 8px 8px 0 0;
}

.c-flex-center-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-flex-center-center > *:first-child {
  margin-right: 16px;
}

/* モーダル
-----------------------*/
.c-mask-img {
  position: relative;
}
.c-mask-img::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  background: #121a38;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

/* モーダル
-----------------------*/
.c-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 20px 20px;
  background: rgba(21, 59, 86, 0.8);
  width: 100%;
  height: 100%;
}

/* Youtube
-----------------------*/
.c-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* 引用
-----------------------*/
.c-blockquote {
  padding-left: 24px;
  border-left: 8px solid #3B486F;
}
.c-bg-white .c-blockquote {
  border-left: 8px solid #D5DDEB;
}

.c-blockquote__cite {
  display: block;
  margin-top: 24px;
  font-size: 1.1rem;
  text-align: right;
}

/* 画像hover時に画像を拡大
-----------------------*/
@media (min-width: 768px) {
  .c-img-hover-zoom {
    overflow: hidden;
  }
  .c-img-hover-zoom img {
    transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  }
  a:hover .c-img-hover-zoom img,
  .c-img-hover-zoom:hover img,
  .c-img-hover-zoom a:hover img {
    transform:scale(1.05, 1.05);
    opacity: 1;
  }
}

/* JS用
-----------------------*/
/* js-accordion */
.js-accordion-open {
  display: none;
}

/* object-fit-images.js */
.js-object-fit-images {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.js-object-fit-images.is-top {
  object-position: top;
  font-family: 'object-fit: cover; object-position: top;';
}
.js-object-fit-images.is-bottom {
  object-position: bottom;
  font-family: 'object-fit: cover; object-position: bottom;';
}
.js-object-fit-images.is-left {
  object-position: left;
  font-family: 'object-fit: cover; object-position: left;';
}
.js-object-fit-images.is-right {
  object-position: right;
  font-family: 'object-fit: cover; object-position: right;';
}
.js-object-fit-images.is-left-top {
  object-position: left top;
  font-family: 'object-fit: cover; object-position: left top;';
}
.js-object-fit-images.is-left-bottom {
  object-position: left bottom;
  font-family: 'object-fit: cover; object-position: left bottom;';
}
.js-object-fit-images.is-right-top {
  object-position: right top;
  font-family: 'object-fit: cover; object-position: right top;';
}
.js-object-fit-images.is-right-bottom {
  object-position: right bottom;
  font-family: 'object-fit: cover; object-position: right bottom;';
}

/* trunk8.js */
.js-line-clamp-01,
.js-line-clamp-02,
.js-line-clamp-03,
.js-line-clamp-04,
.js-line-clamp-05,
.js-line-clamp-06,
.js-line-clamp-07,
.js-line-clamp-08,
.js-line-clamp-09,
.js-line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.js-line-clamp-01 {
  -webkit-line-clamp: 1;
}
.js-line-clamp-02 {
  -webkit-line-clamp: 2;
}
.js-line-clamp-03 {
  -webkit-line-clamp: 3;
}
.js-line-clamp-04 {
  -webkit-line-clamp: 4;
}
.js-line-clamp-05 {
  -webkit-line-clamp: 5;
}
.js-line-clamp-06 {
  -webkit-line-clamp: 6;
}
.js-line-clamp-07 {
  -webkit-line-clamp: 7;
}
.js-line-clamp-08 {
  -webkit-line-clamp: 8;
}
.js-line-clamp-09 {
  -webkit-line-clamp: 9;
}
.js-line-clamp-10 {
  -webkit-line-clamp: 10;
}

/* slick.js */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}



/*========================================
Utility（接頭辞 u-）
==========================================*/
/* ディスプレイ
-----------------------*/
/* PC、タブレットは表示 */
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

/* タブレット、SPは表示 */
@media (min-width: 1024px) {
  .u-tab {
    display: none !important;
  }
}

/* SPのみ表示 */
@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-d-none {
  display: none !important;
}
.u-d-none-before::before {
  display: none !important;
}
.u-d-none-after::after {
  display: none !important;
}
.u-d-block {
  display: block !important;
}
.u-d-flex {
  display: flex !important;
}
.u-d-inline {
  display: inline !important;
}
.u-d-inline-block {
  display: inline-block !important;
}
.u-d-inline-flex {
  display: inline-flex !important;
}
@media (min-width: 768px) {
  .u-d-none-pc {
    display: none !important;
  }
  .u-d-none-before-pc::before {
    display: none !important;
  }
  .u-d-none-after-pc::after {
    display: none !important;
  }
  .u-d-block-pc {
    display: block !important;
  }
  .u-d-flex-pc {
    display: flex !important;
  }
  .u-d-inline-pc {
    display: inline !important;
  }
  .u-d-inline-block-pc {
    display: inline-block !important;
  }
  .u-d-inline-flex-pc {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-d-none-tab {
    display: none !important;
  }
  .u-d-none-before-tab::before {
    display: none !important;
  }
  .u-d-none-after-tab::after {
    display: none !important;
  }
  .u-d-block-tab {
    display: block !important;
  }
  .u-d-flex-tab {
    display: flex !important;
  }
  .u-d-inline-tab {
    display: inline !important;
  }
  .u-d-inline-block-tab {
    display: inline-block !important;
  }
  .u-d-inline-flex-tab {
    display: inline-flex !important;
  }
}
@media screen and (max-width: 767px) {
  .u-d-none-sp {
    display: none !important;
  }
  .u-d-none-before-sp::before {
    display: none !important;
  }
  .u-d-none-after-sp::after {
    display: none !important;
  }
  .u-d-block-sp {
    display: block !important;
  }
  .u-d-flex-sp {
    display: flex !important;
  }
  .u-d-inline-sp {
    display: inline !important;
  }
  .u-d-inline-block-sp {
    display: inline-block !important;
  }
  .u-d-inline-flex-sp {
    display: inline-flex !important;
  }
}

/* フレックス系
-----------------------*/
.u-flex-none {
  flex: none;
}
.u-flex-flow-column {
  flex-flow: column !important;
}
.u-flex-flow-column-reverse {
  flex-flow: column-reverse !important;
}
.u-flex-flow-row-reverse {
  flex-flow: row-reverse !important;
}
.u-flex-flow-wrap {
  flex-flow: wrap !important;
}
.u-flex-flow-nowrap {
  flex-flow: nowrap !important;
}
.u-flex-shrink-0 {
  flex-shrink: 0 !important;
}
.u-flex-basis-auto {
  flex-basis: auto !important;
}
.u-justify-content-start {
  justify-content: flex-start !important;
}
.u-justify-content-center {
  justify-content: center !important;
}
.u-justify-content-end {
  justify-content: flex-end !important;
}
.u-justify-content-between {
  justify-content: space-between !important;
}
.u-align-items-start {
  align-items: flex-start !important;
}
.u-align-items-center {
  align-items: center !important;
}
.u-align-items-end {
  align-items: flex-end !important;
}
.u-align-items-stretch {
  align-items: stretch !important;
}
.u-align-content-start {
  align-content: flex-start !important;
}
.u-align-content-center {
  align-content: center !important;
}
.u-align-content-end {
  align-content: flex-end !important;
}
.u-align-content-between {
  align-content: space-between !important;
}
.u-align-content-stretch {
  align-content: stretch !important;
}
.u-align-self-start {
  align-self: flex-start;
}
.u-align-self-center {
  align-self: center;
}
.u-align-self-end {
  align-self: flex-end;
}
.u-align-self-stretch {
  align-self: stretch;
}
.u-order-01 {
  order: 1;
}
.u-order-02 {
  order: 2;
}
.u-order-03 {
  order: 3;
}
.u-order-04 {
  order: 4;
}
.u-order-05 {
  order: 5;
}
.u-order-06 {
  order: 6;
}
.u-order-07 {
  order: 7;
}
.u-order-08 {
  order: 8;
}
.u-order-09 {
  order: 9;
}
.u-order-10 {
  order: 10;
}
@media screen and (max-width: 767px) {
  .u-flex-none-sp {
    flex: none;
  }
  .u-flex-flow-column-sp {
    flex-flow: column !important;
  }
  .u-flex-flow-column-reverse-sp {
    flex-flow: column-reverse !important;
  }
  .u-flex-flow-row-reverse-sp {
    flex-flow: row-reverse !important;
  }
  .u-flex-flow-wrap-sp {
    flex-flow: wrap !important;
  }
  .u-flex-flow-nowrap-sp {
    flex-flow: nowrap !important;
  }
  .u-flex-shrink-0-sp {
    flex-shrink: 0 !important;
  }
  .u-flex-basis-auto-sp {
    flex-basis: auto !important;
  }
  .u-justify-content-start-sp {
    justify-content: flex-start !important;
  }
  .u-justify-content-center-sp {
    justify-content: center !important;
  }
  .u-justify-content-end-sp {
    justify-content: flex-end !important;
  }
  .u-justify-content-between-sp {
    justify-content: space-between !important;
  }
  .u-align-items-start-sp {
    align-items: flex-start !important;
  }
  .u-align-items-center-sp {
    align-items: center !important;
  }
  .u-align-items-end-sp {
    align-items: flex-end !important;
  }
  .u-align-items-stretch-sp {
    align-items: stretch !important;
  }
  .u-align-content-start-sp {
    align-content: flex-start !important;
  }
  .u-align-content-center-sp {
    align-content: center !important;
  }
  .u-align-content-end-sp {
    align-content: flex-end !important;
  }
  .u-align-content-between-sp {
    align-content: space-between !important;
  }
  .u-align-content-stretch-sp {
    align-content: stretch !important;
  }
  .u-align-self-start-sp {
    align-self: flex-start;
  }
  .u-align-self-center-sp {
    align-self: center;
  }
  .u-align-self-end-sp {
    align-self: flex-end;
  }
  .u-align-self-stretch-sp {
    align-self: stretch;
  }
}
@media (min-width: 768px) {
  .u-flex-none-pc {
    flex: none;
  }
  .u-flex-flow-column-pc {
    flex-flow: column !important;
  }
  .u-flex-flow-column-reverse-pc {
    flex-flow: column-reverse !important;
  }
  .u-flex-flow-row-reverse-pc {
    flex-flow: row-reverse !important;
  }
  .u-flex-flow-wrap-pc {
    flex-flow: wrap !important;
  }
  .u-flex-flow-nowrap-pc {
    flex-flow: nowrap !important;
  }
  .u-flex-shrink-0-pc {
    flex-shrink: 0 !important;
  }
  .u-flex-basis-auto-pc {
    flex-basis: auto !important;
  }
  .u-justify-content-start-pc {
    justify-content: flex-start !important;
  }
  .u-justify-content-center-pc {
    justify-content: center !important;
  }
  .u-justify-content-end-pc {
    justify-content: flex-end !important;
  }
  .u-justify-content-between-pc {
    justify-content: space-between !important;
  }
  .u-align-items-start-pc {
    align-items: flex-start !important;
  }
  .u-align-items-center-pc {
    align-items: center !important;
  }
  .u-align-items-end-pc {
    align-items: flex-end !important;
  }
  .u-align-items-stretch-pc {
    align-items: stretch !important;
  }
  .u-align-content-start-pc {
    align-content: flex-start !important;
  }
  .u-align-content-center-pc {
    align-content: center !important;
  }
  .u-align-content-end-pc {
    align-content: flex-end !important;
  }
  .u-align-content-between-pc {
    align-content: space-between !important;
  }
  .u-align-content-stretch-pc {
    align-content: stretch !important;
  }
  .u-align-self-start-pc {
    align-self: flex-start;
  }
  .u-align-self-center-pc {
    align-self: center;
  }
  .u-align-self-end-pc {
    align-self: flex-end;
  }
  .u-align-self-stretch-pc {
    align-self: stretch;
  }
}

/* フロート
-----------------------*/
.u-float-left {
  float: left;
}
.u-float-right {
  float: right;
}
.u-float-none {
  float: none;
}
.u-clearfix::after {
  content: '';
  display: block;
  clear: both;
}
@media (min-width: 768px) {
  .u-float-left-pc {
    float: left;
  }
  .u-float-right-pc {
    float: right;
  }
  .u-float-none-pc {
    float: none;
  }
}
@media screen and (max-width: 767px) {
  .u-float-left-sp {
    float: left;
  }
  .u-float-right-sp {
    float: right;
  }
  .u-float-none-sp {
    float: none;
  }
}

/* オーバーフロー
-----------------------*/
.u-overflow-visible {
  overflow: visible !important;
}
.u-overflow-hidden {
  overflow: hidden !important;
}
.u-overflow-auto {
  overflow: auto !important;
}
.u-overflow-scroll {
  overflow: scroll !important;
}
.u-overflow-x-scroll {
  overflow-x: scroll !important;
}
.u-overflow-y-scroll {
  overflow-y: scroll !important;
}
@media (min-width: 768px) {
  .u-overflow-visible-pc {
    overflow: visible !important;
  }
  .u-overflow-hidden-pc {
    overflow: hidden !important;
  }
  .u-overflow-auto-pc {
    overflow: auto !important;
  }
  .u-overflow-scroll-pc {
    overflow: scroll !important;
  }
  .u-overflow-x-scroll-pc {
    overflow-x: scroll !important;
  }
  .u-overflow-y-scroll-pc {
    overflow-y: scroll !important;
  }
}
@media screen and (max-width: 767px) {
  .u-overflow-visible-sp {
    overflow: visible !important;
  }
  .u-overflow-hidden-sp {
    overflow: hidden !important;
  }
  .u-overflow-auto-sp {
    overflow: auto !important;
  }
  .u-overflow-scroll-sp {
    overflow: scroll !important;
  }
  .u-overflow-x-scroll-sp {
    overflow-x: scroll !important;
  }
  .u-overflow-y-scroll-sp {
    overflow-y: scroll !important;
  }
}

/* ポジション
-----------------------*/
.u-pos-relative {
  position: relative !important;
}
.u-pos-absolute {
  position: absolute !important;
}
.u-z-index-9999 {
  z-index: 9999 !important;
}
.u-top-0 {
  top: 0 !important;
}
.u-bottom-0 {
  bottom: 0 !important;
}
.u-left-0 {
  left: 0 !important;
}
.u-right-0 {
  right: 0 !important;
}
@media screen and (max-width: 767px) {
  .u-pos-relative-sp {
    position: relative !important;
  }
  .u-pos-absolute-sp {
    position: absolute !important;
  }
  .u-z-index-9999-sp {
    z-index: 9999 !important;
  }
  .u-top-0-sp {
    top: 0 !important;
  }
  .u-bottom-0-sp {
    bottom: 0 !important;
  }
  .u-left-0-sp {
    left: 0 !important;
  }
  .u-right-0-sp {
    right: 0 !important;
  }
}
@media (min-width: 768px) {
  .u-pos-relative-pc {
    position: relative !important;
  }
  .u-pos-absolute-pc {
    position: absolute !important;
  }
  .u-z-index-9999-pc {
    z-index: 9999 !important;
  }
  .u-top-0-sp {
    top: 0 !important;
  }
  .u-bottom-0-pc {
    bottom: 0 !important;
  }
  .u-left-0-pc {
    left: 0 !important;
  }
  .u-right-0-pc {
    right: 0 !important;
  }
}

/* マージン
-----------------------*/
@media (min-width: 0px) {
  .u-mt-0 {
    margin-top: 0px !important;
  }
  .u-mt-5 {
    margin-top: 5px !important;
  }
  .u-mt-8 {
    margin-top: 8px !important;
  }
  .u-mt-10 {
    margin-top: 10px !important;
  }
  .u-mt-15 {
    margin-top: 15px !important;
  }
  .u-mt-16 {
    margin-top: 16px !important;
  }
  .u-mt-20 {
    margin-top: 20px !important;
  }
  .u-mt-24 {
    margin-top: 24px !important;
  }
  .u-mt-25 {
    margin-top: 25px !important;
  }
  .u-mt-30 {
    margin-top: 30px !important;
  }
  .u-mt-40 {
    margin-top: 40px !important;
  }
  .u-mt-50 {
    margin-top: 50px !important;
  }
  .u-mt-60 {
    margin-top: 60px !important;
  }
  .u-mt-64 {
    margin-top: 64px !important;
  }
  .u-mt-70 {
    margin-top: 70px !important;
  }
  .u-mt-80 {
    margin-top: 80px !important;
  }
  .u-mt-90 {
    margin-top: 90px !important;
  }
  .u-mt-100 {
    margin-top: 100px !important;
  }
  .u-mt-110 {
    margin-top: 110px !important;
  }
  .u-mt-120 {
    margin-top: 120px !important;
  }
  .u-mt-auto {
    margin-top: auto !important;
  }
}
@media (min-width: 768px) {
  .u-mt-0-pc {
    margin-top: 0px !important;
  }
  .u-mt-5-pc {
    margin-top: 5px !important;
  }
  .u-mt-10-pc {
    margin-top: 10px !important;
  }
  .u-mt-15-pc {
    margin-top: 15px !important;
  }
  .u-mt-16-pc {
    margin-top: 16px !important;
  }
  .u-mt-20-pc {
    margin-top: 20px !important;
  }
  .u-mt-24-pc {
    margin-top: 24px !important;
  }
  .u-mt-25-pc {
    margin-top: 25px !important;
  }
  .u-mt-30-pc {
    margin-top: 30px !important;
  }
  .u-mt-40-pc {
    margin-top: 40px !important;
  }
  .u-mt-50-pc {
    margin-top: 50px !important;
  }
  .u-mt-60-pc {
    margin-top: 60px !important;
  }
  .u-mt-64-pc {
    margin-top: 64px !important;
  }
  .u-mt-70-pc {
    margin-top: 70px !important;
  }
  .u-mt-80-pc {
    margin-top: 80px !important;
  }
  .u-mt-90-pc {
    margin-top: 90px !important;
  }
  .u-mt-100-pc {
    margin-top: 100px !important;
  }
  .u-mt-110-pc {
    margin-top: 110px !important;
  }
  .u-mt-120-pc {
    margin-top: 120px !important;
  }

  .u-mt-150-pc {
    margin-top: 150px !important;
  }
  .u-mt-auto-pc {
    margin-top: auto !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-mt-0-tab {
    margin-top: 0px !important;
  }
  .u-mt-5-tab {
    margin-top: 5px !important;
  }
  .u-mt-10-tab {
    margin-top: 10px !important;
  }
  .u-mt-15-tab {
    margin-top: 15px !important;
  }
  .u-mt-20-tab {
    margin-top: 20px !important;
  }
  .u-mt-25-tab {
    margin-top: 25px !important;
  }
  .u-mt-30-tab {
    margin-top: 30px !important;
  }
  .u-mt-40-tab {
    margin-top: 40px !important;
  }
  .u-mt-50-tab {
    margin-top: 50px !important;
  }
  .u-mt-60-tab {
    margin-top: 60px !important;
  }
  .u-mt-70-tab {
    margin-top: 70px !important;
  }
  .u-mt-80-tab {
    margin-top: 80px !important;
  }
  .u-mt-90-tab {
    margin-top: 90px !important;
  }
  .u-mt-100-tab {
    margin-top: 100px !important;
  }
  .u-mt-110-tab {
    margin-top: 110px !important;
  }
  .u-mt-120-tab {
    margin-top: 120px !important;
  }
  .u-mt-auto-tab {
    margin-top: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt--100-sp {
    margin-top: -100px !important;
  }
  .u-mt--95-sp {
    margin-top: -95px !important;
  }
  .u-mt--90-sp {
    margin-top: -90px !important;
  }
  .u-mt--85-sp {
    margin-top: -85px !important;
  }
  .u-mt--80-sp {
    margin-top: -80px !important;
  }
  .u-mt--75-sp {
    margin-top: -75px !important;
  }
  .u-mt--70-sp {
    margin-top: -70px !important;
  }
  .u-mt--65-sp {
    margin-top: -65px !important;
  }
  .u-mt--60-sp {
    margin-top: -60px !important;
  }
  .u-mt--55-sp {
    margin-top: -55px !important;
  }
  .u-mt--50-sp {
    margin-top: -50px !important;
  }
  .u-mt--45-sp {
    margin-top: -45px !important;
  }
  .u-mt--40-sp {
    margin-top: -40px !important;
  }
  .u-mt--35-sp {
    margin-top: -35px !important;
  }
  .u-mt--30-sp {
    margin-top: -30px !important;
  }
  .u-mt--25-sp {
    margin-top: -25px !important;
  }
  .u-mt--20-sp {
    margin-top: -20px !important;
  }
  .u-mt--15-sp {
    margin-top: -15px !important;
  }
  .u-mt--10-sp {
    margin-top: -10px !important;
  }
  .u-mt--5-sp {
    margin-top: -5px !important;
  }
  .u-mt-0-sp {
    margin-top: 0px !important;
  }
  .u-mt-5-sp {
    margin-top: 5px !important;
  }
  .u-mt-10-sp {
    margin-top: 10px !important;
  }
  .u-mt-15-sp {
    margin-top: 15px !important;
  }
  .u-mt-20-sp {
    margin-top: 20px !important;
  }
  .u-mt-24-sp {
    margin-top: 24px !important;
  }
  .u-mt-25-sp {
    margin-top: 25px !important;
  }
  .u-mt-30-sp {
    margin-top: 30px !important;
  }
  .u-mt-40-sp {
    margin-top: 40px !important;
  }
  .u-mt-50-sp {
    margin-top: 50px !important;
  }
  .u-mt-60-sp {
    margin-top: 60px !important;
  }
  .u-mt-70-sp {
    margin-top: 70px !important;
  }
  .u-mt-80-sp {
    margin-top: 80px !important;
  }
  .u-mt-90-sp {
    margin-top: 90px !important;
  }
  .u-mt-100-sp {
    margin-top: 100px !important;
  }
  .u-mt-110-sp {
    margin-top: 110px !important;
  }
  .u-mt-120-sp {
    margin-top: 120px !important;
  }
  .u-mt-auto-sp {
    margin-top: auto !important;
  }
}

@media (min-width: 0px) {
  .u-mb-0 {
    margin-bottom: 0px !important;
  }
  .u-mb-5 {
    margin-bottom: 5px !important;
  }
  .u-mb-10 {
    margin-bottom: 10px !important;
  }
  .u-mb-15 {
    margin-bottom: 15px !important;
  }
  .u-mb-16 {
    margin-bottom: 16px !important;
  }
  .u-mb-20 {
    margin-bottom: 20px !important;
  }
  .u-mb-24 {
    margin-bottom: 24px !important;
  }
  .u-mb-25 {
    margin-bottom: 25px !important;
  }
  .u-mb-30 {
    margin-bottom: 30px !important;
  }
  .u-mb-40 {
    margin-bottom: 40px !important;
  }
  .u-mb-50 {
    margin-bottom: 50px !important;
  }
  .u-mb-60 {
    margin-bottom: 60px !important;
  }
  .u-mb-64 {
    margin-bottom: 64px !important;
  }
  .u-mb-70 {
    margin-bottom: 70px !important;
  }
  .u-mb-80 {
    margin-bottom: 80px !important;
  }
  .u-mb-90 {
    margin-bottom: 90px !important;
  }
  .u-mb-100 {
    margin-bottom: 100px !important;
  }
  .u-mb-auto {
    margin-bottom: auto !important;
  }
}
@media (min-width: 768px) {
  .u-mb-0-pc {
    margin-bottom: 0px !important;
  }
  .u-mb-5-pc {
    margin-bottom: 5px !important;
  }
  .u-mb-10-pc {
    margin-bottom: 10px !important;
  }
  .u-mb-15-pc {
    margin-bottom: 15px !important;
  }
  .u-mb-16-pc {
    margin-bottom: 16px !important;
  }
  .u-mb-20-pc {
    margin-bottom: 20px !important;
  }
  .u-mb-25-pc {
    margin-bottom: 25px !important;
  }
  .u-mb-24-pc {
    margin-bottom: 24px !important;
  }
  .u-mb-30-pc {
    margin-bottom: 30px !important;
  }
  .u-mb-40-pc {
    margin-bottom: 40px !important;
  }
  .u-mb-50-pc {
    margin-bottom: 50px !important;
  }
  .u-mb-60-pc {
    margin-bottom: 60px !important;
  }
  .u-mb-64-pc {
    margin-bottom: 64px !important;
  }
  .u-mb-70-pc {
    margin-bottom: 70px !important;
  }
  .u-mb-80-pc {
    margin-bottom: 80px !important;
  }
  .u-mb-90-pc {
    margin-bottom: 90px !important;
  }
  .u-mb-100-pc {
    margin-bottom: 100px !important;
  }
  .u-mb-auto-pc {
    margin-bottom: auto !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-mb-0-tab {
    margin-bottom: 0px !important;
  }
  .u-mb-5-tab {
    margin-bottom: 5px !important;
  }
  .u-mb-10-tab {
    margin-bottom: 10px !important;
  }
  .u-mb-15-tab {
    margin-bottom: 15px !important;
  }
  .u-mb-20-tab {
    margin-bottom: 20px !important;
  }
  .u-mb-25-tab {
    margin-bottom: 25px !important;
  }
  .u-mb-30-tab {
    margin-bottom: 30px !important;
  }
  .u-mb-40-tab {
    margin-bottom: 40px !important;
  }
  .u-mb-50-tab {
    margin-bottom: 50px !important;
  }
  .u-mb-60-tab {
    margin-bottom: 60px !important;
  }
  .u-mb-70-tab {
    margin-bottom: 70px !important;
  }
  .u-mb-80-tab {
    margin-bottom: 80px !important;
  }
  .u-mb-90-tab {
    margin-bottom: 90px !important;
  }
  .u-mb-100-tab {
    margin-bottom: 100px !important;
  }
  .u-mb-auto-tab {
    margin-bottom: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mb-0-sp {
    margin-bottom: 0px !important;
  }
  .u-mb-5-sp {
    margin-bottom: 5px !important;
  }
  .u-mb-10-sp {
    margin-bottom: 10px !important;
  }
  .u-mb-15-sp {
    margin-bottom: 15px !important;
  }
  .u-mb-20-sp {
    margin-bottom: 20px !important;
  }
  .u-mb-25-sp {
    margin-bottom: 25px !important;
  }
  .u-mb-30-sp {
    margin-bottom: 30px !important;
  }
  .u-mb-40-sp {
    margin-bottom: 40px !important;
  }
  .u-mb-50-sp {
    margin-bottom: 50px !important;
  }
  .u-mb-60-sp {
    margin-bottom: 60px !important;
  }
  .u-mb-70-sp {
    margin-bottom: 70px !important;
  }
  .u-mb-80-sp {
    margin-bottom: 80px !important;
  }
  .u-mb-90-sp {
    margin-bottom: 90px !important;
  }
  .u-mb-100-sp {
    margin-bottom: 100px !important;
  }
  .u-mb-auto-sp {
    margin-bottom: auto !important;
  }
}

@media (min-width: 0px) {
  .u-my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .u-my-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .u-my-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .u-my-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .u-my-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .u-my-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .u-my-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .u-my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .u-my-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .u-my-60 {

    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .u-my-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .u-my-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .u-my-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .u-my-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .u-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 768px) {
  .u-my-0-pc {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .u-my-5-pc {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .u-my-10-pc {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .u-my-15-pc {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .u-my-20-pc {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .u-my-25-pc {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .u-my-30-pc {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .u-my-40-pc {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .u-my-50-pc {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .u-my-60-pc {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .u-my-70-pc {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .u-my-80-pc {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .u-my-90-pc {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .u-my-100-pc {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .u-my-auto-pc {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-my-0-tab {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .u-my-5-tab {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .u-my-10-tab {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .u-my-15-tab {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .u-my-20-tab {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .u-my-25-tab {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .u-my-30-tab {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .u-my-40-tab {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .u-my-50-tab {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .u-my-60-tab {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .u-my-70-tab {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .u-my-80-tab {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .u-my-90-tab {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .u-my-100-tab {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .u-my-auto-tab {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-my-0-sp {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .u-my-5-sp {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .u-my-10-sp {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .u-my-15-sp {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .u-my-20-sp {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .u-my-25-sp {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .u-my-30-sp {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .u-my-40-sp {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .u-my-50-sp {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .u-my-60-sp {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .u-my-70-sp {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .u-my-80-sp {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .u-my-90-sp {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .u-my-100-sp {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .u-my-auto-sp {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}

@media (min-width: 0px) {
  .u-ml-0 {
    margin-left: 0px !important;
  }
  .u-ml-5 {
    margin-left: 5px !important;
  }
  .u-ml-10 {
    margin-left: 10px !important;
  }
  .u-ml-15 {
    margin-left: 15px !important;
  }
  .u-ml-16 {
    margin-left: 16px !important;
  }
  .u-ml-20 {
    margin-left: 20px !important;
  }
  .u-ml-25 {
    margin-left: 25px !important;
  }
  .u-ml-30 {
    margin-left: 30px !important;
  }
  .u-ml-40 {
    margin-left: 40px !important;
  }
  .u-ml-50 {
    margin-left: 50px !important;
  }
  .u-ml-60 {
    margin-left: 60px !important;
  }
  .u-ml-70 {
    margin-left: 70px !important;
  }
  .u-ml-80 {
    margin-left: 80px !important;
  }
  .u-ml-90 {
    margin-left: 90px !important;
  }
  .u-ml-100 {
    margin-left: 100px !important;
  }
  .u-ml-auto {
    margin-left: auto !important;
  }
  .u-ml-1em {
    margin-left: 1em !important;
  }
  .u-ml-2em {
    margin-left: 2em !important;
  }
}
@media (min-width: 768px) {
  .u-ml-0-pc {
    margin-left: 0px !important;
  }
  .u-ml-5-pc {
    margin-left: 5px !important;
  }
  .u-ml-10-pc {
    margin-left: 10px !important;
  }
  .u-ml-15-pc {
    margin-left: 15px !important;
  }
  .u-ml-20-pc {
    margin-left: 20px !important;
  }
  .u-ml-25-pc {
    margin-left: 25px !important;
  }
  .u-ml-30-pc {
    margin-left: 30px !important;
  }
  .u-ml-40-pc {
    margin-left: 40px !important;
  }
  .u-ml-50-pc {
    margin-left: 50px !important;
  }
  .u-ml-60-pc {
    margin-left: 60px !important;
  }
  .u-ml-70-pc {
    margin-left: 70px !important;
  }
  .u-ml-80-pc {
    margin-left: 80px !important;
  }
  .u-ml-90-pc {
    margin-left: 90px !important;
  }
  .u-ml-100-pc {
    margin-left: 100px !important;
  }
  .u-ml-auto-pc {
    margin-left: auto !important;
  }
  .u-ml-1em-pc {
    margin-left: 1em !important;
  }
  .u-ml-2em-pc {
    margin-left: 2em !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-ml-0-tab {
    margin-left: 0px !important;
  }
  .u-ml-5-tab {
    margin-left: 5px !important;
  }
  .u-ml-10-tab {
    margin-left: 10px !important;
  }
  .u-ml-15-tab {
    margin-left: 15px !important;
  }
  .u-ml-20-tab {
    margin-left: 20px !important;
  }
  .u-ml-25-tab {
    margin-left: 25px !important;
  }
  .u-ml-30-tab {
    margin-left: 30px !important;
  }
  .u-ml-40-tab {
    margin-left: 40px !important;
  }
  .u-ml-50-tab {
    margin-left: 50px !important;
  }
  .u-ml-60-tab {
    margin-left: 60px !important;
  }
  .u-ml-70-tab {
    margin-left: 70px !important;
  }
  .u-ml-80-tab {
    margin-left: 80px !important;
  }
  .u-ml-90-tab {
    margin-left: 90px !important;
  }
  .u-ml-100-tab {
    margin-left: 100px !important;
  }
  .u-ml-auto-tab {
    margin-left: auto !important;
  }
  .u-ml-1em-tab {
    margin-left: 1em !important;
  }
  .u-ml-2em-tab {
    margin-left: 2em !important;
  }
}
@media screen and (max-width: 767px) {
  .u-ml-0-sp {
    margin-left: 0px !important;
  }
  .u-ml-5-sp {
    margin-left: 5px !important;
  }
  .u-ml-10-sp {
    margin-left: 10px !important;
  }
  .u-ml-15-sp {
    margin-left: 15px !important;
  }
  .u-ml-20-sp {
    margin-left: 20px !important;
  }
  .u-ml-25-sp {
    margin-left: 25px !important;
  }
  .u-ml-30-sp {
    margin-left: 30px !important;
  }
  .u-ml-40-sp {
    margin-left: 40px !important;
  }
  .u-ml-50-sp {
    margin-left: 50px !important;
  }
  .u-ml-60-sp {
    margin-left: 60px !important;
  }
  .u-ml-70-sp {
    margin-left: 70px !important;
  }
  .u-ml-80-sp {
    margin-left: 80px !important;
  }
  .u-ml-90-sp {
    margin-left: 90px !important;
  }
  .u-ml-100-sp {
    margin-left: 100px !important;
  }
  .u-ml-auto-sp {
    margin-left: auto !important;
  }
  .u-ml-1em-sp {
    margin-left: 1em !important;
  }
  .u-ml-2em-sp {
    margin-left: 2em !important;
  }
}

@media (min-width: 0px) {
  .u-mr-0 {
    margin-right: 0px !important;
  }
  .u-mr-5 {
    margin-right: 5px !important;
  }
  .u-mr-10 {
    margin-right: 10px !important;
  }
  .u-mr-15 {
    margin-right: 15px !important;
  }
  .u-mr-16 {
    margin-right: 16px !important;
  }
  .u-mr-20 {
    margin-right: 20px !important;
  }
  .u-mr-25 {
    margin-right: 25px !important;
  }
  .u-mr-30 {
    margin-right: 30px !important;
  }
  .u-mr-40 {
    margin-right: 40px !important;
  }
  .u-mr-50 {
    margin-right: 50px !important;
  }
  .u-mr-60 {
    margin-right: 60px !important;
  }
  .u-mr-70 {
    margin-right: 70px !important;
  }
  .u-mr-80 {
    margin-right: 80px !important;
  }
  .u-mr-90 {
    margin-right: 90px !important;
  }
  .u-mr-100 {
    margin-right: 100px !important;
  }
  .u-mr-auto {
    margin-right: auto !important;
  }
  .u-mr-1em {
    margin-right: 1em !important;
  }
  .u-mr-2em {
    margin-right: 2em !important;
  }
}
@media (min-width: 768px) {
  .u-mr-0-pc {
    margin-right: 0px !important;
  }
  .u-mr-5-pc {
    margin-right: 5px !important;
  }
  .u-mr-10-pc {
    margin-right: 10px !important;
  }
  .u-mr-15-pc {
    margin-right: 15px !important;
  }
  .u-mr-20-pc {
    margin-right: 20px !important;
  }
  .u-mr-25-pc {
    margin-right: 25px !important;
  }
  .u-mr-30-pc {
    margin-right: 30px !important;
  }
  .u-mr-40-pc {
    margin-right: 40px !important;
  }
  .u-mr-50-pc {
    margin-right: 50px !important;
  }
  .u-mr-60-pc {
    margin-right: 60px !important;
  }
  .u-mr-70-pc {
    margin-right: 70px !important;
  }
  .u-mr-80-pc {
    margin-right: 80px !important;
  }
  .u-mr-90-pc {
    margin-right: 90px !important;
  }
  .u-mr-100-pc {
    margin-right: 100px !important;
  }
  .u-mr-auto-pc {
    margin-right: auto !important;
  }
  .u-mr-1em-pc {
    margin-right: 1em !important;
  }
  .u-mr-2em-pc {
    margin-right: 2em !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-mr-0-tab {
    margin-right: 0px !important;
  }
  .u-mr-5-tab {
    margin-right: 5px !important;
  }
  .u-mr-10-tab {
    margin-right: 10px !important;
  }
  .u-mr-15-tab {
    margin-right: 15px !important;
  }
  .u-mr-20-tab {
    margin-right: 20px !important;
  }
  .u-mr-25-tab {
    margin-right: 25px !important;
  }
  .u-mr-30-tab {
    margin-right: 30px !important;
  }
  .u-mr-40-tab {
    margin-right: 40px !important;
  }
  .u-mr-50-tab {
    margin-right: 50px !important;
  }
  .u-mr-60-tab {
    margin-right: 60px !important;
  }
  .u-mr-70-tab {
    margin-right: 70px !important;
  }
  .u-mr-80-tab {
    margin-right: 80px !important;
  }
  .u-mr-90-tab {
    margin-right: 90px !important;
  }
  .u-mr-100-tab {
    margin-right: 100px !important;
  }
  .u-mr-auto-tab {
    margin-right: auto !important;
  }
  .u-mr-1em-tab {
    margin-right: 1em !important;
  }
  .u-mr-2em-tab {
    margin-right: 2em !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mr-0-sp {
    margin-right: 0px !important;
  }
  .u-mr-5-sp {
    margin-right: 5px !important;
  }
  .u-mr-10-sp {
    margin-right: 10px !important;
  }
  .u-mr-15-sp {
    margin-right: 15px !important;
  }
  .u-mr-20-sp {
    margin-right: 20px !important;
  }
  .u-mr-25-sp {
    margin-right: 25px !important;
  }
  .u-mr-30-sp {
    margin-right: 30px !important;
  }
  .u-mr-40-sp {
    margin-right: 40px !important;
  }
  .u-mr-50-sp {
    margin-right: 50px !important;
  }
  .u-mr-60-sp {
    margin-right: 60px !important;
  }
  .u-mr-70-sp {
    margin-right: 70px !important;
  }
  .u-mr-80-sp {
    margin-right: 80px !important;
  }
  .u-mr-90-sp {
    margin-right: 90px !important;
  }
  .u-mr-100-sp {
    margin-right: 100px !important;
  }
  .u-mr-auto-sp {
    margin-right: auto !important;
  }
  .u-mr-1em-sp {
    margin-right: 1em !important;
  }
  .u-mr-2em-sp {
    margin-right: 2em !important;
  }
}

@media (min-width: 0px) {
  .u-mx-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .u-mx-2 {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }
  .u-mx-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .u-mx-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .u-mx-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .u-mx-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .u-mx-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .u-mx-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .u-mx-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .u-mx-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .u-mx-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .u-mx-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .u-mx-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .u-mx-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .u-mx-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .u-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 768px) {
  .u-mx-0-pc {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .u-mx-2-pc {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }
  .u-mx-5-pc {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .u-mx-10-pc {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .u-mx-15-pc {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .u-mx-20-pc {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .u-mx-25-pc {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .u-mx-30-pc {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .u-mx-40-pc {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .u-mx-50-pc {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .u-mx-60-pc {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .u-mx-70-pc {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .u-mx-80-pc {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .u-mx-90-pc {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .u-mx-100-pc {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .u-mx-auto-pc {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-mx-0-tab {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .u-mx-2-tab {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }
  .u-mx-5-tab {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .u-mx-10-tab {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .u-mx-15-tab {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .u-mx-20-tab {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .u-mx-25-tab {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .u-mx-30-tab {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .u-mx-40-tab {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .u-mx-50-tab {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .u-mx-60-tab {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .u-mx-70-tab {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .u-mx-80-tab {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .u-mx-90-tab {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .u-mx-100-tab {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .u-mx-auto-tab {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mx--20-sp {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
  .u-mx-0-sp {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .u-mx-2-sp {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }
  .u-mx-5-sp {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .u-mx-10-sp {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .u-mx-15-sp {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .u-mx-20-sp {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .u-mx-25-sp {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .u-mx-30-sp {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .u-mx-40-sp {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .u-mx-50-sp {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .u-mx-60-sp {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .u-mx-70-sp {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .u-mx-80-sp {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .u-mx-90-sp {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .u-mx-100-sp {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .u-mx-auto-sp {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* パディング
-----------------------*/
@media (min-width: 0px) {
  .u-pt-0 {
    padding-top: 0px !important;
  }
  .u-pt-5 {
    padding-top: 5px !important;
  }
  .u-pt-10 {
    padding-top: 10px !important;
  }
  .u-pt-15 {
    padding-top: 15px !important;
  }
  .u-pt-20 {
    padding-top: 20px !important;
  }
  .u-pt-25 {
    padding-top: 25px !important;
  }
  .u-pt-30 {
    padding-top: 30px !important;
  }
  .u-pt-40 {
    padding-top: 40px !important;
  }
  .u-pt-50 {
    padding-top: 50px !important;
  }
  .u-pt-60 {
    padding-top: 60px !important;
  }
  .u-pt-64 {
    padding-top: 64px !important;
  }
  .u-pt-70 {
    padding-top: 70px !important;
  }
  .u-pt-80 {
    padding-top: 80px !important;
  }
  .u-pt-90 {
    padding-top: 90px !important;
  }
  .u-pt-100 {
    padding-top: 100px !important;
  }
}
@media (min-width: 768px) {
  .u-pt-0-pc {
    padding-top: 0px !important;
  }
  .u-pt-5-pc {
    padding-top: 5px !important;
  }
  .u-pt-10-pc {
    padding-top: 10px !important;
  }
  .u-pt-15-pc {
    padding-top: 15px !important;
  }
  .u-pt-20-pc {
    padding-top: 20px !important;
  }
  .u-pt-25-pc {
    padding-top: 25px !important;
  }
  .u-pt-30-pc {
    padding-top: 30px !important;
  }
  .u-pt-40-pc {
    padding-top: 40px !important;
  }
  .u-pt-50-pc {
    padding-top: 50px !important;
  }
  .u-pt-60-pc {
    padding-top: 60px !important;
  }
  .u-pt-64-pc {
    padding-top: 64px !important;
  }
  .u-pt-70-pc {
    padding-top: 70px !important;
  }
  .u-pt-80-pc {
    padding-top: 80px !important;
  }
  .u-pt-90-pc {
    padding-top: 90px !important;
  }
  .u-pt-100-pc {
    padding-top: 100px !important;
  }
  .u-pt-150-pc {
    padding-top: 150px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-pt-0-tab {
    padding-top: 0px !important;
  }
  .u-pt-5-tab {
    padding-top: 5px !important;
  }
  .u-pt-10-tab {
    padding-top: 10px !important;
  }
  .u-pt-15-tab {
    padding-top: 15px !important;
  }
  .u-pt-20-tab {
    padding-top: 20px !important;
  }
  .u-pt-25-tab {
    padding-top: 25px !important;
  }
  .u-pt-30-tab {
    padding-top: 30px !important;
  }
  .u-pt-40-tab {
    padding-top: 40px !important;
  }
  .u-pt-50-tab {
    padding-top: 50px !important;
  }
  .u-pt-60-tab {
    padding-top: 60px !important;
  }
  .u-pt-70-tab {
    padding-top: 70px !important;
  }
  .u-pt-80-tab {
    padding-top: 80px !important;
  }
  .u-pt-90-tab {
    padding-top: 90px !important;
  }
  .u-pt-100-tab {
    padding-top: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pt-0-sp {
    padding-top: 0px !important;
  }
  .u-pt-5-sp {
    padding-top: 5px !important;
  }
  .u-pt-10-sp {
    padding-top: 10px !important;
  }
  .u-pt-15-sp {
    padding-top: 15px !important;
  }
  .u-pt-20-sp {
    padding-top: 20px !important;
  }
  .u-pt-25-sp {
    padding-top: 25px !important;
  }
  .u-pt-30-sp {
    padding-top: 30px !important;
  }
  .u-pt-40-sp {
    padding-top: 40px !important;
  }
  .u-pt-50-sp {
    padding-top: 50px !important;
  }
  .u-pt-60-sp {
    padding-top: 60px !important;
  }
  .u-pt-70-sp {
    padding-top: 70px !important;
  }
  .u-pt-80-sp {
    padding-top: 80px !important;
  }
  .u-pt-90-sp {
    padding-top: 90px !important;
  }
  .u-pt-100-sp {
    padding-top: 100px !important;
  }
}

@media (min-width: 0px) {
  .u-pb-0 {
    padding-bottom: 0px !important;
  }
  .u-pb-5 {
    padding-bottom: 5px !important;
  }
  .u-pb-10 {
    padding-bottom: 10px !important;
  }
  .u-pb-15 {
    padding-bottom: 15px !important;
  }
  .u-pb-16 {
    padding-bottom: 16px !important;
  }
  .u-pb-20 {
    padding-bottom: 20px !important;
  }
  .u-pb-24 {
    padding-bottom: 24px !important;
  }
  .u-pb-25 {
    padding-bottom: 25px !important;
  }
  .u-pb-30 {
    padding-bottom: 30px !important;
  }
  .u-pb-40 {
    padding-bottom: 40px !important;
  }
  .u-pb-50 {
    padding-bottom: 50px !important;
  }
  .u-pb-60 {
    padding-bottom: 60px !important;
  }
  .u-pb-64 {
    padding-bottom: 64px !important;
  }
  .u-pb-70 {
    padding-bottom: 70px !important;
  }
  .u-pb-80 {
    padding-bottom: 80px !important;
  }
  .u-pb-90 {
    padding-bottom: 90px !important;
  }
  .u-pb-100 {
    padding-bottom: 100px !important;
  }
}
@media (min-width: 768px) {
  .u-pb-0-pc {
    padding-bottom: 0px !important;
  }
  .u-pb-5-pc {
    padding-bottom: 5px !important;
  }
  .u-pb-10-pc {
    padding-bottom: 10px !important;
  }
  .u-pb-15-pc {
    padding-bottom: 15px !important;
  }
  .u-pb-16-pc {
    padding-bottom: 16px !important;
  }
  .u-pb-20-pc {
    padding-bottom: 20px !important;
  }
  .u-pb-24-pc {
    padding-bottom: 24px !important;
  }
  .u-pb-25-pc {
    padding-bottom: 25px !important;
  }
  .u-pb-30-pc {
    padding-bottom: 30px !important;
  }
  .u-pb-40-pc {
    padding-bottom: 40px !important;
  }
  .u-pb-50-pc {
    padding-bottom: 50px !important;
  }
  .u-pb-60-pc {
    padding-bottom: 60px !important;
  }
  .u-pb-64-pc {
    padding-bottom: 64px !important;
  }
  .u-pb-70-pc {
    padding-bottom: 70px !important;
  }
  .u-pb-80-pc {
    padding-bottom: 80px !important;
  }
  .u-pb-90-pc {
    padding-bottom: 90px !important;
  }
  .u-pb-100-pc {
    padding-bottom: 100px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-pb-0-tab {
    padding-bottom: 0px !important;
  }
  .u-pb-5-tab {
    padding-bottom: 5px !important;
  }
  .u-pb-10-tab {
    padding-bottom: 10px !important;
  }
  .u-pb-15-tab {
    padding-bottom: 15px !important;
  }
  .u-pb-20-tab {
    padding-bottom: 20px !important;
  }
  .u-pb-25-tab {
    padding-bottom: 25px !important;
  }
  .u-pb-30-tab {
    padding-bottom: 30px !important;
  }
  .u-pb-40-tab {
    padding-bottom: 40px !important;
  }
  .u-pb-50-tab {
    padding-bottom: 50px !important;
  }
  .u-pb-60-tab {
    padding-bottom: 60px !important;
  }
  .u-pb-70-tab {
    padding-bottom: 70px !important;
  }
  .u-pb-80-tab {
    padding-bottom: 80px !important;
  }
  .u-pb-90-sp {
    padding-bottom: 90px !important;
  }
  .u-pb-100-tab {
    padding-bottom: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pb-0-sp {
    padding-bottom: 0px !important;
  }
  .u-pb-5-sp {
    padding-bottom: 5px !important;
  }
  .u-pb-10-sp {
    padding-bottom: 10px !important;
  }
  .u-pb-15-sp {
    padding-bottom: 15px !important;
  }
  .u-pb-20-sp {
    padding-bottom: 20px !important;
  }
  .u-pb-25-sp {
    padding-bottom: 25px !important;
  }
  .u-pb-30-sp {
    padding-bottom: 30px !important;
  }
  .u-pb-40-sp {
    padding-bottom: 40px !important;
  }
  .u-pb-50-sp {
    padding-bottom: 50px !important;
  }
  .u-pb-60-sp {
    padding-bottom: 60px !important;
  }
  .u-pb-70-sp {
    padding-bottom: 70px !important;
  }
  .u-pb-80-sp {
    padding-bottom: 80px !important;
  }
  .u-pb-90-sp {
    padding-bottom: 90px !important;
  }
  .u-pb-100-sp {
    padding-bottom: 100px !important;
  }
}

@media (min-width: 0px) {
  .u-py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .u-py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .u-py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .u-py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .u-py-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .u-py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .u-py-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .u-py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .u-py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .u-py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .u-py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .u-py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .u-py-64 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .u-py-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .u-py-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .u-py-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media (min-width: 768px) {
  .u-py-0-pc {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .u-py-5-pc {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .u-py-10-pc {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .u-py-15-pc {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .u-py-16-pc {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .u-py-20-pc {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .u-py-24-pc {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .u-py-25-pc {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .u-py-30-pc {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .u-py-40-pc {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .u-py-50-pc {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .u-py-60-pc {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .u-py-64-pc {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-70-pc {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .u-py-80-pc {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .u-py-90-pc {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .u-py-100-pc {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-py-0-tab {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .u-py-5-tab {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .u-py-10-tab {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .u-py-15-tab {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .u-py-20-tab {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .u-py-25-tab {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .u-py-30-tab {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .u-py-40-tab {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .u-py-50-tab {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .u-py-60-tab {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .u-py-70-tab {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .u-py-80-tab {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .u-py-90-tab {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .u-py-100-tab {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-py-0-sp {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .u-py-5-sp {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .u-py-10-sp {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .u-py-15-sp {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .u-py-20-sp {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .u-py-25-sp {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .u-py-30-sp {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .u-py-40-sp {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .u-py-50-sp {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .u-py-60-sp {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .u-py-70-sp {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .u-py-80-sp {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .u-py-90-sp {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .u-py-100-sp {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}

@media (min-width: 0px) {
  .u-pl-0 {
    padding-left: 0px !important;
  }
  .u-pl-5 {
    padding-left: 5px !important;
  }
  .u-pl-10 {
    padding-left: 10px !important;
  }
  .u-pl-15 {
    padding-left: 15px !important;
  }
  .u-pl-20 {
    padding-left: 20px !important;
  }
  .u-pl-22 {
    padding-left: 22px !important;
  }
  .u-pl-25 {
    padding-left: 25px !important;
  }
  .u-pl-30 {
    padding-left: 30px !important;
  }
  .u-pl-40 {
    padding-left: 40px !important;
  }
  .u-pl-50 {
    padding-left: 50px !important;
  }
  .u-pl-60 {
    padding-left: 60px !important;
  }
  .u-pl-70 {
    padding-left: 70px !important;
  }
  .u-pl-80 {
    padding-left: 80px !important;
  }
  .u-pl-90 {
    padding-left: 90px !important;
  }
  .u-pl-100 {
    padding-left: 100px !important;
  }
}
@media (min-width: 768px) {
  .u-pl-0-pc {
    padding-left: 0px !important;
  }
  .u-pl-5-pc {
    padding-left: 5px !important;
  }
  .u-pl-10-pc {
    padding-left: 10px !important;
  }
  .u-pl-15-pc {
    padding-left: 15px !important;
  }
  .u-pl-20-pc {
    padding-left: 20px !important;
  }
  .u-pl-22-pc {
    padding-left: 22px !important;
  }
  .u-pl-25-pc {
    padding-left: 25px !important;
  }
  .u-pl-30-pc {
    padding-left: 30px !important;
  }
  .u-pl-40-pc {
    padding-left: 40px !important;
  }
  .u-pl-50-pc {
    padding-left: 50px !important;
  }
  .u-pl-60-pc {
    padding-left: 60px !important;
  }
  .u-pl-70-pc {
    padding-left: 70px !important;
  }
  .u-pl-80-pc {
    padding-left: 80px !important;
  }
  .u-pl-90-pc {
    padding-left: 90px !important;
  }
  .u-pl-100-pc {
    padding-left: 100px !important;
  }
  .u-pl-540-pc {
    padding-left: 540px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-pl-0-tab {
    padding-left: 0px !important;
  }
  .u-pl-5-tab {
    padding-left: 5px !important;
  }
  .u-pl-10-tab {
    padding-left: 10px !important;
  }
  .u-pl-15-tab {
    padding-left: 15px !important;
  }
  .u-pl-20-tab {
    padding-left: 20px !important;
  }
  .u-pl-22-tab {
    padding-left: 22px !important;
  }
  .u-pl-25-tab {
    padding-left: 25px !important;
  }
  .u-pl-30-tab {
    padding-left: 30px !important;
  }
  .u-pl-40-tab {
    padding-left: 40px !important;
  }
  .u-pl-50-tab {
    padding-left: 50px !important;
  }
  .u-pl-60-tab {
    padding-left: 60px !important;
  }
  .u-pl-70-tab {
    padding-left: 70px !important;
  }
  .u-pl-80-tab {
    padding-left: 80px !important;
  }
  .u-pl-90-tab {
    padding-left: 90px !important;
  }
  .u-pl-100-tab {
    padding-left: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pl-0-sp {
    padding-left: 0px !important;
  }
  .u-pl-5-sp {
    padding-left: 5px !important;
  }
  .u-pl-10-sp {
    padding-left: 10px !important;
  }
  .u-pl-15-sp {
    padding-left: 15px !important;
  }
  .u-pl-20-sp {
    padding-left: 20px !important;
  }
  .u-pl-22-sp {
    padding-left: 22px !important;
  }
  .u-pl-25-sp {
    padding-left: 25px !important;
  }
  .u-pl-30-sp {
    padding-left: 30px !important;
  }
  .u-pl-40-sp {
    padding-left: 40px !important;
  }
  .u-pl-50-sp {
    padding-left: 50px !important;
  }
  .u-pl-60-sp {
    padding-left: 60px !important;
  }
  .u-pl-70-sp {
    padding-left: 70px !important;
  }
  .u-pl-80-sp {
    padding-left: 80px !important;
  }
  .u-pl-90-sp {
    padding-left: 90px !important;
  }
  .u-pl-100-sp {
    padding-left: 100px !important;
  }
}

@media (min-width: 0px) {
  .u-pr-0 {
    padding-right: 0px !important;
  }
  .u-pr-5 {
    padding-right: 5px !important;
  }
  .u-pr-10 {
    padding-right: 10px !important;
  }
  .u-pr-15 {
    padding-right: 15px !important;
  }
  .u-pr-20 {
    padding-right: 20px !important;
  }
  .u-pr-22 {
    padding-right: 22px !important;
  }
  .u-pr-25 {
    padding-right: 25px !important;
  }
  .u-pr-30 {
    padding-right: 30px !important;
  }
  .u-pr-40 {
    padding-right: 40px !important;
  }
  .u-pr-50 {
    padding-right: 50px !important;
  }
  .u-pr-60 {
    padding-right: 60px !important;

  }
  .u-pr-70 {
    padding-right: 70px !important;
  }
  .u-pr-80 {
    padding-right: 80px !important;
  }
  .u-pr-90 {
    padding-right: 90px !important;
  }
  .u-pr-100 {
    padding-right: 100px !important;
  }
}
@media (min-width: 768px) {
  .u-pr-0-pc {
    padding-right: 0px !important;
  }
  .u-pr-5-pc {
    padding-right: 5px !important;
  }
  .u-pr-10-pc {
    padding-right: 10px !important;
  }
  .u-pr-15-pc {
    padding-right: 15px !important;
  }
  .u-pr-20-pc {
    padding-right: 20px !important;
  }
  .u-pr-22-pc {
    padding-right: 22px !important;
  }
  .u-pr-25-pc {
    padding-right: 25px !important;
  }
  .u-pr-30-pc {
    padding-right: 30px !important;
  }
  .u-pr-40-pc {
    padding-right: 40px !important;
  }
  .u-pr-50-pc {
    padding-right: 50px !important;
  }
  .u-pr-60-pc {
    padding-right: 60px !important;
  }
  .u-pr-70-pc {
    padding-right: 70px !important;
  }
  .u-pr-80-pc {
    padding-right: 80px !important;
  }
  .u-pr-90-pc {
    padding-right: 90px !important;
  }
  .u-pr-100-pc {
    padding-right: 100px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-pr-0-tab {
    padding-right: 0px !important;
  }
  .u-pr-5-tab {
    padding-right: 5px !important;
  }
  .u-pr-10-tab {
    padding-right: 10px !important;
  }
  .u-pr-15-tab {
    padding-right: 15px !important;
  }
  .u-pr-20-tab {
    padding-right: 20px !important;
  }
  .u-pr-22-tab {
    padding-right: 22px !important;
  }
  .u-pr-25-tab {
    padding-right: 25px !important;
  }
  .u-pr-30-tab {
    padding-right: 30px !important;
  }
  .u-pr-40-tab {
    padding-right: 40px !important;
  }
  .u-pr-50-tab {
    padding-right: 50px !important;
  }
  .u-pr-60-tab {
    padding-right: 60px !important;
  }
  .u-pr-70-tab {
    padding-right: 70px !important;
  }
  .u-pr-80-tab {
    padding-right: 80px !important;
  }
  .u-pr-90-tab {
    padding-right: 90px !important;
  }
  .u-pr-100-tab {
    padding-right: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pr-0-sp {
    padding-right: 0px !important;
  }
  .u-pr-5-sp {
    padding-right: 5px !important;
  }
  .u-pr-10-sp {
    padding-right: 10px !important;
  }
  .u-pr-15-sp {
    padding-right: 15px !important;
  }
  .u-pr-20-sp {
    padding-right: 20px !important;
  }
  .u-pr-22-sp {
    padding-right: 22px !important;
  }
  .u-pr-25-sp {
    padding-right: 25px !important;
  }
  .u-pr-30-sp {
    padding-right: 30px !important;
  }
  .u-pr-40-sp {
    padding-right: 40px !important;
  }
  .u-pr-50-sp {
    padding-right: 50px !important;
  }
  .u-pr-60-sp {
    padding-right: 60px !important;
  }
  .u-pr-70-sp {
    padding-right: 70px !important;
  }
  .u-pr-80-sp {
    padding-right: 80px !important;
  }
  .u-pr-90-sp {
    padding-right: 90px !important;
  }
  .u-pr-100-sp {
    padding-right: 100px !important;
  }
}

@media (min-width: 0px) {
  .u-px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .u-px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .u-px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .u-px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .u-px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .u-px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .u-px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .u-px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .u-px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .u-px-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .u-px-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .u-px-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .u-px-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .u-px-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (min-width: 768px) {
  .u-px-0-pc {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .u-px-5-pc {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .u-px-10-pc {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .u-px-15-pc {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .u-px-20-pc {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .u-px-25-pc {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .u-px-30-pc {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .u-px-40-pc {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .u-px-50-pc {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .u-px-60-pc {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .u-px-70-pc {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .u-px-80-pc {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .u-px-90-pc {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .u-px-100-pc {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-px-0-tab {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .u-px-5-tab {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .u-px-10-tab {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .u-px-15-tab {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .u-px-20-tab {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .u-px-25-tab {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .u-px-30-tab {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .u-px-40-tab {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .u-px-50-tab {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .u-px-60-tab {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .u-px-70-tab {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .u-px-80-tab {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .u-px-90-tab {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .u-px-100-tab {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-px-0-sp {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .u-px-5-sp {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .u-px-10-sp {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .u-px-15-sp {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .u-px-20-sp {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .u-px-25-sp {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .u-px-30-sp {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .u-px-40-sp {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .u-px-50-sp {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .u-px-60-sp {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .u-px-70-sp {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .u-px-80-sp {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .u-px-90-sp {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .u-px-100-sp {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}

/* ボーダー
-----------------------*/
.u-br-50p {
  border-radius: 50% !important;
}

/* 横幅
-----------------------*/
@media (min-width: 0px) {
  .u-w-auto {
    width: auto !important;
  }
  .u-w-5p {
    width: 5% !important;
  }
  .u-w-10p {
    width: 10% !important;
  }
  .u-w-15p {
    width: 15% !important;
  }
  .u-w-20p {
    width: 20% !important;
  }
  .u-w-25p {
    width: 25% !important;
  }
  .u-w-30p {
    width: 30% !important;
  }
  .u-w-35p {
    width: 35% !important;
  }
  .u-w-40p {
    width: 40% !important;
  }
  .u-w-45p {
    width: 45% !important;
  }
  .u-w-50p {
    width: 50% !important;
  }
  .u-w-55p {
    width: 55% !important;
  }
  .u-w-60p {
    width: 60% !important;
  }
  .u-w-65p {
    width: 65% !important;
  }
  .u-w-70p {
    width: 70% !important;
  }
  .u-w-75p {
    width: 75% !important;
  }
  .u-w-80p {
    width: 80% !important;
  }
  .u-w-85p {
    width: 85% !important;
  }
  .u-w-90p {
    width: 90% !important;
  }
  .u-w-95p {
    width: 90% !important;
  }
  .u-w-100p {
    width: 100% !important;
  }
  .u-w-1 {
    width: 1px !important;
  }
  .u-w-5 {
    width: 5px !important;
  }
  .u-w-10 {
    width: 10px !important;
  }
  .u-w-15 {
    width: 15px !important;
  }
  .u-w-20 {
    width: 20px !important;
  }
  .u-w-25 {
    width: 25px !important;
  }
  .u-w-30 {
    width: 30px !important;
  }
  .u-w-35 {
    width: 35px !important;
  }
  .u-w-40 {
    width: 40px !important;
  }
  .u-w-45 {
    width: 45px !important;
  }
  .u-w-50 {
    width: 50px !important;
  }
  .u-w-55 {
    width: 55px !important;
  }
  .u-w-60 {
    width: 60px !important;
  }
  .u-w-65 {
    width: 65px !important;
  }
  .u-w-70 {
    width: 70px !important;
  }
  .u-w-75 {
    width: 75px !important;
  }
  .u-w-80 {
    width: 80px !important;
  }
  .u-w-85 {
    width: 85px !important;
  }
  .u-w-90 {
    width: 90px !important;
  }
  .u-w-95 {
    width: 95px !important;
  }
  .u-w-96 {
    width: 96px !important;
  }
  .u-w-100 {
    width: 100px !important;
  }
  .u-w-110 {
    width: 110px !important;
  }
  .u-w-120 {
    width: 120px !important;
  }
  .u-w-130 {
    width: 130px !important;
  }
  .u-w-140 {
    width: 140px !important;
  }
  .u-w-150 {
    width: 150px !important;
  }
  .u-w-160 {
    width: 160px !important;
  }
  .u-w-170 {
    width: 170px !important;
  }
  .u-w-180 {
    width: 180px !important;
  }
  .u-w-190 {
    width: 190px !important;
  }
  .u-w-200 {
    width: 200px !important;
  }
  .u-w-210 {
    width: 210px !important;
  }
  .u-w-220 {
    width: 220px !important;
  }
  .u-w-230 {
    width: 230px !important;
  }
  .u-w-240 {
    width: 240px !important;
  }
  .u-w-250 {
    width: 250px !important;
  }
  .u-w-260 {
    width: 260px !important;
  }
  .u-w-270 {
    width: 270px !important;
  }
  .u-w-280 {
    width: 280px !important;
  }
  .u-w-290 {
    width: 290px !important;
  }
  .u-w-300 {
    width: 300px !important;
  }
  .u-w-350 {
    width: 350px !important;
  }
  .u-w-400 {
    width: 400px !important;
  }
  .u-w-450 {
    width: 450px !important;
  }
  .u-w-500 {
    width: 500px !important;
  }
  .u-w-550 {
    width: 550px !important;
  }
  .u-w-600 {
    width: 600px !important;
  }
  .u-w-650 {
    width: 650px !important;
  }
  .u-w-700 {
    width: 700px !important;
  }
  .u-w-750 {
    width: 750px !important;
  }
  .u-w-800 {
    width: 800px !important;
  }
  .u-w-850 {
    width: 850px !important;
  }
  .u-w-900 {
    width: 900px !important;
  }
  .u-w-950 {
    width: 950px !important;
  }
  .u-w-980 {
    width: 980px !important;
  }
  .u-w-1000 {
    width: 1000px !important;
  }
}
@media (min-width: 768px) {
  .u-w-auto-pc {
    width: auto !important;
  }
  .u-w-5p-pc {
    width: 5% !important;
  }
  .u-w-10p-pc {
    width: 10% !important;
  }
  .u-w-15p-pc {
    width: 15% !important;
  }
  .u-w-20p-pc {
    width: 20% !important;
  }
  .u-w-25p-pc {
    width: 25% !important;
  }
  .u-w-30p-pc {
    width: 30% !important;
  }
  .u-w-35p-pc {
    width: 35% !important;
  }
  .u-w-40p-pc {
    width: 40% !important;
  }
  .u-w-45p-pc {
    width: 45% !important;
  }
  .u-w-50p-pc {
    width: 50% !important;
  }
  .u-w-55p-pc {
    width: 55% !important;
  }
  .u-w-60p-pc {
    width: 60% !important;
  }
  .u-w-65p-pc {
    width: 65% !important;
  }
  .u-w-70p-pc {
    width: 70% !important;
  }
  .u-w-75p-pc {
    width: 75% !important;
  }
  .u-w-80p-pc {
    width: 80% !important;
  }
  .u-w-85p-pc {
    width: 85% !important;
  }
  .u-w-90p-pc {
    width: 90% !important;
  }
  .u-w-95p-pc {
    width: 90% !important;
  }
  .u-w-100p-pc {
    width: 100% !important;
  }
  .u-w-1-pc {
    width: 1px !important;
  }
  .u-w-10-pc {
    width: 10px !important;
  }
  .u-w-20-pc {
    width: 20px !important;
  }
  .u-w-30-pc {
    width: 30px !important;
  }
  .u-w-40-pc {
    width: 40px !important;
  }
  .u-w-50-pc {
    width: 50px !important;
  }
  .u-w-60-pc {
    width: 60px !important;
  }
  .u-w-70-pc {
    width: 70px !important;
  }
  .u-w-80-pc {
    width: 80px !important;
  }
  .u-w-90-pc {
    width: 90px !important;
  }
  .u-w-100-pc {
    width: 100px !important;
  }
  .u-w-110-pc {
    width: 110px !important;
  }
  .u-w-120-pc {
    width: 120px !important;
  }
  .u-w-130-pc {
    width: 130px !important;
  }
  .u-w-140-pc {
    width: 140px !important;
  }
  .u-w-150-pc {
    width: 150px !important;
  }
  .u-w-160-pc {
    width: 160px !important;
  }
  .u-w-170-pc {
    width: 170px !important;
  }
  .u-w-180-pc {
    width: 180px !important;
  }
  .u-w-190-pc {
    width: 190px !important;
  }
  .u-w-200-pc {
    width: 200px !important;
  }
  .u-w-210-pc {
    width: 210px !important;
  }
  .u-w-220-pc {
    width: 220px !important;
  }
  .u-w-230-pc {
    width: 230px !important;
  }
  .u-w-240-pc {
    width: 240px !important;
  }
  .u-w-250-pc {
    width: 250px !important;
  }
  .u-w-260-pc {
    width: 260px !important;
  }
  .u-w-270-pc {
    width: 270px !important;
  }
  .u-w-280-pc {
    width: 280px !important;
  }
  .u-w-290-pc {
    width: 290px !important;
  }
  .u-w-300-pc {
    width: 300px !important;
  }
  .u-w-350-pc {
    width: 350px !important;
  }
  .u-w-400-pc {
    width: 400px !important;
  }
  .u-w-450-pc {
    width: 450px !important;
  }
  .u-w-500-pc {
    width: 500px !important;
  }
  .u-w-550-pc {
    width: 550px !important;
  }
  .u-w-600-pc {
    width: 600px !important;
  }
  .u-w-650-pc {
    width: 650px !important;
  }
  .u-w-700-pc {
    width: 700px !important;
  }
  .u-w-750-pc {
    width: 750px !important;
  }
  .u-w-800-pc {
    width: 800px !important;
  }
  .u-w-850-pc {
    width: 850px !important;
  }
  .u-w-900-pc {
    width: 900px !important;
  }
  .u-w-950-pc {
    width: 950px !important;
  }
  .u-w-980-pc {
    width: 980px !important;
  }
  .u-w-1000-pc {
    width: 1000px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-w-auto-tab {
    width: auto !important;
  }
  .u-w-5p-tab {
    width: 5% !important;
  }
  .u-w-10p-tab {
    width: 10% !important;
  }
  .u-w-15p-tab {
    width: 15% !important;
  }
  .u-w-20p-tab {
    width: 20% !important;
  }
  .u-w-25p-tab {
    width: 25% !important;
  }
  .u-w-30p-tab {
    width: 30% !important;
  }
  .u-w-35p-tab {
    width: 35% !important;
  }
  .u-w-40p-tab {
    width: 40% !important;
  }
  .u-w-45p-tab {
    width: 45% !important;
  }
  .u-w-50p-tab {

    width: 50% !important;
  }
  .u-w-55p-tab {
    width: 55% !important;
  }
  .u-w-60p-tab {
    width: 60% !important;
  }
  .u-w-65p-tab {
    width: 65% !important;
  }
  .u-w-70p-tab {
    width: 70% !important;
  }
  .u-w-75p-tab {
    width: 75% !important;
  }
  .u-w-80p-tab {
    width: 80% !important;
  }
  .u-w-85p-tab {
    width: 85% !important;
  }
  .u-w-90p-tab {
    width: 90% !important;
  }
  .u-w-95p-tab {
    width: 90% !important;
  }
  .u-w-100p-tab {
    width: 100% !important;
  }
  .u-w-1-tab {
    width: 1px !important;
  }
  .u-w-10-tab {
    width: 10px !important;
  }
  .u-w-20-tab {
    width: 20px !important;
  }
  .u-w-30-tab {
    width: 30px !important;
  }
  .u-w-40-tab {
    width: 40px !important;
  }
  .u-w-50-tab {
    width: 50px !important;
  }
  .u-w-60-tab {
    width: 60px !important;
  }
  .u-w-70-tab {
    width: 70px !important;
  }
  .u-w-80-tab {
    width: 80px !important;
  }
  .u-w-90-tab {
    width: 90px !important;
  }
  .u-w-100-tab {
    width: 100px !important;
  }
  .u-w-110-tab {
    width: 110px !important;
  }
  .u-w-120-tab {
    width: 120px !important;
  }
  .u-w-130-tab {
    width: 130px !important;
  }
  .u-w-140-tab {
    width: 140px !important;
  }
  .u-w-150-tab {
    width: 150px !important;
  }
  .u-w-160-tab {
    width: 160px !important;
  }
  .u-w-170-tab {
    width: 170px !important;
  }
  .u-w-180-tab {
    width: 180px !important;
  }
  .u-w-190-tab {
    width: 190px !important;
  }
  .u-w-200-tab {
    width: 200px !important;
  }
  .u-w-210-tab {
    width: 210px !important;
  }
  .u-w-220-tab {
    width: 220px !important;
  }
  .u-w-230-tab {
    width: 230px !important;
  }
  .u-w-240-tab {
    width: 240px !important;
  }
  .u-w-250-tab {
    width: 250px !important;
  }
  .u-w-260-tab {
    width: 260px !important;
  }
  .u-w-270-tab {
    width: 270px !important;
  }
  .u-w-280-tab {
    width: 280px !important;
  }
  .u-w-290-tab {
    width: 290px !important;
  }
  .u-w-300-tab {
    width: 300px !important;
  }
  .u-w-350-tab {
    width: 350px !important;
  }
  .u-w-400-tab {
    width: 400px !important;
  }
  .u-w-450-tab {
    width: 450px !important;
  }
  .u-w-500-tab {
    width: 500px !important;
  }
  .u-w-550-tab {
    width: 550px !important;
  }
  .u-w-600-tab {
    width: 600px !important;
  }
  .u-w-650-tab {
    width: 650px !important;
  }
  .u-w-700-tab {
    width: 700px !important;
  }
  .u-w-750-tab {
    width: 750px !important;
  }
  .u-w-800-tab {
    width: 800px !important;
  }
  .u-w-850-tab {
    width: 850px !important;
  }
  .u-w-900-tab {
    width: 900px !important;
  }
  .u-w-950-tab {
    width: 950px !important;
  }
  .u-w-980-tab {
    width: 980px !important;
  }
  .u-w-1000-tab {
    width: 1000px !important;
  }}
@media screen and (max-width: 767px) {
  .u-w-auto-sp {
    width: auto !important;
  }
  .u-w-5p-sp {
    width: 5% !important;
  }
  .u-w-10p-sp {
    width: 10% !important;
  }
  .u-w-15p-sp {
    width: 15% !important;
  }
  .u-w-20p-sp {
    width: 20% !important;
  }
  .u-w-25p-sp {
    width: 25% !important;
  }
  .u-w-30p-sp {
    width: 30% !important;
  }
  .u-w-35p-sp {
    width: 35% !important;
  }
  .u-w-40p-sp {
    width: 40% !important;
  }
  .u-w-45p-sp {
    width: 45% !important;
  }
  .u-w-50p-sp {
    width: 50% !important;
  }
  .u-w-55p-sp {
    width: 55% !important;
  }
  .u-w-60p-sp {
    width: 60% !important;
  }
  .u-w-65p-sp {
    width: 65% !important;
  }
  .u-w-70p-sp {
    width: 70% !important;
  }
  .u-w-75p-sp {
    width: 75% !important;
  }
  .u-w-80p-sp {
    width: 80% !important;
  }
  .u-w-85p-sp {
    width: 85% !important;
  }
  .u-w-90p-sp {
    width: 90% !important;
  }
  .u-w-95p-sp {
    width: 90% !important;
  }
  .u-w-100p-sp {
    width: 100% !important;
  }
  .u-w-1-sp {
    width: 1px !important;
  }
  .u-w-10-sp {
    width: 10px !important;
  }
  .u-w-20-sp {
    width: 20px !important;
  }
  .u-w-30-sp {
    width: 30px !important;
  }
  .u-w-40-sp {
    width: 40px !important;
  }
  .u-w-50-sp {
    width: 50px !important;
  }
  .u-w-60-sp {
    width: 60px !important;
  }
  .u-w-70-sp {
    width: 70px !important;
  }
  .u-w-80-sp {
    width: 80px !important;
  }
  .u-w-90-sp {
    width: 90px !important;
  }
  .u-w-100-sp {
    width: 100px !important;
  }
  .u-w-110-sp {
    width: 110px !important;
  }
  .u-w-120-sp {
    width: 120px !important;
  }
  .u-w-130-sp {
    width: 130px !important;
  }
  .u-w-140-sp {
    width: 140px !important;
  }
  .u-w-150-sp {
    width: 150px !important;
  }
  .u-w-160-sp {
    width: 160px !important;
  }
  .u-w-170-sp {
    width: 170px !important;
  }
  .u-w-180-sp {
    width: 180px !important;
  }
  .u-w-190-sp {
    width: 190px !important;
  }
  .u-w-200-sp {
    width: 200px !important;
  }
  .u-w-210-sp {
    width: 210px !important;
  }
  .u-w-220-sp {
    width: 220px !important;
  }
  .u-w-230-sp {
    width: 230px !important;
  }
  .u-w-240-sp {
    width: 240px !important;
  }
  .u-w-250-sp {
    width: 250px !important;
  }
  .u-w-260-sp {
    width: 260px !important;
  }
  .u-w-270-sp {
    width: 270px !important;
  }
  .u-w-280-sp {
    width: 280px !important;
  }
  .u-w-290-sp {
    width: 290px !important;
  }
  .u-w-300-sp {
    width: 300px !important;
  }
  .u-w-350-sp {
    width: 350px !important;
  }
  .u-w-400-sp {
    width: 400px !important;
  }
  .u-w-450-sp {
    width: 450px !important;
  }
  .u-w-500-sp {
    width: 500px !important;
  }
  .u-w-550-sp {
    width: 550px !important;
  }
  .u-w-600-sp {
    width: 600px !important;
  }
  .u-w-650-sp {
    width: 650px !important;
  }
  .u-w-700-sp {
    width: 700px !important;
  }
  .u-w-750-sp {
    width: 750px !important;
  }
  .u-w-800-sp {
    width: 800px !important;
  }
  .u-w-850-sp {
    width: 850px !important;
  }
  .u-w-900-sp {
    width: 900px !important;
  }
  .u-w-950-sp {
    width: 950px !important;
  }
  .u-w-980-sp {
    width: 980px !important;
  }
  .u-w-1000-sp {
    width: 1000px !important;
  }}

@media (min-width: 0px) {
  .u-min-w-0 {
  min-width: 0 !important;
}
}
@media (min-width: 768px) {
  .u-min-w-0-pc {
    min-width: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-min-w-0-sp {
    min-width: 0 !important;
  }
}

@media (min-width: 0px) {
  .u-max-w-none {
    max-width: none !important;
  }
  .u-max-w-100 {
    max-width: 100px !important;
  }
  .u-max-w-150 {
    max-width: 150px !important;
  }
  .u-max-w-200 {
    max-width: 200px !important;
  }
  .u-max-w-250 {
    max-width: 250px !important;
  }
  .u-max-w-300 {
    max-width: 300px !important;
  }
  .u-max-w-350 {
    max-width: 350px !important;
  }
  .u-max-w-400 {
    max-width: 400px !important;
  }
  .u-max-w-450 {
    max-width: 450px !important;
  }
  .u-max-w-500 {
    max-width: 500px !important;
  }
  .u-max-w-750 {
    max-width: 750px !important;
  }
  .u-max-w-1085 {
    max-width: 1085px !important;
  }
}
@media (min-width: 768px) {
  .u-max-w-none-pc {
    max-width: none !important;
  }
  .u-max-w-100-pc {
    max-width: 100px !important;
  }
  .u-max-w-150-pc {
    max-width: 150px !important;
  }
  .u-max-w-200-pc {
    max-width: 200px !important;
  }
  .u-max-w-250-pc {
    max-width: 250px !important;
  }
  .u-max-w-300-pc {
    max-width: 300px !important;
  }
  .u-max-w-350-pc {
    max-width: 350px !important;
  }
  .u-max-w-400-pc {
    max-width: 400px !important;
  }
  .u-max-w-450-pc {
    max-width: 450px !important;
  }
  .u-max-w-500-pc {
    max-width: 500px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-max-w-none-sp {
    max-width: none !important;
  }
  .u-max-w-100-sp {
    max-width: 100px !important;
  }
  .u-max-w-150-sp {
    max-width: 150px !important;
  }
  .u-max-w-200-sp {
    max-width: 200px !important;
  }
  .u-max-w-250-sp {
    max-width: 250px !important;
  }
  .u-max-w-300-sp {
    max-width: 300px !important;
  }
  .u-max-w-350-sp {
    max-width: 350px !important;
  }
  .u-max-w-400-sp {
    max-width: 400px !important;
  }
  .u-max-w-450-sp {
    max-width: 450px !important;
  }
  .u-max-w-500-sp {
    max-width: 500px !important;
  }
}

/* 高さ
-----------------------*/
@media (min-width: 0px) {
  .u-h-auto {
    height: auto !important;
  }
  .u-h-100p {
    height: 100% !important;
  }
  .u-h-100vh {
    height: 100vh!important;
  }
  .u-h-0 {
    height: 0px !important;
  }
  .u-h-50 {
    height: 50px !important;
  }
  .u-h-100 {
    height: 100px !important;
  }
  .u-h-150 {
    height: 150px !important;
  }
  .u-h-200 {
    height: 200px !important;
  }
  .u-h-250 {
    height: 250px !important;
  }
  .u-h-300 {
    height: 300px !important;
  }
  .u-h-350 {
    height: 350px !important;
  }
  .u-h-400 {
    height: 400px !important;
  }
  .u-h-450 {
    height: 450px !important;
  }
  .u-h-500 {
    height: 500px !important;
  }
  .u-h-1100 {
    height: 1100px !important;
  }
}
@media (min-width: 768px) {
  .u-h-auto-pc {
    height: auto !important;
  }
  .u-h-100p-pc {
    height: 100% !important;
  }
  .u-h-100vh-pc {
    height: 100vh!important;
  }
  .u-h-0-pc {
    height: 0px !important;
  }
  .u-h-50-pc {
    height: 50px !important;
  }
  .u-h-100-pc {
    height: 100px !important;
  }
  .u-h-150-pc {
    height: 150px !important;
  }
  .u-h-200-pc {
    height: 200px !important;
  }
  .u-h-250-pc {
    height: 250px !important;
  }
  .u-h-300-pc {
    height: 300px !important;
  }
  .u-h-350-pc {
    height: 350px !important;
  }
  .u-h-400-pc {
    height: 400px !important;
  }
  .u-h-450-pc {
    height: 450px !important;
  }
  .u-h-500-pc {
    height: 500px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-h-auto-sp {
    height: auto !important;
  }
  .u-h-100p-sp {
    height: 100% !important;
  }
  .u-h-100vh-sp {
    height: 100vh!important;
  }
  .u-h-0-sp {
    height: 0px !important;
  }
  .u-h-50-sp {
    height: 50px !important;
  }
  .u-h-100-sp {
    height: 100px !important;
  }
  .u-h-150-sp {
    height: 150px !important;
  }
  .u-h-200-sp {
    height: 200px !important;
  }
  .u-h-250-sp {
    height: 250px !important;
  }
  .u-h-300-sp {
    height: 300px !important;
  }
  .u-h-350-sp {
    height: 350px !important;
  }
  .u-h-400-sp {
    height: 400px !important;
  }
  .u-h-450-sp {
    height: 450px !important;
  }
  .u-h-500-sp {
    height: 500px !important;
  }
}

@media (min-width: 0px) {
  .u-min-h-0 {
    min-height: 0 !important;
  }
  .u-min-h-50 {
    min-height: 50px !important;
  }
  .u-min-h-100 {
    min-height: 100px !important;
  }
  .u-min-h-150 {
    min-height: 150px !important;
  }
  .u-min-h-200 {
    min-height: 200px !important;
  }
  .u-min-h-250 {
    min-height: 250px !important;
  }
  .u-min-h-300 {
    min-height: 300px !important;
  }
  .u-min-h-350 {
    min-height: 350px !important;
  }
  .u-min-h-400 {
    min-height: 400px !important;
  }
  .u-min-h-450 {
    min-height: 450px !important;
  }
  .u-min-h-500 {
    min-height: 500px !important;
  }
}
@media (min-width: 768px) {
  .u-min-h-0-pc {
    min-height: 0 !important;
  }
  .u-min-h-50-pc {
    min-height: 50px !important;
  }
  .u-min-h-100-pc {
    min-height: 100px !important;
  }
  .u-min-h-150-pc {
    min-height: 150px !important;
  }
  .u-min-h-200-pc {
    min-height: 200px !important;
  }
  .u-min-h-250-pc {
    min-height: 250px !important;
  }
  .u-min-h-300-pc {
    min-height: 300px !important;
  }
  .u-min-h-350-pc {
    min-height: 350px !important;
  }
  .u-min-h-400-pc {
    min-height: 400px !important;
  }
  .u-min-h-450-pc {
    min-height: 450px !important;
  }
  .u-min-h-500-pc {
    min-height: 500px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-min-h-0-sp {
    min-height: 0 !important;
  }
  .u-min-h-50-sp {
    min-height: 50px !important;
  }
  .u-min-h-100-sp {
    min-height: 100px !important;
  }
  .u-min-h-150-sp {
    min-height: 150px !important;
  }
  .u-min-h-200-sp {
    min-height: 200px !important;
  }
  .u-min-h-250-sp {
    min-height: 250px !important;
  }
  .u-min-h-300-sp {
    min-height: 300px !important;
  }
  .u-min-h-350-sp {
    min-height: 350px !important;
  }
  .u-min-h-400-sp {
    min-height: 400px !important;
  }
  .u-min-h-450-sp {
    min-height: 450px !important;
  }
  .u-min-h-500-sp {
    min-height: 500px !important;
  }
}

@media (min-width: 0px) {
  .u-max-h-none {
    max-height: none !important;
  }
  .u-max-h-3em {
    max-height: 6em !important;
  }

  .u-max-h-50 {
    max-height: 50px !important;
  }
  .u-max-h-100 {
    max-height: 100px !important;
  }
  .u-max-h-150 {
    max-height: 150px !important;
  }
  .u-max-h-200 {
    max-height: 200px !important;
  }
  .u-max-h-202 {
    max-height: 202px !important;
  }
  .u-max-h-250 {
    max-height: 250px !important;
  }
  .u-max-h-300 {
    max-height: 300px !important;
  }
  .u-max-h-350 {
    max-height: 350px !important;
  }
  .u-max-h-400 {
    max-height: 400px !important;
  }
  .u-max-h-450 {
    max-height: 450px !important;
  }
  .u-max-h-500 {
    max-height: 500px !important;
  }
}
@media (min-width: 768px) {
  .u-max-h-none-pc {
    max-height: none !important;
  }
  .u-max-h-50-pc {
    max-height: 50px !important;
  }
  .u-max-h-100-pc {
    max-height: 100px !important;
  }
  .u-max-h-150-pc {
    max-height: 150px !important;
  }
  .u-max-h-200-pc {
    max-height: 200px !important;
  }
  .u-max-h-250-pc {
    max-height: 250px !important;
  }
  .u-max-h-300-pc {
    max-height: 300px !important;
  }
  .u-max-h-350-pc {
    max-height: 350px !important;
  }
  .u-max-h-400-pc {
    max-height: 400px !important;
  }
  .u-max-h-450-pc {
    max-height: 450px !important;
  }
  .u-max-h-500-pc {
    max-height: 500px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-max-h-none-sp {
    max-height: none !important;
  }
  .u-max-h-50-sp {
    max-height: 50px !important;
  }
  .u-max-h-100-sp {
    max-height: 100px !important;
  }
  .u-max-h-150-sp {
    max-height: 150px !important;
  }
  .u-max-h-200-sp {
    max-height: 200px !important;
  }
  .u-max-h-250-sp {
    max-height: 250px !important;
  }
  .u-max-h-300-sp {
    max-height: 300px !important;
  }
  .u-max-h-350-sp {
    max-height: 350px !important;
  }
  .u-max-h-400-sp {
    max-height: 400px !important;
  }
  .u-max-h-450-sp {
    max-height: 450px !important;
  }
  .u-max-h-500-sp {
    max-height: 500px !important;
  }
}

/* フォントファミリー
-----------------------*/
.u-ff-noto-sans {
  font-family: 'Noto Sans JP' !important;
}
.u-ff-montserrat {
  font-family: 'Montserrat' !important;
}
.u-ff-lato {
  font-family: 'Lato' !important;
  font-weight: 300;
}

/* フォントサイズ
-----------------------*/
@media (min-width: 0px) {
  .u-fs-0 {
    font-size: 0 !important;
  }
  .u-fs-10 {
    font-size: 1.0rem !important;
  }
  .u-fs-11 {
    font-size: 1.1rem !important;
  }
  .u-fs-12 {
    font-size: 1.2rem !important;
  }
  .u-fs-13 {
    font-size: 1.3rem !important;
  }
  .u-fs-14 {
    font-size: 1.4rem !important;
  }
  .u-fs-16 {
    font-size: 1.6rem !important;
  }
  .u-fs-18 {
    font-size: 1.8rem !important;
  }
  .u-fs-20 {
    font-size: 2.0rem !important;
  }
  .u-fs-22 {
    font-size: 2.2rem !important;
  }
  .u-fs-24 {
    font-size: 2.4rem !important;
  }
  .u-fs-26 {
    font-size: 2.6rem !important;
  }
  .u-fs-28 {
    font-size: 2.8rem !important;
  }
  .u-fs-30 {
    font-size: 3rem !important;
  }
  .u-fs-32 {
    font-size: 3.2rem !important;
  }
  .u-fs-34 {
    font-size: 3.4rem !important;
  }
  .u-fs-36 {
    font-size: 3.6rem !important;
  }
  .u-fs-38 {
    font-size: 3.8rem !important;
  }
  .u-fs-40 {
    font-size: 4rem !important;
  }
  .u-fs-48 {
    font-size: 4.8rem !important;
  }
  .u-fs-120 {
    font-size: 12rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-0-sp {
    font-size: 0 !important;
  }
  .u-fs-10-sp {
    font-size: 1.0rem !important;
  }
  .u-fs-11-sp {
    font-size: 1.1rem !important;
  }
  .u-fs-12-sp {
    font-size: 1.2rem !important;
  }
  .u-fs-13-sp {
    font-size: 1.3rem !important;
  }
  .u-fs-14-sp {
    font-size: 1.4rem !important;
  }
  .u-fs-16-sp {
    font-size: 1.6rem !important;
  }
  .u-fs-18-sp {
    font-size: 1.8rem !important;
  }
  .u-fs-20-sp {
    font-size: 2.0rem !important;
  }
  .u-fs-22-sp {
    font-size: 2.2rem !important;
  }
  .u-fs-24-sp {
    font-size: 2.4rem !important;
  }
  .u-fs-26-sp {
    font-size: 2.6rem !important;
  }
  .u-fs-28-sp {
    font-size: 2.8rem !important;
  }
  .u-fs-30-sp {
    font-size: 3rem !important;
  }
  .u-fs-32-sp {
    font-size: 3.2rem !important;
  }
  .u-fs-34-sp {
    font-size: 3.4rem !important;
  }
  .u-fs-36-sp {
    font-size: 3.6rem !important;
  }
  .u-fs-38-sp {
    font-size: 3.8rem !important;
  }
  .u-fs-40-sp {
    font-size: 4rem !important;
  }
  .u-fs-48-sp {
    font-size: 4.8rem !important;
  }
}
@media (min-width: 768px) {
  .u-fs-0-pc {
    font-size: 0 !important;
  }
  .u-fs-10-pc {
    font-size: 1.0rem !important;
  }
  .u-fs-11-pc {
    font-size: 1.1rem !important;
  }
  .u-fs-12-pc {
    font-size: 1.2rem !important;
  }
  .u-fs-13-pc {
    font-size: 1.3rem !important;
  }
  .u-fs-14-pc {
    font-size: 1.4rem !important;
  }
  .u-fs-16-pc {
    font-size: 1.6rem !important;
  }
  .u-fs-18-pc {
    font-size: 1.8rem !important;
  }
  .u-fs-20-pc {
    font-size: 2.0rem !important;
  }
  .u-fs-22-pc {
    font-size: 2.2rem !important;
  }
  .u-fs-24-pc {
    font-size: 2.4rem !important;
  }
  .u-fs-26-pc {
    font-size: 2.6rem !important;
  }
  .u-fs-28-pc {
    font-size: 2.8rem !important;
  }
  .u-fs-30-pc {
    font-size: 3rem !important;
  }
  .u-fs-32-pc {
    font-size: 3.2rem !important;
  }
  .u-fs-34-pc {
    font-size: 3.4rem !important;
  }
  .u-fs-36-pc {
    font-size: 3.6rem !important;
  }
  .u-fs-38-pc {
    font-size: 3.8rem !important;
  }
  .u-fs-40-pc {
    font-size: 4rem !important;
  }
  .u-fs-48-pc {
    font-size: 4.8rem !important;
  }
}

/* フォントウェイト
-----------------------*/
.u-fw-normal {
  font-weight: normal !important;
}
.u-fw-bold {
  font-weight: 600 !important;
}

/* ラインハイト
-----------------------*/
.u-lh-10 {
  line-height: 1.0 !important;
}
.u-lh-13 {
  line-height: 1.3 !important;
}
.u-lh-15 {
  line-height: 1.5 !important;
}
.u-lh-17 {
  line-height: 1.7 !important;
}
.u-lh-20 {
  line-height: 2.0 !important;
}
@media screen and (max-width: 767px) {
  .u-lh-10-sp {
    line-height: 1.0 !important;
  }
  .u-lh-13-sp {
    line-height: 1.3 !important;
  }
  .u-lh-15-sp {
    line-height: 1.5 !important;
  }
  .u-lh-17-sp {
    line-height: 1.7 !important;
  }
  .u-lh-20-sp {
    line-height: 2.0 !important;
  }
}
@media (min-width: 768px) {
  .u-lh-10-pc {
    line-height: 1.0 !important;
  }
  .u-lh-13-pc {
    line-height: 1.3 !important;
  }
  .u-lh-15-pc {
    line-height: 1.5 !important;
  }
  .u-lh-17-pc {
    line-height: 1.7 !important;
  }
  .u-lh-20-pc {
    line-height: 2.0 !important;
  }
}

/* テキストアライン
-----------------------*/
.u-ta-left {
  text-align: left !important;
}
.u-ta-center {
  text-align: center !important;
}
.u-ta-right {
  text-align: right !important;
}
@media (min-width: 768px) {
  .u-ta-left-pc {
    text-align: left !important;
  }
  .u-ta-center-pc {
    text-align: center !important;
  }
  .u-ta-right-pc {
    text-align: right !important;
  }
}
@media screen and (max-width: 767px) {
  .u-ta-left-sp {
    text-align: left !important;
  }
  .u-ta-center-sp {
    text-align: center !important;
  }
  .u-ta-right-sp {
    text-align: right !important;

  }
}

/* バーティカルアライン
-----------------------*/
.u-va-middle {
  vertical-align: middle !important;
}

/* テキストデコレーション
-----------------------*/
.u-td-none {
  text-decoration: none !important;
}
.u-td-underline {
  text-decoration: underline !important;
}

/* ホワイトスペース
-----------------------*/
.u-ws-normal {
  white-space: normal !important;
}
.u-ws-nowrap {
  white-space: nowrap !important;
}

/* ワードブレイク
-----------------------*/
.u-wb-all {
  word-break: break-all !important;
}

/* カーソル
-----------------------*/
.u-cursor-pointer {
  cursor: pointer;
}

.c-block-image-hover-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.c-block {
  padding: 50px 80px;
}

.c-block-image-hover-grid-item:nth-child(-n+3) {
  margin-top: 0;
}

.c-block-image-hover-grid-item {
  position: relative;
  width: calc(((100% - 60px)/3) - .1px);
  margin-top: 30px;
}

.c-block-image-hover-grid-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.c-block-image-hover-grid-item a:hover .c-block-image-hover-grid-item-bg img {
  opacity:inherit
}

.c-block-image-hover-grid-item a:hover .c-block-image-hover-grid-item-bg::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  background:#5876aa;
  width:100%;
  height:100%;
  opacity:.9
}

.c-block-image-hover-grid-item-inner {
  position: absolute;
  left: 0;
  bottom: calc(120/2800*100vw);
  padding-left: calc(60/2800*100vw);
  padding-right: calc(60/2800*100vw);
  padding-bottom: calc(60/2800*100vw);
  color: #fff;
}

.c-block-image-hover-grid-item-head {
  font-size: 2.2rem;
  line-height: 1.3;
  word-break: normal;
}

.c-block-image-hover-grid-item-body {
  display: none;
  font-size: 1.4rem
}

.c-block-image-hover-grid-item a:hover .c-block-image-hover-grid-item-body {
  display:block
}

.c-block-image-hover-grid-item:last-child:nth-child(3n-1) {
  margin-left: 30px;
  margin-right: auto;
}

.c-block-image-hover-grid-item a:hover .c-block-image-hover-grid-item-inner{
  top:calc(60/2800*100vw);
  bottom:auto
}