@charset "UTF-8";

/*--------------------------------------------------------------
# 追従ヘッダー
--------------------------------------------------------------*/
#header {
  padding: 24px 0;
  height: 72px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header #logo {
  float: left;
}

h1::before {
    content: "";
    background: url("https://domain-asura.com/img/logo.png")no-repeat;
    background-size: 100%;
    display: inline-block;
    width: 25px;
    height: 41px;
    margin-right: 10px;
    position: relative;
    top: 5px;
}

#header #logo h1 {
  font-size: 28px;
  margin: -4px 0 0 0;
  padding: 0;
  line-height: 1;
  display: inline-block;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  bottom: 7px;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
    margin-top: 0;
  }
  #header #logo img {
    max-height: 40px;
  }
}

#header.header-transparent {
  background: transparent;
}

#header.header-fixed {
  background: rgba(0,0,0,0.8);
  padding: 12px 0;
  height: 60px;
  transition: all 0.5s;
}

@media (max-width: 768px) {
#header.header-fixed {
    padding: 0px 0;
    height: 50px;
}}

/*--------------------------------------------------------------
# ナビゲーションメニュー
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 991px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 10px 2px 0px 2px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  outline: none;
}

.nav-menu > li {
  margin-left: 25px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFEA44;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu  > a:before {
  visibility: visible;
  transform: scaleX(1);
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #52a0fd;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #52a0fd;
}

#mobile-nav ul .menu-item-active {
  color: #52a0fd;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# イントロ
--------------------------------------------------------------*/
.i-subtitle {
  text-align: left;
  color: #37517e;
  background-color: white;
  font-size: 22px;
  transform: rotate(-2deg);
  display: inline-block;
  padding: 0px 10px;
  margin: 3px;
  position: relative;
  right: 250px;
  bottom:20px;
}

@media (max-width: 768px) {
  .i-subtitle {
    right: 0px;
    font-size: 15px;
    bottom: 20px;
    bottom: 50px;
  }}

.i-title {
  color: white;
  font-size: 46px;
  font-family: ヒラギノ角ゴシック, "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 768px) {
  .i-title {
    font-size: 22px;
    position: relative;
    bottom: 30px;
  }}


.i-title .l{
  font-size: 70px;
  color: #FFEA44;
}

@media (max-width: 768px) {
  .i-title .l {
    font-size: 30px;
  }}

  .i-title .w{
    font-size: 70px;
  }

  @media (max-width: 768px) {
    .i-title .w {
      font-size: 25px;
    }}

.i-title .m{
  color: #FFEA44;
}

.i-title .red {
  color: #FFEA44;
}

.technology-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("https://kiji-sniper.com/img/firstview-bg.png");
}

#intro {
  width: 100%;
  height: 102vh;
  background: linear-gradient(to top right, #00e2fa, #52a0fd);
  background-size: cover;
  position: relative;
  background-position: center;
}

@media (max-width: 414px) {
  #intro {
    height: 88vh;
  }}

@media (max-width: 375px) {
  #intro {
    height: 93vh;
  }}

@media (max-width: 320px) {
  #intro {
    height: 100vh;
  }}

@media (min-width: 1025px) {
  #intro {
    background-attachment: fixed;
  }}

.k-visual {
  position: absolute;
  top: 325px;
}

@media (min-width: 1300px) {
.k-visual {
  width: 100%;
}}

@media (max-width: 768px) {
  .k-visual {
    width: 100%;
}}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
(-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 2dppx) {
  .k-visual {
    top: 270px;
  }}

@media (max-width: 768px) {
  .k-visual {
    width: 100%;
    position: absolute;
    top: 284px;
  }}

@media (max-width: 320px) {
  .k-visual {
    position: absolute;
    top: 260px;
  }}

#intro .intro-text {
  position: absolute;
  left: 0;
  top: 180px;
  right: 0;
  height: calc(50% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

#intro h2 {
  margin: 30px 0 10px 0;
  padding: 0 15px;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: #fff;
}

@media (max-width: 768px) {
  #intro h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

#intro .btn-get-started {
  position: relative;
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  background: linear-gradient(45deg, #FF0093, #FF0093);
  border: solid 3px #37517e;
  border-radius: 10em;
  width: 380px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 24px;
  line-height: 84px;
  text-align: center;
  transition-duration: 0.4s;
  z-index: 1;
  }

@media (max-width: 768px) {
  #intro .btn-get-started {
    font-size: 18px;
    width: 300px;
    line-height: 46px;
    bottom: 30px;
  }}

