@charset "UTF-8";
/* グローバルメニュー */
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
@import url("https://fonts.googleapis.com/css?family=Roboto");
/* line 3, app/assets/stylesheets/_global_menu.scss */
.global-menu {
  padding-top: 14px;
  margin-left: 28em;
  /*ナビゲーションを横並びに*/
  /*== 2・3階層目の共通設定 */
  /*下の階層を持っているulの指定*/
}

@media (max-width: 1640px) {
  /* line 3, app/assets/stylesheets/_global_menu.scss */
  .global-menu {
    margin-left: 10em;
  }
}

/* line 10, app/assets/stylesheets/_global_menu.scss */
.global-menu ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  /*下の階層のulや矢印の基点にするためliにrelativeを指定*/
  /*日本語、英語サイトでの幅の調整*/
  /*2階層目以降は横並びにしない*/
  /*==矢印の設定*/
  /*2階層目を持つliの矢印の設定*/
}

/* line 15, app/assets/stylesheets/_global_menu.scss */
.global-menu ul li {
  position: relative;
  white-space: nowrap;
  /*ナビゲーションのリンク設定*/
}

/* line 19, app/assets/stylesheets/_global_menu.scss */
.global-menu ul li a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  line-height: 100%;
  transition: all 0.3s;
}

/* line 26, app/assets/stylesheets/_global_menu.scss */
.global-menu ul li a:hover {
  text-decoration: none;
}

/* line 30, app/assets/stylesheets/_global_menu.scss */
.global-menu ul li p {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  line-height: 100%;
  transition: all 0.3s;
}

/* line 38, app/assets/stylesheets/_global_menu.scss */
.global-menu ul li li a {
  padding: 10px 23px;
  font-weight: normal;
}

/* line 44, app/assets/stylesheets/_global_menu.scss */
.global-menu ul .global-list {
  font-size: 17px;
  font-weight: bold;
  margin: 0 20px;
  padding-bottom: 13px;
}

@media (max-width: 1640px) {
  /* line 44, app/assets/stylesheets/_global_menu.scss */
  .global-menu ul .global-list {
    font-size: 14px;
    margin: 0px 8px;
  }
}

@media (max-width: 1510px) {
  /* line 44, app/assets/stylesheets/_global_menu.scss */
  .global-menu ul .global-list {
    font-size: 13px;
    margin: 0 0;
  }
}

/* line 58, app/assets/stylesheets/_global_menu.scss */
.global-menu ul .global-list-en {
  font-size: 17px;
  font-weight: bold;
  margin: 0 14px;
  padding-bottom: 13px;
}

@media (max-width: 1640px) {
  /* line 58, app/assets/stylesheets/_global_menu.scss */
  .global-menu ul .global-list-en {
    font-size: 14px;
    margin: 0px 8px;
  }
}

@media (max-width: 1510px) {
  /* line 58, app/assets/stylesheets/_global_menu.scss */
  .global-menu ul .global-list-en {
    font-size: 13px;
    margin: 0px 4px;
  }
}

@media (max-width: 1370px) {
  /* line 58, app/assets/stylesheets/_global_menu.scss */
  .global-menu ul .global-list-en {
    font-size: 13px;
    margin: 0px 0px;
  }
}

@media (max-width: 1320px) {
  /* line 58, app/assets/stylesheets/_global_menu.scss */
  .global-menu ul .global-list-en {
    font-size: 12px;
  }
}

/* line 80, app/assets/stylesheets/_global_menu.scss */
.global-menu ul ul {
  display: block;
}

/* line 85, app/assets/stylesheets/_global_menu.scss */
.global-menu ul li.dropdown-list::before {
  content: "";
  position: absolute;
  left: 90%;
  top: 16px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(45deg);
}

/* line 100, app/assets/stylesheets/_global_menu.scss */
.global-menu li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 48.5px;
  width: auto;
  white-space: nowrap;
  z-index: 4;
  /*形状を指定*/
  background: #fff;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
  /*==3階層目*/
  /*3階層目の位置*/
  /*ナビゲーションaタグの形状*/
}

/* line 118, app/assets/stylesheets/_global_menu.scss */
.global-menu li.has-child ul ul {
  top: -41px;
  left: 100%;
  width: auto;
}

/* line 123, app/assets/stylesheets/_global_menu.scss */
.global-menu li.has-child ul ul li a:hover, .global-menu li.has-child ul ul li a:active {
  color: #d60011;
}

/* line 131, app/assets/stylesheets/_global_menu.scss */
.global-menu li.has-child ul li a {
  color: black;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  padding: 10px 23px;
  line-height: 20px;
  white-space: nowrap;
}

/* line 137, app/assets/stylesheets/_global_menu.scss */
.global-menu li.has-child ul li a:hover, .global-menu li.has-child ul li a:active {
  color: #d60011;
}

/* line 142, app/assets/stylesheets/_global_menu.scss */
.global-menu li.has-child ul li:last-child a {
  border-bottom: none;
}

/* line 148, app/assets/stylesheets/_global_menu.scss */
.global-menu:hover > ul,
.global-menu ul li:hover > ul, .global-menu:active > ul,
.global-menu ul li:active > ul {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
}

/* HEADER
------------------------------- */
/* line 6, app/assets/stylesheets/_header.scss */
.Head {
  position: fixed;
  z-index: 2000;
  width: 100%;
  background: #f5f5f5;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  padding: 0 20px;
  border-bottom: #e0e0e0 1px solid;
  transition: 0.25s;
}

