@charset "UTF-8";
/* CSS Document */
.row-eq-height {
  display: flex;
  flex-wrap: wrap;
}
.eq-height-content {
  height: 100%;
}
/*mini-fair-heading*/
.heading-pencil {
  color: #239cd9;
}
.heading-pencil:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f303";
  margin-left: 12px;
}
/*mini-fair-heading*/
/*summer-fair-headding*/
.heading-left-transparent {
  display: flex;
  align-items: center;
  color: #239cd9;
}
.heading-left-transparent:after {
  margin-left: 10px;
  border-top: 2px solid #239cd9;
  content: "";
  flex-grow: 1;
}
/*summer-fair-headding*/
.rcorners {
  clear: both;
  list-style: none;
  padding-left: 2%;
}
.rcorners li {
  margin: 2em 0;
  padding-top: 1em;
  display: block;
  position: relative;
  counter-increment: inst;
}
.rcorners li::before {
  content: counter(inst);
  background: rgba(35, 156, 217, 0.35);
  color: #fff;
  font-weight: 700;
  font-style: italic;
  text-shadow: 1px 1px rgba(35, 156, 217, 0.5);
  border-radius: 0 0.675em 0.675em 0;
  font-size: 1.2em;
  text-align: center;
  padding-top: 0;
  left: -2%;
  top: -0.65em;
  height: 1.5em;
  width: 2.5em;
  position: absolute;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}

/*table responsive 2 column*/
.table-2column {
  margin: 20px 0;
}
.table-2column tr, .table-2column th, .table-2column td {
  margin: 0;
  padding: 0;
}
.table-2column th, .table-2column td {
  display: block;
}
.table-2column tr {
  width: 100%;
}
.table-2column th {
  text-align: center;
  width: 100%;
  color: #239cd9;
  font-weight: bold;
  border-bottom: 2px solid #239cd9;
}
.table-2column td {
  padding: 10px 5px;
}
@media (min-width: 992px) {
  .table-2column {
    width: 100%;
  }
  .table-2column th, .table-2column td {
    padding: 10px;
    text-align: left;
    display: table-cell;
    border-bottom: 1px dashed #239cd9;
  }
  .table-2column tbody {
    border-top: 2px solid #239cd9;
    border-bottom: 2px solid #239cd9;
  }
  .table-2column th {
    width: 30%;
  }
}
/*table responsive 2 column*/
/*calendar*/
/* -- 以下、カレンダー表示領域の設定 - 既存サイトに組み込む場合はここだけを修正すればOK -------------------------------------------------------------------------------- */
div#business-calendar {
  width: 100%; /* カレンダーの横幅はここで調整 */
  margin: 0 auto 20px; /* 既存のページに組み込む場合は、この中央寄せの設定は不要 */
  position: relative; /* 前月・次月をクリックした際のローディング画像の位置調整のために必要 */
  line-height: 1.8; /* 各セルの縦幅はここで調整 */
  font-size: 90%;
}
/* -- 以下、カレンダーの枠などの設定 -------------------------------------------------------------------------------- */
div#business-calendar table, div#business-calendar table tr th, div#business-calendar table tr td {
  border-collapse: collapse;
  border: 1px solid #cccccc;
  text-align: center;
}
div#business-calendar table tr th, div#business-calendar table tr td {
  padding: 7px 0;
}
div#business-calendar table {
  width: 100%;
  margin-top: 40px;
  background: #ffffff;
}
div#business-calendar table:first-child {
  margin-top: 0px;
}
div#business-calendar table th {
  font-weight: bold;
}
div#business-calendar table tr {}
div#business-calendar table tr#year-month th p {
  font-size: 120%;
  margin-bottom: 0;
}
div#business-calendar table tr#year-month th, div#business-calendar table tr#year-month td {
  padding: 10px 0;
}
div#business-calendar table tr#year-month th {
  position: relative;
}
div#business-calendar table tr#year-month th ul {
  width: 100%;
  list-style-type: none;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
}
div#business-calendar table tr#year-month ul li#prev {
  float: left;
  margin-left: 5px;
}
div#business-calendar table tr#year-month ul li#next {
  float: right;
  margin-right: 5px;
}
div#business-calendar table tr#year-month ul li a {
  font-weight: normal;
  font-size: 85%;
  color: #3377ff;
  text-decoration: none;
  position: relative;
}
div#business-calendar table tr#year-month ul li#prev a {
  padding: 0 0 0 15px;
}
div#business-calendar table tr#year-month ul li#next a {
  padding: 0 15px 0 0;
}
div#business-calendar table tr#year-month ul li#prev a:before {
  content: "";
  border-style: solid;
  border-width: 6px 6px 6px 0;
  border-color: transparent #3377ff transparent transparent;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