#intro .btn-get-started:hover {
  color: #52a0fd;
  background: #fff;
}

#intro .product-screens {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}

#intro .product-screens img {
  box-shadow: 0px -2px 19px 4px rgba(0, 0, 0, 0.29);
}

#intro .product-screens .product-screen-1 {
  position: absolute;
  z-index: 30;
  left: calc(50% + 54px);
  bottom: 0;
  top: 30px;
}

#intro .product-screens .product-screen-2 {
  position: absolute;
  z-index: 20;
  left: calc(50% - 154px);
  bottom: 0;
  top: 90px;
}

#intro .product-screens .product-screen-3 {
  position: absolute;
  z-index: 10;
  left: calc(50% - 374px);
  bottom: 0;
  top: 150px;
}

@media (max-width: 767px) {
  #intro .product-screens .product-screen-1 {
    position: static;
    padding-top: 30px;
  }
  #intro .product-screens .product-screen-2, #intro .product-screens .product-screen-3 {
    display: none;
  }
}

/*--------------------------------------------------------------
# 実績
--------------------------------------------------------------*/
#performance {
  padding: 60px 0 60px 0;
  overflow: hidden;
  background-color: #FFFAEA;
  position: relative;
}

#performance .box {
  padding: 40px;
  margin: 20px 10px;
  border-radius: 5px;
  background: #fff;
  transition: 0.4s;
}

@media (max-width: 768px) {
  #performance .box {
    padding: 10px;
    margin-bottom: 20px;
  }}

#performance .icon {
  float: left;
}

#performance .icon i {
  color: #666666;
  font-size: 80px;
  transition: 0.5s;
  line-height: 0;
}

#Performance .icon i:before {
  background: #52a0fd;
  background: linear-gradient(45deg, #52a0fd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#performance h4 {
  margin-top: 10px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

#performance h4 a {
  color: #111;
}

#performance p {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 24px;
  color: #37517e;
}

@media (max-width: 767px) {
  #performance .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
  #performance h4, #performance p {
    margin-left: 0;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# 稼いでいる個人ブログの共通点
--------------------------------------------------------------*/
@font-face {
  font-display: swap;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: local('Noto Sans JP'),
  url('https://domain-asura.com/noto-sans-jp-v28-latin_japanese-regular.woff2') format('woff2');
}

#common {
    padding: 60px 0;
    overflow: hidden;
    height: 97vh;
    width: 100%;
    background: linear-gradient(to top right, #00e2fa, #52a0fd);
    background-size: cover;
    position: relative;
    background-position: center;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
(-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 2dppx) {
  #common {
      height: 124vh;
  }}

@media (max-width: 768px) {
  #common {
    height: 89vh;
  }}

@media (max-width: 375px) {
  #common {
    height: 96vh;
  }}

@media (max-width: 320px) {
  #common {
    height: 107vh;
  }}

#common p {
  text-align: center;
  font-size: 21px;
  color: white;
  margin: 0px;
}

@media (max-width: 768px) {
  #common p {
    font-size: 16px;
  }}

#common span {
  font-size: 130%;
  line-height: 166%;
  font-weight: 700;
}

.img2 {
  position: relative;
  top: 0px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
(-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 2dppx) {
  .img2 {
    top: -50px;
  }}

@media (max-width: 768px) {
  .img2 {
    width: 100%;
    position: relative;
    top: 30px;
  }}

@media (max-width: 320px) {
  .img2 {
    width: 100%;
    position: relative;
    top: 14px;
  }}

/************************************
** ドメインパワーを上げる「答え」
************************************/
#reason {
  overflow: hidden;
}

#reason .reason-row {
  padding: 60px 0 30px 0;
}

#reason h2 {
  font-size: 26px;
  font-weight: 700;
  color: #37517e;
  text-align: left;
}

#reason h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}

#reason p {
  line-height: 24px;
  color: #37517e;
  margin-bottom: 30px;
}

#reason i {
  color: #666666;
  font-size: 64px;
  transition: 0.5s;
  float: left;
  padding: 0 15px 0px 0;
  line-height: 1;
}

#reason i:before {
  background: #52a0fd;
  background: linear-gradient(45deg, #52a0fd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#reason .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
}

