/* ==========================================================================
Typography
========================================================================== */
p{
  font-size: 16px;
  line-height: 29px;
  /* color: rgba(28, 54, 83, 0.959); */
  padding-bottom: 20px;
  margin-bottom: 2rem;
  text-align: justify;
}

p:last-child{
  margin-bottom: 0;
}

p a {
  text-decoration: underline;
}

h1 {
  font-size: 40px;
  font-weight: bold;
}

h2 {
  font-size: 40px;
  font-weight: bold;
  /* color: #00a1ff; */
  text-align: center;
  /* margin: 4rem 0 6rem; */
  margin: 0;
  line-height: 7rem;
  /* letter-spacing: .2rem; */
  /* position: relative; */
}

h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #3D4351;
  font-weight: bold;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 20px;
  color: #3D4351;
  text-transform: uppercase;
  font-weight: bold;
}

.btn {
  font-size: 13px;
  border: solid 2px;
  /* border-radius: 40px; */
  display: inline-block;
  text-transform: uppercase;
}

.btn:hover,
.btn:focus {
  color: #fff;
  border-color: #FF5274;
  background-color: #FF5274;
}

.btn-white {
  font-size: 13px;
  border: solid 2px;
  border-radius: 40px;
  display: inline-block;
  border-color: #fff;
}

.btn-white:hover,
.btn-white:focus {
  color: #FF5274;
  border-color: #FF5274;
}

button.btn{
  width: 100%;
  height: 53px;
  font-weight: bold;
  font-size: 120%;
}

button.btn-info{
  color:black;
  background-color: #FFE15D !important;
  border-color: #FFE15D !important;
}

button.btn-info:hover,.btn-info:focus{
  color:black;
  opacity: .7;
  background-color: #fff34c ;
  border-color: #fff34c;
}

.btn-small {
  padding: 8px 40px;
}

.btn-large {
  padding: 15px 40px;
}

.btn-margin-right {
  margin-right: 20px;
}

.gray-back {
  background: #F3F4F8;
}

/* ==========================================================================
Global Styles
========================================================================== */
.group:after {
  content: "";
  display: table;
  clear: both;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

a {
  /* color: #FF5274; */
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-property: color, border-color, background-color;
  transition-property: color, border-color, background-color;
}

a:hover,
a:focus {
  color: #D7405D;
  text-decoration: none;
}

body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', Osaka, arial, helvetica, sans-serif;
  font-weight: 300;
  color: #444;
  -webkit-text-size-adjust: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

.section-padding {
  /* padding: 0 0 6rem; */
  padding: 100px 0;
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4;
  visibility: visible;
  filter: alpha(opacity=0);
  opacity: 0;
}

.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  background-color: #000;
  border-radius: 4px;
}

