@charset "UTF-8";

html {
  font-family: "Zen Maru Gothic", serif;
  color: #555;
  overflow-x: hidden;
  font-weight: 500;
  font-size:20px;
}

@media(max-width:1024px){
  html {
  font-size:16px;
}
}

#wrapper {
  overflow-x: hidden;
}

#main {
  overflow: hidden;
}

.maxw1200 {
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}

#header {
  background-color: #fff;
  width: 100%;
  padding: 5px 0 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0px 5px 5px 0px #ccc;
  z-index: 3;
}

#main {
  position: relative;
  z-index: 1;
  background-color: #00b6c5;
  overflow-x: hidden;
}

#footer {
  position: relative;
  z-index: 2;
}

.logo-area {
  width: 250px;
}

.logo-area>a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.logo-area>a>img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}

.mini-logo {
  width: 270px;
}

.mini-logo>a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.mini-logo>a>img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}

.nav-area {
  width: calc(100% - 250px);
  padding-left: 5%;
}

.nav-main {
  display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-main .nav-box{
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}

.nav-main .con-box{
  max-width: 210px;
  width: 100%;
}

[data-element-id].nav-main .nav-box{
  align-items: flex-start;
}

.nav-item {
  flex-grow: 1;
}

.nav-item>a,
.nav-item .a,
.nav-item>span.a {
  display: inline-block;
  width: 100%;
}

.nav-item .icon {
  width: 40px;
  margin: 0 auto;
}

.tel-item {
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.tel-item .tel-txt {
  color: #00b6c5;
  font-weight: bold;
  text-align: center;
  line-height: 1.2em;
  position: relative;
}

.tel-item .tel-txt::before {
  content: "";
  width: 3px;
  height: 30px;
  background-color: #00b6c5;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: -15px;
  transform: rotate(-35deg);
}

.tel-item .tel-txt::after {
  content: "";
  width: 3px;
  height: 30px;
  background-color: #00b6c5;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  right: -15px;
  transform: rotate(35deg);
}

.tel-item .tel {
  color: #555;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: -.05em;
  position: relative;
  padding-left: 40px;
}

.tel-item .tel i {
  line-height: 36px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background-color: #00b6c5;
  width: 36px;
  height: 36px;
  overflow: hidden;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  padding-right: 2px;
  padding-top: 2px;
  transform: translateY(-50%);
}

.drop-switch {
  position: relative;
}

.drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background-color: #00b6c5;
  border-radius: 15px;
  max-height: 0;
  transition: .6s;
  overflow: hidden;
}

.drop-switch:hover .drop-menu {
  max-height: 460px;
  transition: .8s;
}

.drop-item a {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 5px;
  color: #fff;
  font-weight: bold;
  border-bottom: 3px dashed #fff;
}

.drop-item a i {
  display: none;
}

.drop-menu li:last-child a {
  border-bottom: none;
}

.hum-bars {
  height: 48px;
  width: 48px;
  display: none;
  background-color: #00b6c5;
  border-radius: 10px;
  position: relative;
}

.hum-bars span {
  width: 36px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  display: inline-block;
  position: absolute;
  transition: .6s;
}

.hum-bars span:nth-child(1) {
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.hum-bars span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hum-bars span:nth-child(3) {
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.opened .hum-bars span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(225deg);
}

.opened .hum-bars span:nth-child(2) {
  width: 0;
}

.opened .hum-bars span:nth-child(3) {
  bottom: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-225deg);
}

@media(max-width:1024px) {
  #header {
    padding: 3px 0 5px 0;
    position: fixed;
  }

  .nav-area {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 998;
    background-color: #ffeac5;
    width: 375px;
    padding: 10px;
    height: 100vh;
    transition: .6s;
    transform: translateX(101%);
  }

  .opened .nav-area {
    transform: translateX(0%);
  }

  .hum-bars {
    display: block;
    z-index: 999;
  }

  .nav-item {
    width: 100%;
    padding: 10px 0;
    border-bottom: 3px dashed #ccc;
  }

  .nav-item>a,
.nav-item .a,
  .nav-item>span.a {
    display: flex;
    align-items: center;
  }

  .nav-item .icon {
    width: 30px;
    margin: 0 10px 0 0;
  }

  .nav-main {
    display: block;
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 600px;
  }

  .drop-menu,
  .drop-switch:hover .drop-menu {
    position: relative;
    top: 0;
    margin-top: 10px;
    left: 0;
    transform: none;
    width: 100%;
    background-color: #fff;
    max-height: 600px;
    transition: 0;
    overflow: hidden;
  }

  .drop-item {
    padding: 10px 10px 5px 10px;
  }

  .drop-item a {
    display: inline-block;
    width: 100%;
    text-align: left;
    padding: 0 0 8px 0;
    color: #555;
    font-weight: bold;
    border-bottom: 3px dashed #ccc;
  }

  .drop-item a i {
    display: inline-block;
    font-size: 18px;
    margin-right: 5px;
    color: #00b6c5;
  }

  .tel-item {
    display: block;
  }

  .tel-item.up-d-none\@tb {
    display: none;
  }
}


.link-pill {
  width: 260px;
}

.link-pill>a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 90px;
  border: 3px solid #fff;
  overflow: hidden;
  border-radius: 15px;
}

.link-pill .left-img {
  width: 50%;
  height: 100%;
  position: relative;
}

.left-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.link-pill .right-img {
  width: 50%;
  height: 100%;
  position: relative;
}

.link-pill-txt {
  display: flex;
  justify-content: center;
  padding: 5px;
  border-radius: 20px 0 0 20px;
  background-color: #fff;
  font-size: 16px;
  font-weight: bold;
  width: 55%;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.pill-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 5px;
}

.pill-icon>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}


.dot-area {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: url(/import/tenant_1/162.43.20.116/html/images/dotball.webp);
  background-size: 10%;
}

.green-box {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #00b900;
}

.green-txt {
  color: #00b900;
}

.orange-box {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #fb8e15;
}

.orange-txt {
  color: #fb8e15;
}

.blue-box {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #5388cf;
}

.blue-txt {
  color: #5388cf;
}

.doc-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
}

.doc-txt {
  width: 40%;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.doc-bg>img {
  margin-left: 30%;
  margin-right: 0;
  display: block;
  height: 100%;
  width: 70%;
  object-fit: cover;
  object-position: center;
}

.doc-grd {
  z-index: 3;
  border: 4px solid #288e3a;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 60%);
}





.top-mv {
  width: 100%;
  height: 800px;
  position: relative;
  overflow: hidden;
}

.top-mv .uk-slidenav-position,
.top-mv .uk-slidenav-position .uk-slideshow,
.top-mv .uk-slidenav-position .uk-slideshow li,
.top-mv .uk-slidenav-position .uk-slideshow li div,
.top-mv .uk-slidenav-position .uk-slideshow li div img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top-mv .uk-slidenav-position .uk-slideshow li div img {
  object-fit: cover;
  object-position: center;
}

.top-catch {
  width: 100%;
  position: absolute;
  top: 4%;
  left: 0;
  z-index: 1;
}

.catch-area {
  max-width: 400px;
  color: #5388cf;
  text-shadow: 2px 2px 1px #fff,
    -2px 2px 1px #fff,
    2px -2px 1px #fff,
    -2px -2px 1px #fff,
    2px 0px 1px #fff,
    0px 2px 1px #fff,
    -2px 0px 1px #fff,
    0px -2px 1px #fff;
}

.deco-wave {
  width: 350px;
  display: block;
  margin: 15px auto;
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1));
}


.top-info-section {
  margin-top: -200px;
}

.time-table {
  width: 100%;
  background-color: #fff;
  padding: 30px;
  border-top: 6px solid #5388cf;
  border-bottom: 6px solid #5388cf;
  border-left: 6px solid #5388cf;
  border-radius: 45px 0 0 45px;
  position: relative;
}

.time-table .table-area {
  width: 100%;
}

.time-table .table-area ul {
  width: 100%;
  position: relative;
  display: flex;
}

.time-table .table-area ul::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background-image: url(/import/tenant_1/162.43.20.116/html/images/lineball.webp);
  background-size: auto 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.time-table .ball-title,
.time-table .time {
  width: 130px;
  text-align: center;
}