#reason .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
}

@media (max-width: 768px) {
  #reason .advanced-feature-img-right, #reason .advanced-feature-img-left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  #reason .advanced-feature-img-right, #reason .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}

/************************************
** 使い方はとっても簡単
************************************/

/* モーダルウィンドウ
************************************/
.modal-content {
    width: 80%;
}

/* 背景色
************************************/
#howto {
    display: block;
    background: linear-gradient(45deg, rgba(6, 12, 34, 0.8), rgba(6, 12, 34, 0.8)), url("https://domain-asura.com/img/review-bg.jpg") center top no-repeat;
    padding: 60px 0 30px 0;
    background-size: 100%;
}

@media (max-width: 991px) {
  #howto {
      background: linear-gradient(45deg, rgba(6, 12, 34, 0.8), rgba(6, 12, 34, 0.8)), url("https://domain-asura.com/img/review-bg_m.jpg") center top no-repeat;
      background-size: 270%;
  }}

/* 画像
************************************/
.img-fluid {
    max-width: 100%;
    height: auto;
    padding: 10p;
    margin: 10px;
}

/* テキスト背景
************************************/
#howto .speaker .details {
    background: rgba(6, 12, 34, 0.76);
    position: absolute;
    left: 10px;
    bottom: -5px;
    right: -10px;
    text-align: center;
    margin: 15px;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* テキスト
************************************/
#howto .speaker .details p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
    font-style: italic;
}

/* 見出し
************************************/
#howto .h2, h2 {
    font-size: 32px;
    color: #fff;
    text-align: center;
    font-weight: 400;
}

#howto h3 {
  color: #52a0fd;
  margin: 10px 0px 10px 0;
  font-size: 20px;
}

#howto .modal-img_footer h3 {
  font-weight: 700;
  color: #37517e;
}

#howto .modal-img_footer a {
  text-decoration: underline;
}

#howto img {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}

.modal-img_footer {
    padding: 0rem 1.5rem 1.5rem 1.5rem;
}


/*--------------------------------------------------------------
# 選ばれる理由
--------------------------------------------------------------*/
#reason {
  background: #fff;
  overflow: hidden;
}

#reason .reason-img {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 769px) {
  #reason .reason-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}

#reason .reason-img img {
  max-width: 100%;
}

#reason .box {
  margin-bottom: 15px;
  text-align: center;
}

#reason .icon {
  margin-bottom: 10px;
}

#reason .icon i {
  color: #666666;
  font-size: 40px;
  transition: 0.5s;
}

#reason .icon i:before {
  background: linear-gradient(45deg, #00e2fa, #52a0fd);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#reason .title {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 22px;
  color: #37517e;
}

#reason .title a {
  color: #37517e;
}

#reason .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #37517e;
}

#reason .section-description {
  padding-bottom: 10px;
}

/*--------------------------------------------------------------
# ドメイン阿修羅が選ばれる４つの理由
--------------------------------------------------------------*/
#features {
  background: #fff;
  padding: 60px 0 0 0;
  overflow: hidden;
}

#features .features-img {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 769px) {
  #features .features-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}

#features .features-img img {
  max-width: 100%;
}

#features .box {
  margin-bottom: 15px;
  text-align: center;
}

#features .icon {
  margin-bottom: 10px;
}

#features .icon i {
  color: #666666;
  font-size: 40px;
  transition: 0.5s;
}

#features .icon i:before {
  background: linear-gradient(45deg, #00e2fa, #52a0fd);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#features .title {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 22px;
  color: #111;
}

#features .title a {
  color: #111;
}

#features .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #313131;
}

#features .section-description {
  padding-bottom: 10px;
}
/*--------------------------------------------------------------
# 料金プラン
--------------------------------------------------------------*/
/* マイクロコピー
--------------------------------*/
.blinking {
  color: #C30000;
  font-size: 20px;
  font-weight: 700;
  -webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

.microcopy {
  text-align: center;
  color: #37517e;
  margin: 0px;
}

.microcopy::before {
    content: "＼ ";
    font-weight: 700;
}

.microcopy::after {
    content: " ／";
    font-weight: 700;
}

/* Pricing Section
--------------------------------*/
#pricing {
  padding: 60px 0 60px 0;
  overflow: hidden;
  width: 100%;

  background: linear-gradient(to top right, #00e2fa, #52a0fd);
  background-size: cover;
  position: relative;
  background-position: center;
}

#pricing .box {
  padding: 26px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
  border-radius: 5px;
}