/* ==========================================================================
Animations
========================================================================== */
.pulse2 {
  -webkit-animation-name: pulse2;
  animation-name: pulse2;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes pulse2 {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse2 {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.floating-arrow {
  -webkit-animation-name: floating-arrow;
  animation-name: floating-arrow;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes floating-arrow {
  from {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  65% {
    -webkit-transform: translate(-50%, 15px);
    transform: translate(-50%, 15px);
  }

  to {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@keyframes floating-arrow {
  from {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  65% {
    -webkit-transform: translate(-50%, 15px);
    transform: translate(-50%, 15px);
  }

  to {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

.floating-logo {
  -webkit-animation-name: floating-logo;
  animation-name: floating-logo;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes floating-logo {
  from {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  50% {
    -webkit-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
  }

  to {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@keyframes floating-logo {
  from {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  50% {
    -webkit-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
  }

  to {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

/* ==========================================================================
Waypoinsts
========================================================================== */
.wp1,
.wp2,
.wp3,
.wp4,
.wp5,
.wp6,
.wp7,
.wp8,
.wp9 {
  visibility: hidden;
}

.wp2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.bounceInLeft,
.bounceInRight,
.fadeInUp,
.fadeInUpDelay,
.fadeInDown,
.fadeInUpD,
.fadeInLeft,
.fadeInRight,
.bounceInDown {
  visibility: visible;
}

/* ==========================================================================
Navigation
========================================================================== */
.header-nav.open {
  visibility: visible;
  opacity: 0.95;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.nav-toggle {
  position: absolute;
  top: -30px;
  right: 15px;
  /* right: 25px; */
  z-index: 999999;
  padding: 10px 35px 16px 0;
  /* bottom: 35px; */
  cursor: pointer;
}

.nav-toggle:focus {
  outline: none;
}

.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
  content: "";
  position: absolute;
  display: block;
  width: 35px;
  height: 3px;
  border-radius: 1px;
  background: #fff;
  cursor: pointer;
  z-index: 99999;
}

.nav-toggle span:before {
  top: -10px;
}

.nav-toggle span:after {
  bottom: -10px;
}

.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.nav-toggle.active span {
  background-color: transparent;
}

.nav-toggle.active span:before,
.nav-toggle.active span:after {
  top: 0;
}

.nav-toggle.active span:before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-toggle.active span:after {
  top: 10px;
  -ms-transform: translatey(-10px) rotate(-45deg);
  -webkit-transform: translatey(-10px) rotate(-45deg);
  transform: translatey(-10px) rotate(-45deg);
}

.navicon {
  position: absolute;
  height: 26px;
  right: 10px;
  top: 48px;
  visibility: hidden;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

/* ==========================================================================
Hero
========================================================================== */

.hero .down-arrow a {
  color: #fff;
}

.hero h1 {
  color: #fff;
  margin-bottom: 4rem;
}

.hero p.intro {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 80px;
}

/* .hero .hero-content {
  padding-top: 7%;
} */
.hero .hero-content figcaption {
  margin-top: 1rem;
  color: white;
}

.navigation {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  width: 100%;
  z-index: 999;
}

.fixed {
  background-color: #1a7bc0;
  z-index: 999;
  width: 100%;
  opacity: .9;
}

header {
  padding: 10px 50px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  position: relative;
  /* width: 1170px; */
  margin: 0 auto;
  -webkit-transition: padding 300ms ease-in-out;
  transition: padding 300ms ease-in-out;
  z-index: 10;
  /* background: rgb(21 79 123 / 40%);; */
  background: rgba(0 0 0 / 40%);
}

header a {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}

header a.login {
  margin-right: 20px;
}

header .logo {
  display: inline-block;
}

header ul.primary-nav {
  margin: 0 0 0 35px;
  padding: 0;
}

header ul.primary-nav li {
  display: inline-block;
}

header ul.primary-nav li a {
  color: #fff;
  padding-right: 25px;
}

header ul.primary-nav li a:hover {
  opacity: .7;
}

header ul.primary-nav li:last-child a {
  padding-right: 0px;
}

header ul.member-actions li {
  display: inline;
}

@media screen and (min-width:992px) {
  header ul.member-actions li {
    margin-left: 6px;
  }
}

header ul.member-actions li a {
  color: #fff;
}

header ul.member-actions li a img {
  max-width: 200px;
}

@media screen and (max-width:1291px) {
  header ul.member-actions li a img {
    max-width: 350px;
  }
}

header .header-nav {
  display: inline-block;
}

header .member-actions {
  position: absolute;
  right: 50px;
  top: 10px;
  /* right: 0;
  top: 20px; */
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.swiper-slide img{
  width: 100%;
  height: auto;
}

.down-arrow {
  color: #fff;
  font-size: 30px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* ==========================================================================
Intro
========================================================================== */
.intro span.icon {
  font-size: 40px;
  color: #FF5274;
  font-weight: bold;
}

.intro-icon {
  display: inline-block;
  vertical-align: top;
  width: 40px;
}

.intro-content {
  display: inline-block;
}

/* ==========================================================================
.hero-strip
========================================================================== */
.hero-strip {
  /* background: url("../img/lp_bg.jpg") no-repeat center center; */
  /* padding-bottom: 190px; */
  padding-bottom: 400px;
  position: relative;
  background-size: cover;
}

.hero-strip i {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 25px;
  color: #F69D52;
  vertical-align: top;
  margin-left: -8px;
  font-style: normal;
}

.hero-strip h2 {
  color: #fff;
  /* margin: 4rem 0; */
}

.hero-strip p {
  color: white;
}

.hero-strip .btn {
  margin-top: 10px;
}

.hero-strip .logo-placeholder {
  width: auto;
  height: 230px;
  position: absolute;
  /* bottom: -285px; */
  bottom: 150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
}

/* ==========================================================================
.operation-intro
========================================================================== */

.operation{
  margin-bottom: 4rem;
}

.operation-intro {
  padding-top: 160px;
}

.operation-intro .leftcol {
  padding-right: 100px;
  border-right: solid 1px #E6E9EA;
}

.operation-intro .rightcol {
  padding-left: 100px;
}

/* ==========================================================================
.operation
========================================================================== */

.operation img {
  width: 100%;
  height: auto;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.operation .btn {
  margin-top: 20px;
}

.operation .operation-img-wrap {
  position: relative;
  overflow: hidden;
}

.operation .operation-img-wrap .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.operation .operation-img-wrap i {
  color: #fff;
  font-size: 20px;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 25px;
  right: 35px;
}

.operation .operation-img-wrap:hover img,
.operation .operation-img-wrap:focus img {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.operation .operation-img-wrap:hover .overlay,
.operation .operation-img-wrap:focus .overlay {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
  filter: alpha(opacity=1);
  opacity: 1;
  z-index: 9;
}

.operation figcaption i {
  margin-left: 5px;
  font-size: 15px;
}

.operation figcaption a.operation-post-title {
  color: rgba(28, 54, 83, 0.6);
}

.operation figcaption a.operation-post-title:hover,
.operation figcaption a.operation-post-title:focus {
  color: #3D4351;
}

/* ==========================================================================
Sign up form
========================================================================== */
.sign-up .signup-form {
  /* padding: 15px 0; */
  border-radius: 3px;
  /* font-size: 13px; */
  margin: 0 auto;
  width: 90%;
}

@media screen and (min-width:992px) {
  .sign-up .signup-form {
    width: 50%;
    padding-bottom: 10rem;
  }
}

.sign-up .signup-form .form-input-group {
  /* width: 80%; */
  height: 55px;
  margin: 0 auto 10px;
  border-radius: 5px;
  border: solid 1px #E6E9EA;
  text-align: left;
  position: relative;
}

.sign-up .signup-form .form-input-group i {
  /* color: #FF5274; */
  color: #0072BB;
  font-size: 14px;
}

.sign-up .signup-form .form-input-group i:after {
  content: "";
  height: 30px;
  width: 1px;
  border-right: solid 1px #E6E9EA;
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sign-up .signup-form .form-input-group i.fa-phone {
  font-size: 18px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 20px;
}

.sign-up .signup-form .form-input-group i.fa-envelope {
  font-size: 14px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 20px;
}

.sign-up .signup-form .form-input-group i.fa-user {
  font-size: 14px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 20px;
}

.sign-up .signup-form .form-input-group i.fa-building-o {
  font-size: 14px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 20px;
}

.sign-up .signup-form .form-input-group input {
  padding-left: 68px;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  border: none;
}

.sign-up .signup-form .form-input-group input::-webkit-input-placeholder {
  color: #BCC1C3;
}

.sign-up .signup-form .form-input-group input:-moz-placeholder {
  color: #BCC1C3;
}

.sign-up .signup-form .form-input-group input::-moz-placeholder {
  color: #BCC1C3;
}

.sign-up .signup-form .form-input-group input:-ms-input-placeholder {
  color: #BCC1C3;
}

/* ==========================================================================
Footer
========================================================================== */
footer {
  /* background: url("../img/lp_bg.jpg") no-repeat;
  background-size: cover;
  background-position-y: 90%;
  position: relative;
  width: 100%; */
  background-color: #383842;
}

footer p {
  color: white;
  font-size: 13px;
  padding-bottom: 0;
}

footer a {
  color: #fff;
}

footer a:hover {
  opacity: .6;
  color: white;
}

footer ul.footer-group {
  border-top: solid 1px #4E566C;
  padding-top: 25px;
  margin-bottom: 45px;
}

footer ul.footer-group li {
  display: inline-block;
}

footer ul.footer-group li a {
  font-size: 13px;
  text-transform: uppercase;
}

footer ul.footer-group li a:hover {
  color: #FF5274;
}

footer ul.footer-group li {
  margin-right: 30px;
}

footer ul.footer-group li:last-child {
  margin-right: 0;
}

footer span.fa-heart {
  color: #ff415c;
  font-size: 15px;
  margin: 0 2px;
}

footer .social-share {
  position: absolute;
  background: url("../img/polygonal-bg.jpg") no-repeat;
  background-size: cover;
  background-position-y: 80%;
  right: 0;
  width: 40%;
  height: 100%;
  padding: 142px 0 0 70px;
}

footer .social-share p {
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 10px;
}

footer .social-share a.twitter-share {
  height: 60px;
  width: 60px;
  background-color: #1AB4EF;
  border-radius: 3px;
  font-size: 22px;
  display: inline-block;
  text-align: center;
  margin-right: 20px;
}

footer .social-share a.twitter-share:hover,
footer .social-share a.twitter-share:focus {
  background-color: #1590BF;
}

footer .social-share a.facebook-share:hover,
footer .social-share a.facebook-share:focus {
  background-color: #324C85;
}

footer .social-share a.facebook-share {
  height: 60px;
  width: 60px;
  background-color: #3B5898;
  border-radius: 3px;
  font-size: 22px;
  display: inline-block;
  text-align: center;
}

footer .social-share a {
  color: #fff;
}

footer .social-share a:hover {
  color: #fff;
}

footer .social-share a i {
  margin-top: 20px;
}

footer .footer-links {
  margin: 1rem 0;
}

/* 追加 */

.tbSt th {
  white-space: nowrap;
  padding-right: 1rem;
}

.btn-Ori {
  display: inline-block;
  font-weight: bold;
  width: 250px;
  margin: .5rem;
  font-size: 16px;
}

.btn-Ori.btn-normal {
  border: #008ad3 solid 2px;
  background: linear-gradient(to bottom, #378bff 0, #54b8ff 100%);
}

.btn-fill:hover {
  opacity: .9;
}

.btn-fill.btn-normal:hover {
  transition: .5s;
  border: #3d5fb1 2px solid;
}

.h1-subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.h1-subtitle span {
  font-size: 20px;
  color: white;
  padding: 1rem;
}

.logo-placeholder img {
  width: 600px;
  margin-left: 10px;
  /* padding-top: 10px; */
}

.operation-intro img {
  width: 100%;
}


header .logo img {
  width: 230px;
}

h1 br {
  display: none;
}

.hero-content{
  padding: 2rem 0;
}

.hero .hero-content figure img {
  margin-right: 70px;
}

.gridAward p {
  /* color: #DA8E00;
  background: -webkit-linear-gradient(90deg, #c9a063, #dfc7a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  color: white;
  font-weight: bold;
  padding-bottom: 0;
  font-family: serif;
  font-size: 24px;
}

.asiImg img {
  margin: 1rem;
}

.hero-content h1 span {
  font-size: 80%;
  padding: .25rem;
  vertical-align: middle;
}

#trial h3 {
  font-size: 28px;
  /* color: #1a7bc0; */
  /* margin: 0 0 2rem; */
  margin: 0;
  /* letter-spacing: .2rem; */
  text-align: center;
}

/* #trial span {
  font-size: 50%;
} */

.trialWrap h4 {
  font-weight: bold;
  font-size: 18px;
}

.trialWrap .trialWrap-box {
  text-align: center;
}

.trialWrap .trialWrap-box p {
  padding-bottom: 0;
  display: inline-block;
  text-align: left;
}

.trialBox {
  background-color: white;
  border: 4px solid #f3f4f8;
  padding: 4rem;
}

.d-flex {
  display: flex;
}

.operation .howtoWrap a {
  color: #00a1ff;
  margin-top: 0;
}

.howtoWrap .btn:hover,
.howtoWrap .btn:focus {
  border-color: #00a1ff;
  background-color: #00a1ff;
  color: white;
}

.signupWrap p {
  display: inline-block;
  text-align: left;
}

.sign-up h2 {
  margin-top: 0;
}

/* 確認画面 */
.confilmSec {
  background: url(../img/lp_bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 2rem 0;
}

.confilmSec h2 {
  color: white;
}

.confilmData {
  font-size: 18px;
  padding: 4rem 0;
  color: #000;
}

.confilmData .logo-placeholder {
  width: 124px;
  margin: auto;
}

.confilmData-wrap div {
  margin-bottom: 1rem;
}

.confilmDataWrap-head {
  font-weight: bold;
}

.confilmBtn {
  margin-top: 2rem;
}

.confilmBtn div button {
  width: 100%;
  padding: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.btn-back-complete {
  color: #fff !important;
}

.confilmData .logo-placeholder img {
  margin-left: 15px;
}

.confilmData .confilmData-body {
  max-width: 590px;
  margin: auto;
}

.confilmBtn.complete {
  text-align: center;
}

.confilmBtn.complete button {
  text-align: center;
  padding: 1rem 2rem;
  margin: 1rem;
}


/* 20230119 */

img{
  width: 100%;
}

@media screen and (min-width: 768px), print {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.alert-danger{
  text-align: center;
}

#footer{
  width: 100%;
}

#assirobo_exp,#why_exp,#trial_exp,#seminar_exp{
  /* margin-top:-55px !important; */
  padding-top:45px !important;
}

#once h4{
  text-align: center;
  padding: 0.5em;
  border-bottom: 2px dotted #999999;
  margin-top: 2.5em;
  font-size: 18px;
  font-weight: bold;
}

#once .lead{
  margin-top: 3em;
  font-weight: bold;
}

@media screen and (max-width:991px) {
  #once h4{
    margin-bottom: 1em;
  }
}

.box-border{
  /* border: 4px solid #0072BB; */
  border-radius: 10px;
  background-color: #fff;
  padding: 4rem;
  margin-top: 4rem;
}

.complete-btn{
  margin: 1.5rem auto 2rem;
  display: block;
}

@media screen and (max-width:991px) {
  .box-border{
    padding: 2rem;
  }
}

.cooperation{
  color:#6458AE;
}

.sample-list{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.sample-list li{
  padding: 1rem;
  text-align: center;
  font-size: 15px;
}

.sample-list li img{
  max-width: 120px;
  display: block;
  margin-bottom: 0.5em;
}

@media screen and (max-width:991px) {
  .sample-list li img{
    max-width: 100px;
  }
}

.monomane-box{
  margin-top: 4rem;
}

.monomane-box-wrap{
  padding: 0 15px;
}

@media screen and (min-width:992px) {
  .monomane-box p{
    font-size: 18px;
    line-height: 2.8rem;
  }
  .monomane-box{
    padding-top: 6rem;
    /* padding-bottom: 0rem; */
  }
}

.monomane-box img{
  max-width: 300px;
  margin: 0 auto;
  display: block;
  position: relative;
}

@media screen and (min-width:992px) {
  .monomane-box img{
    position: absolute;
    max-width: 380px;
  }
}

@media screen and (max-width:991px) {
  .monomane-box img{
    padding-top: 1.5rem;
  }
}

.monomane-box{
  position: relative;
}

@media screen and (max-width:991px) {
  .monomane-box{
    padding-bottom: 0;
  }
  #monorobo01{
    bottom: -25px;
    padding-top: 0;
  }
  #monorobo02{
    bottom: -25px;
    padding-top: 0;
  }
  .logo-placeholder img {
    width: 450px;
    margin-left: 10px;
    padding-top: 90px;
  }
}

@media screen and (min-width:992px) {
  #monorobo01{
    bottom: -24px;
    right: 30px;
  }
  #monorobo02{
    bottom: -30px;
    right: 30px;
  }
}

.second-title{
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  margin: 5rem 0 3rem;
}

.trial-icon{
  width: 74px;
  height: auto;
  display: block;
  margin: 3rem auto;
}

.thought-btn img{
  width: 320px;
  height: auto;
}

.trial-btn img{
  width: 256px;
  height: auto;
}

.hero-content img{
  padding: 1.5rem 2rem;
  max-width: 350px;
}

@media screen and (min-width:992px) {
  .trial-btn img{
    margin-top: 1rem;
  }
  .hero-content img{
    padding: 3rem 2rem;
  }
}

.top-tel{
  min-width: 182px;
}

.point-box{
  padding-top: 5rem;
  position: relative;
  margin-top: 6rem;
}

.point-box h4{
  text-align: center;
  font-weight: bold;
  font-size: 27px;
  margin: 2.5rem 0;
}

.point-mark{
  position: absolute;
  top: -50px;
  width: 100px;
  height: auto;
  left: calc(50% - 5rem)
}

a img:hover,button img:hover{
  opacity: .7;
}

.sign-up-btn{
  border: none;
  background: none;
  padding: 0;
  margin-top: 1.5rem;
}

@media screen and (max-width:991px) {
  .sign-up-btn{
    max-width: 313px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.text-small{
  font-size: 13px;
  line-height: 2rem;
}

.bottom-tel{
  background: #6458AE;
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 0 2rem;
}

@media screen and (max-width:991px) {
  .bottom-tel{
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

@media screen and (min-width:992px) {
  .bottom-tel{
    display: flex;
    justify-content:center;
    align-items:center;
  }
}

.tel-border{
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 2rem 3rem;
  margin-top: 1.5rem;
}

@media screen and (min-width:992px) {
  .tel-border{
    margin: 4rem 0 4rem 3rem;
  }
}

.tel-border img{
  width: 338px;
  height: auto;
}

@media screen and (max-width:991px) {
  .tel-border img{
    max-width: 250px;
    height: auto;
  }
}

#inquiry{
  padding-top:10rem;
  border-radius: 10px 10px 0 0;
}

#inquiry .text-small{
  margin-top: 2.5rem;
}

.hero-strip p{
  margin-top: 3rem;
}

.sign-up{
  position: relative;
  z-index: 2;
  margin-top: -17rem;
  padding: 0 15px;
}

.form-radio-group{
  margin: 3rem 0 2rem;
  line-height: 3rem;
}

.form-radio-group label{
  font-weight: normal;
  padding: 0 1.5rem 0 1rem;
  font-size: 15px;
}

@media screen and (max-width:991px) {
  .form-radio-group label{
    font-size: 16px;
  }
}

.form-radio-group-radio{
  white-space: nowrap;
  display: inline-block;
}

.sign-up .signup-form{
  position: relative;
}

.inq-img{
  max-width: 460px;
  height: auto;
}

@media screen and (max-width:991px) {
  .inq-img{
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
    padding-top: 1.5rem;
    position: relative;
    bottom: -2.1rem;
  }
  button.btn{
    width: 100%;
  }
}

@media screen and (min-width:992px) {
  .inq-img{
    position: absolute;
    bottom: -32px;
    right: -340px;
  }
}

.resizeimage {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  display: block;
}

@media screen and (min-width:992px) {
  #case h2{
    position: relative;
    padding: 0 5rem;
  }
  #case h2::before,#case h2::after{
    position: absolute;
    width: 74px;
    height: auto;
    bottom: -6px;
  }

  #case h2::before{
    content: url(/roboministrator/img/contents/case-title-l.svg);
    left: 170px;
  }

  #case h2::after{
    content: url(/roboministrator/img/contents/case-title-r.svg);
    right: 170px;
  }
}

@media screen and (min-width:992px)and (max-width:1199px) {
  #case h2::before{
    content: url(/roboministrator/img/contents/case-title-l.svg);
    left: 80px;
  }

  #case h2::after{
    content: url(/roboministrator/img/contents/case-title-r.svg);
    right: 80px;
  }
}

#case ul{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  margin: 5rem 0 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #000;
}

#case ul li{
  text-align: center;
}

#case ul li img{
  max-width: 182px;
  height: auto;
}

.navigation{
  position: fixed;
}

.news-wrap{
  padding: 50px 0;
}

.news-list{
  font-size: 1.8rem;
}

.news-list li{
  border-bottom: 2px dotted #ccc;
  padding: 0.5rem 0;
}

.news-list li div{
  padding: 0 1.5rem;
}

@media screen and (max-width:991px) {
  #case ul li img{
    max-width: 140px;
    padding: 0 1rem 1rem;
  }
  .news-wrap{
    padding-top: 20px;
  }
  .news-list{
    padding: 0 1.5rem;
  }
}

.case-ministries{
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}

@media screen and (min-width:992px) {
  .pc-none{
    display: none;
  }
  .confilmData p{
    text-align: center;
  }
  .news-list{
    margin-top: 2rem;
  }
  .news-list li{
    display: flex;
  }
}

@media screen and (max-width:991px) {
  h2{
    font-size: 25px;
    line-height: 4rem;
  }
  .section-padding{
    padding: 50px 0;
  }
  h3,.case-ministries {
    font-size: 20px;
    line-height: 2.5rem;
  }
  .point-box h4,#trial h3,.second-title{
    font-size: 23px;
    line-height: 3.5rem;
  }
  .hero-strip h2{
    font-size: 25px;
  }
  .hero-strip{
    padding-bottom: 300px;
  }
}

@media screen and (max-width:991px) {
  .sp-none{
    display: none;
  }
  .sign-up .signup-form .form-input-group input{
    font-size: 16px;
  }
  .swiper {
    padding-top: 61px !important;
  }
  .sp-font{
    font-size: 25px !important;
  }
  .sp-pr_none{
    padding-right:125px !important;;  
  }
  
}

@media screen and (max-width:600px) {
  .sp-text-left{
    text-align: left;
  }
  .sp-font{
    font-size: 18px !important;
  }
  .sp-pr_none{
    padding-right: 95px !important;;  
  }
}

@media screen and (max-width:480px) {
  .sp-text-left{
    text-align: left;
  }
  .sp-font{
    font-size: 15px !important;
  }
  .sp-pr_none{
    padding-right: 75px !important;;  
  }
}

@media screen and (min-width:1200px) {
  .point-box{
    min-height: 610px;
  }
  .point01-bottom{
    margin-bottom: 4rem;
  }
  .point02-bottom{
    margin-bottom: 6rem;
  }
}

@media screen and (max-width: 1291px){
  nav ul.primary-nav li a{
    border: 3px solid #fff;
    padding: 10px 15px !important;
    margin-bottom: 10px;
    border-radius: 100px;
    display: block;
    font-size: 18px;
    margin: 0 auto;
    max-width: 300px;
  }
  .top-tel{
    min-width: 260px;
  }
}

.line-gray {
  background-image: url('/roboministrator/img/contents/Line_Gray.png');
  background-size: cover;
}

.line-yellow {
  background-image: url('/roboministrator/img/contents/Line_Yellow.png');
  background-size: cover;
}

.line-purple {
  background-image: url('/roboministrator/img/contents/Line_Purple.png');
  background-size: cover;
}

.section_line{
  background-image: url('/roboministrator/img/contents/section_Line.png');
  background-size: cover;
}


.check_message{
  /* display: inline-block !important; */
  margin: 0px 15px;
  height: 100px;
  line-height: 100px;
  /* position: relative;     */
}

.check_icon{
  width: 50px;
}

.check_container{
  text-align : center;  
}

.check_content{
  display: inline-block;
  text-align: left;
}


.pad_50{
  padding:50px;  
}

.mb_20{
  margin-bottom:20px;  
}

.pb_20{
  padding-bottom:20px;  
}

.pb_50{
  padding-bottom:50px;  
}

.pr_175{
  padding-right:175px;  
}

.pb_100{
  padding-bottom:100px;  
}

.pt_15{
  padding-top:15px;  
}

.pad_trl{
padding: 30px 30px 0 30px;
display: block;
margin-bottom: 0;
}

.yellow-back {
  background: #FFE15D;
}

.purple-back {
  background: #B6B4ED;
}

.section-padding_line {
  padding: 12px 0;
}

.f_bold_32{
  font-size: 32px !important;
  font-weight: bold;
}

.f_bold_36{
  font-size: 36px !important;
  font-weight: bold;
}

.text_line{
  line-height: 4.8rem !important;
}

.f_bold_40{
  font-size: 40px !important;
  font-weight: bold;
}

.f_bold_64{
  font-size: 64px !important;
  font-weight: bold;
}

.imgw_20{
  width: 20% !important;
}

.imgw_45{
  width: 45% !important;
}

.imgw_60{
  width: 60% !important;
}

.imgw_70{
  width: 70% !important;
}

.robomin{
  font-size: 46px !important;
  font-weight: bold;
  line-height: 5.8rem;
}

.imgw_100{
  width: 100% !important;
}

.line-section{
  margin-top: 100px;
  margin-bottom: auto;
}

.bubble {
  position: relative;
  background: #F3F4F8;
}

.bubble:before {
  position: absolute;
  top: 100%;
  left: 50%;
  border: 70px solid transparent;
  border-top: 45px solid #F3F4F8;
  transform: translateX(-50%);
}

.chk_con{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center
 }


 .check_message{
  margin: 0px 15px;
  height: 100px;
  line-height: 100px;
}

.f_bold_36{
  font-size: 36px !important;
  font-weight: bold;
}

.content{
  flex-basis: 300px;
  flex-grow: 0;
  flex-shrink: 0;
}

.assirobo-content img{
  max-width: 650px !important;
}

.heading_char_space{
  letter-spacing: 0.12em;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.btn_bk {
  background-color: #71D3D0;
  color: #FFFFFF;
  border-radius: 100px;
  padding: 15px !important;
}

.btn_send {
  background-color: #FFE15D  ;
  border-radius: 100px;
  padding: 15px !important;
}