.time-table .ball-title,
.time-table .time,
.time-table .week {
  font-weight: bold;
  font-size: 18px;
}

.time-table .week,
.time-table .ball,
.time-table .bar,
.time-table .star{
  flex: 1;
  text-align: center;
}

.donichi {
  letter-spacing: -6px;
}

.time-table .time,
.time-table .week,
.time-table .ball,
.time-table .bar,
.time-table .star {
  padding: 10px 0 20px 0;
}

.time-table .star{
  color:#ffd802;
}

.rl-ball-title {
  width: 100px;
  height: 100px;
  background-color: #5388cf;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 20px;
}

.ball-title-inner {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}

.ball-title-main {
  width: 100%;
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
}

.time-table .ball>span {
  width: 15px;
  height: 15px;
  display: block;
  background-color: #00b6c5;
  margin: 7px auto 0 auto;
  border-radius: 50%;
}

.time-table .bar>span {
  width: 15px;
  height: 2px;
  display: block;
  background-color: #555;
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

.moya-ball {
  width: 160px;
  position: relative;
  margin-right: auto;
}

.moya-txt {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  text-align: center;
  line-height: 1.4em;
  font-size: 15px;

}

.moya-txt>span {
  color: #ff6c00;
  font-size: 18px;
  letter-spacing: -.05em;
}

.area {
  padding: 90px 0;
}

@media(max-width:1024px) {
  .top-mv {
    height: 600px;
  }

  .top-catch {
    top: 1%;
    transform: translateY(0);
  }

  .deco-wave {
    width: 250px;
    margin:10px auto;
  }

  .catch-area {
    width: 360px;
  }

  .top-info-section {
    margin-top: -80px;
  }

  .moya-ball {
    margin-right: 0;
  }

  .time-table {
    border: 6px solid #5388cf;
    border-radius: 45px;
  }

  .area {
    padding: 70px 0;
  }

}

@media(max-width:599px) {
  .top-catch {
    top:1%;
  }

  .deco-wave {
    width: 250px;
  }

  .catch-area {
    width: 250px;
    margin: 0 auto;
  }

  .time-table {
    padding: 15px 10px;
    border-radius: 30px;
  }

  .time-table .ball-title,
  .time-table .time {
    width: 90px;
    text-align: center;
  }

  .moya-ball {
    width: 45%;
  }

  .moya-ball:last-child {
    margin-top: -20px;
  }

  .rl-ball-title {
    width: 90px;
    height: 90px;
    background-color: #5388cf;
    top: -50px;
    left: 20px;
  }

  .area {
    padding: 50px 0;
  }
}


.float-left {
  float: left;
}

.float-right {
  float: right;
}

.wt {
  color: #fff;
}

@media(max-width:1024px) {
  .float-left.ons {
    float: none;
    display: block;
  }

  .float-right.ons {
    float: none;
    display: block;
  }
}

@media(max-width:599px) {
  .float-left {
    float: none;
    display: block;
  }

  .float-right {
    float: none;
    display: block;
  }
}

.news-item a {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 15px;
  padding-top: 15px;
  align-items: center;
}

.news-item:first-child a {
  padding-top: 0;
}

.news-item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background-image: url(/import/tenant_1/162.43.20.116/html/images/lineball_wt.webp);
  background-size: auto 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.news-category-list span {
  display: inline-block;
  background-color: #ff6c00;
  line-height: 1em;
  padding: 2px 6px;
  font-size: 14px;
  border-radius: 5px;
  letter-spacing: -.2em;
  color: #fff;
  margin: 0 5px 5px 0;
}

.news-date {
  width: 100px;
}

.news-title {
  width: calc(100% - 100px);
}

.right-btn {
  display: flex;
}

.right-btn a,
.right-btn button,
.right-btn span {
  display: flex;
  align-items: center;
  font-size: 20px;
}

.right-btn a i,
.right-btn button i,
.right-btn span i {
  display: inline-block;
  font-size: 24px;
  margin-left: 10px;
}

.right-btn.left a i,
.right-btn.left button i,
.right-btn.left span i {
  margin-right: 10px;
  margin-left: 0;
}

.bg-line {
  min-width: 1000px;
}

.bg-line>img {
  width: 100%;
  height: 100% !important;
}

.top-blog {
  background-color: #5388cf;
}

.stars {
  color: #ffd802;
  text-shadow: 2px 2px 1px #fff,
    -2px 2px 1px #fff,
    2px -2px 1px #fff,
    -2px -2px 1px #fff,
    2px 0px 1px #fff,
    0px 2px 1px #fff,
    -2px 0px 1px #fff,
    0px -2px 1px #fff;
}

.blog-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}


.blog-category-list {
  width: 100%;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
}

.blog-category-list span {
  display: inline-block;
  background-color: #00b6c5;
  line-height: 1em;
  padding: 2px 6px;
  font-size: 14px;
  border-radius: 5px;
  letter-spacing: -.2em;
  color: #fff;
  margin: 0 5px 5px 0;
}

.roll-btn a,
.roll-btn span {
  background-color: #00b6c5;
  padding: 10px 30px;
  border-radius: 30px;
}

.roll-btn.mk2 a,
.roll-btn.mk2 span {
  background-color: #5388cf;
}

.long-bnr {
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}

.long-bnr.mk2 {
  max-width: 660px;
}

.long-bnr a {
  display: flex;
  align-items: center;
  background-color: #fb8e15;
  border: 4px solid #fff;
  border-radius: 20px;
  overflow: hidden;
}

.long-bnr.mk2 a{
  background-color: #00b6c5;
}

.long-bnr.mk9 a {
  background-color: #00b6c5;
}


.bg-section {
  position: relative;
}

.bg-section>* {
  position: relative;
  z-index: 3;
}

.bg-section>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
}

.shadow-line {
  text-shadow: 2px 2px 1px #fff,
    -2px 2px 1px #fff,
    2px -2px 1px #fff,
    -2px -2px 1px #fff,
    2px 0px 1px #fff,
    0px 2px 1px #fff,
    -2px 0px 1px #fff,
    0px -2px 1px #fff;
}

.line-txt {
  display: inline-block;
  position: relative;
}

.line-txt>span {
  position: relative;
  z-index: 2;
}

.bgline-btm {
  position: relative;
}

.bgline-top {
  position: relative;
}

.bgline-btm>img {
  width: 100%;
  z-index: 2;
  min-width: 1000px;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
}

.bgline-top>img {
  width: 100%;
  z-index: 2;
  min-width: 1000px;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
}

.line-txt::after {
  content: "";
  display: inline-block;
  width: calc(100% + 20px);
  height: 20px;
  background-color: #ffd802;
  position: absolute;
  bottom: 0;
  left: 50%;
  border-radius: 10px;
  transform: translateX(-50%);
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1));
}

.bars-parent {
  position: relative;
}

.bars-parent::before {
  content: "";
  width: 6px;
  height: 120px;
  background-color: #ffd802;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: 20%;
  transform: rotate(-35deg);
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1));
}

.bars-parent::after {
  content: "";
  width: 6px;
  height: 120px;
  background-color: #ffd802;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  right: 20%;
  transform: rotate(35deg);
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1));
}

.tv-box {
  width: 100%;
  height: 0px;
  padding-top: 65%;
  border: 6px solid #fff;
  background-color: #000;
  border-radius: 45px;
  position: relative;
  overflow: hidden;
}

.tv-box.mk2 {
  padding-top: 100%;
}

.tv-box-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.tv-box-inner iframe {
  width: 100%;
  height: 100%;
}

.col-btns a {
  width: 48%;
  justify-content: center;
}