/* line 17, app/assets/stylesheets/_header.scss */
.Head .HeadInner {
  width: 100%;
  height: 61px;
}

/* line 20, app/assets/stylesheets/_header.scss */
.Head .HeadInner::after {
  content: "";
  display: table;
  clear: both;
  height: 0;
}

/* line 27, app/assets/stylesheets/_header.scss */
.Head .HeadInner a {
  color: inherit;
}

/* line 29, app/assets/stylesheets/_header.scss */
.Head .HeadInner a:hover {
  color: #d60011;
  transition: 0.4s;
}

@media (max-width: 880px) {
  /* line 34, app/assets/stylesheets/_header.scss */
  .Head .HeadInner nav {
    font-size: 13px;
  }
}

/* line 38, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .index-header-ui {
  flex-wrap: nowrap;
}

@media (max-width: 1111px) {
  /* line 38, app/assets/stylesheets/_header.scss */
  .Head .HeadInner nav .index-header-ui {
    justify-content: space-between !important;
  }
}

/* line 44, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .header-logo {
  display: flex;
}

/* line 46, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .header-logo h1 {
  display: inline-block;
  position: relative;
  text-align: left;
  margin: 4px 0.5rem 0 0;
}

/* line 51, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .header-logo h1 img {
  width: auto;
  height: 5rem;
}

/* line 56, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .header-logo .sub-menu-icons {
  padding-top: 23px;
}

@media (max-width: 1111px) {
  /* line 56, app/assets/stylesheets/_header.scss */
  .Head .HeadInner nav .header-logo .sub-menu-icons {
    padding-top: 11px;
  }
}

/* line 61, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .header-logo .sub-menu-icons .trigger {
  color: inherit;
  cursor: pointer;
}

@media (min-width: 1112px) {
  /* line 61, app/assets/stylesheets/_header.scss */
  .Head .HeadInner nav .header-logo .sub-menu-icons .trigger {
    display: none;
  }
}

@media (max-width: 1111px) {
  /* line 68, app/assets/stylesheets/_header.scss */
  .Head .HeadInner nav .header-logo .sub-menu-icons .sort-icons {
    font-size: 20px;
  }
}

/* line 74, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .header-logo .language-selection {
  min-width: 70px;
}

/* line 76, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .header-logo .language-selection .language-text {
  font-weight: bold;
  font-size: 14px;
}

@media (max-width: 1705px) {
  /* line 76, app/assets/stylesheets/_header.scss */
  .Head .HeadInner nav .header-logo .language-selection .language-text {
    font-size: 12px;
  }
}

@media (max-width: 1111px) {
  /* line 76, app/assets/stylesheets/_header.scss */
  .Head .HeadInner nav .header-logo .language-selection .language-text {
    font-size: 10px;
  }
}

/* line 85, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .header-logo .language-selection .language-text .enabled {
  color: #ccc;
  text-decoration: none;
}

/* line 92, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .header-global-menu {
  height: 65px;
}

@media (max-width: 1111px) {
  /* line 92, app/assets/stylesheets/_header.scss */
  .Head .HeadInner nav .header-global-menu {
    display: none;
  }
}

/* line 98, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .header-item {
  padding-top: 15px;
}

@media (max-width: 768px) {
  /* line 98, app/assets/stylesheets/_header.scss */
  .Head .HeadInner nav .header-item {
    width: 33%;
    padding-top: 10px;
  }
}

/* line 105, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .thumbnail {
  display: inline-block;
}

/* line 108, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  width: 100vw;
  height: 0;
  padding: 0 3rem;
  background: rgba(0, 0, 0, 0.75);
  transition: 0.4s;
}

@media (min-width: 1112px) {
  /* line 108, app/assets/stylesheets/_header.scss */
  .Head .HeadInner nav .sub-menu {
    display: none;
  }
}

/* line 123, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu.active {
  top: 100%;
  width: 100vw;
  height: auto;
  padding: 1.5rem 3rem;
  transition: 0.4s;
  overflow: auto;
}

/* line 131, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu::after {
  content: "";
  display: table;
  clear: both;
  height: 0;
}

/* line 137, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu > li {
  float: left;
  width: 20%;
  top: 70px;
}

/* line 142, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu > li.close {
  display: none;
  position: fixed;
  right: 0;
  z-index: 20;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

/* line 151, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu > li.close a {
  display: none;
  position: relative;
  width: 50px;
  height: 50px;
  background: rgba(214, 0, 17, 0.9);
}

/* line 158, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu > li.close a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  margin-left: -11px;
  background: black;
  transform: rotate(45deg);
}

/* line 171, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu > li.close a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  margin-left: -11px;
  background: black;
  transform: rotate(-45deg);
}

/* line 186, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu > li dl {
  padding: 0 1rem;
  color: #fff;
}

/* line 191, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu > li dt {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 0 0 1rem 0;
  border-bottom: rgba(255, 255, 255, 0.3) 1px solid;
  font-weight: bolder;
}

/* line 198, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu > li dt::before {
  content: "";
  display: inline-block;
  position: relative;
  z-index: 2;
  left: 0;
  top: -0.1rem;
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.8rem;
  border-top: rgba(255, 255, 255, 0.7) 1px solid;
  border-right: rgba(255, 255, 255, 0.7) 1px solid;
  transform: rotate(45deg);
}

/* line 213, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu > li dt::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -0.1rem;
  width: 2rem;
  height: 0.1rem;
  background: rgba(214, 0, 17, 0.7);
}

/* line 226, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu > li dd {
  margin-bottom: 0rem;
  font-size: 1.4rem;
}

/* line 229, app/assets/stylesheets/_header.scss */
.Head .HeadInner nav .sub-menu > li dd a {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0;
  border: 0;
  color: white;
  font-weight: lighter;
}