@media (max-width: 768px) {
  #pricing .box {
    padding: 20px;
  }}

#pricing h3 {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 20px;
}

#pricing h4 {
  font-size: 46px;
  color: #52a0fd;
  font-weight: 300;
}

#pricing h4 sup {
  font-size: 20px;
  top: -20px;
}

#pricing h4 span {
  color: #bababa;
  font-size: 20px;
}

#pricing ul {
  padding: 0;
  list-style: none;
  color: #37517e;
  text-align: left;
  line-height: 20px;
}

#pricing ul li {
  padding-bottom: 12px;
}

#pricing ul i {
  color: #52a0fd;
  font-size: 18px;
  padding-right: 4px;
}


/************************************
** こんなにお得
************************************/
#gain {
  overflow: hidden;
}

#gain .gain-row {
  padding: 60px 0 30px 0;
}

#gain h2 {
  text-align: left;
  font-size: 26px;
  font-weight: 700;
  color: #37517e;
}

#gain h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}

#gain p {
  line-height: 24px;
  color: #37517e;
  margin: 0px 0 10px 0;
}

.g-box {
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 16px;
  font-size: 14px;
}

#gain .g-box p {
  margin-bottom: 0px;
}

#gain .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
}

#gain .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
}

@media (max-width: 768px) {
  #gain .advanced-feature-img-right, #gain .advanced-feature-img-left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  #gain .advanced-feature-img-right, #gain .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}

/************************************
** グラフ
************************************/
ul.graph li {
    display: inline-block;
    width: 150px;
    text-align: center;
}

.bar1{
    width: 40px;
    height: 50px;
    margin: 0 auto;
    background-color: #cc0000;
}
.bar2{
    width: 40px;
    height: 40px;
    margin: 0 auto;
    background-color: #66cc00;
}
.bar3{
    width: 40px;
    height: 70px;
    margin: 0 auto;
    background-color: #0033ff;
}

@media only screen and (min-width: 767px) {
.css_bar_graph::before {
    content: "面倒な設定は一切不要。";
    text-align: left;
    color: #37517e;
    background-color: #b4eaff;
    font-size: 129%;
    transform: rotate(-2deg);
    display: inline-block;
    padding: 0px 10px;
    white-space: pre;
    position: relative;
    top: 26px;
    left: 250px;
}

.css_bar_graph::after {
    content: "すぐに使えて維持費も安い！";
    text-align: left;
    color: #37517e;
    background-color: #b4eaff;
    font-size: 129%;
    transform: rotate(-2deg);
    display: inline-block;
    padding: 0px 10px;
    white-space: pre;
    position: relative;
    top: 54px;
    left: 60px;
}}



/* ==================== BAR GRAPH  ==================== */
/* ------ container ------ */

div.css_bar_graph {
  width: 100%;
  height: 360px;
  padding: 40px 0px 10px 0px;
  /* --- font --- */
  font-size: 13px;
  font-family: arial, sans-serif;
  font-weight: normal;
  color: #444444;
  background-color: #ffffff;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #d5d5d5;
  /* --- css3 --- */
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

@media only screen and (max-width: 767px) {
    div.css_bar_graph{
        width: 100%;
        overflow-x: scroll;
    }
}

/* ------ hyperlinks ------ */

div.css_bar_graph a {
  color: #444444;
  text-decoration: none;
}

/* ------ lists ------ */

div.css_bar_graph ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

div.css_bar_graph li {
  margin: 0px;
  padding: 0px;
}

/* ==================== Y-AXIS LABELS ==================== */
/* ------ base ------ */

div.css_bar_graph ul.y_axis {
  width: 50px;
  position: absolute;
  top: 40px;
  left: 10px;
  text-align: right;
}

/* ------ labels ------ */

div.css_bar_graph ul.y_axis li {
  width: 100%;
  height: 50px;	/* 50px including border */
  float: left;
  color: #888888;
  /* --- alignment correction --- */
  border-top: 1px solid transparent;
  position: relative;
  top: -37px;	/* value = font height */
}

@media only screen and (max-width: 767px) {
  div.css_bar_graph ul.y_axis li {

    top: -14px;
    }}
/* ==================== X-AXIS LABELS  ==================== */
/* ------ base ------ */

div.css_bar_graph ul.x_axis {
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0px;
  left: 90px;
  text-align: center;
}

/* ------ labels ------ */

div.css_bar_graph ul.x_axis li {
  display: inline;
   width: 149px;
   float: left;
   position: relative;
   left: 41px;
}

@media only screen and (max-width: 767px) {
    div.css_bar_graph ul.x_axis li {
    width: 100px;
    position: relative;
    left: -5px;
    }
}

/* ==================== GRAPH LABEL  ==================== */
/* ------ base ------ */

div.css_bar_graph div.label {
  width: 100%;
  height: 50px;
  float: left;
  margin-top: 20px;
  text-align: center;
}

div.css_bar_graph div.label span { font-weight: bold; }

/* ==================== GRAPH  ==================== */
/* ------ base ------ */

div.css_bar_graph div.graph {
  width: 100%;
  height: 100%;
  float: left;
}

/* ------ grid ------ */

div.css_bar_graph div.graph ul.grid { width: 100%; }

/* ------ IE grid ------ */

div.css_bar_graph div.graph li {
  width: 100%;
  height: 49px;	/* 50px including border */
  float: left;
  border-top: 1px solid #e5e5e5;
}

/* ------ other browsers grid ------ */

div.css_bar_graph div.graph li:nth-child(odd) {
  width: 100%;
  height: 49px;	/* 50px including border */
  float: left;
  border-top: 1px solid #e5e5e5;
  background-color: #f8f8f8;
}

div.css_bar_graph div.graph li:nth-child(even) {
  width: 100%;
  height: 49px;	/* 50px including border */
  float: left;
  border-top: 1px solid #e5e5e5;
}

/* ------ bottom grid element ------ */

div.css_bar_graph div.graph li.bottom {
  border-top: 1px solid #d5d5d5;
  background-color: #eeeeee;
  height: 19px;
}

/* ==================== BARS COMMON  ==================== */
/* ------ common styles ------ */

div.css_bar_graph div.graph li.bar {
  width: 50px;
  float: left;
  position: absolute;
  bottom: 70px;
  text-align: center;
  /* --- css3 --- */
	/* --- transitions --- */
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

/* ------ bar top circle ------ */

div.css_bar_graph div.graph li.bar div.top {
  width: 100%;
  height: 20px;
  margin-top: -10px;
  /* --- css3 --- */
  -moz-border-radius: 50px/20px;
  -webkit-border-radius: 50px 20px;
  border-radius: 50px/20px;
  /* --- transitions --- */
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

/* ------ bar bottom circle ------ */

div.css_bar_graph div.graph li.bar div.bottom {
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: -10px;
  left: 0px;
  /* --- css3 --- */
  -moz-border-radius: 50px/20px;
  -webkit-border-radius: 50px 20px;
  border-radius: 50px/20px;
  /* --- transitions --- */
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

/* ------ bar top label ------ */

div.css_bar_graph div.graph li.bar span {
  position: relative;
  top: -50px;
  padding: 3px 5px 3px 5px;
  z-index: 100;
  background-color: #eeeeee;
  border: 1px solid #bebebe;
  /* --- css3 --- */
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  /* --- gradient --- */
  background-image: linear-gradient(top, #ffffff, #f1f1f1 1px, #ebebeb); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f1f1', endColorstr='#ebebeb'); /* IE5.5 - 7 */
 -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f1f1', endColorstr='#ebebeb'); /* IE8 */
  background: -ms-linear-gradient(top, #ffffff, #f1f1f1 1px, #ebebeb); /* IE9 */
  background: -moz-linear-gradient(top, #ffffff, #f1f1f1 1px, #ebebeb); /* Firefox */
  background: -o-linear-gradient(top, #ffffff, #f1f1f1 1px, #ebebeb); /* Opera 11  */
  background: -webkit-linear-gradient(top, #ffffff, #f1f1f1 1px, #ebebeb); /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(0.05, #f1f1f1), color-stop(1, #ebebeb)); /* Chrome 10, Safari */
  /* --- shadow --- */
  text-shadow: 0px 1px 0px rgba(255,255,255,1);
  box-shadow: 0px 1px 0px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px 1px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 1px 0px rgba(0,0,0,0.1);
  /* --- transitions --- */
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

/* ------ bars positions ------ */

div.css_bar_graph div.graph li.nr_1 { left: 180px; }

div.css_bar_graph div.graph li.nr_2 { left: 330px; }

div.css_bar_graph div.graph li.nr_3 { left: 290px; }

div.css_bar_graph div.graph li.nr_4 { left: 380px; }

div.css_bar_graph div.graph li.nr_5 { left: 470px; }

div.css_bar_graph div.graph li.nr_6 { left: 560px; }

div.css_bar_graph div.graph li.nr_7 { left: 650px; }

div.css_bar_graph div.graph li.nr_8 { left: 740px; }

@media only screen and (max-width: 767px) {
div.css_bar_graph div.graph li.nr_1 { left: 110px; }

div.css_bar_graph div.graph li.nr_2 { left: 210px; }

div.css_bar_graph div.graph li.nr_3 { left: 215px; }

div.css_bar_graph div.graph li.nr_4 { left: 275px; }

div.css_bar_graph div.graph li.nr_5 { left: 335px; }

div.css_bar_graph div.graph li.nr_6 { left: 350px; }

div.css_bar_graph div.graph li.nr_7 { left: 650px; }

div.css_bar_graph div.graph li.nr_8 { left: 740px; }
}


/* ==================== BLUE BAR  ==================== */
/* ------ base ------ */

div.css_bar_graph div.graph li.blue {
  background: #208faf;	/* --- IE --- */
  background: rgba(32,143,175,0.8);
}

/* ------ top ------ */

div.css_bar_graph div.graph li.blue div.top { background: #72b8cc; }

/* ------ bottom ------ */

div.css_bar_graph div.graph li.blue div.bottom { background: #208faf; }

/* ==================== GREEN BAR  ==================== */
/* ------ base ------ */

div.css_bar_graph div.graph li.green {
  background: #608d00;	/* --- IE --- */
  background: rgba(96,141,0,0.8);
}

/* ------ top ------ */

div.css_bar_graph div.graph li.green div.top { background: #a2c656; }

/* ------ bottom ------ */

div.css_bar_graph div.graph li.green div.bottom { background: #608d00; }

/* ==================== ORANGE BAR  ==================== */
/* ------ base ------ */

div.css_bar_graph div.graph li.orange {
  background: #ff9000;	/* --- IE --- */
  background: rgba(255,144,0,0.8);
}

/* ------ top ------ */

div.css_bar_graph div.graph li.orange div.top { background: #ffc24c; }

/* ------ bottom ------ */

div.css_bar_graph div.graph li.orange div.bottom { background: #ff9000; }

/* ==================== PURPLE BAR  ==================== */
/* ------ base ------ */

div.css_bar_graph div.graph li.purple {
  background: #7d47ba;	/* --- IE --- */
  background: rgba(125,71,186,0.8);
}

/* ------ top ------ */

div.css_bar_graph div.graph li.purple div.top { background: #b592dd; }

/* ------ bottom ------ */

div.css_bar_graph div.graph li.purple div.bottom { background: #7d47ba; }

/* ==================== RED BAR  ==================== */
/* ------ base ------ */

div.css_bar_graph div.graph li.red {
  background: #d23648;	/* --- IE --- */
  background: rgba(210,54,72,0.8);
}

/* ------ top ------ */

div.css_bar_graph div.graph li.red div.top { background: #ea828e; }

/* ------ bottom ------ */

div.css_bar_graph div.graph li.red div.bottom { background: #d23648; }

/* ==================== HOVERS  ==================== */

div.css_bar_graph div.graph li.blue:hover {
  cursor: pointer;
  background: #208faf;
}

div.css_bar_graph div.graph li.green:hover {
  cursor: pointer;
  background: #608d00;
}

div.css_bar_graph div.graph li.orange:hover {
  cursor: pointer;
  background: #ff9000;
}

div.css_bar_graph div.graph li.purple:hover {
  cursor: pointer;
  background: #7d47ba;
}

div.css_bar_graph div.graph li.red:hover {
  cursor: pointer;
  background: #d23648;
}

div.css_bar_graph div.graph li.bar:hover span {
  cursor: pointer;
  top: -60px;
  padding: 10px;
  margin: 0px;
}

/************************************
** サポート完全無料
************************************/
#support {
  overflow: hidden;
}

#support .support-row {
  padding: 60px 0 30px 0;
}

#support h2 {
  text-align: left;
  font-size: 26px;
  font-weight: 700;
  color: #37517e;
}

#support h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}

#support p {
  line-height: 24px;
  color: #37517e;
  margin-bottom: 30px;
}

#support i {
  color: #666666;
  font-size: 64px;
  transition: 0.5s;
  float: left;
  padding: 0 15px 0px 0;
  line-height: 1;
}

#support i:before {
  background: #52a0fd;
  background: linear-gradient(45deg, #52a0fd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#support .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
}

#support .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
}

@media (max-width: 768px) {
  #support .advanced-feature-img-right, #support .advanced-feature-img-left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  #support .advanced-feature-img-right, #support .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}


/*--------------------------------------------------------------
# よくある質問
--------------------------------------------------------------*/
#faq {
  padding: 60px 0;
  overflow: hidden;
}

#faq #faq-list {
  padding: 0;
  list-style: none;
}

#faq #faq-list li {
  border-bottom: 1px solid #ddd;
}

#faq #faq-list a {
  padding: 26px 0;
  display: block;
  position: relative;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  padding-right: 20px;
}

#faq #faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 16px;
}

#faq #faq-list p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #faq #faq-list a {
    font-size: 18px;
  }
  #faq #faq-list i {
    top: 13px;
  }
}

#faq #faq-list a.collapse {
  color: #52a0fd;
}

#faq #faq-list a.collapsed {
  color: #37517e;
}

#faq #faq-list a.collapsed i::before {
  content: "\f2c7" !important;
}

/************************************
** こんなにお得
************************************/
#innovation {
  overflow: hidden;
}

#innovation .innovation-row {
  padding: 60px 0 30px 0;
}

#innovation h2 {
  text-align: left;
  font-size: 26px;
  font-weight: 700;
  color: #37517e;
}

#innovation h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}

#innovation p {
  line-height: 24px;
  color: #37517e;
  margin: 0px 0 10px 0;
}

.g-box {
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 16px;
  font-size: 14px;
}

#innovation .g-box p {
  margin-bottom: 0px;
}