@media(max-width:1024px) {
  .bars-parent::before {
    content: "";
    width: 4px;
    height: 90px;
    left: 20%;
  }

  .bars-parent::after {
    content: "";
    width: 4px;
    height: 90px;
    right: 20%;
  }

  .col-btns {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .col-btns a {
    width: 100%;
    max-width: 400px;
  }

  .col-btns a:nth-child(2) {
    margin-top: 20px;
  }
}

@media(max-width:599px) {
  .roll-btn a {
    padding: 8px 20px;
    border-radius: 20px;
  }

  .bars-parent::before {
    left: 10%;
  }

  .bars-parent::after {
    right: 10%;
  }

  .time-table.mk1 {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }

  .time-table .ball-title,
  .time-table .time,
  .time-table .week {
    font-size: 14px;
  }

  .time-table .ball-title,
  .time-table .time {
    width: 70px;
  }
}




.sep-bg01 {
  min-width: 1000px;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.sep-bg01.top {
  top: auto;
  bottom: 100%;
  transform: translateY(0);
}

.sep-bg01.bottom {
  transform: translateY(0);
}

.sep-bg01.cent {
  left: 50%;
  transform: translate(-50%, -50%);
}



.sep-bg01.cent.top {
  left: 50%;
  top: auto;
  bottom: 100%;
  transform: translateX(-50%);
}

.sep-bg01>img {
  width: 100%;
}

.ir-large {
  FONT-SIZE: 1.5em;
  color: #00b6c5
}

.b-title01 {
  position: relative;
  color: #00b6c5;
  padding-bottom: 15px;
}

.b-title01::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background-image: url(/import/tenant_1/162.43.20.116/html/images/lineball.webp);
  background-size: auto 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.bl-sec .b-title01::after {
  background-image: url(/import/tenant_1/162.43.20.116/html/images/sqball_org.webp);
}

.cur-img {
  position: relative;
}

.cur-img>.img {
  width: 100%;
  position: relative;
  z-index: 1;
  border: 4px solid #fff;
  overflow: hidden;
  border-radius: 80% 60% 90% 50%;
}

.cur-img>span {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border: 4px solid #00b6c5;
  width: 100%;
  border-radius: 50% 90% 60% 80%;
  top: 0;
  left: 0;
  z-index: 2;
}

.wt-bg {
  background-color: #fff;
}


.pure-ball {
  width: 160px;
  position: relative;
}

.pure-txt {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  text-align: center;
  line-height: 1.4em;
  font-size: 20px;

}

.b-title02>span {
  position: relative;
  color: #00b6c5;
}

.b-title02>span::before {
  content: "";
  width: 3px;
  height: 30px;
  background-color: #00b6c5;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: -15px;
  transform: rotate(-35deg);
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1));
}

.b-title02>span::after {
  content: "";
  width: 3px;
  height: 30px;
  background-color: #00b6c5;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  right: -15px;
  transform: rotate(35deg);
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1));
}

.ball-img {
  position: relative;
}

.ball-img>.img {
  border: 4px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: -15px -15px 0px 0px rgba(255, 255, 255, 1);
}

.name-ball {
  display: flex;
  width: 130px;
  height: 130px;
  background-color: #00b6c5;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 4px solid #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.menu-itemmk1 {
  position: relative;
}

.menu-itemmk1>a {
  display: block;
  width: 100%;
  position: relative;
}

.menu-itemmk1>span {
  display: block;
  width: 100%;
  position: relative;
}

.menu-itemmk1>span:hover {
  cursor: pointer;
}

.menu-itemmk1>a .img {
  border-radius: 100px;
  overflow: hidden;
  border: 4px solid #fff;
}

.menu-itemmk1>span .img {
  border-radius: 30px;
  overflow: hidden;
  border: 4px solid #fff;
}

.menu-itemmk1 .menu-title {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 100%;
  transform: translateY(50%);
  z-index: 1;
}

.menu-itemmk1 .menu-title>* {
  display: inline-block;
  background-color: #00b6c5;
  line-height: 1em;
  padding: 8px 30px;
  border: 4px solid #fff;
  border-radius: 20px;
}

.menu-itemmk1 i {
  display: inline-block;
  font-size: 30px;
  color: #00b6c5;
  border: 4px solid #fff;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 10px;
}


.menu-itemmk2>a {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 50%;
}

.wtball-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.menu-itemmk2 i {
  display: inline-block;
  font-size: 30px;
  color: #00b6c5;
  border: 4px solid #fff;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 10px;
}

.map-area {
  display: block;
  width: 100%;
  height: 350px;
}

.map-area>iframe {
  width: 100%;
  height: 100%;
}

@media(max-width:599px) {
  .wtball-inner {
    padding: 20px;
  }

  .menu-itemmk1 i {
    right: 6px;
    bottom: 6px;
  }

  .menu-itemmk2 i {
    right: 6px;
    bottom: 6px;
  }

  .map-area {
    height: 200px;
  }
}

.sq-bnr a {
  display: block;
  width: 100%;
  position: relative;
}

.sq-bnr a .subbox {
  display: block;
  width: 100%;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
}

.sq-bnr a::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 40px;
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-repeat: repeat;
  background-size: 12px 12px;
}

.sq-bnr.org a::after {
  background-image: url(/import/tenant_1/162.43.20.116/html/images/sqball_org.webp);
}

.sq-bnr.grn a::after {
  background-image: url(/import/tenant_1/162.43.20.116/html/images/sqball_grn.webp);
}

.sq-bnr.org a .subbox {
  border: 4px solid #f8b30d;
  background-color: #f8b30d;
}

.sq-bnr.grn a .subbox {
  border: 4px solid #00b6c5;
  background-color: #00b6c5;
}

.sq-bnr a .subbox img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.5;
}

.sq-bnr-inner {
  position: relative;
  z-index: 2;
  padding: 90px 0 30px 30px;
}

.bg-sideline-section {
  position: relative;
  overflow: hidden;
}

.bg-sideline-section::before,
.bg-sideline-section::after {
  content: "";
  width: 20px;
  height: 100%;
  display: inline-block;
  background-image: url(/import/tenant_1/162.43.20.116/html/images/sideline.webp);
  background-repeat: repeat-y;
  background-size: 100% auto;
  position: absolute;
  top: 0%;
}

.bg-sideline-section::before {
  left: 15px;
}

.bg-sideline-section::after {
  right: 15px;
}

.lr-bars-txt>span {
  display: inline-block;
  position: relative;
}

.lr-bars-txt>span::before {
  content: "";
  width: 3px;
  height: 50px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: -15px;
  transform: rotate(-35deg);
}

.lr-bars-txt>span::after {
  content: "";
  width: 3px;
  height: 50px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  right: -15px;
  transform: rotate(35deg);
}

.wt-btn>a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  background-color: #fff;
  padding: 20px 0;
  border-radius: 30px;
  text-align: center;
  height:100%;
}

.rel-box {
  width: 70px;
  position: relative;
}

.rel-box>img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -.5em;
  left: 0;
}

.blue-txtmk2 {
  color: #00b6c5;
  margin-bottom: -5px;
}

.wt-btn.tel a {
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.wt-btn.tel {
  font-size: 32px;
  font-weight: bold;
}

.wt-btn.tel a i {
  line-height: 36px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background-color: #00b6c5;
  width: 36px;
  height: 36px;
  overflow: hidden;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  padding-right: 2px;
  padding-top: 2px;
  margin-top: 3px;
  margin-right: 10px;
}

.ac-logo {
  width: 270px;
}

.ac-logo>a {
  display: inline-block;
  width: 100%;
}

.ac-tel a {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
}

.ac-tel a i {
  line-height: 32px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background-color: #00b6c5;
  width: 32px;
  height: 32px;
  overflow: hidden;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  padding-right: 1px;
  padding-top: 1px;
  margin-top: 3px;
  margin-right: 10px;
}

.blue-card {
  width: 100%;
  background-color: #ddfafc;
  border-radius: 20px;
  padding: 30px 15px;
  position: relative;
}

.blue-title {
  text-align: center;
  position: absolute;
  bottom: 100%;
  transform: translateY(50%);
  width: 100%;
  left: 0;
}

.blue-title>span {
  display: inline-block;
  background-color: #00b6c5;
  padding: 3px 15px;
  border-radius: 29px;
}

.blue-card-inner {
  display: flex;
  justify-content: center;
}

.rel-box.mk2 {
  width: 90px;
}

.kome-item {
  display: flex;
}

.kome {
  width: 20px;
  color: #00b6c5;
  font-weight: bold;
}

.kome.hoshi {
  font-size:16px;
  color: #ffd802;
  padding-top:3px;
}

.kome-txt {
  width: calc(100% - 20px);
}

.tb-line {
  position: relative;
}

.tb-line::before {
  content: "";
  width: 12px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 19px;
  display: block;
  background-image: url(/import/tenant_1/162.43.20.116/html/images/lineball.webp);
  background-size: 100% auto;
}

.time-table.mk2 {
  border: 6px solid #5388cf;
  border-radius: 45px;
}

.mk2>.link-pill {
  width: 100%;
}

#footer {
  background-color: #00b6c5;
  position: relative;
}