/* line 244, app/assets/stylesheets/_header.scss */
.video-link {
  padding: 18px 0 0 0;
  margin-left: 20px;
}

/* line 248, app/assets/stylesheets/_header.scss */
.video-link > p a {
  padding: 6px 10px;
}

/* line 251, app/assets/stylesheets/_header.scss */
.video-link > p span {
  font-size: 1.2rem;
}

/* line 257, app/assets/stylesheets/_header.scss */
.function {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: right;
}

/* line 263, app/assets/stylesheets/_header.scss */
.function i {
  position: relative;
  top: 0.225em;
  font-size: 2.2rem;
}

/* line 267, app/assets/stylesheets/_header.scss */
.function i.icon-login {
  left: -0.05em;
  font-size: 1.8rem;
}

/* line 271, app/assets/stylesheets/_header.scss */
.function i.icon-logout {
  font-size: 1.8rem;
}

/* line 274, app/assets/stylesheets/_header.scss */
.function i.icon-inquiry {
  font-size: 1.8rem;
}

/* line 278, app/assets/stylesheets/_header.scss */
.function a {
  display: inline-block;
  width: 3.6rem;
  height: 3.6rem;
  margin-left: 8px;
  text-align: center;
}

/* line 286, app/assets/stylesheets/_header.scss */
.function li.login a, .function li.logout a, .function li.inquiry-red a {
  width: auto;
  height: 33px;
  border-radius: 5px;
  background: #d60011;
  border: #d60011 2px solid;
  transition: 0.2s;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}

@media (max-width: 1500px) {
  /* line 286, app/assets/stylesheets/_header.scss */
  .function li.login a, .function li.logout a, .function li.inquiry-red a {
    font-size: 12px;
  }
}

/* line 301, app/assets/stylesheets/_header.scss */
.function li.login a:hover, .function li.logout a:hover, .function li.inquiry-red a:hover {
  background: #ffffff;
  text-decoration: none;
  opacity: 1;
  color: #d60011;
}

/* line 302, app/assets/stylesheets/_header.scss */
.function li.login a:hover .icon-login,
.function li.login a:hover .icon-inquiry,
.function li.login a:hover .icon-logout, .function li.logout a:hover .icon-login,
.function li.logout a:hover .icon-inquiry,
.function li.logout a:hover .icon-logout, .function li.inquiry-red a:hover .icon-login,
.function li.inquiry-red a:hover .icon-inquiry,
.function li.inquiry-red a:hover .icon-logout {
  filter: invert(38%) sepia(93%) saturate(6320%) hue-rotate(342deg) brightness(76%) contrast(129%);
}

/* line 314, app/assets/stylesheets/_header.scss */
.function li.inquiry a, .function li.notification a {
  border: #000 2px solid;
  border-radius: 3.6rem;
  color: #000;
  background: #fff;
}

/* line 320, app/assets/stylesheets/_header.scss */
.function li.inquiry a:hover, .function li.notification a:hover {
  color: #fff;
  background: #000;
  transition: 0.4s;
  border-color: #000;
}

/* line 325, app/assets/stylesheets/_header.scss */
.function li.inquiry a:hover .fa-bell, .function li.notification a:hover .fa-bell {
  color: #fff !important;
}

/* line 330, app/assets/stylesheets/_header.scss */
.function li.manager a, .function li.my-page a {
  color: #d60011;
  border: #d60011 2px solid;
  border-radius: 3.6rem;
  background: #fff;
}

/* line 336, app/assets/stylesheets/_header.scss */
.function li.manager a svg,
.function li.manager a .material-icons, .function li.my-page a svg,
.function li.my-page a .material-icons {
  fill: currentColor;
  color: inherit;
}

/* line 341, app/assets/stylesheets/_header.scss */
.function li.manager a:hover, .function li.my-page a:hover {
  border: #d60011 2px solid;
  color: #fff;
  background: #d60011;
  transition: 0.4s;
}

/* line 348, app/assets/stylesheets/_header.scss */
.function li.login svg, .function li.logout svg, .function li.manager svg, .function li.notification svg {
  display: block;
  position: relative;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1em;
  margin: 0 auto;
  font-size: 2rem;
  fill: #d60011;
  zoom: 1;
}

/* line 362, app/assets/stylesheets/_header.scss */
.function li.login svg:hover, .function li.logout svg:hover, .function li.manager svg:hover, .function li.notification svg:hover {
  fill: #fff;
  transition: 0.5s;
}

/* line 367, app/assets/stylesheets/_header.scss */
.function li.notification svg {
  top: 0.35em;
  left: 0.1em;
  fill: #000;
}

/* お問い合わせボタンのSP表示制御 */
@media (max-width: 1111px) {
  /* line 375, app/assets/stylesheets/_header.scss */
  .inquiry-red {
    display: none;
  }
}

/* line 380, app/assets/stylesheets/_header.scss */
.popup-notice {
  position: absolute;
  transform: translateX(-50%);
  right: -50px;
  z-index: 1000;
}