div#business-calendar table tr#year-month ul li#next a:after {
  content: "";
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #3377ff;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
div#business-calendar table tr#year-month ul li a:hover {
  cursor: pointer;
  color: #106dff;
  text-decoration: underline;
}
div#business-calendar table tr td {}
div#business-calendar table th.saturday, div#business-calendar table td.saturday {
  color: #3535ff;
}
div#business-calendar table th.sunday, div#business-calendar table td.sunday {
  color: #ff3535;
}
/* -- 以下、定休日のセルの色の設定 -------------------------------------------------------------------------------- */
div#business-calendar table td.holiday {
  background: rgba(255, 0, 0, 0.1);
}
/* -- 以下、「定休日」の文字などの設定 -------------------------------------------------------------------------------- */
div#business-calendar p.holiday-string {
  margin: 15px 0 0;
}
div#business-calendar p.holiday-string:before {
  content: "■ ";
}
div#business-calendar p.holiday-string:before {
  color: rgba(255, 0, 0, 0.25);
}
/* -- 以下、ローディング画像 -------------------------------------------------------------------------------- */
span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(0, 0, 0, 0.15);
  border-right: 5px solid rgba(0, 0, 0, 0.15);
  border-bottom: 5px solid rgba(0, 0, 0, 0.15);
  border-left: 5px solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load-circle 1.0s linear infinite;
  animation: load-circle 1.0s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}
@-webkit-keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*calendar*/
.infography-style-4 {
  transition: 0.3s;
}
.infography-style-4:hover {
  transition: 0.3s;
  transform: translateY(-10px);
}
/*calendar*/
/*form*/
.form-item {
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0px 20px 20px #00000025;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
}
/*form*/
/*new-main-design*/
.btn-style-8-beo {
  color: #fff !important;
  border: 1px solid #237ed9;
  background-image: linear-gradient(to right, #237ed9 0%, #239cd9 50%, #23bad9 100%);
  font-weight: 400;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.btn-style-8-beo:hover {
  color: #fff !important;
  border: 1px solid #237ed9;
  background-image: linear-gradient(to right, #23bad9 0%, #239cd9 50%, #237ed9 100%);
  font-weight: 400;
}
.box-shadow-neum {
  box-shadow: 0px 3px 20px 0 rgba(0, 0, 0, 0.24);
}
.box-radius {
  border-radius: 10px;
}
.services_box {
  padding: 30px 0;
  margin-top: -90px;
  display: inline-block;
}
@media (max-width: 991px) {
  .services_wrapper + .services_wrapper {
    border-top: 2px solid #e9e9e9;
    padding: 25px 0 15px 0;
    margin: 0 15px;
  }
}
@media (min-width: 992px) {
  .services_wrapper + .services_wrapper {
    border-left: 2px solid #e9e9e9;
  }
}
.services_btn {
  margin-top: -30px;
}
.bg-light-beo {
  background-color: #f3fafd;
}
.card {
  min-width: 0;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 10px;
  border: 0;
  margin-bottom: 30px;
}
.card-img-top {
  width: 100%;
  height: 200px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-position: center;
  object-fit:cover;
}
.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}
.card-title {
  margin-bottom: .75rem;
}
.card .card-body .card-text {
  font-size: 90%;
  font-weight: 400;
  color: #747373;
}
/*new-main-design*/