#footer>img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000px;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
}

.ftnav01 {
  width: 35%;
}

.ftnav02 {
  width: 55%;
}

.ftnav01,
.ftnav02 {
  display: flex;
  flex-wrap: wrap;
}

.ftnav-name {
  width: 100%;
  border-bottom: 2px solid #fff;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 20px;
  display: flex;
  align-items: center;
}

.new-icon {
  width: 40px;
  margin: 0 10px 0 0;
}

.ftnav01 .ftnav-main {
  width: 50%;
}

.ftnav-main a {
  display: inline-block;
  padding: 3px 0;
}

.ftnav02 .ftnav-main.l1 {
  width: 23%;
}

.ftnav02 .ftnav-main.l2 {
  width: 54%;
}

.deco-cur {
  position: relative;
}

.deco-cur>.img {
  width: 100%;
  position: relative;
  z-index: 2;
  border: 4px solid #fff;
  background-color: #fff;
  overflow: hidden;
  border-radius: 80% 60% 90% 50%;
}

.deco-cur>span {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #00b6c5;
  width: 100%;
  border-radius: 50% 90% 60% 80%;
  top: 0;
  left: 0;
  z-index: 1;
}


.deco-img {
  position: absolute;
  z-index: 2;
}

.deco-img>span {
  display: inline-block;
}

.deco01 {
  width: 230px;
  top: -10%;
  left: 10%;
}

.deco02 {
  width: 160px;
  bottom: 10%;
  left: 8%;
}

.deco03 {
  width: 160px;
  bottom: 10%;
  right: 8%;
}

.deco04 {
  width: 300px;
  top: 12%;
  right: 76%;
  z-index: 3;
}

.deco05 {
  width: 300px;
  bottom: 12%;
  left: 76%;
  z-index: 3;
}

.deco06 {
  width: 120px;
  bottom: 100%;
  right: 45px;
}

.deco07 {
  width: 200px;
  top: -10%;
  right: 10%;
}

.deco08 {
  width: 200px;
  top: 0%;
  left: 2%;
  z-index: 3;
}

.deco09 {
  width: 230px;
  bottom: -10%;
  right: 2%;
  z-index: 3;
}

.deco10 {
  width: 200px;
  top: -15%;
  left: 10%;
  z-index: 3;
}

.deco14 {
  width: 140px;
  top: -5%;
  right: 5%;
  z-index: 3;
}

@media(max-width:1200px) {

  .deco05,
  .deco04 {
    opacity: 0.5;
    z-index: 2;
  }
}

@media(max-width:1024px) {
  .deco01 {
    width: 180px;
    top: -10%;
    left: 6%;
  }

  .deco02 {
    width: 110px;
    bottom: 24%;
    left: 3%;
  }

  .deco03 {
    width: 110px;
    bottom: 24%;
    right: 3%;
  }

  .cur-img {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .ball-img {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .deco07 {
    width: 180px;
    top: -7%;
    right: 3%;
  }

  .deco08 {
    width: 160px;
    top: -5%;
    left: 1%;
    z-index: 3;
  }

  .wtball-inner {
    padding: 10px;
  }

  .wtball-inner>.img {
    max-width: 120px;
  }

  .deco09 {
    width: 180px;
  }

  .deco10 {
    width: 160px;
    top: -15%;
    left: 3%;
    z-index: 3;
  }

  .tb-line::before {
    display: none;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .ftnav01 {
    width: 100%;
  }

  .ftnav02 {
    margin-top: 50px;
    width: 100%;
  }
}

@media(max-width:599px) {
  .deco01 {
    width: 100px;
    top: -5%;
    left: 3%;
  }

  .deco02 {
    width: 80px;
    bottom: 10%;
    left: 1%;
  }

  .deco03 {
    width: 80px;
    bottom: 10%;
    right: 1%;
  }

  .deco05,
  .deco04 {
    width: 200px;
    opacity: 0.5;
    z-index: 2;
  }

  .deco04 {
    right: 55%;
  }

  .deco05 {
    left: 55%;
  }

  .deco06 {
    width: 70px;
    bottom: 100%;
    right: 15px;
  }

  .tv-box {
    border-radius: 30px;
  }

  .deco07 {
    width: 100px;
    top: -3%;
  }

  .deco08 {
    width: 120px;
    left: 1%;
    z-index: 3;
  }

  .deco09 {
    width: 120px;
    bottom: -5%;
  }

  .deco10 {
    width: 130px;
    top: -20%;
  }

}




.deco01>span,
.deco07>span,
.deco12>span,
.deco13>span,
.deco15>span,
.anm01>img,
.deco17>span,
.deco16>span {
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
}

@keyframes yurayura {

  0%,
  100% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-10deg);
  }
}

.deco14>span,
.deco18>span {
  transform-origin: center;
  animation: spin 5s linear infinite;
}

.deco02>span,
.deco03>span,
.anm02>img {
  animation: fuwafuwa 2s ease-in-out infinite alternate;
  transition: 1s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-9deg);
  }

  50% {
    transform: translate(0, -7px) rotate(0deg);
  }

  100% {
    transform: translate(0, 0) rotate(9deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg) translateX(5px);
  }

  10% {
    transform: rotate(-360deg) translateX(-5px);
  }

  20% {
    transform: rotate(-360deg) translateX(5px);
  }

  30% {
    transform: rotate(-360deg) translateX(-5px);
  }

  40% {
    transform: rotate(-360deg) translateX(5px);
  }

  50% {
    transform: rotate(-360deg) translateX(-5px);
  }

  60% {
    transform: rotate(-360deg) translateX(5px);
  }

  70% {
    transform: rotate(-360deg) translateX(-5px);
  }

  80% {
    transform: rotate(-360deg) translateX(5px);
  }

  90% {
    transform: rotate(-360deg) translateX(-5px);
  }

  100% {
    transform: rotate(-360deg) translateX(5px);
  }
}

.deco06>span,
.anm03>img {
  animation: pyon 1.5s infinite;
  transform-origin: bottom;
}

@keyframes pyon {

  100%,
  60%,
  30%,
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-30px);
  }

  40% {
    transform: translateY(-15px);
  }
}

.deco08>span,
.anm04>img {
  transform-origin: center;
  animation: roll 8s linear infinite;
}

@keyframes roll {

  0% {
    transform: rotate(0deg) scale(0.7);
  }

  25% {
    transform: rotate(90deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(0.7);
  }

  75% {
    transform: rotate(270deg) scale(1);
  }

  100% {
    transform: rotate(360deg) scale(0.7);
  }
}

.deco09>span {
  transform-origin: center;
  animation: uturn 5s linear infinite;
}

.deco08.mk5>span {
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
}

@keyframes uturn {

  0%,
  100% {
    transform: rotate(0) translateX(0);
  }

  50% {
    transform: rotate(20deg) translateX(230px);
  }
}

.pc-fixed-btn {
  position: fixed;
  width: 150px;
  height: 150px;
  top: 45%;
  right: 15px;
  z-index: 80;
}

.pc-fixed-btn a {
  background-color: #fff;
  border: 4px solid #5388cf;
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  position: relative;
}

.pc-fixed-btn a img {
  width: 90px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.sp-fixed-btn {
  display: none;
  max-width: 600px;
  width: 100%;
  position: fixed;
  bottom: 0px;
  left: 0;
  z-index: 80;
}

.sp-fixed-btn .wt-btn {
  padding: 2px;
}

.sp-fixed-btn .wt-btn>a {
  padding: 10px 0;
  border-radius: 10px;
  height: 62px;
  border: 4px solid #5388cf;
}

.sp-fixed-btn .wt-btn.tel a i {
  line-height: 26px;
  font-size: 14px;
  width: 26px;
  height: 26px;
  display: inline-block;
  padding-right: 1px;
  padding-top: 1px;
  margin-right: 3px;
}

.sp-fixed-btn .wt-btn.tel {
  font-size: 22px;
}

@media(max-width:599px) {
  .pc-fixed-btn {
    display: none;
  }

  .sp-fixed-btn {
    display: block;
  }
}

















.under-mv {
  height: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.under-mv>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.under-catch {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.under-catch .row1 .line-txt,
.under-catch .row1 .line-txt span {
  position: relative;
  z-index: 2;
}

.under-catch .row1 .line-txt::after {
  content: "";
  display: inline-block;
  width: calc(100% + 20px);
  height: 20px;
  background-color: #00b6c5;
  position: absolute;
  bottom: 0;
  left: 50%;
  border-radius: 10px;
  transform: translateX(-50%);
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 1px rgba(255, 255, 255, 1));
}

.breadcrumbs {
  padding: 30px 0;
  color: #fff;
}

.breadcrumbs-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
}

.breadcrumbs-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.breadcrumbs-list li {
  display: inline;
  letter-spacing: 1px;
}


.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage {
  font-weight: bold;
  color: #ffd802;
}

.breadcrumbs-list li+li::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  margin: 0 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .breadcrumbs {
    padding: 20px 0;
  }

  .breadcrumbs-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
  }

  .breadcrumbs li+li::before {
    width: 8px;
    height: 8px;
    margin: 0 5px 1px;
  }
}