/* line 386, app/assets/stylesheets/_header.scss */
.popup-notice__inner {
  position: relative;
  background: #fff;
  color: #333;
  padding: 2rem 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
  white-space: normal;
  line-height: 1.5;
  border: 2px solid red;
  min-width: 300px;
  max-width: 450px;
}

/* line 400, app/assets/stylesheets/_header.scss */
.popup-notice__inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 400px;
  overflow-y: auto;
}

/* line 408, app/assets/stylesheets/_header.scss */
.popup-notice__inner li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 412, app/assets/stylesheets/_header.scss */
.popup-notice__inner li:last-child {
  border-bottom: none;
}

/* line 416, app/assets/stylesheets/_header.scss */
.popup-notice__inner li a {
  display: block;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 424, app/assets/stylesheets/_header.scss */
.popup-notice__inner li a:hover {
  color: #d60011;
}

/* line 429, app/assets/stylesheets/_header.scss */
.popup-notice__inner li strong {
  display: block;
  margin-bottom: 5px;
}

/* line 435, app/assets/stylesheets/_header.scss */
.popup-notice__inner:after {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 14px 14px;
  border-color: transparent transparent #fff transparent;
  border-bottom-color: #fff;
}

/* line 449, app/assets/stylesheets/_header.scss */
.popup-notice__inner:before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 16px 16px 16px;
  border-color: transparent transparent red transparent;
}

/* line 463, app/assets/stylesheets/_header.scss */
.popup-notice__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* スクロールダウン */
/* line 476, app/assets/stylesheets/_header.scss */
.Head.UpMove {
  animation: UpAnime 0.8s forwards;
  -webkit-animation: UpAnime 0.8s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

/* スクロールアップ */
/* line 494, app/assets/stylesheets/_header.scss */
.Head.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* グローバルメニュー
ホバーした際のポップアップ表示設定*/
/* line 510, app/assets/stylesheets/_header.scss */
.background-container {
  display: none;
}

/* line 513, app/assets/stylesheets/_header.scss */
.header-global-menu:hover ~ .background-container {
  position: fixed;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
  display: block;
  animation: show 0.3s linear 0s;
  -webkit-animation: show 0.3s linear 0s;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Footer */
/* line 2, app/assets/stylesheets/_footer.scss */
.pageTop {
  display: block;
  width: 60px;
  height: 60px;
  background: #ccc;
  cursor: pointer;
  transition: 0.25s;
}

/* line 9, app/assets/stylesheets/_footer.scss */
.pageTop.Start {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: #ccc;
  cursor: pointer;
  transition: 0.25s;
}

/* line 20, app/assets/stylesheets/_footer.scss */
.pageTop.Start::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 25%;
  width: 7px;
  height: 7px;
  margin: 2px 0 0 -5px;
  border: transparent 2px solid;
  border-top: black 2px solid;
  border-right: black 2px solid;
  animation: fluffy 2.5s infinite;
  transform: rotate(135deg);
  transition: 0.25s;
}

/* line 37, app/assets/stylesheets/_footer.scss */
.pageTop.Start::after {
  content: "scroll";
  display: block;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: 0 0 0 0;
  color: #000;
  line-height: 3rem;
  font-size: 1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0);
  transition: 0.25s;
}

/* line 55, app/assets/stylesheets/_footer.scss */
.pageTop.Start:hover {
  background: #ccc;
  transition: 0.25s;
}

/* line 59, app/assets/stylesheets/_footer.scss */
.pageTop.Start:hover::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 40%;
  width: 7px;
  height: 7px;
  margin: -5px 0 0 -5px;
  border: transparent 2px solid;
  border-top: black 2px solid;
  border-right: black 2px solid;
  transform: rotate(135deg);
  transition: 0.25s;
}

/* line 75, app/assets/stylesheets/_footer.scss */
.pageTop.Start:hover::after {
  content: "scroll";
  display: block;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: 0 0 0 0;
  color: #000;
  line-height: 3rem;
  font-size: 1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0);
  transform: rotate(0);
  transition: 0.25s;
}

/* line 96, app/assets/stylesheets/_footer.scss */
.pageTop .scroll {
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  background: transparent;
  cursor: pointer;
}

/* line 104, app/assets/stylesheets/_footer.scss */
.pageTop .scroll.hide {
  display: none;
}

@keyframes fluffy {
  0% {
    top: 25%;
  }
  50% {
    top: 32.5%;
  }
  100% {
    top: 25%;
  }
}

/* setting.js */
/* line 123, app/assets/stylesheets/_footer.scss */
.goTop {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: #ccc;
}

/* line 133, app/assets/stylesheets/_footer.scss */
.goTop::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  margin: 2px 0 0 -5px;
  border: transparent 2px solid;
  border-top: black 2px solid;
  border-right: black 2px solid;
  transform: rotate(-45deg);
  transition: 0.25s;
  box-sizing: unset;
}

/* line 150, app/assets/stylesheets/_footer.scss */
.goTop::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  margin: -5px 0 0 -7px;
  background: black;
  transform: rotate(0deg);
  transition: 0.25s;
}

/* line 164, app/assets/stylesheets/_footer.scss */
.goTop:hover {
  background: #ccc;
  transition: 0.25s;
}

/* line 168, app/assets/stylesheets/_footer.scss */
.goTop:hover::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  margin: -5px 0 0 -5px;
  border: transparent 2px solid;
  border-top: black 2px solid;
  border-right: black 2px solid;
  transform: rotate(-45deg);
  transition: 0.25s;
}