#innovation .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
}

#innovation .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
}

@media (max-width: 768px) {
  #innovation .advanced-feature-img-right, #innovation .advanced-feature-img-left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  #innovation .advanced-feature-img-right, #innovation .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}

/*--------------------------------------------------------------
# 問い合わせ
--------------------------------------------------------------*/
#contact {
  /* background: #FFFAEA; */
  padding: 60px 0;
  overflow: hidden;
}

#contact .contact-about h2 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #37517e;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  color: #37517e;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #52a0fd;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #52a0fd;
}

#contact .social-links a:hover {
  background: #52a0fd;
  color: #fff;
}

#contact .info {
  color: #333333;
}

#contact .info i {
    font-size: 32px;
    color: #52a0fd;
    background: linear-gradient(to top right, #00e2fa, #52a0fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    float: left;
    line-height: 1;
}

#contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
  color: #37517e;
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #37517e;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #37517e;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #37517e;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input, #contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input::focus, #contact .php-email-form textarea::focus {
  background-color: #52a0fd;
}

#contact .php-email-form button[type="submit"] {
  background: linear-gradient(45deg, #00e2fa, #52a0fd);
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
}

#contact .php-email-form button[type="submit"]:hover {
  cursor: pointer;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# フッター
--------------------------------------------------------------*/
#footer {
  /* background: #FFFAEA; */
  padding: 30px 0;
  color: #37517e;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
  color: #888;
}