@media (max-width: 599px) {
  .breadcrumbs {
    padding: 15px 0;
  }

}

.tv-img {
  border: 6px solid #fff;
  border-radius: 45px;
  position: relative;
  overflow: hidden;
}

.b-title03 {
  color: #ff6c00;
}

.bl-sec {
  background-color: #5388cf;
}

.staff-detail {
  background-color: #fff;
  padding: 15px;
}

.staff-inner {
  border-radius: 30px;
  overflow: hidden;
  border: 4px solid #00b6c5;
}

.info-list {
  border: 6px solid #00b6c5;
  border-radius: 45px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding: 20px;
}

.info-list li {
  display: flex;
  position: relative;
  width: 100%;
  padding: 8px 0 15px 0;
}

.info-list li:first-child {
  padding-top: 0;
}

.info-list li::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background-image: url(/import/tenant_1/162.43.20.116/html/images/sqball_grn.webp);
  background-size: auto 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.info-dt {
  font-weight: bold;
  width: 100px;
}

.info-dd {
  width: calc(100% - 100px);
}


.time-table.mk3 .ball-title,
.time-table.mk3 .sisetsu {
  width: 200px;
  color: #00b6c5;
}

.time-table.mk3 .gappi,
.time-table.mk3 .gappi-dt {
  color: #5388cf;
  width: 150px;
}

.time-table.mk3 .setsu,
.time-table.mk3 .setsu-dt {
  width: calc(100% - 350px)
}

.time-table.mk3 .top-tr .setsu,
.time-table.mk3 .top-tr .sisetsu,
.time-table.mk3 .top-tr .gappi {
  font-size: 18px;
  color: #555;
  font-weight: bold;
}

.time-table.mk3 .setsu,
.time-table.mk3 .sisetsu,
.time-table.mk3 .gappi,
.time-table.mk3 .setsu-dt,
.time-table.mk3 .gappi-dt {
  padding: 10px 0 20px 0;
}

.time-table.mk3 ul {
  align-items: center;
}

.time-table.mk3 .rl-ball-title {
  background-color: #fb8e15;
}

.time-table.mk3 {
  border: 6px solid #fb8e15;
  border-radius: 45px;
}

.bgs-img{
  position:relative;
}

.bgs-img .img {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
}

.bgs-img.org .img {
  border: 4px solid #f8b30d;
}

.bgs-img.grn .img {
  border: 4px solid #00b6c5;
}

.bgs-img::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 40px;
  position: absolute;
  bottom: -15px;
  right: -15px;
  background-repeat: repeat;
  background-size: 12px 12px;
}

.bgs-img.org::after {
  background-image: url(/import/tenant_1/162.43.20.116/html/images/sqball_org.webp);
}

.bgs-img.grn::after {
  background-image: url(/import/tenant_1/162.43.20.116/html/images/sqball_grn.webp);
}

.deco12 {
  width: 220px;
  bottom: -8%;
  left: 3%;
}



.deco13 {
  z-index: 3;
  width: 160px;
  top: 2%;
  right: 3%;
}

.deco15 {
  width: 200px;
  bottom: -18%;
  left: 3%;
}

@media(max-width:1024px) {


  .under-mv {
    height: 350px;
  }


  .bg-sideline-section::before,
  .bg-sideline-section::after {
    width: 10px;
    opacity: 0.3;
  }

  .deco13 {
    width: 130px;
    top: 1%;
    right: 1%;
  }
}

@media(max-width:599px) {
  .abs-img {
    position: absolute;
    bottom: 110%;
    left: 3%;
    width: 120px;
  }

  .abs-img.mk2 {
    position: absolute;
    bottom: 110%;
    left: auto;
    right: 3%;
    width: 120px;
  }

  .ball-img {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .deco12 {
    width: 100px;
    bottom: -6%;
    left: 3%;
  }

  .info-dt {
    width: 75px;
  }

  .info-dd {
    width: calc(100% - 75px);
  }

  .for-mk3-box {
    padding-top: 10px;
  }

  .scroll-parent .time-table.mk3 {
    width: 100%;
    min-width: 800px;
  }

  .deco13 {
    width: 80px;
    top: 1%;
    right: 1%;
  }

}

.white-box {
  background-color: #fff;
  border: 6px solid #ff6c00;
  border-radius: 45px;
  padding: 60px;
}

.white-box.mini{
  padding:15px;
  overflow:hidden;
}

.white-box .new-price-box{
  padding:15px 0;
}

.num-ball {
  width: 36px;
  height: 36px;
  display: inline-block;
  color: #fff;
  position: absolute;
  top: -18px;
  left: -10px;
  z-index: 3;
}

.num-ball {
  width: 36px;
  height: 36px;
  display: inline-block;
  color: #fff;
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: 3;
  border-radius: 50%;
}

.num-ball>span {
  display: block;
  line-height: 32px;
  font-weight: bold;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.org .num-ball {
  background-color: #00b6c5;
}

.grn .num-ball {
  background-color: #f8b30d;
}

@media(max-width:1024px) {
  .white-box {
    border-radius: 30px;
    padding: 30px;
  }
}

@media(max-width:599px) {
  .white-box {
    border-radius: 20px;
    padding: 30px 10px;
  }
}

.mk2 .staff-inner {
  border: 4px solid #f8b30d;
}

.mk2.staff-item .b-title01 {
  color: #f8b30d;
}

.mk2.staff-item .b-title01::after {
  background-image: url(/import/tenant_1/162.43.20.116/html/images/sqball_org.webp);
}

.mk3 .staff-inner {
  border: 4px solid #5388cf;
}

.mk3.staff-item .b-title01 {
  color: #5388cf;
}

.mk3.staff-item .b-title01::after {
  background-image: url(/import/tenant_1/162.43.20.116/html/images/lineball.webp);
}

.white-box.mk2 {
  border: 6px solid #777;
}

.white-box.mk3 {
  border: 6px solid #fb8e15;
}

.white-box.mk4 {
  border: 6px solid #5388cf;
}

.price-box {
  background-color: #fff;
  border-radius: 45px;
  padding: 60px;
  box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.4);
}

.price-inner {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 15px;
  position: relative;
}

.price-inner ::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background-image: url(/import/tenant_1/162.43.20.116/html/images/sqball_org.webp);
  background-size: auto 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.ball-midasi>span {
  display: inline-block;
  padding: 3px 20px;
  color: #fff;
  font-weight: bold;
  background-color: #00b6c5;
  border-radius: 10px;
}

.number-tag {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  padding: 3px 5px;
  border-radius: 5px;
  margin-right: 5px;
  background-color: #00b6c5;
}

.mini-tv {
  width: 100%;
  height: 0px;
  padding-top: 60%;
  border: 6px solid #fff;
  border-radius: 45px;
  position: relative;
  overflow: hidden;
}

.mini-tv>iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media(max-width:1024px) {
  .deco14 {
    width: 110px;
    top: -2%;
    right: 2%;
    z-index: 3;
  }

  .price-box {
    border-radius: 30px;
    padding: 30px;
  }

  .deco15 {
    width: 140px;
  }

}


@media(max-width:599px) {
  .num-ball {
    display: none;
  }

  .deco14 {
    width: 80px;
    top: -2%;
    right: 2%;
    z-index: 3;
  }

  .price-box {
    border-radius: 20px;
    padding: 30px 10px;
  }

  .deco15 {
    width: 90px;
    bottom: -5%;
  }
}

.onayami-list li {
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 10px 30px 10px 60px;
  font-size: 18px;
  border-radius: 30px;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.4);
}