/* line 184, app/assets/stylesheets/_footer.scss */
.goTop:hover::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  margin: 1px 0 0 -7px;
  background: black;
  transform: rotate(90deg);
  transition: 0.25s;
}

/* line 200, app/assets/stylesheets/_footer.scss */
.Logos {
  max-width: 86%;
  margin: 0 auto 0rem;
}

/* line 204, app/assets/stylesheets/_footer.scss */
.Logos a {
  outline: 0;
}

/* line 208, app/assets/stylesheets/_footer.scss */
.Logos img {
  width: 100%;
}

/* line 212, app/assets/stylesheets/_footer.scss */
.Logos .slick-dots {
  bottom: -4rem;
}

/* line 215, app/assets/stylesheets/_footer.scss */
.Logos .slick-dots li {
  padding: 0rem;
  border: 0;
  background: #fff;
}

/* line 221, app/assets/stylesheets/_footer.scss */
.Logos .slick-dots .slick-active {
  background: #00a73c;
}

/* line 226, app/assets/stylesheets/_footer.scss */
.Logos .slick-prev.slick-arrow {
  z-index: 3;
  top: 50%;
  left: -15px;
  width: 10px;
  height: 10px;
  margin-top: -0.5rem;
  border-top: #c3c3c3 3px solid;
  border-right: #c3c3c3 3px solid;
  background: transparent;
  transform: scale(1, 1) rotate(-135deg);
}

/* line 239, app/assets/stylesheets/_footer.scss */
.Logos .slick-next.slick-arrow {
  z-index: 3;
  top: 50%;
  right: -15px;
  width: 10px;
  height: 10px;
  margin-top: -0.5rem;
  border-top: #c3c3c3 3px solid;
  border-right: #c3c3c3 3px solid;
  background: transparent;
  transform: scale(1, 1) rotate(45deg);
}

/* line 252, app/assets/stylesheets/_footer.scss */
.Logos .slick-prev.slick-arrow:hover,
.Logos .slick-next.slick-arrow:hover {
  border-top: #d60011 3px solid;
  border-right: #d60011 3px solid;
  transition: 0.4s;
}

/* line 260, app/assets/stylesheets/_footer.scss */
.Foot {
  padding: 2rem 0 3rem 0;
  background: #f5f5f5;
}

/* line 263, app/assets/stylesheets/_footer.scss */
.Foot .FootInner .copyright {
  display: block;
  color: #7a7a7a;
  font-family: "Roboto", sans-serif;
  font-size: 0.7rem;
  text-align: center;
  letter-spacing: 0.1em;
}

/* line 271, app/assets/stylesheets/_footer.scss */
.Foot .FootLogo {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  margin: 0 auto 1rem;
  padding: 1rem 1rem;
}

/* line 280, app/assets/stylesheets/_footer.scss */
.Foot .FootLogo img {
  width: auto;
  height: 2.5rem;
  margin: 0 0.5rem;
}

/* line 286, app/assets/stylesheets/_footer.scss */
.Foot .FootLogo svg {
  display: inline-block;
  width: auto;
  height: 3rem;
  fill: rgba(0, 0, 0, 0.5);
}

/* line 294, app/assets/stylesheets/_footer.scss */
.Foot .FootLinks {
  max-width: 90%;
  margin: 0 auto 3rem;
  padding-bottom: 1rem;
  border-bottom: #b2b2b2 1px solid;
  font-size: 1.1rem;
  text-align: center;
  color: #222;
}

