@charset "UTF-8";
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,
caption, tfoot, thead,
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;
  list-style: none;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

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-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

button {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  appearance: none;
}

@media (max-width: 600px) {
  .test-breakPoint {
    background-color: red;
  }
}
@media (min-width: 601px) {
  .test-breakPoint {
    background-color: blue;
  }
}
@media (min-width: 961px) {
  .test-breakPoint {
    background-color: yellow;
  }
}

body {
  font: 16px/1.8 "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  word-break: normal;
  word-wrap: break-word;
}

/* Scss Document */
img {
  max-width: 100%;
  height: auto !important;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
  transform: scale(1.01);
}

.none_sp {
  display: none;
}
@media (min-width: 601px) {
  .none_sp {
    display: block;
  }
}

.none_pc {
  display: block;
}
@media (min-width: 601px) {
  .none_pc {
    display: none;
  }
}

.floating {
  position: fixed;
  right: 8px;
  bottom: 10%;
  z-index: 10;
  display: none;
}
@media screen and (max-width: 420px) {
  .floating {
    bottom: 8px;
    right: 0;
    width: 100%;
  }
}

.floating a {
  display: block;
  color: #fff;
  border-radius: 100vh;
  padding: 10px 50px 10px 80px;
  margin: auto;
  background: #00c300 url(../images/ico_line01.svg) no-repeat center left 14px;
  background-size: 30px;
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 420px) {
  .floating a {
    width: 90%;
    box-sizing: border-box;
  }
}

.top-under_wrap {
  width: 100%;
  margin-top: 1em;
  padding-top: 1em;
}

.page-breadcrumb {
  background: #F2F2F4;
  padding: 10px 0;
  margin-top: auto;
}
.page-breadcrumb .page-breadcrumb-block {
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}
.page-breadcrumb .page-breadcrumb__list {
  display: flex;
  font-size: 13px;
  flex-wrap: wrap;
}
.page-breadcrumb .page-breadcrumb__list a {
  color: #21A0A0;
}
.page-breadcrumb .page-breadcrumb__item:not(:last-child):after {
  content: "/";
  margin: 0 6px 0 8px;
  font-size: 0.75rem;
}

.offset-top {
  position: absolute;
  bottom: 315px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .offset-top {
    position: static;
  }
}

.change {
  position: relative;
}

.change.change-color::after {
  content: "";
  display: block;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.nav-wrap {
  z-index: 99;
  width: 100px;
  height: 20px;
}

#nav-open {
  position: fixed;
  display: inline-block;
  width: 25px;
  height: 20px;
  vertical-align: middle;
  right: auto;
  z-index: 100;
  float: right;
}
@media (max-width: 600px) {
  #nav-open {
    right: 8%;
  }
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  transition: all 0.4s;
  height: 3px;
  /*線の太さ*/
  width: 25px;
  /*長さ*/
  border-radius: 3px;
  background: #21A0A0;
  display: block;
  content: "";
  cursor: pointer;
  z-index: 10000000;
  /*最前面*/
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}

/*中身*/
#nav-content {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.2s ease-in-out;
}

#nav-content.open {
  display: block;
  opacity: 1;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: url("../images/menu_bg.svg") no-repeat center center;
  /*背景色*/
  overflow: hidden;
  background-size: cover;
}

/*:beforeにぼかし効果を設定する*/
#nav-content.open:before {
  content: "";
  overflow: hidden;
  z-index: -1;
  /*重なり順序を一番下にしておく*/
}

/*チェックが入ったら表示する内容*/
.hamburger-top {
  height: 40px;
  /*×ボタンと被らないように*/
}

.category {
  text-align: center;
  margin-top: 2rem;
}

.category-title {
  padding: 0.8rem;
  list-style: none;
}

.category-title a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
}

.sns_list ul {
  display: flex;
  background: #fff;
  padding: 1em;
  align-items: center;
  margin: 40px auto 0;
  border-radius: 100vh;
  max-width: 280px;
}

.sns_list ul li {
  width: 25%;
  text-align: center;
}

.sns_list ul li a {
  display: inline-block;
}

/*三本線を動かす*/
#nav-open.active span {
  transform: translateY(8px) rotate(-45deg);
  background-color: #fff;
  z-index: 1000000000000;
}

#nav-open.active span:before {
  /*打ち消す*/
  transform: translateY(-8px) rotate(45deg);
  /*打ち消す*/
  opacity: 0;
}

#nav-open.active span:after {
  transform: translateY(-16px) rotate(90deg);
  background-color: #fff;
}