.checklist-mk2 li {
  padding-left: 30px;
  display: block;
  width: 100%;
  font-weight: bold;
  position: relative;
  margin: 15px 0;
}

.onayami-list li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(/import/tenant_1/162.43.20.116/html/images/check.webp);
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 14px;
  left: 30px;
}

.checklist-mk2 li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(/import/tenant_1/162.43.20.116/html/images/check.webp);
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 6px;
  left: 0px;
}

.checklist-mk3 li{
    padding-left: 20px;
  display: block;
  width: 100%;
  font-weight: bold;
  position: relative;
  margin: 15px 0;
}

.checklist-mk3 li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #00b6c5;
  position: absolute;
  top: 10px;
  left: 0px;
  border-radius: 50%;
}

.deco16 {
  width: 130px;
  top: 0%;
  right: 3%;
}

.deco17 {
  width: 150px;
  bottom: -3%;
  left: 3%;
}

.deco18 {
  width: 180px;
  top: -8%;
  right: 3%;
}

.bd-on {
  border: 1px solid #555;
}

.mk2.info-list .info-dt {
  width: 40%;
}

.mk2.info-list .info-dd {
  width: 60%;
}

.bg-sideline-section .inner {
  position: relative;
  z-index: 2;
}

@media(max-width:1024px) {
  .deco02.mk2 {
    bottom: auto;
    left: 1%;
    top: 4%;
  }

  .deco03.mk2 {
    bottom: auto;
    right: 1%;
    top: 4%;
  }

  .deco17 {
    width: 120px;
    bottom: -3%;
    left: 2%;
  }

  .deco18 {
    width: 130px;
    top: -7%;
    right: 2%;
  }
  
  .checklist-mk3 li::before {
    top: 6px;
  }
}

@media(max-width:599px) {
  .deco02.mk2 {
    width: 60px;
    top: -2%;
  }

  .deco03.mk2 {
    width: 60px;
    top: -2%;
  }

  .onayami-list li {
    width: 100%;
    padding: 8px 8px 8px 35px;
    font-size: 16px;
    margin-bottom: 15px;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.4);
  }

  .onayami-list li::before {
    top: 11px;
    left: 10px;
  }

  .checklist-mk2 li {
    padding-left: 20px;
    line-height: 1.2
  }

  .checklist-mk2 li::before {
    top: 0px;
  }

  .deco08.mk2 {
    width: 100px;
    top: -3%;
  }

  .deco16 {
    width: 80px;
    top: -1%;
    right: 3%;
  }

  .deco17 {
    width: 90px;
    bottom: -1.3%;
    left: 2%;
  }

  .deco18 {
    width: 100px;
    top: -5%;
    right: 2%;
  }
}

.price-sheet {
  width: 100%;
  background-color: #eee;
  padding: 60px;
  position: relative;
  box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.price-sheet>* {
  position: relative;
  z-index: 2;
}

.price-sheet::after {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 3px dashed #555;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 10px;
}

.sheet-title01 {
  color: #5388cf;
  font-weight: bold;
  padding-left: 40px;
  position: relative;
}

.sheet-title01::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(/import/tenant_1/162.43.20.116/html/images/AdobeStock_448194831_Preview.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 3px;
  left: 0px;
}

.sheet-title02 {
  padding-left: 30px;
  position: relative;
}

.sheet-title02::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #f8b30d;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 0px;
}

.new-price-box {
  background-color: #fff;
  padding: 15px;
}

.proce-li {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  padding-bottom: 15px;
  position: relative;
}

.proce-li::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background-image: url(/import/tenant_1/162.43.20.116/html/images/sqball_grn.webp);
  background-size: auto 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.mini .new-price-title{
  width:90px;
}

.mini .new-price-detail{
  width:calc(100% - 90px);
}

.checklist-mk2.ver2 {
  display: flex;
  flex-wrap: wrap;
}

.checklist-mk2.ver2 li {
  width: 33.33%;
}

@media(max-width:1024px) {
  .price-sheet {
    padding: 30px;
  }

  .price-sheet::after {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }

  .deco12.mk3 {
    width: 160px;
  }
}

@media(max-width:599px) {
  .price-sheet {
    padding: 30px 10px;
  }

  .sheet-title01 {
    padding-left: 34px;
  }

  .sheet-title01::before {
    width: 26px;
    height: 26px;
    top: 5px;
    left: 0px;
  }

  .sheet-title02 {
    padding-left: 20px;
  }

  .sheet-title02::before {
    width: 15px;
    height: 15px;
    top: 8px;
    left: 0px;
  }

  .price-sheet::after {
    border: 1px dashed #555;
    width: calc(100% - 6px);
    height: calc(100% - 10px);
  }

  .mk2.info-list li {
    flex-wrap: wrap;
  }

  .mk2.info-list .info-dt {
    width: 100%;
    padding-bottom: 3px;
    margin-bottom: 3px;
    border-bottom: 1px dotted #ccc;
  }

  .mk2.info-list .info-dd {
    width: 100%;
  }

  .proce-li {
    font-size: 14px;
  }

  .deco12.mk3 {
    width: 90px;
  }

  .deco14.mk3 {
    top: -5%;
  }

  .b-title01 {
    text-align: center;
  }

  .checklist-mk2.ver2 li {
    width: 50%;
  }
  
  .mini .new-price-title{
  font-size:16px;
}

.mini .new-price-detail{
  font-size:16px;
}
}





/* cmn-faq */
.cmn-faq-01 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cmn-faq-01 .box {
  padding: 20px 30px 20px;
  border-radius: 30px;
  background: #fff;
  border: 4px solid #f8b30d;
}

.cmn-faq-01 .box:hover {
  cursor: pointer;
}


.cmn-faq-01 .box+.box {
  margin-top: 30px;
}

.cmn-faq-01 .box .q-item {
  padding-left: 60px;
  padding-right: 20px;
  font-weight: bold;
  font-size: 22px;
  position: relative;
  z-index: 0;
}

.cmn-faq-01 .box .q-item:before {
  content: "\f059";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 40px;
  position: absolute;
  top: -12px;
  left: 0;
  z-index: 0;
  color: #f8b30d;
}

.cmn-faq-01 .box .a-item {
  margin-top: 15px;
  padding: 20px 30px;
  font-size: 16px;
  line-height: 2;
  border-radius: 10px;
  background: #00b6c5;
  color: #fff;
  display: none;
}

.cmn-faq-01 .box .q-item:after {
  content: "\f0dd";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%) rotate(180deg);;
  transform: translateY(-50%) rotate(180deg);;
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  z-index: 0;
  color: #fb8e15;
}

.cmn-faq-01 .box .q-item.is-parent:after {
  -webkit-transform: translate(0, -50%) rotate(0deg);
  transform: translate(0, -50%) rotate(0deg);
  top: calc(50% + 5px);
}

@media (max-width: 599px) {
  .cmn-faq-01 .box {
    padding: 15px 10px 15px;
  }

  .cmn-faq-01 .box .q-item {
    padding-left: 45px;
    padding-right: 15px;
    font-size: 18px;
    ;
  }

  .cmn-faq-01 .box .q-item:before {
    font-size: 34px;
    top: -10px;
  }

  .cmn-faq-01 .box .a-item {
    margin-top: 10px;
    padding: 10px 15px;
    line-height: 1.6;
  }
}

.blog-item a {
  display: block;
}


.news-list .news-item a {
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.4);
}

.blog-list .blog-item a {
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.4);
}

.news-list .news-item a::after {
  display: none;
}


.cat-list {
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}

.mk1.cat-list {
  border: 3px solid #5388cf;
}

.mk2.cat-list {
  border: 3px solid #f8b30d;
}

.cat-title {
  padding-bottom: 20px;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  position: relative;
}

.cat-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background-size: auto 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
}

.mk1 .cat-title {
  color: #5388cf;
}