@media (min-width: 769px) {
  /* line 305, app/assets/stylesheets/_footer.scss */
  .pageTop {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #ccc;
    cursor: pointer;
    transition: 0.25s;
  }
  /* line 315, app/assets/stylesheets/_footer.scss */
  .pageTop.Start {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 200;
    width: 60px;
    height: 60px;
    background: #ccc;
    cursor: pointer;
    transition: 0.25s;
  }
  /* line 326, app/assets/stylesheets/_footer.scss */
  .pageTop.Start::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 25%;
    width: 7px;
    height: 7px;
    margin: 2px 0 0 -5px;
    border: transparent 2px solid;
    border-top: black 2px solid;
    border-right: black 2px solid;
    animation: fluffy 2.5s infinite;
    transform: rotate(135deg);
    transition: 0.25s;
  }
  /* line 343, app/assets/stylesheets/_footer.scss */
  .pageTop.Start::after {
    content: "scroll";
    display: block;
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    color: #000;
    line-height: 3rem;
    font-size: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0);
    transition: 0.25s;
  }
  /* line 361, app/assets/stylesheets/_footer.scss */
  .pageTop.Start:hover {
    background: #ccc;
    transition: 0.25s;
  }
  /* line 365, app/assets/stylesheets/_footer.scss */
  .pageTop.Start:hover::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 40%;
    width: 7px;
    height: 7px;
    margin: -5px 0 0 -5px;
    border: transparent 2px solid;
    border-top: black 2px solid;
    border-right: black 2px solid;
    transform: rotate(135deg);
    transition: 0.25s;
  }
  /* line 381, app/assets/stylesheets/_footer.scss */
  .pageTop.Start:hover::after {
    content: "scroll";
    display: block;
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    color: #000;
    line-height: 3rem;
    font-size: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0);
    transform: rotate(0);
    transition: 0.25s;
  }
  /* line 402, app/assets/stylesheets/_footer.scss */
  .pageTop .scroll {
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    background: transparent;
    cursor: pointer;
  }
  /* line 410, app/assets/stylesheets/_footer.scss */
  .pageTop .scroll.hide {
    display: none;
  }
  @keyframes fluffy {
    0% {
      top: 25%;
    }
    50% {
      top: 32.5%;
    }
    100% {
      top: 25%;
    }
  }
  /* line 427, app/assets/stylesheets/_footer.scss */
  .goTop {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 200;
    width: 60px;
    height: 60px;
    background: #ccc;
  }
  /* line 437, app/assets/stylesheets/_footer.scss */
  .goTop::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    margin: 2px 0 0 -5px;
    border: transparent 2px solid;
    border-top: black 2px solid;
    border-right: black 2px solid;
    transform: rotate(-45deg);
    transition: 0.25s;
    box-sizing: unset;
  }
  /* line 454, app/assets/stylesheets/_footer.scss */
  .goTop::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    margin: -5px 0 0 -7px;
    background: black;
    transform: rotate(0deg);
    transition: 0.25s;
  }
  /* line 468, app/assets/stylesheets/_footer.scss */
  .goTop:hover {
    background: #ccc;
    transition: 0.25s;
  }
  /* line 472, app/assets/stylesheets/_footer.scss */
  .goTop:hover::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    margin: -5px 0 0 -5px;
    border: transparent 2px solid;
    border-top: black 2px solid;
    border-right: black 2px solid;
    transform: rotate(-45deg);
    transition: 0.25s;
  }
  /* line 488, app/assets/stylesheets/_footer.scss */
  .goTop:hover::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    margin: 1px 0 0 -7px;
    background: black;
    transform: rotate(90deg);
    transition: 0.25s;
  }
  /* line 504, app/assets/stylesheets/_footer.scss */
  .Logos {
    max-width: 1080px;
    margin: 0 auto 2rem;
  }
  /* line 508, app/assets/stylesheets/_footer.scss */
  .Logos a {
    outline: 0;
  }
  /* line 512, app/assets/stylesheets/_footer.scss */
  .Logos img {
    width: 100%;
  }
  /* line 516, app/assets/stylesheets/_footer.scss */
  .Logos .slick-dots {
    bottom: -4rem;
  }
  /* line 519, app/assets/stylesheets/_footer.scss */
  .Logos .slick-dots li {
    padding: 0rem;
    border: 0;
    background: #fff;
  }
  /* line 525, app/assets/stylesheets/_footer.scss */
  .Logos .slick-dots .slick-active {
    background: #00a73c;
  }
  /* line 530, app/assets/stylesheets/_footer.scss */
  .Logos .slick-prev.slick-arrow {
    z-index: 3;
    top: 50%;
    left: -40px;
    width: 10px;
    height: 10px;
    margin-top: -0.5rem;
    border-top: #c3c3c3 3px solid;
    border-right: #c3c3c3 3px solid;
    background: transparent;
    transform: scale(1, 1) rotate(-135deg);
  }
  /* line 543, app/assets/stylesheets/_footer.scss */
  .Logos .slick-next.slick-arrow {
    z-index: 3;
    top: 50%;
    right: -40px;
    width: 10px;
    height: 10px;
    margin-top: -0.5rem;
    border-top: #c3c3c3 3px solid;
    border-right: #c3c3c3 3px solid;
    background: transparent;
    transform: scale(1, 1) rotate(45deg);
  }
  /* line 556, app/assets/stylesheets/_footer.scss */
  .Logos .slick-prev.slick-arrow:hover,
.Logos .slick-next.slick-arrow:hover {
    border-top: #d60011 3px solid;
    border-right: #d60011 3px solid;
    transition: 0.4s;
  }
  /* line 564, app/assets/stylesheets/_footer.scss */
  .Foot {
    padding: 2rem 0 3rem 0;
    background: #f5f5f5;
  }
  /* line 567, app/assets/stylesheets/_footer.scss */
  .Foot .FootInner .copyright {
    display: block;
    color: #7a7a7a;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.1em;
  }
  /* line 575, app/assets/stylesheets/_footer.scss */
  .Foot .FootLogo {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    margin: 0 auto 3rem;
    padding: 1rem 2rem;
  }
  /* line 584, app/assets/stylesheets/_footer.scss */
  .Foot .FootLogo img {
    width: auto;
    height: 3rem;
    margin-right: 2rem;
  }
  /* line 590, app/assets/stylesheets/_footer.scss */
  .Foot .FootLogo svg {
    display: inline-block;
    width: auto;
    height: 3rem;
    fill: rgba(0, 0, 0, 0.5);
  }
  /* line 598, app/assets/stylesheets/_footer.scss */
  .Foot .FootLinks {
    max-width: 1080px;
    margin: 0 auto 3rem;
    padding-bottom: 1rem;
    border-bottom: #b2b2b2 1px solid;
    font-size: 1.1rem;
    text-align: center;
    color: #222;
  }
  /* line 607, app/assets/stylesheets/_footer.scss */
  .Foot .FootLinks a:hover {
    opacity: 0.7;
    transition: 0.4s;
  }
}