#footer .footer-links a {
  color: #37517e;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #52a0fd;
}

/*--------------------------------------------------------------
# 共通要素
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

.get-started-btn {
  background: linear-gradient(45deg, #ef70c5, #FF0093);
  border: solid 2px #37517e;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.table {
    color: #37517e;
}

.big {
    font-size: 120%;
}

.red {
    color: #FF4D4D;
    font-size: 120%;
    line-height: 166%;
}

.yellow {
    color: #FFEA44;
    font-size: 120%;
    line-height: 166%;
    font-weight: 700;
}


body {
  background: #fff;
  color: #37517e;
  font-family: "Noto Sans JP",Open Sans, sans-serif;
  overflow-x: hidden;
}

a {
  color: #52a0fd;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #FFEA44;
  outline: none;
  text-decoration: none;
}

#faq a:hover, #faq a:active, #faq a:focus {
  color: #52a0fd;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(45deg, #00e2fa, #52a0fd);
  color: #fff;
  padding: 2px 20px 8px 20px;
  font-size: 16px;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
}

.back-to-top:focus {
  background: linear-gradient(45deg, #00e2fa, #52a0fd);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #52a0fd;
  color: #fff;
}

/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #37517e;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 768px) {
  .section-header .section-title {
    font-size: 28px;
  }}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #37517e;
}

@media (max-width: 768px) {
  .section-description {
    text-align: left !important;
  }}

.section-divider-b {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to top right, #00e2fa, #52a0fd);
  margin: 0 auto;
  margin-bottom: 20px;
}

.section-header .section-divider-y {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to top right, #FFFAEA, #FFEA44);
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #efeff5;
}





/*--------------------------------------------------------------
# 追加
--------------------------------------------------------------*/