.mk1 .cat-title::after {
  background-image: url(/import/tenant_1/162.43.20.116/html/images/lineball.webp);
}

.mk2 .cat-title {
  color: #f8b30d;
}

.mk2 .cat-title::after {
  background-image: url(/import/tenant_1/162.43.20.116/html/images/sqball_org.webp);
}

.cat-list-main li>* {
  display: block;
  padding-right: 20px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}

.cat-list-main li>*:after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  color: #fb8e15;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 5px;
}

.cat-list-main li+li {
  margin-top: 20px;
}

/* ページネーション */
.pager {
  width: 100%;
  margin: clamp(1.875rem, 1.31rem + 2.42vw, 3.125rem) 0;
}

.pager-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pager-list.-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.pager-list.-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.pager-list li {
  width: 2.5em;
  height: 2.5em;
  margin: 0 0.5em;
}

.pager-list li a,
.pager-list li .now {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.25em;
  font-size: 1.25em;
  color: white;
  line-height: 1;
  border: 2px solid #00b6c5;
  border-radius: 0.5em;
  background-color: #00b6c5;
  position: relative;
}

.pager-list li a a:hover,
.pager-list li .now a:hover {
  color: #00b6c5;
  background-color: white;
  opacity: 1;
}

.pager-list li a:focus,
.pager-list li .now:focus {
  outline: none;
}

.pager-list li a:hover,
.pager-list li .now {
  color: #00b6c5;
  border: 2px solid #00b6c5;
  background-color: white;
  opacity: 1;
}

.pager-list .arrow a::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.pager-list .arrow a:hover {
  color: white;
}

.pager-list .arrow a:hover::before {
  border-top: 2px solid #00b6c5;
  border-right: 2px solid #00b6c5;
}

.pager-list .arrow.-prev a::before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.pager-list .arrow.-next a::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pager.-circle-list li a,
.pager.-circle-list li .now {
  border-radius: 100%;
}

.pager.-deformation-list li a,
.pager.-deformation-list li .now {
  border-radius: 0.5em 0;
}

@media (max-width: 1024px) {
  .pager-list.-left\@tb {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .pager-list.-right\@tb {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .pager-list li {
    margin: 0 0.25em;
  }

  .up-content-area {
    padding: 25px;
    border-radius: 25px;
  }
}

@media (max-width: 599px) {
  .pager-list.-left\@sp {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .pager-list.-right\@sp {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .up-content-area {
    padding: 25px 10px;
    border-radius: 20px;
  }
}

.recruit-item>a {
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 30px;
}

.rec-row {
  padding: 10px 0;
}

.rec-dt {
  font-size: 18px;
  padding-left: 25px;
  position: relative;
  border-bottom: 2px dotted #ccc;
}

.rec-dt::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #f8b30d;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 0px;
}

.new-price-title.mk2 {
  width: 250px;
  font-weight: bold;
}

.new-price-detail.mk2 {
  width: auto;
  max-width: calc(100% - 250px);
}

.long-bnr-parent .link-pill {
  width: 100%;
}

@media(max-width:599px) {

  .ver_rec .new-price-title,
  .new-price-title.mk2,
  .new-price-detail.mk2 {
    width: 100%;
  }

  .ver_rec .proce-li {
    flex-wrap: wrap;
  }

  .new-price-detail.mk2 {
    padding-left: 20px;
    position: relative;
    max-width: 100%;
  }

  .new-price-detail.mk2::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 2px;
    background-color: #00b6c5;
    position: absolute;
    left: 0;
    top: 10px;
  }
  
  .ac-tel a {
    justify-content: center
}
}

[data-element-id]#header{
  position:relative;
}

[data-element-id]#header .up-d-none{
  display:block;
  border:2px solid blue;
  margin-top:20px;
  position:relative;
}

[data-element-id]#header .up-d-none::after{
  content:"PC時非表示";
  display:block;
  border:2px solid blue;
  color:#fff;
  width:100%;
  background-color:blue;
  position:absolute;
  left:0;
  bottom:100%;
  font-size:12px;
  text-align:center;
  line-height:1em;
}

[data-element-id].nav-main{
  flex-wrap:wrap;
  align-items: flex-start;
}

[data-element-id].nav-main>li{
  min-width:100px;
  margin-top:20px;
}

[data-element-id].drop-menu{
  position:relative;
  max-height:900px;
  margin-top:20px;
  border:2px solid yellow;
  overflow:visible;
}

[data-element-id].drop-menu::after{
  content:"ドロップダウン";
  display:block;
  border:2px solid yellow;
  color:red;
  width:100%;
  background-color:yellow;
  position:absolute;
  left:0;
  bottom:100%;
  font-size:12px;
  text-align:center;
  line-height:1em;
}

[data-element-id].pc-fixed-btn{
  position:relative;
  top:0;
  right:0;
}

[data-element-id].sp-fixed-btn {
    display: block;
    max-width: 600px;
    position:relative;
}

[data-element-id].top-info-section {
    margin-top: 30px
}

[data-element-id].cur-img>span{
  z-index:-1;
}

[data-element-id].link-pill>a{
  display:block;
  height:180px;
}

[data-element-id].link-pill>a>.left-img{
  height:50%;
  width:100%;
  position:relative;
  z-index:2;
}

[data-element-id].link-pill .right-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
}

[data-element-id].link-pill .right-img .dot-area{
   display:none;
}

[data-element-id].link-pill-txt{
  position:relative;
  z-index:2;
  width:100%;
  top:0;
  right:0;
  transform:translateY(0);
}

[data-element-id].doc-grd{
  display:none;
}

[data-element-id].sq-bnr a .subbox img{
  position:relative;
  top:0;
  left:0;
  transform:translate(0,0);
}

[data-element-id].col-btns{
  flex-direction:column;
}

[data-element-id].col-btns a{
  margin-bottom:30px;
}

[data-element-id].up-hide{
  max-width:375px;
  margin-left:auto;
  margin-right:auto;
}

@media(max-width:599px){
  .ftnav02 .ftnav-main.l1{
    width:40%;
  }
  .ftnav02 .ftnav-main.l2{
    width:60%;
  }
}

.wt-btns.ver-ball{
  width:244px;
  margin-left:auto;
}

.sp-fixed-btn .wt-btns.ver-ball a {
    border-radius:50%;
    height: 120px;
    width: 120px;
    flex-direction:column;
    align-items: center;
    flex-wrap:nowrap;
}

.sp-fixed-btn .wt-btns.ver-ball a *{
  line-height:1.2em!important;
}

.ver-ball .blue-txtmk2{
  margin-bottom:10px;
}

.ver-ball .wt-btn.tel .blue-txtmk2{
  margin-bottom:0px;
}

.ver-ball .wt-btn.tel a i{
  line-height:50px;
  font-size: 24px;
    width: 50px;
    height: 50px;
    display: inline-block;
    padding-right: 0;
    padding-top: 11px;
    margin-right: 0;
}

.overlay{
  display:none;
}

.new-overlay{
  display:none;
}

@media(max-width:1024px){
  .new-overlay{
    display:block;
    width:100vw;
    height:100vh;
    background-color:rgba(0,0,0,0.5);
    position:fixed;
    top:0;
    right:0;
    transform:translateX(-101%);
    transition:.8s;
    z-index:997;
  }
  
  .opened .new-overlay{
    transform:translateX(0%);
  }
}

[data-element-id].right-btn a,
[data-element-id].right-btn button,
[data-element-id].right-btn span{
  display:block;
}

.hukidashi-box{
  width:100%;
  text-align:center;
  margin-bottom:15px;
  
}

.hukidashi-inner{
  width:100%;
  max-width:600px;
  display:inline-block;
  background-color:#fff;
  padding:30px 0;
  font-size:20px;
  border-radius:20px;
}

.hukidashi-box.mk2{
  padding:0 5px;
}

.hukidashi-box.mk2 .hukidashi-inner{
  font-size:16px;
  padding:20px 0;
}

.tri{
  display:block;
  margin:0 auto;
  width: 0;
    height: 0;
    border-top: 35px solid #fff;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    margin: 0 auto;
}