@media (min-width: 426px) {
  /* line 617, app/assets/stylesheets/_footer.scss */
  .FootInner p {
    margin: 0 auto 3rem;
    text-align: center;
    color: inherit;
  }
  /* line 621, app/assets/stylesheets/_footer.scss */
  .FootInner p img {
    height: auto;
    height: 3rem;
    margin-right: 2rem;
  }
  /* line 626, app/assets/stylesheets/_footer.scss */
  .FootInner p img + img {
    position: relative;
    top: -0.3rem;
  }
  /* line 632, app/assets/stylesheets/_footer.scss */
  .FootInner ul {
    max-width: 1100px;
    margin: 0 auto 5rem;
    font-size: 1.2rem;
  }
  /* line 637, app/assets/stylesheets/_footer.scss */
  .FootInner ul::after {
    content: "";
    display: table;
    clear: both;
    height: 0;
  }
  /* line 644, app/assets/stylesheets/_footer.scss */
  .FootInner ul li {
    float: left;
    width: 17%;
    margin: 0 2.5% 0 0;
  }
  /* line 649, app/assets/stylesheets/_footer.scss */
  .FootInner ul li:last-child {
    margin-right: 0;
  }
  /* line 653, app/assets/stylesheets/_footer.scss */
  .FootInner ul li dt {
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bolder;
  }
  /* line 659, app/assets/stylesheets/_footer.scss */
  .FootInner ul li dt::before {
    content: "";
    display: block;
    position: absolute;
    top: 49%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #d60011;
  }
  /* line 670, app/assets/stylesheets/_footer.scss */
  .FootInner ul li dt b {
    display: inline-block;
    position: relative;
    z-index: 2;
    padding-right: 1rem;
    background: #000;
  }
  /* line 679, app/assets/stylesheets/_footer.scss */
  .FootInner ul li dd li {
    margin-bottom: 0.5rem;
  }
  /* line 682, app/assets/stylesheets/_footer.scss */
  .FootInner ul li dd li a {
    color: rgba(255, 255, 255, 0.8);
  }
  /* line 688, app/assets/stylesheets/_footer.scss */
  .FootInner ul + p {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding-bottom: 2rem;
    border-bottom: rgba(255, 255, 255, 0.3) 1px solid;
    font-size: 1.1rem;
    text-align: center;
  }
  /* line 697, app/assets/stylesheets/_footer.scss */
  .FootInner .FootInner small {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.1rem;
  }
}

/* common */
/* line 5, app/assets/stylesheets/e_nexty_style.scss */
* {
  box-sizing: border-box;
}

/* line 8, app/assets/stylesheets/e_nexty_style.scss */
html {
  font-size: 10px;
  overflow-y: scroll;
}

/* line 12, app/assets/stylesheets/e_nexty_style.scss */
body {
  position: relative;
  color: #202020;
  background-color: #ffffff;
  line-height: 1.4;
  font-size: 1.6rem;
}

/* line 19, app/assets/stylesheets/e_nexty_style.scss */
a {
  color: inherit;
  text-decoration: none;
}

/* line 23, app/assets/stylesheets/e_nexty_style.scss */
img {
  vertical-align: top;
}

/* line 26, app/assets/stylesheets/e_nexty_style.scss */
table {
  width: 100%;
  border-collapse: collapse;
}

/* line 30, app/assets/stylesheets/e_nexty_style.scss */
h3 {
  text-transform: none;
}

/* line 34, app/assets/stylesheets/e_nexty_style.scss */
.form-control {
  line-height: 1.85;
}

/*==768px以下の形状*/
@media (min-width: 769px) {
  /* webfonts */
  /* Noto Sans Regular */
  /* common */
  /* line 45, app/assets/stylesheets/e_nexty_style.scss */
  body {
    position: relative;
    color: #202020;
    line-height: 1.4;
    font-size: 12px;
    letter-spacing: 0.1rem;
  }
  /* line 52, app/assets/stylesheets/e_nexty_style.scss */
  a {
    color: inherit;
    text-decoration: none;
  }
  /* line 56, app/assets/stylesheets/e_nexty_style.scss */
  .PC {
    display: block;
  }
  /* line 59, app/assets/stylesheets/e_nexty_style.scss */
  .SP {
    display: none;
  }
}

/* icons */
/* line 65, app/assets/stylesheets/e_nexty_style.scss */
.icon-handmic {
  display: inline-block;
  position: relative;
  top: 0.2rem;
  width: 1.2em;
  height: 1em;
  margin-right: 0.2em;
  background: url(/assets/common/icon-handmic-03a518606be0401d6e072cfd6f258392e1493834db3b2b5060ed6e9bcd2132bb.svg) no-repeat center center;
  background-size: auto 1em;
}

/* line 75, app/assets/stylesheets/e_nexty_style.scss */
.icon-global {
  display: inline-block;
  position: relative;
  top: 0.2rem;
  width: 1.2em;
  height: 1em;
  background: url(/assets/common/icon-global-5646037097e29d36110849ee22d5f47ae120a139bd20d5222cb3dec8e59f65d6.svg) no-repeat center center;
  background-size: auto 1em;
}

/* line 84, app/assets/stylesheets/e_nexty_style.scss */
.icon-login {
  display: inline-block;
  position: relative;
  top: 0.2rem;
  width: 20px;
  height: 1em;
  background: url(/assets/common/icon-login-646404231fe0537b87405f68c68009526d6e0801e94c5bce2d9ab527248c9eaa.svg) no-repeat center center;
  background-size: auto 1em;
}

/* line 93, app/assets/stylesheets/e_nexty_style.scss */
.icon-logout {
  display: inline-block;
  position: relative;
  top: 0.2rem;
  width: 20px;
  height: 1em;
  background: url(/assets/common/icon-logout-d7fb85e800b4090df670d50f2b8e96ea46a389c9c366e4f5f6ae5bde5f9bf202.svg) no-repeat center center;
  background-size: auto 1em;
}