.header {
  position: relative;
  width: 100%;
  margin-top: 20px;
  z-index: 1000;
}
.header .header_head {
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  border-radius: 100vh;
  height: 79px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  margin: 0 -10px;
}
@media (min-width: 961px) {
  .header .header_head {
    background-size: cover;
    margin: 0;
  }
}
.header .header_head__logo {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 60%;
}
@media (min-width: 961px) {
  .header .header_head__logo {
    text-indent: inherit;
    white-space: inherit;
    overflow: inherit;
  }
}
@media screen and (max-width: 1024px) {
  .header .header_head__logo {
    width: 50%;
  }
}
.header .header_head__logo img {
  width: 120px;
}
@media all and (-ms-high-contrast: none) {
  .header .header_head__logo {
    width: 73%;
  }
}
.header .header_head__logo a.logo_sp {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  left: 20px;
  display: block;
  width: 269px;
  height: 31px;
  background: url("../images/logo_sp.svg") no-repeat center left;
  background-size: contain;
}
@media (min-width: 961px) {
  .header .header_head__logo a.logo_sp {
    display: none;
  }
}
.header .header_head__logo a.logo_pc {
  display: none;
  overflow: hidden;
}
@media (min-width: 961px) {
  .header .header_head__logo a.logo_pc {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #353B48;
    display: flex;
    align-items: center;
    left: 47px;
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .header .header_head__logo a.logo_pc {
    font-size: 15px;
    white-space: nowrap;
  }
}
.header .header_head__logo img {
  margin-right: 10px;
}
@media (min-width: 961px) {
  .header .header_head__logo .main_ttl {
    font-size: 26px;
    margin-left: 10px;
    font-weight: bold;
    display: block;
    line-height: 1;
    display: inline;
  }
}
@media screen and (max-width: 1024px) {
  .header .header_head__logo .main_ttl {
    font-size: 20px;
    white-space: nowrap;
  }
}
.header .header_head__btn a {
  display: block;
  color: #fff;
  border-radius: 100vh;
  padding: 10px 32px 10px 50px;
  margin: auto;
  background: #00c300 url("../images/ico_line01.svg") no-repeat center left 14px;
  background-size: 30px;
  margin-right: 0px;
}
@media (max-width: 680px) {
  .header .header_head__btn a {
    display: none;
  }
}

.footer {
  background: #353B48;
  padding: 90px 0 95px 0;
  margin-top: auto;
}

.footer_main {
  display: flex;
  flex-direction: column;
}
@media (min-width: 961px) {
  .footer_main {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer_main .privacy a {
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
  background: #E5EFEE url(../images/ico_pdf01.svg) no-repeat center left 14px;
  background-size: 30px auto;
  border-radius: 100px;
  color: #21A0A0;
  line-height: 1.2em;
  padding: 12px 70px;
  box-sizing: border-box;
  font-weight: bold;
}
@media all and (-ms-high-contrast: none) {
  .footer_main .privacy a {
    background-size: 30px 100%;
  }
}

.footer_main__info {
  padding: 0 30px;
  text-align: left;
  color: #fff;
}
@media (min-width: 961px) {
  .footer_main__info {
    text-align: right;
    padding: 0;
  }
}
.footer_main__info .ttl {
  font-size: 21px;
  padding-bottom: 2px;
}
.footer_main__info .copylight {
  font-size: 12.3px;
}

/*ソーシャルボタン領域*/
.detail_news_social {
  display: flex;
  align-items: center;
}

.detail_news_social ul {
  display: flex;
  margin-left: 0 !important;
  justify-content: center;
}

.detail_news_social ul li {
  margin-left: 10px;
  list-style-type: none;
}

.detail_news_social ul li::before {
  display: none !important;
}

.detail_news_social li a {
  vertical-align: bottom;
  display: inline-block;
  width: 34px;
  height: 34px;
  background: #1a63ac url("../images/logo_fb01.png") no-repeat center;
  background-size: auto 18px;
  border-radius: 100px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.1s ease;
}

.detail_news_social li a.tw {
  background: #57aae8 url("../images/logo_tw01.png") no-repeat center;
  background-size: auto 15px;
}

.detail_news_social li a.line {
  background: #00b900 url("../images/logo_line02.png") no-repeat center;
  background-size: auto 20px;
}

.detail_news_social li:hover a {
  transform: scale(1.1);
}

/*ソーシャルボタン領域END*/
/*ソーシャルボタン領域*/
.Social {
  display: flex !important;
  align-items: center;
}

.Social div:nth-of-type(1) {
  vertical-align: bottom;
  display: inline-block;
  width: 34px !important;
  height: 34px !important;
  background: #1a63ac url("../images/logo_fb01.png") no-repeat center;
  background-size: auto 18px;
  border-radius: 100px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.1s ease;
}
.Social div:nth-of-type(1) a {
  box-sizing: border-box;
  display: block;
  width: 34px;
  height: 34px;
}

.Social div:nth-of-type(1) {
  width: 34px !important;
}

.Social div:nth-of-type(2) {
  background: #57aae8 url("../images/logo_tw01.png") no-repeat center;
  background-size: auto 15px;
  width: 34px !important;
  height: 34px !important;
  border-radius: 100px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.1s ease;
  margin-left: 10px !important;
}
.Social div:nth-of-type(2) a {
  box-sizing: border-box;
  display: block;
}

.Social div:nth-of-type(3) {
  background: #00b900 url("../images/logo_line02.png") no-repeat center;
  background-size: auto 20px;
  width: 34px !important;
  height: 34px !important;
  border-radius: 100px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.1s ease;
  margin-left: 10px !important;
}
.Social div:nth-of-type(3) a {
  box-sizing: border-box;
  display: block;
}

.detail_news_social li:hover a {
  transform: scale(1.1);
}

/*ソーシャルボタン領域END*/
/*レイアウト関連*/
.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*タイトル*/
.page-title {
  background: #E5EFEE;
  padding: 1.3em 1em;
  margin: 40px 0 0;
  border-bottom: #D68C45 4px solid;
  border-radius: 20px;
}
.page-title .h1_title {
  position: relative;
  font-size: 30px;
  display: inline-block;
  margin-left: 20px;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .page-title .h1_title {
    font-size: 28px;
    left: 50%;
    transform: translate(-50%, 0);
    margin-left: 0;
  }
}
.page-title .sub {
  font-size: 14px;
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .page-title .sub {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
  ボタン装飾
   ========================================================================== */
.text_link a {
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
  background: #E5EFEE url(../images/ico_ar_r01.svg) no-repeat center left 14px;
  background-size: 20px 21px;
  border-radius: 100px;
  color: #21A0A0;
  line-height: 1.2em;
  padding: 12px 70px;
  box-sizing: border-box;
  font-weight: bold;
}

.box_line {
  border: #00B900 3px solid;
  padding: 1em !important;
  background: #fff;
  margin: 40px auto !important;
  width: 45vw !important;
}

@media screen and (max-width: 950px) {
  .box_line {
    margin: 50px 10px 0px !important;
    transform: translate(0, -30%);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
    width: auto !important;
  }
}
.box_line p {
  font-size: 1.125em;
}

/*フォント関連*/
.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.font_orange_L {
  font-size: 1.375rem;
  color: #E26B10;
}

.color-blue {
  color: #036EB8;
}

.color-white {
  color: #fff;
}

.color-red {
  color: #c33;
}

.color-primary {
  color: #21A0A0;
}

.color-secondary {
  color: #353B48;
}

.foL {
  font-size: 1.5em;
}

.foM {
  font-size: 1.125em;
}

.marker_green {
  background: linear-gradient(transparent 70%, #66FFCC 70%);
  display: inline;
}

.marker_yellow {
  display: inline;
  background: linear-gradient(transparent 70%, rgba(245, 203, 92, 0.4) 70%);
}

.marker_green a {
  color: #000;
}

/*フォント関連 end*/
/*ボタン*/
.line_btn {
  width: 360px;
  margin: 0 auto;
}

.line_btn a {
  display: block;
  color: #fff;
  padding: 9px 40px 9px 96px;
  margin: 20px auto;
  background-size: 18px;
  background: #00B900 url("../images/ico_line01.svg") no-repeat center left 14px;
}

@media screen and (max-width: 950px) {
  .line_btn {
    width: 100% !important;
  }

  .line_btn a {
    padding: 20px 32px 20px 60px;
    box-sizing: border-box;
    text-align: center;
  }
}
/*ボタン end*/
/*float*/
.floatR_pc {
  display: block;
}
@media (min-width: 961px) {
  .floatR_pc {
    float: right;
  }
}

.floatL_pc {
  display: block;
}
@media (min-width: 961px) {
  .floatL_pc {
    float: left;
  }
}

/*リストスタイル*/
ul.cp_list {
  list-style: none;
}

ul.cp_list li {
  position: relative;
  padding: 0em 1em 0em 1.5em;
  margin-bottom: 5px;
}

ul.cp_list li:after,
ul.cp_list li:before {
  content: "";
  position: absolute;
}

ul.cp_list li:after {
  top: 0.5em;
  left: 0em;
  width: 14px;
  height: 14px;
  background: #036EB8;
}

/*リストスタイル end*/
.div_info01 {
  background: rgba(235, 244, 181, 0.7);
  padding: 1em;
}

.div_info02 {
  border: 1px solid #036EB8;
  padding: 1em;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

.clearfix {
  display: block;
}

.spBlock {
  display: block;
}

@media (min-width: 961px) {
  .spBlock {
    display: inline-block;
  }
}
.spOnly {
  display: none;
}

@media screen and (max-width: 680px) {
  .pcOnly {
    display: none !important;
  }
}
@media screen and (max-width: 950px) {
  .spOnly {
    display: block;
  }
}
@media screen and (max-width: 950px) {
  .spOnly {
    display: block;
  }
}
.w250 {
  width: 250px;
}

.margin1em {
  margin: 1em;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

.mtb40 {
  margin: 40px 0;
}

.mtb70 {
  margin: 70px 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb40 {
  margin-bottom: 40px;
}

.ml20_Pc {
  margin-left: 20px;
}

@media (max-width: 480px) {
  .ml20_Pc {
    margin-left: 0px !important;
  }
}
.offset-transform {
  transform: translate(0, 0);
}

/* ------------------------------ 上 */
/* ------------------------------ 右 */
/* ------------------------------ 下 */
/* ------------------------------ 左 */
/*ルビの下ふり*/
.rubyposition_under {
  display: inline-block;
}
@media (max-width: 320px) {
  .rubyposition_under {
    display: inline;
  }
}

.rubyposition_under ruby {
  display: flex;
  flex-direction: column;
  text-align: justify;
  /* この指定は text-align-last を IE に対応させるために必要 */
  text-align-last: justify;
}
@media (max-width: 320px) {
  .rubyposition_under ruby {
    display: inline;
  }
}

.float_R,
.float_R_Pc {
  float: right;
}

@media (max-width: 480px) {
  .float_R,
.float_R_Pc {
    float: inherit !important;
  }

  .float_L,
.float_L_Pc {
    float: inherit !important;
  }
}
.float_L,
.float_L_Pc {
  float: left;
}

.edit-area video {
  width: 100%;
}

.edit-area a {
  color: #0000EE;
  text-decoration: underline;
}

/* ==========================================================================
見出し
========================================================================== */
/*------------------------------------------------------------　h2見出し　*/
.h2_title01 {
  position: relative;
  padding: 0em 2em;
  font-size: 1.625em;
  margin: 0.5em 0;
  display: inline-block;
}
.h2_title01::after {
  content: "";
  position: absolute;
  background: #21A0A0;
  top: -0.25em;
  left: 0;
  z-index: -1;
  width: 30px;
  height: 30px;
  border-radius: 100px;
}
.h2_title01::before {
  content: "";
  position: absolute;
  background: #E5EFEE;
  left: 0.35em;
  z-index: -1;
  width: 30px;
  height: 30px;
  border-radius: 100px;
}
@media screen and (max-width: 950px) {
  .h2_title01::after {
    top: 0%;
  }
  .h2_title01::before {
    top: 9%;
    left: 3%;
  }
}

@media screen and (max-width: 950px) {
  .h2_title01 {
    padding: 0 0px 0 45px;
    font-size: 22px !important;
  }
}
/*------------------------------------------------------------　h3見出し　*/
.h3_title01 {
  border-left: solid 4px #21A0A0;
  padding: 2px 0 2px 16px;
  margin-bottom: 20px;
  line-height: 1.4;
  font-size: 1.125em;
}

/* 見出し END  =============================================================== */
.edit-area .page-nav ul,
.page-nav ul {
  display: flex;
  margin-left: 0;
  margin-top: 10px;
}
.edit-area .page-nav ul li a,
.page-nav ul li a {
  text-decoration: none;
  display: inline-block;
  background: url(../images/ico_ar_b01.svg) no-repeat center left 14px;
  background-size: 15px auto;
  border-radius: 100px;
  color: #000;
  line-height: 1.2em;
  padding: 5px 10px 5px 40px;
  box-sizing: border-box;
  font-weight: bold;
}
.edit-area .page-nav ul li::before,
.page-nav ul li::before {
  display: none !important;
}
@media screen and (max-width: 786px) {
  .edit-area .page-nav ul,
.page-nav ul {
    flex-direction: column;
  }
}

/* ==========================================================================
ボタン・リンク・SNS
========================================================================== */
.cke_editable a {
  text-decoration: none;
}

.edit-area .link_btn,
.link_btn {
  text-decoration: none;
  margin-bottom: 20px;
  color: #fff !important;
  display: inline-block;
  background: #21A0A0 url("../images/ico_ar_r02.svg") no-repeat center left 14px;
  background-size: 20px 21px;
  border-radius: 100px;
  color: #353B48;
  line-height: 1.2em;
  padding: 12px 70px;
  box-sizing: border-box;
  font-weight: bold;
}
@media (min-width: 961px) {
  .edit-area .link_btn,
.link_btn {
    padding: 14px 80px;
  }
}

.edit-area .home_btn,
.home_btn {
  text-decoration: none;
  margin-bottom: 20px;
  color: #fff !important;
  display: inline-block;
  background: #353B48 url("../images/ico_home01.svg") no-repeat center left 14px;
  background-size: 20px 21px;
  border-radius: 100px;
  color: #353B48;
  line-height: 1.2em;
  padding: 12px 70px;
  box-sizing: border-box;
  font-weight: bold;
}
@media (min-width: 961px) {
  .edit-area .home_btn,
.home_btn {
    padding: 14px 80px;
  }
}

.edit-area a:hover {
  opacity: 0.9;
  transform: scale(1.01);
}

/*------------------------------------------------------ ボタンカラー*/
/* サブ */
.edit-area .link_btn.link_btn-secondary,
.cke_editable .link_btn.link_btn-secondary {
  background: #E5EFEE url(../images/ico_ar_r01.svg) no-repeat center left 14px;
  background-size: 23px auto;
  color: #21A0A0 !important;
}

.link_btn.link_btn-secondary,
.link_btn.link_btn-secondary {
  background: #E5EFEE url(../images/ico_ar_r01.svg) no-repeat center left 14px;
  background-size: 23px auto;
  color: #21A0A0 !important;
}

/* サブ03 */
.edit-area .link_btn.link_btn-dark,
.cke_editable .link_btn.link_btn-dark {
  background: #68696B url(../images/ico_ar_r02.svg) no-repeat center left 14px;
}

.link_btn.link_btn-dark,
.link_btn.link_btn-dark {
  background: #68696B url(../images/ico_ar_r02.svg) no-repeat center left 14px;
}

/*------------------------------------------------------ ボタンサイズ*/
/* 大 */
.edit-area .link_btn.link_btn-large,
.cke_editable .link_btn.link_btn-large {
  display: block;
  font-size: 1.25rem;
}

.link_btn.link_btn-large,
.link_btn.link_btn-large {
  display: block;
  font-size: 1.25rem;
}

/* 小 */
.edit-area .link_btn.link_btn-small,
.cke_editable .link_btn.link_btn-small {
  padding: 10px 14px 10px 40px;
  font-size: 0.75rem;
}

.link_btn.link_btn-small,
.link_btn.link_btn-small {
  padding: 10px 14px 10px 40px;
  font-size: 0.75rem;
}

/*管理画面用リンクボタン*/
/* ------------------------------PDFマーク */
.txtLink01-pdf {
  padding-left: 30px;
  background: url(../common/ico_pdf01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------ダウンロードマーク */
.txtLink01-dl {
  padding-left: 30px;
  background: url(../common/ico_dl01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------WORDマーク */
.txtLink01-word {
  padding-left: 30px;
  background: url(../common/ico_word01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------EXCELマーク */
.txtLink01-excel {
  padding-left: 30px;
  background: url(../common/ico_excel01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------PowerPointマーク */
.txtLink01-power {
  padding-left: 30px;
  background: url(../common/ico_power01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ボタン・リンク END  =============================================================== */
/* ==========================================================================
リスト
========================================================================== */
.edit-area ol,
.edit-area ul,
.cke_editable ol,
.cke_editable ul,
.list_style {
  position: relative;
  margin-left: 25px;
}

.edit-area ol,
.cke_editable ol {
  counter-reset: item;
  list-style-type: none;
  margin-left: 0;
}

.edit-area ol li,
.cke_editable ol li {
  list-style-type: none;
  margin-bottom: 5px;
  position: relative;
  padding: 4px 0 4px 30px;
}

.edit-area ol li:before,
.cke_editable ol li:before {
  counter-increment: item;
  content: counter(item);
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0;
  font-weight: bold;
  width: 24px;
  height: 24px;
  line-height: 26px;
  background: #21A0A0;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  /* 14px */
}

.edit-area ul li,
.cke_editable ul li {
  list-style-type: none;
  margin-bottom: 5px;
}

.edit-area ul li:before,
.cke_editable ul li:before,
.list_style li:before {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  background: #21A0A0;
  margin: 0 10px 0 -17px;
  height: 8px;
  width: 8px;
  border-radius: 100%;
}

/* リスト END  =============================================================== */
/* ==========================================================================
テーブル
========================================================================== */
.edit-area table th {
  background: #F4F4F4;
}

.edit-area table td,
.edit-area table th {
  padding: 10px;
  border: 1px solid #d5d5d5;
}

/* テーブル END  =============================================================== */
/* ==========================================================================
　画像
========================================================================== */
.cke_editable img {
  max-width: 100%;
  height: auto !important;
  vertical-align: bottom;
}

.newsImg03,
.newsImg02,
.newsImg01 {
  margin: 10px 0;
}

.newsImg03 ul,
.newsImg02 ul,
.newsImg01 ul {
  margin: 0;
}

@media (min-width: 601px) {
  .newsImg03 ul,
.newsImg02 ul {
    display: flex;
    justify-content: space-between;
  }
}

.newsImg03 ul li,
.newsImg02 ul li,
.newsImg01 ul li {
  list-style: none !important;
  text-align: center;
  padding: 0;
  margin-top: 20px !important;
}

@media (min-width: 601px) {
  .newsImg03 ul li {
    width: calc((100% / 3) - 10px);
  }
}

@media (min-width: 601px) {
  .newsImg02 ul li {
    width: calc((100% / 2) - 10px);
  }
}

.newsImg03 ul li:before,
.newsImg02 ul li:before,
.newsImg01 ul li:before {
  display: none !important;
}

/* ------------------------------------------------------------絵文字 */
.ico_20 {
  width: 20px;
  height: 20px;
  padding: 0 4px;
  vertical-align: middle;
  margin-bottom: 3px;
}

/* 画像 END  =============================================================== */
/* ==========================================================================
囲い
========================================================================== */
.div_info01 {
  padding: 16px;
  margin: 15px 0;
  border-radius: 2px;
  background: #F4F4F4;
}

.div_info02 {
  padding: 16px;
  margin: 15px 0;
  border-radius: 2px;
  border: solid 2px #21A0A0;
}

/* 囲い END  =============================================================== */
/* ==========================================================================
　境界線
========================================================================== */
hr.div_hr01 {
  display: block;
  margin: 15px 0;
  border: none;
  border-bottom: dashed 1px #CFCFCF;
}

/*管理画面側*/
.cke_editable .ckeditor_divline {
  background: url(../common/ckeditor_divline.gif) no-repeat;
}

/* 境界線 END  =============================================================== */
/* ==========================================================================
ckエディター
========================================================================== */
/*------------------------------------------------------------ニュース表示(日付)*/
.day-color01 {
  color: #000000;
}

/*黒*/
.day-color02 {
  color: #e03e3e;
}

/*赤*/
.day-color03 {
  color: #005692;
}

/*青*/
.day-color04 {
  color: #099809;
}

/*緑*/
.day-color05 {
  color: #E77BE6;
}

/*ピンク*/
.day-color06 {
  color: #666666;
}

/*グレー*/
.day-bold {
  font-weight: bold;
}

/*-----------------------------------------------------------ニュース表示(タイトル)*/
.title-size-small {
  font-size: 0.8125rem;
}

/* 13px */
.title-size-middle {
  font-size: 0.9375rem;
}

/* 15px */
.title-size-big {
  font-size: 1.25rem;
}

/* 20px */
.title-color01 {
  color: #000000;
}

/*黒*/
.title-color02 {
  color: #e03e3e;
}

/*赤*/
.title-color03 {
  color: #005692;
}

/*青*/
.title-color04 {
  color: #099809;
}

/*緑*/
.title-color05 {
  color: #E77BE6;
}

/*ピンク*/
.title-color06 {
  color: #666666;
}

/*グレー*/
.title-bold {
  font-weight: bold;
}

/*-----------------------------------------------------------文字サイズ*/
span.op_large {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 1.25rem;
}

span.op_large02 {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 1.4375rem;
}

span.op_mideamu {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 0.9375rem;
}

span.op_small {
  display: inline-block;
  line-height: 1.8;
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 0.75rem;
}

/*-----------------------------------------------------------文字の下付上付*/
sub {
  font-size: 75.5%;
  vertical-align: bottom;
}

sup {
  font-size: 75.5%;
  vertical-align: top;
}

/*-----------------------------------------------------------他装飾*/
.g-map {
  width: 100% !important;
}

.cke_editable .ckeditor_divline {
  background: url(../images/ckeditor_divline.gif) no-repeat;
}

/* ckエディター END  =============================================================== */
/* ==========================================================================
  Youtube
========================================================================== */
.youtube-css {
  position: relative;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.youtube-css iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* テキスト END  =============================================================== */
/* ==========================================================================
  テキスト
========================================================================== */
/* ------------------------------------------------------------ テキストインデント */
.text_mark {
  margin-left: 1em;
  text-indent: -1em;
}

.text_marks {
  margin-left: 0.857em;
  text-indent: -0.857em;
}

/* ------------------------------------------------------------ テキスト寄せ */
.text_center,
.text_center_Pc {
  text-align: center;
}

.text_right,
.text_right_Pc {
  text-align: right;
}

.text_left,
.text_left_Pc {
  text-align: left;
}

/* テキスト END  =============================================================== */
/* ==========================================================================
  編集パーツ用
   ========================================================================== */
.list_num01 {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin-left: 0 !important;
}

.list_num01 li {
  position: relative;
  padding: 4px 0 4px 35px;
  margin-bottom: 10px;
  list-style: none !important;
}

.list_num01 li:before {
  counter-increment: item;
  content: counter(item);
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0;
  font-weight: bold;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 100%;
  background: #21A0A0 !important;
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
}

.edit-area .list_check,
.cke_editable .list_check {
  list-style: none;
  padding: 0;
  position: relative;
  margin-left: 0 !important;
}

.edit-area li {
  position: relative;
  margin-bottom: 10px;
}

.list_check li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 10px;
  list-style: none !important;
}

.edit-area .list_check li:before,
.cke_editable .list_check li:before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  display: block;
  top: 0.4em;
  left: 0.2em;
  height: 10px;
  width: 6px;
  transform: rotate(45deg);
  border-bottom: solid 3px #21A0A0;
  border-right: solid 3px #21A0A0;
  border-radius: 0;
  margin: 0;
  background: none;
}

.cke_editable .lay-grid > .col-1,
.cke_editable .lay-grid > .col-2,
.cke_editable .lay-grid > .col-3,
.cke_editable .lay-grid > .col-4,
.cke_editable .lay-grid > .col-5,
.cke_editable .lay-grid > .col-6,
.cke_editable .lay-grid > .col-7,
.cke_editable .lay-grid > .col-8,
.cke_editable .lay-grid > .col-9,
.cke_editable .lay-grid > .col-10,
.cke_editable .lay-grid > .col-11,
.cke_editable .lay-grid > .col-12 {
  padding: 10px;
  border: dashed 1px #dedacd;
  border-radius: 4px;
}

.lay-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.lay-grid > .col-1,
.lay-grid > .col-2,
.lay-grid > .col-3,
.lay-grid > .col-4,
.lay-grid > .col-5,
.lay-grid > .col-6,
.lay-grid > .col-7,
.lay-grid > .col-8,
.lay-grid > .col-9,
.lay-grid > .col-10,
.lay-grid > .col-11,
.lay-grid > .col-12 {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.lay-grid > .col-1 {
  width: calc((100% / 12) * 1 - 20px);
}

.lay-grid > .col-2 {
  width: calc((100% / 12) * 2 - 20px);
}

.lay-grid > .col-3 {
  width: calc((100% / 12) * 3 - 20px);
}

.lay-grid > .col-4 {
  width: calc((100% / 12) * 4 - 20px);
}

.lay-grid > .col-5 {
  width: calc((100% / 12) * 5 - 20px);
}

.lay-grid > .col-6 {
  width: calc((100% / 12) * 6 - 20px);
}

.lay-grid > .col-7 {
  width: calc((100% / 12) * 7 - 20px);
}

.lay-grid > .col-8 {
  width: calc((100% / 12) * 8 - 20px);
}

.lay-grid > .col-9 {
  width: calc((100% / 12) * 9 - 20px);
}

.lay-grid > .col-10 {
  width: calc((100% / 12) * 10 - 20px);
}

.lay-grid > .col-11 {
  width: calc((100% / 12) * 11 - 20px);
}

.lay-grid > .col-12 {
  width: calc((100% / 12) * 12 - 20px);
}

.lay-grid > .col-lg-1,
.lay-grid > .col-lg-2,
.lay-grid > .col-lg-3,
.lay-grid > .col-lg-4,
.lay-grid > .col-lg-5,
.lay-grid > .col-lg-6,
.lay-grid > .col-lg-7,
.lay-grid > .col-lg-8,
.lay-grid > .col-lg-9,
.lay-grid > .col-lg-10,
.lay-grid > .col-lg-11,
.lay-grid > .col-lg-12 {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
}

@media (min-width: 961px) {
  .lay-grid > .col-lg-1 {
    width: calc((100% / 12) * 1 - 20px);
  }
}

@media (min-width: 961px) {
  .lay-grid > .col-lg-2 {
    width: calc((100% / 12) * 2 - 20px);
  }
}

@media (min-width: 961px) {
  .lay-grid > .col-lg-3 {
    width: calc((100% / 12) * 3 - 20px);
  }
}

@media (min-width: 961px) {
  .lay-grid > .col-lg-4 {
    width: calc((100% / 12) * 4 - 20px);
  }
}

@media (min-width: 961px) {
  .lay-grid > .col-lg-5 {
    width: calc((100% / 12) * 5 - 20px);
  }
}

@media (min-width: 961px) {
  .lay-grid > .col-lg-6 {
    width: calc((100% / 12) * 6 - 20px);
  }
}

@media (min-width: 961px) {
  .lay-grid > .col-lg-7 {
    width: calc((100% / 12) * 7 - 20px);
  }
}

@media (min-width: 961px) {
  .lay-grid > .col-lg-8 {
    width: calc((100% / 12) * 8 - 20px);
  }
}

@media (min-width: 961px) {
  .lay-grid > .col-lg-9 {
    width: calc((100% / 12) * 9 - 20px);
  }
}

@media (min-width: 961px) {
  .lay-grid > .col-lg-10 {
    width: calc((100% / 12) * 10 - 20px);
  }
}

@media (min-width: 961px) {
  .lay-grid > .col-lg-11 {
    width: calc((100% / 12) * 11 - 20px);
  }
}

@media (min-width: 961px) {
  .lay-grid > .col-lg-12 {
    width: calc((100% / 12) * 12 - 20px);
  }
}

@media (min-width: 961px) {
  .card-box__item--lg-last {
    order: 1;
  }
}

.card-box {
  margin-top: 20px;
}

.card-box__item--fast {
  margin-top: 20px;
}

.fader {
  opacity: 0;
}

.fade_on {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.container_bg_s5 {
  margin-top: 45px;
  padding: 43px 0px;
  background: #E5EFEE;
}
@media (min-width: 961px) {
  .container_bg_s5 {
    padding: 83px 30px;
  }
}

.s5_main {
  padding: 30px 18px;
  border-top: solid 10px #21A0A0;
  background: #fff url("../images/logo_big.svg") no-repeat right 30px top 40px;
  background-size: 130px auto;
}
@media (min-width: 961px) {
  .s5_main {
    padding: 60px 65px;
    background: #fff url("../images/logo_big.svg") no-repeat right 30px top 20px;
    background-size: 300px auto;
  }
}

.s5_main__list {
  display: flex;
  border-top: solid 1px #21A0A0;
  flex-direction: column;
}
@media (min-width: 961px) {
  .s5_main__list {
    flex-direction: row;
  }
}

.s5_main__list > dt {
  padding: 20px 10px 0px 10px;
  font-weight: bold;
  width: 100%;
  font-size: 15px;
}
@media (min-width: 961px) {
  .s5_main__list > dt {
    font-size: 16px;
    width: 25%;
    padding: 30px;
  }
}

.s5_main__list > dt span {
  padding: 2px 10px;
  background: #EBF4B5;
  white-space: nowrap;
}
@media (min-width: 961px) {
  .s5_main__list > dt span {
    padding: 0;
    background: none;
  }
}

.s5_main__list > dd {
  padding: 10px;
  width: 80%;
}
@media (min-width: 961px) {
  .s5_main__list > dd {
    padding: 30px;
  }
}

@media (min-width: 961px) {
  .s5_main_yakuin__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.s5_main_yakuin__list dl {
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  border-bottom: solid 1px #21A0A0;
}
@media (min-width: 961px) {
  .s5_main_yakuin__list dl {
    width: 50%;
  }
}

.s5_main_yakuin__list dl:first-of-type {
  width: 100%;
}

.s5_main_yakuin__list dt {
  margin-right: 20px;
  font-size: 15px;
  font-weight: bold;
}
@media (min-width: 961px) {
  .s5_main_yakuin__list dt {
    width: auto;
  }
}

.s5_main_yakuin__list dd {
  width: 60%;
}
@media (min-width: 961px) {
  .s5_main_yakuin__list dd {
    width: auto;
  }
}

.s5_main__list > dd.s5_main_yakuin__list {
  padding: 0;
  width: 100%;
}
.purpose-box_bg {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.purpose-box_bg::after {
  background: url("../images/pic_purposebox01.png") no-repeat center;
  background-size: cover;
  content: "";
  display: block;
  width: 700px;
  height: 100%;
  position: absolute;
  top: 0px;
  right: -100px;
  opacity: 0.3;
  z-index: -1;
}
@media (max-width: 600px) {
  .purpose-box_bg::after {
    width: 520px;
  }
}

@media (max-width: 600px) {
  .part-outer .part-outer_col .text_underwrap {
    flex-direction: column;
    width: 100%;
  }
}

.part-outer .part-outer_col .text_underwrap li {
  width: calc((100% / 3) - 10px);
}
.part-outer .part-outer_col .text_underwrap li a {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .part-outer .part-outer_col .text_underwrap li {
    width: calc((100% / 2) - 10px);
  }
}
@media screen and (max-width: 600px) {
  .part-outer .part-outer_col .text_underwrap li {
    width: 100%;
    margin-left: 0;
  }
}

/* Scss Document */
#Cont {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.container {
  padding: 0 16px;
}
@media (min-width: 961px) {
  .container {
    max-width: 1200px;
    margin: auto;
    position: relative;
  }
}

@media screen and (max-width: 1024px) {
  .js-scrollable {
    display: none;
  }
}
.h2_top_ns {
  position: relative;
  text-align: center;
  display: inline-block;
  transform: translate(-50%, -50%);
  left: 50%;
  margin-top: 100px;
}

.h2_top_ns::after {
  content: "";
  background: url("../images/ico_bell01.svg") no-repeat;
  background-size: 30px auto;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 0;
  right: 5%;
}

.h2_top_repo {
  position: relative;
  text-align: center;
  display: inline-block;
  transform: translate(-50%, -50%);
  left: 50%;
}
.h2_top_repo::after {
  content: "";
  background: url("../images/ico_repo01.svg") no-repeat;
  background-size: 30px auto;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 0;
  right: 5%;
}

.h2_top_ar {
  position: relative;
  display: inline-block;
  margin: 30px;
}
.h2_top_ar::after {
  content: "";
  background: url("../images/ico_zip01.svg") no-repeat;
  background-size: 25px auto;
  height: 25px;
  width: 25px;
  position: absolute;
  top: 0;
  right: 5%;
}
@media screen and (max-width: 1024px) {
  .h2_top_ar {
    float: right;
    margin: 10px;
  }
}

.h2_top_busi {
  position: relative;
  text-align: center;
  display: inline-block;
  transform: translate(-50%, -50%);
  left: 50%;
  margin-top: 100px;
}
.h2_top_busi::after {
  content: "";
  background: url("../images/ico_busi01.svg") no-repeat;
  background-size: 30px auto;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 0;
  right: 5%;
}

.h2_top_ab {
  position: relative;
  display: inline-block;
  margin: 30px;
  float: right;
}
.h2_top_ab::after {
  content: "";
  background: url("../images/ico_about01.svg") no-repeat;
  background-size: 25px auto;
  height: 25px;
  width: 25px;
  position: absolute;
  top: 0;
  right: 8%;
}
@media screen and (max-width: 870px) {
  .h2_top_ab {
    margin: 10px;
    float: inherit;
  }
}

.h2_top_par {
  position: relative;
  text-align: center;
  display: inline-block;
  transform: translate(-50%, -50%);
  left: 50%;
  margin-top: 100px;
}
.h2_top_par::after {
  content: "";
  background: url("../images/ico_part01.svg") no-repeat;
  background-size: 30px auto;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 0;
  right: 2%;
}

.top_ttl_tmp {
  position: relative;
  font-size: 34px;
  padding: 0 44px;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 601px) {
  .top_ttl_tmp {
    font-size: 28px;
  }
}

.top_ttl_tmp span {
  color: #21A0A0;
  font-size: 16px !important;
  display: block;
}

.top_ttl_tmp:before, .top_ttl_tmp:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 25px;
  height: 3px;
  background-color: #21A0A0;
}

.top_ttl_tmp:before {
  left: 0;
}

.top_ttl_tmp:after {
  right: 0;
}

.ttl-tmp_offset::after,
.ttl-tmp_offset::before {
  content: "";
  display: none;
}

.pd-offset_L {
  padding: 0px 55px 0px 0px;
}

.report-outer {
  position: relative;
}

.report-outer::after {
  content: "";
  background: url(../images/heroarea_shadow.svg) no-repeat center;
  background-size: cover;
  height: 60%;
  width: 100vw;
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translate(-50%, -90%);
  z-index: -10;
}
@media screen and (max-width: 1024px) {
  .report-outer::after {
    bottom: -60% !important;
    height: 60% !important;
  }
}

.report-outer .report-box__inner {
  display: flex;
  position: relative;
  justify-content: center;
  height: 100%;
  overflow: inherit;
  padding: 0.5em;
}
@media screen and (max-width: 1024px) {
  .report-outer .report-box__inner {
    overflow-y: hidden;
    overflow-x: scroll;
    justify-content: start;
  }
}
@media (max-width: 600px) {
  .report-outer .report-box__inner {
    overflow-y: hidden;
    overflow-x: scroll;
  }
}
.report-outer .report-box__col {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  display: block;
  border-radius: 20px;
  padding: 1em;
  background: #fff;
  width: 26%;
  margin-left: 40px;
  height: 100%;
  cursor: pointer;
}
.report-outer .report-box__col:nth-child(n+2) {
  animation-delay: 0.1s;
}
@media screen and (max-width: 1024px) {
  .report-outer .report-box__col {
    min-width: 300px;
  }
}
@media screen and (max-width: 420px) {
  .report-outer .report-box__col {
    width: 300px !important;
    margin-left: 20px;
  }
}
@media screen and (max-width: 360px) {
  .report-outer .report-box__col {
    min-width: 250px;
    width: 250px;
  }
}
.report-outer .report-box__col:first-child {
  margin-left: 0 !important;
}
.report-outer .report-box__thum {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .report-outer .report-box__thum {
    margin: 0 auto;
  }
}
.report-outer .report-box__thum img {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
.report-outer .report-box__title {
  padding: 0.2em 0;
  font-weight: bold;
  color: #21A0A0;
  font-size: 1.5em;
}
.report-outer .report-box__txt {
  word-break: break-all;
  color: black !important;
}
.report-outer .sub-btn {
  text-decoration: none;
  color: #21A0A0 !important;
  display: inline-block;
  background: url(../images/ico_ar_r01.svg) no-repeat center left;
  background-size: 20px 21px;
  line-height: 1.2em;
  padding: 12px 0px 12px 50px;
  box-sizing: border-box;
  font-weight: bold;
  border-bottom: 1px solid #21A0A0;
  text-align: right;
}

.archive-outer {
  display: flex;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  height: 400px;
  width: 100%;
}
@media screen and (max-width: 870px) {
  .archive-outer {
    flex-direction: column-reverse;
  }
}
.archive-outer .archive-outer__col {
  width: 50%;
  position: absolute;
}
@media screen and (max-width: 870px) {
  .archive-outer .archive-outer__col {
    width: 95%;
    bottom: 0;
  }
}
.archive-outer .archive-outer__col:first-child {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  left: 5%;
  padding: 1em;
  z-index: 1;
  box-sizing: border-box;
  animation-delay: 0.1s;
}
@media screen and (max-width: 870px) {
  .archive-outer .archive-outer__col:first-child {
    padding: 0.5em;
    position: static;
    margin-left: auto;
    margin-top: -25px;
  }
}
.archive-outer .archive-outer__txt {
  width: 95%;
  margin: 0 auto;
}
.archive-outer .archive-outer__col:nth-of-type(2) {
  right: 5%;
  top: 10vh;
}
@media screen and (max-width: 870px) {
  .archive-outer .archive-outer__col:nth-of-type(2) {
    position: static;
    height: 300px;
  }
}

.busi-outer .busi-outer_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 951px) {
  .busi-outer .busi-outer_inner {
    flex-direction: column;
  }
}
.busi-outer .busi-outer_col {
  margin-left: 60px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  padding: 1em;
  box-sizing: border-box;
  border-radius: 20px 20px 0px 0px;
  min-width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 270px;
  border-bottom: 5px solid #21A0A0;
}
@media screen and (max-width: 951px) {
  .busi-outer .busi-outer_col {
    width: 100%;
    margin-left: 0px;
    height: 100px;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 20px;
  }
}
.busi-outer .busi-outer_col:nth-child(n+2) {
  animation-delay: 0.1s;
}
.busi-outer .busi-outer_col:first-child {
  margin-left: 0px;
}
@media screen and (max-width: 951px) {
  .busi-outer .busi-outer_col .busi-outer_img {
    text-align: center;
    display: inline;
    width: 25%;
  }
  .busi-outer .busi-outer_col .busi-outer_img img {
    height: 60px !important;
  }
}
.busi-outer .busi-outer_title {
  font-weight: bold;
  color: #21A0A0;
  font-size: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 951px) {
  .busi-outer .busi-outer_title {
    margin-left: 30px;
    font-size: 18px;
    margin-top: 0;
    letter-spacing: 0;
  }
}

.about-outer {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  position: relative;
  box-sizing: border-box;
  height: 400px;
  width: 100%;
}
@media screen and (max-width: 870px) {
  .about-outer {
    flex-direction: column-reverse;
  }
}
.about-outer .about-outer__col {
  width: 50%;
  position: absolute;
}
@media screen and (max-width: 870px) {
  .about-outer .about-outer__col {
    width: 95%;
    bottom: 0;
  }
}
.about-outer .about-outer__col:first-child {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  right: 5%;
  padding: 1em;
  z-index: 1;
  box-sizing: border-box;
}
@media screen and (max-width: 870px) {
  .about-outer .about-outer__col:first-child {
    padding: 0.5em;
    position: static;
    margin-right: auto;
    margin-top: -25px;
  }
}
.about-outer .about-outer__txt {
  width: 90%;
  margin: 0 auto;
}
.about-outer .about-outer__col:nth-of-type(2) {
  left: 5%;
  top: 10vh;
  animation-delay: 0.1s;
}
@media screen and (max-width: 870px) {
  .about-outer .about-outer__col:nth-of-type(2) {
    position: static;
    height: 300px;
    margin-left: auto;
  }
}

.part-outer .part-outer_col ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
}
.part-outer .part-outer_col ul li {
  margin-left: 10px;
}
.part-outer .part-outer_col ul li:nth-child(n+2) {
  animation-delay: 0.1s;
}
.part-outer .part-outer_col ul li::before {
  display: none;
}
@media screen and (max-width: 660px) {
  .part-outer .part-outer_col ul li {
    width: 100%;
  }
}
.part-outer .part-outer_col ul li a {
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
  background: #E5EFEE url(../images/ico_ar_r01.svg) no-repeat center left 14px;
  background-size: 20px 21px;
  border-radius: 100px;
  color: #21A0A0;
  line-height: 1.2em;
  padding: 12px 20px 12px 50px;
  box-sizing: border-box;
  font-weight: bold;
}
@media screen and (max-width: 660px) {
  .part-outer .part-outer_col ul li a {
    width: 100%;
    padding: 12px 10px 12px 60px;
  }
}
.part-outer .part-outer_col #cp01 {
  display: none;
}
@media screen and (max-width: 660px) {
  .part-outer .part-outer_col .cp_box *, .part-outer .part-outer_col .cp_box *:before, .part-outer .part-outer_col .cp_box *:after {
    box-sizing: border-box;
  }
  .part-outer .part-outer_col .cp_box {
    position: relative;
  }
  .part-outer .part-outer_col .cp_box label {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 140px;
    /* グラデーションの高さ */
    cursor: pointer;
    display: inline-block;
    text-align: center;
    /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
    background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
  }
  .part-outer .part-outer_col .cp_box input:checked + label {
    background: inherit;
    /* 開いた時にグラデーションを消す */
  }
  .part-outer .part-outer_col .cp_box label:after {
    line-height: 2.5rem;
    position: absolute;
    z-index: 2;
    bottom: 0px;
    left: 50%;
    font-family: "Font Awesome 5 Free";
    content: "" " 全て表示";
    transform: translate(-50%, 0);
    color: #21A0A0;
    border-bottom: 2px solid #21A0A0;
    font-weight: bold;
  }
  .part-outer .part-outer_col .cp_box input {
    display: none;
  }
  .part-outer .part-outer_col .cp_box .cp_container {
    overflow: hidden;
    height: 250px;
    /* 開く前に見えている部分の高さ */
    transition: all 0.5s;
  }
  .part-outer .part-outer_col .cp_box input:checked + label {
    /* display: none ; 閉じるボタンを消す場合解放 */
  }
  .part-outer .part-outer_col .cp_box input:checked + label:after {
    font-family: "Font Awesome 5 Free";
    content: "" " 閉じる";
  }
  .part-outer .part-outer_col .cp_box input:checked ~ .cp_container {
    height: auto;
    padding-bottom: 80px;
    /* 閉じるボタンのbottomからの位置 */
    transition: all 0.5s;
  }
}

.index-banner {
  padding-left: 10px;
  padding-right: 10px;
}

.index-banner .index-banner_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  width: 100%;
}
@media screen and (max-width: 420px) {
  .index-banner .index-banner_list {
    flex-direction: column;
  }
}
.index-banner .index-banner_list .index-section-list__item {
  margin: 10px;
  width: calc((100% / 4) - 20px);
}
@media screen and (max-width: 800px) {
  .index-banner .index-banner_list .index-section-list__item {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 420px) {
  .index-banner .index-banner_list .index-section-list__item {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .index-banner .index-banner_list .index-section-list__item a {
    width: 100%;
  }
}

.mypattern .slick-slide:not(.slick-center) {
  transform: scale(0.8);
}
@media (max-width: 600px) {
  .mypattern .slick-slide:not(.slick-center) {
    transform: scale(1);
  }
}

.mypattern {
  position: relative;
}

.mypattern::before {
  content: "";
  background: url("../images/heroarea_shadow.svg") no-repeat center;
  background-size: cover;
  height: 60%;
  width: 100vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slider {
  width: 90%;
  margin: 20px auto 80px;
}
@media (max-width: 600px) {
  .slider .slider {
    margin: 20px auto 50px;
  }
}

.slick-slide img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.mypattern {
  width: 100%;
}

.mypattern .slick-slide {
  margin: 5px;
}

.news-block {
  max-height: 350px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  max-width: 80%;
  margin: 0 auto;
  overflow-x: hidden;
}
@media (max-width: 600px) {
  .news-block {
    max-width: 100%;
  }
}

.news-block a {
  text-decoration: none;
  color: #181818;
  background: #F4F4F4;
  display: flex;
  align-items: center;
  margin: 0px 0 20px;
  border-radius: 7vh;
  padding: 0.5em 0.6em 0.5em 15px;
  box-sizing: border-box;
}
.news-block a:nth-child(n+2) {
  animation-delay: 0.1s;
}
.news-block a::before {
  content: "";
  background: url("../images/ico_ar_r01.svg") no-repeat center center;
  background-size: 28px;
  min-width: 30px;
  height: 30px;
  display: block;
  margin-right: 15px;
}

.news-block article {
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.news-block article .news-item__thumb {
  max-width: 50px;
  height: 100%;
  margin-right: 15px;
  overflow: hidden;
}
.news-block article .news-item__thumb img {
  width: 100%;
}
.news-block article .news-item__time {
  color: #21A0A0;
  display: block;
  font-size: 0.9375rem;
}
.news-block article .news-item__time .news-item__new {
  color: #d22800;
  padding-left: 0.5em;
}
.news-block article .news-item__time .news-item__category {
  color: #000;
  padding-left: 0.5em;
}
@media screen and (max-width: 950px) {
  .news-block article .news-item__time .news-item__category {
    display: inline-block;
    padding-left: 0;
  }
}

.pageContent .news-block {
  width: 100%;
}
.pageContent .news-block .news-item__txt {
  font-size: 1rem;
}

.news-layout {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  .news-layout {
    flex-direction: column;
  }
}

.news-layout .news-inner {
  width: calc(100% - 240px - 100px);
}
@media screen and (max-width: 950px) {
  .news-layout .news-inner {
    width: auto;
  }
}
.news-layout .news-layout_select select {
  border: 1px solid #21A0A0;
  padding: 1em;
}
.news-layout .news-block {
  max-width: 100%;
  overflow: inherit;
  max-height: none;
}
.news-layout .news-block a {
  border-radius: 15px !important;
  width: 100%;
  box-sizing: border-box;
}
.news-layout .NewsCount {
  margin: 20px 0;
}
.news-layout .NewsCount p {
  text-align: center;
}
.news-layout .NewsCountList ul {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 950px) {
  .news-layout .NewsCountList ul {
    flex-wrap: wrap;
  }
}
.news-layout .NewsCountList ul li {
  margin-left: 20px;
}
.news-layout .NewsCountList ul li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 1120px) {
  .news-layout .NewsCountList ul li {
    margin-left: 0;
    width: calc((100% / 2) - 20px);
  }
}
.news-layout .NewsCountList ul li:nth-of-type(1) a,
.news-layout .NewsCountList ul li:nth-of-type(2) a {
  text-decoration: none;
  margin-bottom: 20px;
  color: #21A0A0;
  display: inline-block;
  background: #E5EFEE url(../images/ico_ar_l01.svg) no-repeat center left 14px;
  background-size: 20px 21px;
  border-radius: 100px;
  color: #21A0A0;
  line-height: 1.2em;
  padding: 12px 70px;
  box-sizing: border-box;
  font-weight: bold;
}
@media screen and (max-width: 1120px) {
  .news-layout .NewsCountList ul li:nth-of-type(1) a,
.news-layout .NewsCountList ul li:nth-of-type(2) a {
    padding: 12px 30px 12px 40px;
    width: 90%;
  }
}
.news-layout .NewsCountList ul li:nth-of-type(3) a,
.news-layout .NewsCountList ul li:nth-of-type(4) a {
  text-decoration: none;
  margin-bottom: 20px;
  color: #fff !important;
  display: inline-block;
  background: #21A0A0 url(../images/ico_ar_r02.svg) no-repeat center right 14px;
  background-size: 20px 21px;
  border-radius: 100px;
  color: #353B48;
  line-height: 1.2em;
  padding: 12px 70px;
  box-sizing: border-box;
  font-weight: bold;
}
@media screen and (max-width: 1120px) {
  .news-layout .NewsCountList ul li:nth-of-type(3) a,
.news-layout .NewsCountList ul li:nth-of-type(4) a {
    padding: 12px 40px 12px 30px;
    width: 90%;
  }
}

.newslist-category {
  width: 240px;
  border: solid 2px #21A0A0;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

@media screen and (max-width: 950px) {
  .newslist-category {
    width: 100%;
  }
}
.newslist-category__heading {
  background: #21A0A0;
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 14px 20px;
  letter-spacing: 0.1em;
}

.newslist-category__list {
  padding: 20px;
}

.newslist-category__list li:not(:last-child) {
  margin-bottom: 10px;
}

.newslist-category__link {
  position: relative;
  text-decoration: none;
  color: #181818;
  padding: 0 0 0 16px;
  transition: 0.3s;
}

.newslist-category__link:hover {
  color: #21A0A0;
}

.newslist-category__link:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.9em;
  left: 0;
  margin: auto;
  width: 8px;
  height: 2px;
  background: #21A0A0;
}

/* Scss Document */
/*プレページからの移設のためカラーやbace,detailのスタイルが入っていますが、基本的にはベース関連のスタイルは
別フォルダへ移動してください。*/
.none_sp {
  display: none;
}

@media (min-width: 601px) {
  .none_sp {
    display: block;
  }
}
.none_pc {
  display: block;
}

@media (min-width: 601px) {
  .none_pc {
    display: none;
  }
}
/*レイアウト関連*/
.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*タイトル*/
.h2_title span {
  position: relative;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
  display: block;
  color: #00B900;
  letter-spacing: normal;
}

.h2_title span::after {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  background-image: -webkit-repeating-linear-gradient(135deg, #00B900, #00B900 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #00B900, #00B900 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  backface-visibility: hidden;
}

.box_line {
  border: #00B900 3px solid;
  padding: 1em !important;
  background: #fff;
  margin: 40px auto !important;
  width: 45vw !important;
}

@media screen and (max-width: 950px) {
  .box_line {
    margin: 50px 10px 0px !important;
    transform: translate(0, -30%);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
    width: auto !important;
  }
}
.box_line p {
  font-size: 1.125em;
}

/*フォント関連*/
.text_center {
  text-align: center;
}

.font_orange_L {
  font-size: 1.375rem;
  color: #E26B10;
}

.color-blue {
  color: #036EB8;
}

.color-white {
  color: #fff;
}

.color-red {
  color: #c33;
}

.color-secondary {
  color: #353B48;
}

.foL {
  font-size: 1.5em;
}

.foM {
  font-size: 1.125em;
}

.marker_green {
  background: linear-gradient(transparent 70%, #66FFCC 70%);
  display: inline;
}

.marker_yellow {
  display: inline;
  background: linear-gradient(transparent 70%, rgba(245, 203, 92, 0.4) 70%);
}

.marker_green a {
  color: #000;
}

/*フォント関連 end*/
/*ボタン*/
.line_btn {
  width: 360px;
  margin: 0 auto;
}

.line_btn a {
  display: block;
  color: #fff;
  padding: 9px 40px 9px 96px;
  margin: 20px auto;
  background-size: 18px;
  background: #00B900 url("../../images/ico_line01.svg") no-repeat center left 14px;
}

@media screen and (max-width: 950px) {
  .line_btn {
    width: 100% !important;
  }

  .line_btn a {
    padding: 20px 32px 20px 60px;
    box-sizing: border-box;
    text-align: center;
  }
}
/*ボタン end*/
/*float*/
.floatL_pc {
  display: block;
}

@media (min-width: 961px) {
  .floatL_pc {
    float: left;
  }
}
/*リストスタイル*/
ul.cp_list {
  list-style: none;
}

ul.cp_list li {
  position: relative;
  padding: 0em 1em 0em 1.5em;
  margin-bottom: 5px;
}

ul.cp_list li:after,
ul.cp_list li:before {
  content: "";
  position: absolute;
}

ul.cp_list li:after {
  top: 0.5em;
  left: 0em;
  width: 14px;
  height: 14px;
  background: #036EB8;
}

/*リストスタイル end*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

.clearfix {
  display: block;
}

.spBlock {
  display: block;
}

@media (min-width: 961px) {
  .spBlock {
    display: inline-block;
  }
}
.spOnly {
  display: none;
}

@media (max-width: 480px) {
  .spOnly {
    display: block;
  }
}
@media (max-width: 680px) {
  .spOnly {
    display: block;
  }
}
.margin1em {
  margin: 1em;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

.mtb40 {
  margin: 40px 0;
}

.mtb70 {
  margin: 70px 0;
}

.mb10 {
  margin-bottom: 10px;
}

.ml20_Pc {
  margin-left: 20px;
}

@media (max-width: 480px) {
  .ml20_Pc {
    margin-left: 0px !important;
  }
}
.offset-transform {
  transform: translate(0, 0);
}

/* ------------------------------ 上 */
/* ------------------------------ 右 */
/* ------------------------------ 下 */
/* ------------------------------ 左 */
.h2_ttl_teaser {
  width: 100%;
  background: url("../../images/ttl_bg.jpg") center no-repeat;
  display: block;
  height: 420px;
  background-size: cover;
  margin-top: -80px;
}

.h2_ttl_teaser span {
  width: 100%;
  background: url("../../images/inner_ttl.png") center no-repeat;
  display: block;
  background-size: contain;
  margin: 0 auto;
  height: 280px;
  transform: translateY(30%);
}

.h2_ttl_teaser_test {
  width: 100%;
  background: url("../../images/ttl_bg.jpg") center no-repeat;
  display: block;
  height: 420px;
  background-size: cover;
  margin-top: -80px;
}

.h2_ttl_teaser_test span {
  width: 100%;
  background: url("../../images/inner_ttl_02.png") center no-repeat;
  display: block;
  background-size: contain;
  margin: 0 auto;
  height: 320px;
  transform: translateY(20%);
}

@-moz-document url-prefix() {
  /* firefox */
  .h2_ttl_teaser span {
    transform: translateY(41%);
  }
}
@media (max-width: 680px) {
  .h2_ttl_teaser {
    height: 48vh;
  }

  .h2_ttl_teaser_test {
    height: 48vh;
  }

  .h2_ttl_teaser span {
    width: 100%;
    background: url("../../images/inner_ttl_sp.png") center no-repeat;
    display: block;
    height: 30vh;
    background-size: contain;
  }

  .h2_ttl_teaser_test span {
    width: 100%;
    background: url("../../images/inner_ttl_02_sp.png") center no-repeat;
    display: block;
    height: 30vh;
    background-size: contain;
  }
}
@media (max-width: 480px) {
  .h2_ttl_teaser {
    height: 49vh;
  }

  .h2_ttl_teaser_test {
    height: 48vh;
  }

  .h2_ttl_teaser span {
    width: 100%;
    background: url("../../images/inner_ttl_sp.png") center no-repeat;
    display: block;
    height: 30vh;
    background-size: contain;
  }

  .h2_ttl_teaser_test span {
    width: 100%;
    background: url("../../images/inner_ttl_02_sp.png") center no-repeat;
    display: block;
    height: 30vh;
    background-size: contain;
  }
}
@media all and (-ms-high-contrast: none) {
  /* IE */
  .h2_ttl_teaser span {
    height: 260px;
    transform: translateY(40%);
  }
}
@-moz-document url-prefix() {
  /* firefox */
  .h2_ttl_teaser span {
    height: 260px;
    transform: translateY(40%);
  }
}
.h3_title {
  border-bottom: solid 3px #cce4ff;
  position: relative;
}

.h3_title:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #5472cd;
  bottom: -3px;
  width: 20%;
}

.sub-visual {
  background: url("../../images/img_sv01.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 300px;
  position: relative;
  -ms-flex: 0 1 auto;
}

.sub-visual_02 {
  background: url("../../images/img_sv02.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 300px;
  position: relative;
  -ms-flex: 0 1 auto;
}

.sub-visual .inner {
  padding: 1em;
  width: 84%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sub-visual_02 .inner {
  padding: 1em;
  width: 84%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media all and (-ms-high-contrast: none) {
  /* IE */
  .sub-visual .inner p {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .sub-visual .inner {
    padding: 1em;
    width: 90%;
    margin: 0 auto;
    position: inherit !important;
    top: 0;
    left: 0;
    transform: translate(0%, 0%) !important;
  }

  .sub-visual {
    height: 80%;
    position: relative;
  }
}
.border-waves {
  background: url("../../images/border_wave.svg") no-repeat center;
  display: block;
  background-size: cover;
  width: 100%;
  height: 8px;
}

.flow {
  border: 3px solid #D3E86E;
  margin-left: 0 !important;
}

.flow > li {
  padding: 1em;
}

.flow > li:not(:last-child) {
  border-bottom: 3px solid #D3E86E;
  position: relative;
}

.flow > li:not(:last-child)::before,
.flow > li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: inherit !important;
  margin: inherit !important;
  height: inherit !important;
  width: inherit !important;
  border-radius: inherit !important;
}

.flow > li:not(:last-child)::before {
  border-width: 22px;
  border-top-color: #D3E86E;
}

.flow > li:not(:last-child)::after {
  border-width: 18px;
  border-top-color: #fff;
}

.flow > li:last-child::before {
  background: inherit !important;
}

.flow > li dl {
  margin: 0;
  display: flex;
  align-items: flex-start;
}

.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
  min-width: 23%;
}

@media (max-width: 680px) {
  .flow > li dl {
    flex-direction: column;
  }

  .flow > li dl dt {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .flow > li dl {
    flex-direction: column;
  }

  .flow > li dl dt {
    width: 100%;
  }
}
.flow > li dl dt .icon {
  color: #000;
  background: #D3E86E;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
}

.btn-wrap {
  margin: 50px 0;
}

.btn-c {
  position: relative;
  background: #e94919;
  min-width: 60vw;
  display: block;
  margin: 0 auto;
  padding: 0.6em 0;
  font-weight: bold;
  border-radius: 1vh;
}

@media (max-width: 680px) {
  .btn-c {
    width: auto;
  }

  .ball-ttl {
    position: inherit !important;
    padding: 0.6em !important;
    width: inherit !important;
  }
}
@media (max-width: 480px) {
  .btn-c {
    width: auto;
  }

  .ball-ttl {
    position: inherit !important;
    padding: 0.6em !important;
  }
}
.btn-c .ball-ttl {
  font-size: 1.5rem;
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 0.2rem 0;
  color: #d44114;
  border: 2px solid #d44114;
  border-radius: 100vh;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  letter-spacing: normal;
}

/**/
.lecture_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-basis: auto;
}

.lecture_wrap2 {
  max-width: 900px;
  margin: 0 auto;
}

.border-box {
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 680px) {
  .lecture_wrap {
    flex-direction: column;
  }

  .lecture_wrap .lecture_box {
    width: inherit !important;
    max-width: inherit !important;
  }

  .lecture_wrap .speaker_list {
    width: inherit !important;
    margin-left: 0px !important;
    margin-top: 40px;
  }

  .speaker_list img {
    width: 25vw !important;
  }

  .speaker_list .col {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.lecture_wrap .speaker_list {
  width: 40%;
  margin-left: 80px;
}

.lecture_col h3 {
  position: relative;
  overflow: hidden;
}

.lecture_col h3 span {
  background: #036EB8;
  display: inline-block;
  color: #fff;
  padding: 0.3em 1em;
}

.lecture_col h3::after {
  content: "";
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #036EB8;
  position: absolute;
  bottom: 0;
  box-sizing: border-box;
}

.speaker_list h3 {
  position: relative;
  font-size: 26px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.speaker_list h3::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #036EB8;
  margin-left: 30px;
}

.speaker_list .col {
  display: flex;
  align-items: center;
}

.speaker_list .col .speaker_name {
  margin-left: 20px;
  border-bottom: 1px solid #036EB8;
}

.speaker_list img {
  width: 10vw;
  border: 2px solid #036EB8;
  border-radius: 100vh;
}

.progress_box dl {
  display: flex;
}

@media (max-width: 680px) {
  .progress_box dl {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .progress_box dl dt {
    width: 30vw !important;
    margin-bottom: 10px;
  }

  .progress_box dl dd {
    width: auto !important;
    margin-left: 0 !important;
  }
}
.progress_box dl dt {
  width: 25%;
}

.progress_box dl dd {
  margin-left: 30px;
  width: 75%;
}

.flow-timeline {
  padding-left: 20px;
  position: relative;
}

.flow-timeline::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
}

.flow-timeline > li {
  position: relative;
}

.flow-timeline > li:not(:last-child) {
  margin-bottom: 2vh;
}

.flow-timeline > li dl {
  padding-left: 70px;
  position: relative;
  display: flex;
}

.flow-timeline > li dl::before,
.flow-timeline > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow-timeline > li::before {
  display: none !important;
}

.flow-timeline > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #6b90db;
  border-radius: 50%;
  left: -4px;
}

.flow-timeline > li:nth-of-type(3) dl dt,
.flow-timeline > li:nth-of-type(4) dl dt {
  min-width: 116px;
  position: relative;
}

.flow-timeline > li .time_part {
  display: inline-block;
  background: #6b90db;
  color: #fff;
  padding: 0 0.3em;
}

.flow-timeline > li:nth-of-type(3) dl dt::after,
.flow-timeline > li:nth-of-type(4) dl dt::after {
  border-right: 1px solid #6b90db;
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  position: absolute;
  top: 0;
  right: 1px;
}

.flow-timeline > li:nth-of-type(3) dl::before,
.flow-timeline > li:nth-of-type(4) dl::before {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #6b90db;
  border-radius: 50%;
  left: -10px;
}

.flow-timeline > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow-timeline > li dl dt {
  font-weight: 600;
  color: #6b90db;
}

.flow-timeline > li dl dd {
  margin-left: 20px;
}

@media (max-width: 680px) {
  .scroll {
    overflow: scroll !important;
  }

  .flow-timeline {
    display: block;
    width: 200%;
  }

  .scroll_read {
    background: #ECECEC;
    margin: 10px auto;
    display: inline-block;
    padding: 0 1em;
    border-radius: 100vh;
  }

  .scroll_read::after {
    width: 0;
    height: 0;
    border-left: 7px solid black;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    content: "";
    display: inline-block;
    margin-left: 10px;
  }
}
.intro_outer .inner .inner_col {
  width: 100%;
}

.intro_outer .inner .inner_col dl {
  display: flex;
  box-sizing: border-box;
}

.intro_outer .inner .inner_col dl dt {
  width: 20%;
}

.intro_outer .inner .inner_col dl dd {
  width: 80%;
}

@media (max-width: 680px) {
  .intro_outer .inner .inner_col dl {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .intro_outer .inner .inner_col dl dt {
    width: 40vw;
  }

  .intro_outer .inner .inner_col dl dd {
    width: auto !important;
  }
}
.asset01 {
  position: relative;
  overflow: hidden;
}

.asset01::after {
  content: "";
  background: url("../../images/pic_asset01.svg") no-repeat center center;
  background-size: 200px auto;
  width: 200px;
  height: 200px;
  display: block;
  position: absolute;
  right: 0%;
  top: 0%;
  opacity: 0.15;
}

.asset02 {
  position: relative;
  overflow: hidden;
}

.asset02::after {
  content: "";
  background: url("../../images/pic_asset02.png") no-repeat center center;
  background-size: cover;
  width: 1000px;
  height: 200px;
  display: block;
  position: absolute;
  right: 0%;
  bottom: 0%;
  opacity: 0.1;
}

.progress_box {
  margin: 40px auto 0;
  max-width: 600px;
}

@media (max-width: 680px) {
  .fos {
    font-size: 0.813em;
    line-height: 1.5;
  }
}

.div_info_plan {
  width: 100%;
  box-sizing: border-box;
  display: flex;
}
@media (max-width: 680px) {
  .div_info_plan {
    flex-direction: column;
  }
}
.div_info_plan .lecture_col {
  background: #ffe67a;
  padding: 1em;
  width: calc(100% / 2);
}
@media (max-width: 680px) {
  .div_info_plan .lecture_col {
    width: 100%;
    box-sizing: border-box;
  }
}
.div_info_plan .lecture_col h3 span {
  background: #fff;
  color: #036eb8;
}
.div_info_plan .lecture_col h3::after {
  border-bottom: 1px solid #fff;
}

.lecture_col_color {
  background: #036eb8 !important;
}
.lecture_col_color .txt {
  color: #fff;
}
.lecture_col_color h3::after {
  border-bottom: 1px solid #fff;
}
.lecture_col_color h3 span {
  background: #fff !important;
  color: #036eb8;
}

.div_info_plan02 {
  padding: 16px;
  border-radius: 2px;
  border: solid 2px #21A0A0;
  background: #fff;
  box-sizing: border-box;
}

.end_content {
  position: relative !important;
}

.end_content::after {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.6) !important;
  position: absolute;
  box-sizing: border-box;
  z-index: 2;
}

.end_content::before {
  content: "このイベントは終了いたしました" !important;
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: bold;
  color: #fff;
  transform: translate(-50%, -50%);
  z-index: 3;
}

@media (max-width: 680px) {
  .w100per {
    width: 100% !important;
  }
}

.btn_third {
  border: 1px solid #21A0A0;
  text-decoration: none;
  margin-bottom: 20px;
  color: #fff !important;
  display: inline-block;
  background: #fff url(../images/ico_ar_r01.svg) no-repeat center left 14px;
  background-size: 20px 21px;
  border-radius: 100px;
  color: #21A0A0 !important;
  line-height: 1.2em;
  padding: 12px 70px;
  box-sizing: border-box;
  font-weight: bold;
  text-decoration: none !important;
}

.color-blue02 {
  color: #6B4DDB !important;
}

.base-blue02 {
  background: #6B4DDB !important;
}

.base-blue-content::before {
  content: "";
  background: #6B4DDB !important;
  z-index: 1;
}

.pict_title {
  background: #21A0A0;
  font-size: 1.625rem;
  text-align: center;
  color: #fff;
  padding: 0.2em 1em;
  box-sizing: border-box;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[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;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: #21A0A0;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #21A0A0;
  opacity: 0.75;
}

/**
 * Copyright (c) 2016 Connor Atherton
 *
 * All animations must live in their own file
 * in the animations directory and be included
 * here.
 *
 */
/**
 * Styles shared by multiple animations
 */
/**
 * Dots
 */
@keyframes scale {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  45% {
    transform: scale(0.1);
    opacity: 0.7;
  }
  80% {
    transform: scale(1);
    opacity: 1;
  }
}
.ball-pulse > div:nth-child(1) {
  animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse > div:nth-child(2) {
  animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse > div:nth-child(3) {
  animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
}
@keyframes ball-pulse-sync {
  33% {
    transform: translateY(10px);
  }
  66% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.ball-pulse-sync > div:nth-child(1) {
  animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}

.ball-pulse-sync > div:nth-child(2) {
  animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
}

.ball-pulse-sync > div:nth-child(3) {
  animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
}

.ball-pulse-sync > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
}
@keyframes ball-scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.ball-scale > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  animation: ball-scale 1s 0s ease-in-out infinite;
}

@keyframes ball-scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.ball-scale > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  animation: ball-scale 1s 0s ease-in-out infinite;
}

.ball-scale-random {
  width: 37px;
  height: 40px;
}

.ball-scale-random > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  position: absolute;
  display: inline-block;
  height: 30px;
  width: 30px;
  animation: ball-scale 1s 0s ease-in-out infinite;
}

.ball-scale-random > div:nth-child(1) {
  margin-left: -7px;
  animation: ball-scale 1s 0.2s ease-in-out infinite;
}

.ball-scale-random > div:nth-child(3) {
  margin-left: -2px;
  margin-top: 9px;
  animation: ball-scale 1s 0.5s ease-in-out infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ball-rotate {
  position: relative;
}

.ball-rotate > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  position: relative;
}

.ball-rotate > div:first-child {
  animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
}

.ball-rotate > div:before, .ball-rotate > div:after {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  content: "";
  position: absolute;
  opacity: 0.8;
}

.ball-rotate > div:before {
  top: 0px;
  left: -28px;
}

.ball-rotate > div:after {
  top: 0px;
  left: 25px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ball-clip-rotate > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  height: 26px;
  width: 26px;
  background: transparent !important;
  display: inline-block;
  animation: rotate 0.75s 0s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
@keyframes scale {
  30% {
    transform: scale(0.3);
  }
  100% {
    transform: scale(1);
  }
}
.ball-clip-rotate-pulse {
  position: relative;
  transform: translateY(-15px);
}

.ball-clip-rotate-pulse > div {
  animation-fill-mode: both;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 100%;
}

.ball-clip-rotate-pulse > div:first-child {
  background: #fff;
  height: 16px;
  width: 16px;
  top: 7px;
  left: -7px;
  animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

.ball-clip-rotate-pulse > div:last-child {
  position: absolute;
  border: 2px solid #fff;
  width: 30px;
  height: 30px;
  left: -16px;
  top: -2px;
  background: transparent;
  border: 2px solid;
  border-color: #fff transparent #fff transparent;
  animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation-duration: 1s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
.ball-clip-rotate-multiple {
  position: relative;
}

.ball-clip-rotate-multiple > div {
  animation-fill-mode: both;
  position: absolute;
  left: -20px;
  top: -20px;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-radius: 100%;
  height: 35px;
  width: 35px;
  animation: rotate 1s 0s ease-in-out infinite;
}

.ball-clip-rotate-multiple > div:last-child {
  display: inline-block;
  top: -10px;
  left: -10px;
  width: 15px;
  height: 15px;
  animation-duration: 0.5s;
  border-color: #fff transparent #fff transparent;
  animation-direction: reverse;
}
@keyframes ball-scale-ripple {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
.ball-scale-ripple > div {
  animation-fill-mode: both;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: 2px solid #fff;
  animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}
@keyframes ball-scale-ripple-multiple {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
.ball-scale-ripple-multiple {
  position: relative;
  transform: translateY(-25px);
}

.ball-scale-ripple-multiple > div:nth-child(0) {
  animation-delay: -0.8s;
}

.ball-scale-ripple-multiple > div:nth-child(1) {
  animation-delay: -0.6s;
}

.ball-scale-ripple-multiple > div:nth-child(2) {
  animation-delay: -0.4s;
}

.ball-scale-ripple-multiple > div:nth-child(3) {
  animation-delay: -0.2s;
}

.ball-scale-ripple-multiple > div {
  animation-fill-mode: both;
  position: absolute;
  top: -2px;
  left: -26px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid #fff;
  animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}
@keyframes ball-beat {
  50% {
    opacity: 0.2;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.ball-beat > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  animation: ball-beat 0.7s 0s infinite linear;
}

.ball-beat > div:nth-child(2n-1) {
  animation-delay: -0.35s !important;
}
@keyframes ball-scale-multiple {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.ball-scale-multiple {
  position: relative;
  transform: translateY(-30px);
}

.ball-scale-multiple > div:nth-child(2) {
  animation-delay: -0.4s;
}

.ball-scale-multiple > div:nth-child(3) {
  animation-delay: -0.2s;
}

.ball-scale-multiple > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  position: absolute;
  left: -30px;
  top: 0px;
  opacity: 0;
  margin: 0;
  width: 60px;
  height: 60px;
  animation: ball-scale-multiple 1s 0s linear infinite;
}
@keyframes ball-triangle-path-1 {
  33% {
    transform: translate(25px, -50px);
  }
  66% {
    transform: translate(50px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes ball-triangle-path-2 {
  33% {
    transform: translate(25px, 50px);
  }
  66% {
    transform: translate(-25px, 50px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes ball-triangle-path-3 {
  33% {
    transform: translate(-50px, 0px);
  }
  66% {
    transform: translate(-25px, -50px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.ball-triangle-path {
  position: relative;
  transform: translate(-29.994px, -37.50938px);
}

.ball-triangle-path > div:nth-child(1) {
  animation-name: ball-triangle-path-1;
  animation-delay: 0;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.ball-triangle-path > div:nth-child(2) {
  animation-name: ball-triangle-path-2;
  animation-delay: 0;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.ball-triangle-path > div:nth-child(3) {
  animation-name: ball-triangle-path-3;
  animation-delay: 0;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.ball-triangle-path > div {
  animation-fill-mode: both;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid #fff;
}

.ball-triangle-path > div:nth-of-type(1) {
  top: 50px;
}

.ball-triangle-path > div:nth-of-type(2) {
  left: 25px;
}

.ball-triangle-path > div:nth-of-type(3) {
  top: 50px;
  left: 50px;
}
@keyframes ball-pulse-rise-even {
  0% {
    transform: scale(1.1);
  }
  25% {
    transform: translateY(-30px);
  }
  50% {
    transform: scale(0.4);
  }
  75% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
    transform: scale(1);
  }
}
@keyframes ball-pulse-rise-odd {
  0% {
    transform: scale(0.4);
  }
  25% {
    transform: translateY(30px);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
    transform: scale(0.75);
  }
}
.ball-pulse-rise > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  animation-iteration-count: infinite;
  animation-delay: 0;
}

.ball-pulse-rise > div:nth-child(2n) {
  animation-name: ball-pulse-rise-even;
}

.ball-pulse-rise > div:nth-child(2n-1) {
  animation-name: ball-pulse-rise-odd;
}
@keyframes ball-grid-beat {
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
.ball-grid-beat {
  width: 57px;
}

.ball-grid-beat > div:nth-child(1) {
  animation-delay: 0.15s;
  animation-duration: 1.45s;
}

.ball-grid-beat > div:nth-child(2) {
  animation-delay: -0.02s;
  animation-duration: 0.97s;
}

.ball-grid-beat > div:nth-child(3) {
  animation-delay: 0.66s;
  animation-duration: 1.23s;
}

.ball-grid-beat > div:nth-child(4) {
  animation-delay: 0.64s;
  animation-duration: 1.24s;
}

.ball-grid-beat > div:nth-child(5) {
  animation-delay: -0.19s;
  animation-duration: 1.13s;
}

.ball-grid-beat > div:nth-child(6) {
  animation-delay: 0.69s;
  animation-duration: 1.42s;
}

.ball-grid-beat > div:nth-child(7) {
  animation-delay: 0.58s;
  animation-duration: 1.14s;
}

.ball-grid-beat > div:nth-child(8) {
  animation-delay: 0.21s;
  animation-duration: 1.17s;
}

.ball-grid-beat > div:nth-child(9) {
  animation-delay: -0.18s;
  animation-duration: 0.65s;
}

.ball-grid-beat > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  animation-name: ball-grid-beat;
  animation-iteration-count: infinite;
  animation-delay: 0;
}
@keyframes ball-grid-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.ball-grid-pulse {
  width: 57px;
}

.ball-grid-pulse > div:nth-child(1) {
  animation-delay: 0.22s;
  animation-duration: 0.9s;
}

.ball-grid-pulse > div:nth-child(2) {
  animation-delay: 0.64s;
  animation-duration: 1s;
}

.ball-grid-pulse > div:nth-child(3) {
  animation-delay: -0.15s;
  animation-duration: 0.63s;
}

.ball-grid-pulse > div:nth-child(4) {
  animation-delay: -0.03s;
  animation-duration: 1.24s;
}

.ball-grid-pulse > div:nth-child(5) {
  animation-delay: 0.08s;
  animation-duration: 1.37s;
}

.ball-grid-pulse > div:nth-child(6) {
  animation-delay: 0.43s;
  animation-duration: 1.55s;
}

.ball-grid-pulse > div:nth-child(7) {
  animation-delay: 0.05s;
  animation-duration: 0.7s;
}

.ball-grid-pulse > div:nth-child(8) {
  animation-delay: 0.05s;
  animation-duration: 0.97s;
}

.ball-grid-pulse > div:nth-child(9) {
  animation-delay: 0.3s;
  animation-duration: 0.63s;
}

.ball-grid-pulse > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  animation-name: ball-grid-pulse;
  animation-iteration-count: infinite;
  animation-delay: 0;
}
@keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    transform: scale(0.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.ball-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -10px;
}

.ball-spin-fade-loader > div:nth-child(1) {
  top: 25px;
  left: 0;
  animation: ball-spin-fade-loader 1s -0.96s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(2) {
  top: 17.04545px;
  left: 17.04545px;
  animation: ball-spin-fade-loader 1s -0.84s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(3) {
  top: 0;
  left: 25px;
  animation: ball-spin-fade-loader 1s -0.72s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(4) {
  top: -17.04545px;
  left: 17.04545px;
  animation: ball-spin-fade-loader 1s -0.6s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(5) {
  top: -25px;
  left: 0;
  animation: ball-spin-fade-loader 1s -0.48s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(6) {
  top: -17.04545px;
  left: -17.04545px;
  animation: ball-spin-fade-loader 1s -0.36s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(7) {
  top: 0;
  left: -25px;
  animation: ball-spin-fade-loader 1s -0.24s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(8) {
  top: 17.04545px;
  left: -17.04545px;
  animation: ball-spin-fade-loader 1s -0.12s infinite linear;
}

.ball-spin-fade-loader > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  position: absolute;
}
@keyframes ball-spin-loader {
  75% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
.ball-spin-loader {
  position: relative;
}

.ball-spin-loader > span:nth-child(1) {
  top: 45px;
  left: 0;
  animation: ball-spin-loader 2s 0.9s infinite linear;
}

.ball-spin-loader > span:nth-child(2) {
  top: 30.68182px;
  left: 30.68182px;
  animation: ball-spin-loader 2s 1.8s infinite linear;
}

.ball-spin-loader > span:nth-child(3) {
  top: 0;
  left: 45px;
  animation: ball-spin-loader 2s 2.7s infinite linear;
}

.ball-spin-loader > span:nth-child(4) {
  top: -30.68182px;
  left: 30.68182px;
  animation: ball-spin-loader 2s 3.6s infinite linear;
}

.ball-spin-loader > span:nth-child(5) {
  top: -45px;
  left: 0;
  animation: ball-spin-loader 2s 4.5s infinite linear;
}

.ball-spin-loader > span:nth-child(6) {
  top: -30.68182px;
  left: -30.68182px;
  animation: ball-spin-loader 2s 5.4s infinite linear;
}

.ball-spin-loader > span:nth-child(7) {
  top: 0;
  left: -45px;
  animation: ball-spin-loader 2s 6.3s infinite linear;
}

.ball-spin-loader > span:nth-child(8) {
  top: 30.68182px;
  left: -30.68182px;
  animation: ball-spin-loader 2s 7.2s infinite linear;
}

.ball-spin-loader > div {
  animation-fill-mode: both;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: green;
}
@keyframes ball-zig {
  33% {
    transform: translate(-15px, -30px);
  }
  66% {
    transform: translate(15px, -30px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes ball-zag {
  33% {
    transform: translate(15px, 30px);
  }
  66% {
    transform: translate(-15px, 30px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.ball-zig-zag {
  position: relative;
  transform: translate(-15px, -15px);
}

.ball-zig-zag > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  position: absolute;
  margin-left: 15px;
  top: 4px;
  left: -7px;
}

.ball-zig-zag > div:first-child {
  animation: ball-zig 0.7s 0s infinite linear;
}

.ball-zig-zag > div:last-child {
  animation: ball-zag 0.7s 0s infinite linear;
}
@keyframes ball-zig-deflect {
  17% {
    transform: translate(-15px, -30px);
  }
  34% {
    transform: translate(15px, -30px);
  }
  50% {
    transform: translate(0, 0);
  }
  67% {
    transform: translate(15px, -30px);
  }
  84% {
    transform: translate(-15px, -30px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes ball-zag-deflect {
  17% {
    transform: translate(15px, 30px);
  }
  34% {
    transform: translate(-15px, 30px);
  }
  50% {
    transform: translate(0, 0);
  }
  67% {
    transform: translate(-15px, 30px);
  }
  84% {
    transform: translate(15px, 30px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.ball-zig-zag-deflect {
  position: relative;
  transform: translate(-15px, -15px);
}

.ball-zig-zag-deflect > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  position: absolute;
  margin-left: 15px;
  top: 4px;
  left: -7px;
}

.ball-zig-zag-deflect > div:first-child {
  animation: ball-zig-deflect 1.5s 0s infinite linear;
}

.ball-zig-zag-deflect > div:last-child {
  animation: ball-zag-deflect 1.5s 0s infinite linear;
}

/**
 * Lines
 */
@keyframes line-scale {
  0% {
    transform: scaley(1);
  }
  50% {
    transform: scaley(0.4);
  }
  100% {
    transform: scaley(1);
  }
}
.line-scale > div:nth-child(1) {
  animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div:nth-child(2) {
  animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div:nth-child(3) {
  animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div:nth-child(4) {
  animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div:nth-child(5) {
  animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
}
@keyframes line-scale-party {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.line-scale-party > div:nth-child(1) {
  animation-delay: 0.48s;
  animation-duration: 0.54s;
}

.line-scale-party > div:nth-child(2) {
  animation-delay: -0.15s;
  animation-duration: 1.15s;
}

.line-scale-party > div:nth-child(3) {
  animation-delay: 0.04s;
  animation-duration: 0.77s;
}

.line-scale-party > div:nth-child(4) {
  animation-delay: -0.12s;
  animation-duration: 0.61s;
}

.line-scale-party > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  animation-name: line-scale-party;
  animation-iteration-count: infinite;
  animation-delay: 0;
}
@keyframes line-scale-pulse-out {
  0% {
    transform: scaley(1);
  }
  50% {
    transform: scaley(0.4);
  }
  100% {
    transform: scaley(1);
  }
}
.line-scale-pulse-out > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}

.line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
  animation-delay: -0.4s !important;
}

.line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
  animation-delay: -0.2s !important;
}
@keyframes line-scale-pulse-out-rapid {
  0% {
    transform: scaley(1);
  }
  80% {
    transform: scaley(0.3);
  }
  90% {
    transform: scaley(1);
  }
}
.line-scale-pulse-out-rapid > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  vertical-align: middle;
  animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
}

.line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) {
  animation-delay: -0.25s !important;
}

.line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) {
  animation-delay: 0s !important;
}
@keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.line-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -4px;
}

.line-spin-fade-loader > div:nth-child(1) {
  top: 20px;
  left: 0;
  animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(2) {
  top: 13.63636px;
  left: 13.63636px;
  transform: rotate(-45deg);
  animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(3) {
  top: 0;
  left: 20px;
  transform: rotate(90deg);
  animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(4) {
  top: -13.63636px;
  left: 13.63636px;
  transform: rotate(45deg);
  animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(5) {
  top: -20px;
  left: 0;
  animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(6) {
  top: -13.63636px;
  left: -13.63636px;
  transform: rotate(-45deg);
  animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(7) {
  top: 0;
  left: -20px;
  transform: rotate(90deg);
  animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(8) {
  top: 13.63636px;
  left: -13.63636px;
  transform: rotate(45deg);
  animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
}

.line-spin-fade-loader > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  animation-fill-mode: both;
  position: absolute;
  width: 5px;
  height: 15px;
}

/**
 * Misc
 */
@keyframes triangle-skew-spin {
  25% {
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
.triangle-skew-spin > div {
  animation-fill-mode: both;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #fff;
  animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
@keyframes square-spin {
  25% {
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
.square-spin > div {
  animation-fill-mode: both;
  width: 50px;
  height: 50px;
  background: #fff;
  animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
@keyframes rotate_pacman_half_up {
  0% {
    transform: rotate(270deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
@keyframes rotate_pacman_half_down {
  0% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }
  100% {
    transform: translate(-100px, -6.25px);
  }
}
.pacman {
  position: relative;
}

.pacman > div:nth-child(2) {
  animation: pacman-balls 1s -0.99s infinite linear;
}

.pacman > div:nth-child(3) {
  animation: pacman-balls 1s -0.66s infinite linear;
}

.pacman > div:nth-child(4) {
  animation: pacman-balls 1s -0.33s infinite linear;
}

.pacman > div:nth-child(5) {
  animation: pacman-balls 1s 0s infinite linear;
}

.pacman > div:first-of-type {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid #fff;
  border-left: 25px solid #fff;
  border-bottom: 25px solid #fff;
  border-radius: 25px;
  animation: rotate_pacman_half_up 0.5s 0s infinite;
  position: relative;
  left: -30px;
}

.pacman > div:nth-child(2) {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid #fff;
  border-left: 25px solid #fff;
  border-bottom: 25px solid #fff;
  border-radius: 25px;
  animation: rotate_pacman_half_down 0.5s 0s infinite;
  margin-top: -50px;
  position: relative;
  left: -30px;
}

.pacman > div:nth-child(3),
.pacman > div:nth-child(4),
.pacman > div:nth-child(5),
.pacman > div:nth-child(6) {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  width: 10px;
  height: 10px;
  position: absolute;
  transform: translate(0, -6.25px);
  top: 25px;
  left: 70px;
}
@keyframes cube-transition {
  25% {
    transform: translateX(50px) scale(0.5) rotate(-90deg);
  }
  50% {
    transform: translate(50px, 50px) rotate(-180deg);
  }
  75% {
    transform: translateY(50px) scale(0.5) rotate(-270deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.cube-transition {
  position: relative;
  transform: translate(-25px, -25px);
}

.cube-transition > div {
  animation-fill-mode: both;
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: #fff;
  animation: cube-transition 1.6s 0s infinite ease-in-out;
}

.cube-transition > div:last-child {
  animation-delay: -0.8s;
}
@keyframes spin-rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.semi-circle-spin {
  position: relative;
  width: 35px;
  height: 35px;
  overflow: hidden;
}

.semi-circle-spin > div {
  position: absolute;
  border-width: 0px;
  border-radius: 100%;
  animation: spin-rotate 0.6s 0s infinite linear;
  background-image: linear-gradient(transparent 0%, transparent 70%, #fff 30%, #fff 100%);
  width: 100%;
  height: 100%;
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}/*# sourceMappingURL=style.css.map */