@media(max-width:599px){
  .hukidashi-inner {
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
}

.hukidashi-box.mk2{
  padding:0;
}

.hukidashi-box.mk2 .hukidashi-inner {
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
}

.tri{
  border-top: 25px solid #fff;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}

.hukidashi-box {
    margin-bottom: 10px;
}

.right-btn a, .right-btn button, .right-btn span{
  font-size:16px;
}
}

[data-element-id].pure-txt,
[data-element-id].moya-txt{
  position:relative;
  width:100%;
  top:0;
  left:0;
  transform: translate(0%, 0%);
}

[data-element-id].pure-img,
[data-element-id].moya-img{
  position:relative;
  width:160px;
  height:160px;
  display:flex;
  justify-content: center;
  align-items: center;
}

[data-element-id].pure-img .img,
[data-element-id].moya-img .img{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
}

.no-tel{
  display:none;
}

[data-element-id].no-tel{
  display:block;
  width:100%;
  padding:5px 0;
  border:3px solid yellow;
  position:relative;
}

[data-element-id].no-tel::after{
  content:"上記ボタンに係る電話番号";
  display:block;
  background-color:yellow;
  color:red;
  font-size:12px;
  width:100%;
  text-align:center;
  line-height:1em;
  position:absolute;
  left:0;
  top:100%;
}



[data-element-id].tv-box{
  border:15px soldi #fff;
}

[data-element-id].ftnav-main a{
  position:relative;
}

[data-element-id].wt-btns.ver-ball{
  width:440px;
}

[data-element-id].sp-fixed-btn .wt-btns.ver-ball a {
    height: 218px;
    width: 218px;
}

.mt-minus{
  position:relative;
  z-index:1;
  margin-top:-20px;
}

.review-item-inner{
  display:flex;
  justify-content: space-between;
  background-color:#fff;
  border-radius:30px;
  padding:30px;
}

.epk-parent{
  color:#000;
}

.epk-parent .epk{
color:#8fc31f;
}

@media(max-width:599px){
  .review-item-inner{
  justify-content: center;
  align-items:center;
  flex-wrap:wrap;
  background-color:#fff;
  border-radius:20px;
  padding:10px;
  }
}

.catch-area{
  position:relative;
}

.catch-area .deco-img{
  width:70px;
  position:absolute;
}

.catch-area .deco-img>img{
  width:100%;
  object-fit:contain;
  animation: yurayura 2s linear infinite;
}

.deco991{
  top:-10px;
  left:-10px;
}

.deco992{
  top:40%;
  right:-10px;
}

.deco993{
  bottom:-10px;
  left:-10px;
}

@media(max-width:1024px){
  .catch-area .deco-img{
  width:65px;
}
.deco991{
  top:5px;
  left:-10px;
}

.deco992{
  top:40%;
  right:-10px;
}

.deco993{
  bottom:-10px;
  left:-10px;
}
}

@media(max-width:599px){
  .catch-area .deco-img{
  width:60px;
}
.deco991{
  top:10px;
  left:-50px;
}

.deco992{
  top:40%;
  right:-50px;
}

.deco993{
  bottom:-20px;
  left:-45px;
}
}

.ori-area .ver .tri {
display: block;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-right: 35px solid #fff;
    border-bottom: 40px solid transparent;
    border-top: 40px solid transparent;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.ori-area .ver .hukidashi-inner {
    width: 100%;
    max-width: 600px;
    display: inline-block;
    background-color: #fff;
    font-size: 16px;
    padding: 18px 0;
    border-radius: 20px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    transform: translateX(40px);
        display: flex;
    align-items: center;
    text-align: left;
}

.ori-area .ori-hukidashi{
      display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    max-height: 295.8px;
}

.ori-area .ori-hukidashi .hukidashi-box{
      width: 15%;
    position: relative;
    margin-bottom: 0;
}

.ori-area .ori-hukidashi .tv-img{
      width: 85%;
    max-height: 295.8px;
}

.hukidashi-box.mk2.mk3{
  display:flex;
  flex-direction:row;
  align-items: center;
  position:absolute;
  top:50%;
  right:105%;
  transform:translateY(-50%);
  width:auto;
  height:100%;
}

.hukidashi-box.mk2.mk4{
  display:flex;
  flex-direction:row-reverse;
  align-items: center;
  position:absolute;
  top:50%;
  left:105%;
  transform:translateY(-50%);
  width:auto;
  height:100%;
}

.hukidashi-box.mk2.mk3 .tri{
    border-left: 35px solid #fff;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-right:none;
}

.hukidashi-box.mk2.mk4 .tri{
    border-right: 35px solid #fff;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left:none;
}

.hukidashi-box.mk2.mk3 .hukidashi-inner{
  display: inline-block;
    background-color: #fff;
    font-size: 16px;
    padding: 18px 0;
    border-radius: 20px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: center;
    padding:18px 18px;
    height:100%;
    max-height:310px;
}

.hukidashi-box.mk2.mk4 .hukidashi-inner{
  display: inline-block;
    background-color: #fff;
    font-size: 16px;
    padding: 18px 0;
    border-radius: 20px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: center;
    padding:18px 18px;
    height:100%;
    max-height:310px;
}



@media(max-width:1024px){
  .ori-area .ver .hukidashi-inner{
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
    writing-mode: initial;
    text-orientation: initial;
    transform: none;
    text-align: center;
    display: inline-block;
    border-radius: 20px;
  }
  .ori-area .ver .tri{
    display: block;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: 35px solid #fff;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    border-bottom: none;
    position: relative;
    left: initial;
    top: initial;
    transform: none;
  }
    .ori-area .tri.tb-none{
      display: none;
    }
  .ori-area .ori-hukidashi .tv-img{
        width: 100%;
        max-height: 100%;
  }
  .ori-area .ori-hukidashi .hukidashi-box{
        width: 100%;
        margin-bottom: 15px;
  }
  .ori-area .ori-hukidashi{
        max-height: 100%;
  }
  
  .hukidashi-box.mk2.mk3,
  .hukidashi-box.mk2.mk4{
  display:block;
  position:relative;
  top:0%;
  right:0%;
  left:0%;
  transform:translateY(0%);
  width:100%;
  height:auto;
}

.hukidashi-box.mk2.mk3 .tri,
.hukidashi-box.mk2.mk4 .tri{
   display: block;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: 35px solid #fff;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    border-bottom:0;
    margin: 0 auto;
}

.hukidashi-box.mk2.mk3 .hukidashi-inner,
.hukidashi-box.mk2.mk4 .hukidashi-inner{
  width: 100%;
    max-width: 600px;
    display: inline-block;
    font-size: 16px;
    padding: 20px 0;
    border-radius: 20px;
    writing-mode: horizontal-tb;
    text-align: center;
    height:auto;
}

}
@media(max-width:599px){
  .ori-area .ver .tri{
        border-top: 25px solid #fff;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
  }
  .ori-area .ver .hukidashi-inner{
            border-radius: 10px;
  }
  
  .hukidashi-box.mk2.mk3 .hukidashi-inner,
.hukidashi-box.mk2.mk4 .hukidashi-inner{
  font-size:14px;
}
}

/* 2024/11/26 */
#slide01 .slick-track{
  display: flex;
}

#slide01 .slick-slide{
  padding-right: 20px;
  padding-left: 20px;
  height: auto !important;
}

#slide01 .slick-prev,
#slide01 .slick-next{
  background-color: #00b6c5;
  border-radius: 100%;
  display: block;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}


#slide01 .slick-prev:before,
#slide01 .slick-next:after{
  background-color: #00b6c5;
  border-radius: 100%;
  display: block;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#slide01 .review-item-inner{
  height: 100%;
}

@media(max-width:1024px){
#slide01 .slick-prev{
  left: 0;
}    
  
#slide01 .slick-next{
  right: 0;
}
}

@media(max-width:599px) {
#slide01 .slick-slide{
  padding-right: 10px;
  padding-left: 10px;
}

#slide01 .review-item-inner{
  justify-content: flex-start;
  flex-direction: column;
}
}

.link-blank {
  width: 100%;
  margin: 50px auto;
  text-align: center;
  font-size: 24px;
}
.link-blank a {
  color: #fb8e15;
  border-bottom: 1px solid #fb8e15;
}
.link-blank a:hover {
  opacity: 0.6;
}

@media (max-width: 599px){
  .link-blank {
    font-size: 16px;
  }
}