/*コピー用
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# ヘッダー会員登録CTA
--------------------------------------------------------------*/
@media (min-width: 768px) {
.btn-registration {
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 15px !important;
    border-radius: 5px;
    transition: background 0.5s;
    border: 2px solid #FFEA44;
    color: #f8f9fa;
}}


/*--------------------------------------------------------------
# キーボード
--------------------------------------------------------------*/
.badge-trial {
  color: #52a0fd;
  border: 1px solid #52a0fd;
  border-radius: 10px;
  font-family: inherit;
  width: 80px;
  margin: 16px auto;
  font-size: 14px;
}

/*--------------------------------------------------------------
# アイコンカラー
--------------------------------------------------------------*/
.ion-android-checkmark-circle{
  color: #52a0fd;
}


/*--------------------------------------------------------------
# 番号なしリスト非表示
--------------------------------------------------------------*/
ul {
	list-style: none;
  padding: 0 0 0 15px;
}


/*--------------------------------------------------------------
# 背景黒セクション
--------------------------------------------------------------*/
.section-bk {
    background: #232323;
    color: #fff;
}


/*--------------------------------------------------------------
# ツールチップ
--------------------------------------------------------------*/
.tooltip-inner {
    max-width: 350px;
    width: 350px;
    text-align: left;
}