/* line 102, app/assets/stylesheets/e_nexty_style.scss */
.icon-alert {
  display: inline-block;
  position: relative;
  top: 0.2rem;
  width: 1.2em;
  height: 1em;
  margin-right: 0.2em;
  background: url(/assets/common/icon-alert-83247a2276527917b290ecfe962f291730249d59ecf2472504a3015a01b265a6.svg) no-repeat center center;
  background-size: auto 1em;
}

/* line 113, app/assets/stylesheets/e_nexty_style.scss */
.icon-inquiry {
  display: inline-block;
  position: relative;
  top: 0.2rem;
  width: 24px;
  height: 1em;
  background: url(/assets/common/ico_mail-c5e27da7e0ed9c5229edfc4b7ab2bf38b7afb86faed2a2a47d12f63537e5e5e7.svg) no-repeat center center;
  background-size: auto 1em;
  filter: brightness(0) invert(1);
}

/** Balance with application.css.scss **/
/* line 125, app/assets/stylesheets/e_nexty_style.scss */
#category_menu_toggle a {
  color: #d60011;
}

/* line 128, app/assets/stylesheets/e_nexty_style.scss */
#category_menu_toggle table {
  width: auto;
  margin-top: 2px;
}

/* line 132, app/assets/stylesheets/e_nexty_style.scss */
#category_menu_toggle + div table {
  width: auto;
  margin-top: 2px;
}

/* line 137, app/assets/stylesheets/e_nexty_style.scss */
.custom-select {
  height: auto;
}

/* line 140, app/assets/stylesheets/e_nexty_style.scss */
input,
textarea {
  font-size: 12px;
}

/* line 145, app/assets/stylesheets/e_nexty_style.scss */
table.mb-2 {
  width: auto;
  margin-top: 2px;
}

/* line 150, app/assets/stylesheets/e_nexty_style.scss */
#wrap select,
#wrap input {
  font-size: 14px;
}

/* line 155, app/assets/stylesheets/e_nexty_style.scss */
section.Block div ul li a:hover,
section.Service div ul li a:hover {
  text-decoration: none;
}

/* line 159, app/assets/stylesheets/e_nexty_style.scss */
a[id*="part_number_"] {
  color: #d60011;
}

/* line 162, app/assets/stylesheets/e_nexty_style.scss */
.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th {
  background-color: #fbfbef;
}

/* line 165, app/assets/stylesheets/e_nexty_style.scss */
.table-hover tbody tr:hover td input:-webkit-autofill,
.table-hover tbody tr:hover th input:-webkit-autofill {
  border-radius: 5px;
}

/* line 170, app/assets/stylesheets/e_nexty_style.scss */
.page-cus {
  height: 100%;
  margin: auto;
  width: 50%;
  padding-top: 10%;
  padding-bottom: 10%;
}

/* line 177, app/assets/stylesheets/e_nexty_style.scss */
.center {
  height: auto;
}

/* line 180, app/assets/stylesheets/e_nexty_style.scss */
.txt-hed {
  color: #d60011;
  font-size: 70px;
  font-weight: bold;
}

/* line 185, app/assets/stylesheets/e_nexty_style.scss */
.txt-ttl {
  color: #d60011;
  font-size: 26px;
  text-align: center;
  padding-bottom: 20px;
}

/* line 191, app/assets/stylesheets/e_nexty_style.scss */
.txt-bdy {
  color: #d60011;
  text-align: center;
}

/* line 195, app/assets/stylesheets/e_nexty_style.scss */
.centerOuter {
  position: absolute;
  top: 50%;
  width: 100%;
  height: auto;
}

/* line 201, app/assets/stylesheets/e_nexty_style.scss */
.centerInner {
  position: relative;
  transform: translateY(-51%);
  margin-left: auto;
  margin-right: auto;
}

/* line 207, app/assets/stylesheets/e_nexty_style.scss */
.anchor-point {
  position: relative;
  width: 0;
  height: 0;
}

/* line 212, app/assets/stylesheets/e_nexty_style.scss */
.tag {
  text-align: center;
  margin: 0 0.2rem;
  padding: 0.5rem;
  border-radius: 0.2rem;
  line-height: 1;
  font-size: 1rem;
  font-weight: bolder;
  width: auto;
  display: inline;
}

/* line 223, app/assets/stylesheets/e_nexty_style.scss */
.header-news-tag {
  display: inline-flex;
  vertical-align: top;
  background: white;
  color: black;
}

/* line 229, app/assets/stylesheets/e_nexty_style.scss */
.list-news-tag {
  background: red;
  color: white;
}

/* line 233, app/assets/stylesheets/e_nexty_style.scss */
.header-information-link-container {
  overflow: hidden;
  text-overflow: ellipsis;
  width: auto;
  max-width: calc(100% - 5rem);
  display: inline-block;
}

/* line 240, app/assets/stylesheets/e_nexty_style.scss */
.White {
  background: #fff;
}

/* line 243, app/assets/stylesheets/e_nexty_style.scss */
.scroll-horrizontal-reactive {
  overflow-x: auto;
  width: 100%;
  height: auto;
}

/* line 248, app/assets/stylesheets/e_nexty_style.scss */
.scroll-reactive {
  overflow: auto;
  width: 100%;
  height: 100%;
}

/* line 253, app/assets/stylesheets/e_nexty_style.scss */
.tooltip {
  font-size: 12px;
  z-index: 2001;
}