/*--------------------------------------------------------------
# おすすめリボン
--------------------------------------------------------------*/
.ribbon {
    width: 80px;
    height: 80px;
    overflow: hidden;
    position: absolute;
    z-index: 10;
}

.ribbon-top-left {
    top: -7px;
    left: 5px;
}

.ribbon-top-left:before {
    top: -1px;
    right: 4px;
}
.ribbon-top-left::after {
    bottom: 4px;
    left: 1px;
}
.ribbon-top-left::before, .ribbon-top-left::after {
    border-top-color: transparent;
    border-left-color: transparent;
}

.ribbon:before, .ribbon:after {
    position: absolute;
    z-index: -1;
    content: '';s
    display: block;
    border: 4px solid #224963;
}

.ribbon-top-left span {
    right: -45px;
    top: 18px;
    transform: rotate(-45deg);
}

.ribbon span {
    position: absolute;
    display: block;
    width: 185px;
    padding: 5px 0;
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
    color: #fff;
    font: 700 11px/1'Lato',sans-serif;
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
    text-transform: uppercase;
    text-align: center;
}

.ribbon-color-1 span {
    background-color: #028aff;
}


/************************************
** 下線マーカー
************************************/

/* ブルー（青）
************************************/
.under-b {
  font-size: 120%;
  line-height: 166%;
  background: linear-gradient(transparent 69%,#37517e0ff 95%);
	font-weight: 700;
}

/* イエロー（黄色）
************************************/
.under-y {
  font-size: 120%;
  line-height: 166%;
  background: linear-gradient(transparent 69%,#FFEA44 95%);
	font-weight: 700;
}

/* レッド（赤）
************************************/
.under-r {
  font-size: 120%;
  line-height: 166%;
  background: linear-gradient(transparent 69%,#ff37517e0 95%);
	font-weight: 700;
}

/************************************
** hurry
************************************/
#hurry {
    padding: 60px 0;
    overflow: hidden;
}

/************************************
** 画像シャドウ
************************************/
.img-shadow{
    box-shadow: 5px 5px 15px #eee;
}

/************************************
** オーダーボックス（順番待ち）
************************************/
.order-box {
    background: #ffffffe3;
    border: solid 2px #ed5050;
    padding: 20px;
    margin: 0 20px;
    z-index: 1;
}
