@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 14px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a:active {
  color: #000;
}
@media (min-width: 800px) {
  a.tel {
    pointer-events: none;
    cursor: default;
  }
}

@media (min-width: 800px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 799px) {
  .pc {
    display: none !important;
  }
}
/* main
==================================*/
main {
  display: block; /*IE対策*/
}

/*　Retina対応時のCSS↓　*/
/*=================================
 	.header
==================================*/
/*.secure-header
-------------------------*/
.secure-header {
  width: 100%;
  height: 46px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
  border-bottom: solid 1px #d1d1e2;
  /*.inner
  -------------------------*/
  /*.sp-menu
  -------------------------*/
}
.header .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  width: 100%;
  height: 46px;
  box-sizing: border-box;
  /*.nav-menu-wrap
  -------------------------*/
}
.header .inner .logo-area {
  width: 240px;
}
.header .inner .logo-area .logo img {
  width: 100%;
}
.header .inner .nav-menu-wrap {
  display: none;
  position: absolute;
  width: 100%;
  height: 100dvh;
  left: 0;
  top: 46px;
  box-sizing: border-box;
  padding: 40px 15px;
  background-color: #504894;
  background-image: url("/images/common/menu-line.svg");
  background-size: 850px auto;
  background-position: right 40px;
  background-repeat: no-repeat;
  overflow-y: scroll;
  /*.nav-area
  -------------------------*/
}
.header .inner .nav-menu-wrap .nav-area {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 34px;
}
.header .inner .nav-menu-wrap .nav-area .sub-nav-area {
  order: 2;
}
.header .inner .nav-menu-wrap .nav-area .sub-nav-area .sub-nav-lists li {
  border-bottom: solid 1px #6862a3;
}
.header .inner .nav-menu-wrap .nav-area .sub-nav-area .sub-nav-lists li a {
  font-size: 17px;
  color: #fff;
  padding: 18px 0;
  display: block;
  position: relative;
  font-weight: 700;
}
.header .inner .nav-menu-wrap .nav-area .sub-nav-area .sub-nav-lists li a::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 6px;
  height: 10px;
  transform: translateY(-50%);
  background-image: url(../images/common/icon-arrow-white.svg);
  background-size: cover;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area {
  width: 100%;
  order: 1;
  transform: translate(0, 30px);
  transition: all 0.7s ease-in-out;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li {
  border-bottom: solid 1px #6862a3;
  transition: all 0.7s ease-in-out;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li a {
  font-size: 17px;
  color: #fff;
  padding: 18px 0;
  display: block;
  position: relative;
  font-weight: 700;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li a::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 6px;
  height: 10px;
  transform: translateY(-50%);
  background-image: url(../images/common/icon-arrow-white.svg);
  background-size: cover;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(1) {
  transform: translate(0, 5px);
  transition-delay: 0.05s;
  opacity: 0;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(2) {
  transform: translate(0, 10px);
  transition-delay: 0.1s;
  opacity: 0;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(3) {
  transform: translate(0, 15px);
  transition-delay: 0.15s;
  opacity: 0;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(4) {
  transform: translate(0, 20px);
  transition-delay: 0.2s;
  opacity: 0;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(5) {
  transform: translate(0, 25px);
  transition-delay: 0.25s;
  opacity: 0;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(6) {
  transform: translate(0, 30px);
  transition-delay: 0.3s;
  opacity: 0;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(7) {
  transform: translate(0, 35px);
  transition-delay: 0.35s;
  opacity: 0;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(8) {
  transform: translate(0, 40px);
  transition-delay: 0.4s;
  opacity: 0;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(9) {
  transform: translate(0, 45px);
  transition-delay: 0.45s;
  opacity: 0;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(10) {
  transform: translate(0, 50px);
  transition-delay: 0.5s;
  opacity: 0;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(9) {
  border-bottom: none;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(9) .contact-area {
  padding-top: 40px;
  transform: translate(0, 45px);
  transition-delay: 3s;
  transition: all 0.7s ease-in-out;
  width: 100%;
  opacity: 0;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(9) .contact-area .contact-button-area {
  text-align: center;
}
.header .inner .nav-menu-wrap .nav-area .global-nav-area .global-nav-lists li:nth-child(9) .contact-area .contact-button-area .button {
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 52px;
  background-color: #fff;
  border-radius: 10px;
  color: #504894;
  font-size: 18px;
  font-weight: 800;
}
.header .sp-menu {
  width: 54px;
  height: 30px;
  background-color: #504894;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.header .sp-menu .pos {
  width: 20px;
  height: 6px;
  position: relative;
}
.header .sp-menu .pos .line {
  position: absolute;
  display: inline-block;
  background-color: #fff;
  transition: all 0.15s ease;
}
.header .sp-menu .pos .line:nth-child(1) {
  top: 0;
  left: 0;
  width: 20px;
  height: 1px;
}
.header .sp-menu .pos .line:nth-child(2) {
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
}
.js-open .header .inner .nav-menu-wrap .global-nav-area {
  transform: translate(0, 0);
}
.js-open .header .inner .nav-menu-wrap .global-nav-area .global-nav-lists li:nth-child(1) {
  transform: translate(0, 0);
  opacity: 1;
}
.js-open .header .inner .nav-menu-wrap .global-nav-area .global-nav-lists li:nth-child(2) {
  transform: translate(0, 0);
  opacity: 1;
}
.js-open .header .inner .nav-menu-wrap .global-nav-area .global-nav-lists li:nth-child(3) {
  transform: translate(0, 0);
  opacity: 1;
}
.js-open .header .inner .nav-menu-wrap .global-nav-area .global-nav-lists li:nth-child(4) {
  transform: translate(0, 0);
  opacity: 1;
}
.js-open .header .inner .nav-menu-wrap .global-nav-area .global-nav-lists li:nth-child(5) {
  transform: translate(0, 0);
  opacity: 1;
}
.js-open .header .inner .nav-menu-wrap .global-nav-area .global-nav-lists li:nth-child(6) {
  transform: translate(0, 0);
  opacity: 1;
}
.js-open .header .inner .nav-menu-wrap .global-nav-area .global-nav-lists li:nth-child(7) {
  transform: translate(0, 0);
  opacity: 1;
}
.js-open .header .inner .nav-menu-wrap .global-nav-area .global-nav-lists li:nth-child(8) {
  transform: translate(0, 0);
  opacity: 1;
}
.js-open .header .inner .nav-menu-wrap .global-nav-area .global-nav-lists li:nth-child(9) {
  transform: translate(0, 0);
  opacity: 1;
}
.js-open .header .inner .nav-menu-wrap .global-nav-area .global-nav-lists li:nth-child(10) {
  transform: translate(0, 0);
  opacity: 1;
}
.js-open .header .inner .nav-menu-wrap .global-nav-area .global-nav-lists li:nth-child(9) .contact-area {
  transform: translate(0, 0);
  opacity: 1;
}
.js-open .header .sp-menu .pos .line:nth-child(1) {
  transform: translateY(2px) rotate(20deg);
}
.js-open .header .sp-menu .pos .line:nth-child(2) {
  transform: translateY(-3px) rotate(-20deg);
}

/*=================================
 	.google-ma-area
==================================*/
.google-map-area {
  padding-top: 75px;
}
.google-map-area .google-map {
  position: relative;
  width: 100%;
  padding-top: 80%;
}
.google-map-area .google-map .map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*=================================
 	.footer
==================================*/
.footer {
  background-color: #333333;
  position: relative;
  overflow: hidden;
  /*.line-img
  -------------------------*/
  /*.inner
  -------------------------*/
  /*.logo-area
  -------------------------*/
  /*.content-wrap
  -------------------------*/
}
.footer .line-img {
  position: absolute;
  top: -55px;
  right: -120px;
  opacity: 0.1;
  width: 450px;
}
.footer .line-img img {
  width: 100%;
}
.footer .inner {
  padding: 80px 15px 100px 15px;
  position: relative;
}
.footer .logo-area {
  padding-bottom: 20px;
}
.footer .logo-area .logo {
  width: 220px;
  display: block;
}
.footer .logo-area .logo img {
  width: 100%;
}
.footer .content-wrap .address-area {
  padding-bottom: 48px;
}
.footer .content-wrap .address-area .text-area {
  color: #fff;
  display: inline-block;
  padding-bottom: 24px;
}
.footer .content-wrap .address-area .text-area .address-text {
  font-size: 14px;
  padding-bottom: 20px;
  line-height: 1.8;
  border-bottom: solid 1px #6d6c71;
}
.footer .content-wrap .address-area .text-area .address-text a {
  color: #fff;
}
.footer .content-wrap .address-area .text-area .hours-text {
  font-size: 14px;
  padding-top: 20px;
  line-height: 1.8;
}
.footer .content-wrap .address-area .contact-button-area .button {
  display: flex;
  justify-content: left;
  align-items: center;
  background-color: #fff;
  padding: 0 20px 2px 20px;
  font-size: 16px;
  font-weight: 500;
  width: 165px;
  height: 47px;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.footer .content-wrap .address-area .contact-button-area .button .icon-arrow {
  position: absolute;
  top: calc(50% + 3px);
  right: 20px;
  width: 7px;
  height: 18px;
  display: block;
  transform: translateY(-50%);
}
.footer .content-wrap .address-area .contact-button-area .button .icon-arrow .arrow {
  position: relative;
  display: block;
  left: 2px;
  width: 7px;
  height: 12px;
  mask-image: url(../images/common/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #333333;
}
.footer .content-wrap .footer-nav-area {
  width: 100%;
  display: flex;
  box-sizing: border-box;
}
.footer .content-wrap .footer-nav-area .layout-a {
  padding-right: 40px;
}
.footer .content-wrap .footer-nav-area .layout-a .footer-nav-lists li.insta {
  display: flex;
  gap: 14px;
}
.footer .content-wrap .footer-nav-area .layout-a .footer-nav-lists li.insta a {
  display: block;
  width: 25px;
}
.footer .content-wrap .footer-nav-area .layout-a .footer-nav-lists li a {
  font-size: 14px;
  color: #fff;
  display: block;
  padding-bottom: 24px;
}
.footer .content-wrap .footer-nav-area .layout-b .footer-nav-lists li a {
  font-size: 14px;
  color: #fff;
  display: block;
  padding-bottom: 24px;
}
.footer .copy-area {
  height: 46px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .copy-area .copy-text {
  font-size: 11px;
  color: #2a2a2a;
}

/*.page-top-area
-------------------------*/
.page-top-area {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
}
.page-top-area a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 13px;
}
.page-top-area a .icon-arrow {
  display: block;
  width: 10px;
  transform: rotate(-90deg);
}
.page-top-area a .page-top-text {
  padding-top: 10px;
  display: block;
  color: #fff;
}

/*=================================
 	.main-title-area
==================================*/
.main-title-area {
  text-align: center;
}
.main-title-area .title .en-text {
  font-size: 10px;
  font-weight: 500;
  padding-left: 10px;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.main-title-area .title .en-text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 4px;
  background-color: #514995;
  border-radius: 9999px;
}
.main-title-area .title .jp-text {
  display: block;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}
.main-title-area .title .ruby-text {
  font-weight: 500;
  padding-top: 12px;
  font-size: 12px;
  display: block;
}
.main-title-area .title.amuse-color .en-text::after {
  background-color: #504894;
}
.main-title-area .title.ground-color .en-text::after {
  background-color: #10a184;
}
.main-title-area .title.court-color .en-text::after {
  background-color: #ffae00;
}
.main-title-area .title.school-color .en-text::after {
  background-color: #2877d7;
}
.main-title-area .title.yuya-color .en-text::after {
  background-color: #575757;
}
.main-title-area .title.classes-color .en-text::after {
  background-color: #10a184;
}

/*=================================
 	.icon-arrow(ベース)
==================================*/
.icon-arrow-area {
  display: inline-block;
}
.icon-arrow-area .icon-arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 999px;
  border: solid 1px #514995;
}
.icon-arrow-area .icon-arrow .arrow {
  position: relative;
  display: block;
  left: 1px;
  width: 6px;
  height: 11px;
  mask-image: url(../images/common/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #514995;
}

/*=================================
 	.arrow-button-area(ベース)
==================================*/
.arrow-button-area .button {
  display: inline-block;
}
.arrow-button-area .button .text {
  font-size: 14px;
  display: inline-block;
  padding-right: 12px;
  font-weight: 600;
}

/*-----------------------------------------------------------

	ここから下層ページのcommon

------------------------------------------------------------*/
/*=================================
 	.sub-visual-area
==================================*/
.sub-visual-area {
  padding-bottom: 56px;
  /*.tax-text-area
  -------------------------*/
}
.sub-visual-area .sub-visual {
  position: relative;
  width: 100%;
  height: 138px;
  overflow: hidden;
  display: flex;
  align-items: center;
  /*.sub-visual-line
  -------------------------*/
  /*.breadcrumb-area
  -------------------------*/
  /*.line
  -------------------------*/
}
.sub-visual-area .sub-visual .sub-visual-line {
  position: absolute;
  right: 0;
  top: 10px;
  width: 100%;
  z-index: -1;
}
.sub-visual-area .sub-visual .sub-visual-line img {
  width: 100%;
}
.sub-visual-area .sub-visual .sub-visual-line-l {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  z-index: -1;
}
.sub-visual-area .sub-visual .sub-visual-line-l img {
  width: 100%;
}
.sub-visual-area .sub-visual .sub-visual-line-r {
  position: absolute;
  top: 10px;
  right: 0;
  width: 100px;
  z-index: -1;
}
.sub-visual-area .sub-visual .sub-visual-line-r img {
  width: 100%;
}
.sub-visual-area .sub-visual .main-title-area {
  text-align: left;
  padding-left: 36px;
}
.sub-visual-area .sub-visual .main-title-area .title .en-text {
  padding-left: 6px;
}
.sub-visual-area .sub-visual .main-title-area .title .en-text::after {
  top: 3px;
  width: 3px;
  height: 3px;
  background-color: #514995;
}
.sub-visual-area .sub-visual .main-title-area .title .jp-text {
  font-size: 22px;
  font-weight: 500;
}
.sub-visual-area .sub-visual .breadcrumb-area {
  position: absolute;
  top: 0;
  padding-top: 10px;
  padding-left: 16px;
}
.sub-visual-area .sub-visual .breadcrumb-area .breadcrumb {
  display: flex;
  justify-content: left;
}
.sub-visual-area .sub-visual .breadcrumb-area .breadcrumb li {
  font-size: 10px;
  color: #333;
  margin-right: 24px;
  position: relative;
  word-break: break-all;
  white-space: nowrap;
}
.sub-visual-area .sub-visual .breadcrumb-area .breadcrumb li::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -18px;
  width: 11px;
  height: 1px;
  background-color: #868686;
  transform: rotate(-45deg);
}
.sub-visual-area .sub-visual .breadcrumb-area .breadcrumb li:nth-last-child(1) {
  margin-right: 0;
  white-space: normal;
}
.sub-visual-area .sub-visual .breadcrumb-area .breadcrumb li:nth-last-child(1)::after {
  content: none;
}
.sub-visual-area .sub-visual .breadcrumb-area .breadcrumb li a {
  font-size: 10px;
  color: #868686;
  display: block;
  word-break: break-all;
  transition: all 0.3s ease;
}
.sub-visual-area .sub-visual .line {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  display: flex;
  z-index: 100;
}
.sub-visual-area .sub-visual .line span {
  height: 2px;
  width: 25%;
  display: block;
}
.sub-visual-area .sub-visual .line span:nth-child(1) {
  background-color: #504894;
}
.sub-visual-area .sub-visual .line span:nth-child(2) {
  background-color: #ffae00;
}
.sub-visual-area .sub-visual .line span:nth-child(3) {
  background-color: #f6200a;
}
.sub-visual-area .sub-visual .line span:nth-child(4) {
  background-color: #10a184;
}
.sub-visual-area .tax-text-area {
  margin: 0 auto;
  padding: 8px 15px 0;
  text-align: right;
}
.sub-visual-area .tax-text-area .tax-text {
  font-size: 10px;
}

/*=================================
 	.sub-title-area
==================================*/
.sub-title-area {
  padding-bottom: 18px;
}
.sub-title-area .sub-title {
  font-size: 20px;
  position: relative;
  padding-left: 14px;
  line-height: 1.5;
}
.sub-title-area .sub-title .small-text {
  font-size: 13px;
}
.sub-title-area .sub-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background-color: #504894;
  border-radius: 999px;
}
.sub-title-area .sub-title.amuse-color::after {
  background-color: #504894;
}
.sub-title-area .sub-title.ground-color::after {
  background-color: #10a184;
}
.sub-title-area .sub-title.court-color::after {
  background-color: #ffae00;
}
.sub-title-area .sub-title.school-color::after {
  background-color: #2877d7;
}
.sub-title-area .sub-title.yuya-color::after {
  background-color: #575757;
}
.sub-title-area .sub-title.noto-color::after {
  background-color: #dc1d09;
}

/*=================================
 	.swiper-slide
==================================*/
.swiper-slide {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.swiper-slide a {
  display: block;
  height: 100%;
}
.swiper-slide a .photo-area {
  overflow: hidden;
  position: relative;
  padding-top: 65%;
}
.swiper-slide a .photo-area .photo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform: translate(-50%, -50%);
}
.swiper-slide a .photo-area .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-slide a .content-area {
  padding: 16px;
}
.swiper-slide a .content-area .label-lists {
  padding-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  padding-bottom: 16px;
  margin-bottom: -6px;
}
.swiper-slide a .content-area .label-lists .label-text {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 6px;
}
.swiper-slide a .content-area .label-lists .label-text .pos {
  position: relative;
  top: -1px;
}
.swiper-slide a .content-area .title {
  font-size: 21px;
  line-height: 1.3;
  padding-bottom: 8px;
  word-break: break-all;
  overflow-wrap: break-word;
}
.swiper-slide a .content-area p {
  word-break: break-all;
  overflow-wrap: break-word;
  font-size: 14px;
  color: #7b7b7b;
}
.swiper-slide a .content-area .open-lists {
  padding-bottom: 8px;
}
.swiper-slide a .content-area .open-lists li {
  font-size: 14px;
  color: #7b7b7b;
}
.swiper-slide a .content-area .period-text {
  font-size: 14px;
  color: #7b7b7b;
}

/*=================================
 	.news-label-area
==================================*/
.news-label-area .news-label {
  position: relative;
  line-height: 1;
  top: -2px;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  border-radius: 9999px;
  padding: 4px 10px;
}
.news-label-area .news-label .pos {
  font-weight: 600;
  position: relative;
  top: -1px;
  left: 0;
}

/*=================================
 	.category-select-area
==================================*/
.category-select-area {
  display: flex;
  align-items: center;
  padding-bottom: 34px;
}
.category-select-area .layout-type-a {
  padding-right: 12px;
}
.category-select-area .layout-type-a .text {
  color: #504894;
  font-weight: 600;
}
.category-select-area .layout-type-b .select-wrap {
  position: relative;
}
.category-select-area .layout-type-b .select-wrap::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 24px;
  height: 12px;
  pointer-events: none;
  mask-image: url(../images/common/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transform: rotate(90deg);
  background-color: #504894;
}
.category-select-area .layout-type-b .select {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  width: 190px;
  height: 36px;
  border: solid 1px #504894;
  box-sizing: border-box;
  border-radius: 999px;
  color: #504894;
  padding: 0 16px;
  font-weight: 600;
}

/*=================================
	各ラベルの色
==================================*/
/*.news-label-c
-------------------------*/
.news-label-c-1 {
  background-color: #504894;
}

.news-label-c-2 {
  background-color: #ffae00;
}

.news-label-c-3 {
  background-color: #2899ef;
}

.news-label-c-4 {
  background-color: #f6200a;
}

/*.classes-label-c
-------------------------*/
.classes-label-c-1 {
  background-color: #504894;
}

.classes-label-c-2 {
  background-color: #1eb95c;
}

.classes-label-c-3 {
  background-color: #c86192;
}

.classes-label-c-4 {
  background-color: #ffae00;
}

/*=================================
	.icon-pdf-text-area
==================================*/
.icon-pdf-text-area {
  display: flex;
  align-items: center;
}
.icon-pdf-text-area + .icon-pdf-text-area {
  padding-top: 16px;
}
.icon-pdf-text-area .icon-pdf {
  display: inline-block;
  font-size: 15px;
  width: 15px;
  margin-right: 6px;
  font-size: 1px;
  position: relative;
  top: 1px;
}
.icon-pdf-text-area .text {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/*==================================
	.pager_wrap_area
	/news//classes/ 個別ページ
==================================*/
.pager_wrap_area {
  padding-top: 42px;
  margin-top: 42px;
  border-top: solid 1px #c9c5e8;
}
.pager_wrap_area .pager_wrap {
  max-width: 350px;
  margin: 0 auto;
}
.pager_wrap_area .pager_wrap ul {
  position: relative;
  /*.prev
  ------------------------*/
  /*.next
  ------------------------*/
}
.pager_wrap_area .pager_wrap ul .list a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  width: 142px;
  height: 40px;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  margin: auto;
  background-color: #504894;
}
.pager_wrap_area .pager_wrap ul .prev, .pager_wrap_area .pager_wrap ul .next {
  position: absolute;
  top: 0;
}
.pager_wrap_area .pager_wrap ul .prev a, .pager_wrap_area .pager_wrap ul .next a {
  display: block;
}
.pager_wrap_area .pager_wrap ul .prev a .page-icon-arrow, .pager_wrap_area .pager_wrap ul .next a .page-icon-arrow {
  width: 49px;
  height: 48px;
  transition: all 0.3s ease;
}
.pager_wrap_area .pager_wrap ul .prev a .page-icon-arrow::after, .pager_wrap_area .pager_wrap ul .next a .page-icon-arrow::after {
  content: "";
  position: absolute;
  top: 13px;
  width: 9px;
  height: 15px;
  mask-image: url(../images/common/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #514995;
}
.pager_wrap_area .pager_wrap ul .prev {
  left: 0;
}
.pager_wrap_area .pager_wrap ul .prev a .page-icon-arrow::after {
  left: 16px;
  transform: scale(-1, 1);
}
.pager_wrap_area .pager_wrap ul .next {
  right: 0;
}
.pager_wrap_area .pager_wrap ul .next a .page-icon-arrow:after {
  right: 16px;
}

.scroll-hint-icon {
  top: calc(50% - 40px) !important;
}

/*==================================
	.swipe-text-container
==================================*/
.swipe-text-container {
  padding-bottom: 9px;
}
.swipe-text-container.text-none-ground-a {
  display: inline-block;
}
.swipe-text-container.text-none-ground-b {
  display: inline-block;
}
@media screen and (min-width: 580px) {
  .swipe-text-container.text-none-ground-b {
    display: none;
  }
}
.swipe-text-container .swipe-text {
  font-size: 14px;
  padding-top: 4px;
  padding-left: 27px;
  text-align: center;
  position: relative;
  display: inline-block;
}
.swipe-text-container .swipe-text .icon-swipe {
  position: absolute;
  display: inline-block;
  top: 10px;
  left: 0;
  width: 21px;
  height: 9px;
  font-size: 1px;
}
.swipe-text-container .swipe-text .icon-swipe img {
  width: 100%;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 50px);
  opacity: 0;
  transition: 0.7s ease-in-out;
}

.move {
  transform: translate(0, 0);
  opacity: 1;
}

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  backface-visibility: hidden;
}

.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
}
@media (max-width: 799px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.row .col.col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/*==================================
	リスト系
==================================*/
.news_ul {
  margin: 0 0 19px;
}
.news_ul .news_li {
  border-bottom: 1px solid #e8e8e8;
  padding: 22px 14px;
}
.news_ul .news_li > a {
  display: flex;
  align-items: center;
}
.news_ul .news_li > a .date {
  font-size: 16px;
  color: #919191;
  margin-right: 24px;
}
.news_ul .news_li > a .img_wrap {
  margin-right: 17px;
}
@media (min-width: 800px) {
  .news_ul .news_li > a .title {
    background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
    transition: background 0.4s ease;
  }
  .news_ul .news_li > a:hover .title {
    background-size: 100% 1px;
  }
}
@media (max-width: 799px) {
  .news_ul .news_li {
    padding: 14px 0;
  }
  .news_ul .news_li > a {
    display: block;
    position: relative;
    padding-left: 80px;
  }
  .news_ul .news_li > a .img_wrap {
    margin-right: 0;
    position: absolute;
    top: 0;
    left: -5px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
  }
  .news_ul .news_li > a .img_wrap img {
    max-width: 57px;
  }
  .news_ul .news_li > a .date,
  .news_ul .news_li > a .title {
    display: block;
  }
  .news_ul .news_li > a .date {
    font-size: 14px;
    margin: 0 0 7px;
  }
  .news_ul .news_li > a .title {
    font-size: 16px;
    line-height: 1.3;
  }
}

/*==================================
	ページナビ
==================================*/
.page_navigation .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 45px 0 50px;
}
@media (max-width: 799px) {
  .page_navigation .wp-pagenavi {
    margin: 30px 0 40px;
  }
}
.page_navigation .wp-pagenavi > .page,
.page_navigation .wp-pagenavi .current {
  font-size: 16px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0 5px;
}
.page_navigation .wp-pagenavi > .page:not(.current),
.page_navigation .wp-pagenavi .current:not(.current) {
  background-color: #f3f3f3;
}
@media (min-width: 800px) {
  .page_navigation .wp-pagenavi > .page:not(.current):hover,
  .page_navigation .wp-pagenavi .current:not(.current):hover {
    color: #fff;
    background-color: #000;
  }
}
.page_navigation .wp-pagenavi > .page.current,
.page_navigation .wp-pagenavi .current.current {
  background-color: #000;
  color: #fff;
}
.page_navigation .wp-pagenavi .nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink {
  position: relative;
  font-weight: 500;
  box-sizing: border-box;
}
.page_navigation .wp-pagenavi .nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 9px;
  height: 14px;
  background-image: url(../images/common/pager_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
.page_navigation .wp-pagenavi .nextpostslink.previouspostslink,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink {
  padding-left: 33px;
  margin-right: 30px;
}
.page_navigation .wp-pagenavi .nextpostslink.previouspostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink::before {
  left: 0;
  transform: scale(-1, 1);
}
@media (min-width: 800px) {
  .page_navigation .wp-pagenavi .nextpostslink.previouspostslink:hover::before,
  .page_navigation .wp-pagenavi .previouspostslink.previouspostslink:hover::before {
    left: -5px;
  }
}
.page_navigation .wp-pagenavi .nextpostslink.nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink {
  padding-right: 33px;
  margin-left: 30px;
}
.page_navigation .wp-pagenavi .nextpostslink.nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink::before {
  right: 0;
}
@media (min-width: 800px) {
  .page_navigation .wp-pagenavi .nextpostslink.nextpostslink:hover::before,
  .page_navigation .wp-pagenavi .previouspostslink.nextpostslink:hover::before {
    right: -5px;
  }
}
.page_navigation .wp-pagenavi .list_back {
  margin-left: 58px;
  margin-right: 58px;
}
.page_navigation .wp-pagenavi .list_back > a {
  font-weight: 500;
}
.page_navigation .wp-pagenavi .list_back > a > .list_icon {
  display: inline-block;
  padding-left: 24px;
  position: relative;
}
.page_navigation .wp-pagenavi .list_back > a > .list_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  background-image: url(../img/news/list_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.page_navigation > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 45px 0 50px;
}
.page_navigation > ul .link_page,
.page_navigation > ul .current_page {
  font-size: 16px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0 5px;
}
.page_navigation > ul .link_page:not(.current_page),
.page_navigation > ul .current_page:not(.current_page) {
  background-color: #f3f3f3;
}
@media (min-width: 800px) {
  .page_navigation > ul .link_page:not(.current_page):hover,
  .page_navigation > ul .current_page:not(.current_page):hover {
    color: #fff;
    background-color: #000;
  }
}
.page_navigation > ul .link_page.current_page,
.page_navigation > ul .current_page.current_page {
  background-color: #000;
  color: #fff;
}

/*==================================
  Contact_reset
==================================*/
main#Contact {
  /*------ Reset CSS ------*/
  /*------ Reset END ------*/
}
main#Contact input {
  -webkit-appearance: none;
}
main#Contact input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}
main#Contact input[type=radio] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
main#Contact input[type=radio]:checked + label {
  background: #ff0000;
}
main#Contact input[type=checkbox] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
main#Contact input[type=checkbox]:checked + label {
  background: #ff0000;
}
main#Contact input::placeholder {
  color: #b7b7b7;
}
main#Contact input:-ms-input-placeholder {
  color: #b7b7b7;
}
main#Contact input::-webkit-input-placeholder {
  color: #b7b7b7;
}
main#Contact button,
main#Contact input[type=button],
main#Contact input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
main#Contact textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
}
main#Contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

/*==================================
  Contact_base
==================================*/
/* input, textarea
--------------------------------*/
/* radio_button
--------------------------------*/
main#Contact {
  /*------ Form Base ------*/
  /*------ Form Base END ------*/
}
@keyframes onAutoFillStart {}
main#Contact span.error {
  color: #cc0303;
  display: block;
  margin: 7px 0 0;
}
main#Contact input:-webkit-autofill {
  animation-name: onAutoFillStart;
  background: rgb(255, 255, 255) !important;
  transition: background-color 50000s ease-in-out 0s;
}
main#Contact input[type=text]:focus,
main#Contact input[type=email]:focus,
main#Contact input[type=tel]:focus,
main#Contact input[type=search]:focus,
main#Contact input[type=url]:focus,
main#Contact textarea:focus {
  color: #000;
  background-color: #dddddd;
}
main#Contact .ERR {
  color: #cc0303;
}
main#Contact input[type=text] {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  padding: 12px 21px;
  border: 1px solid #dddddd;
  background: #dddddd;
  box-sizing: border-box;
  color: #000;
  width: 100%;
}
main#Contact input[type=text].zip {
  max-width: 247px;
  width: 100%;
}
main#Contact .zip-wrap {
  background: #dddddd;
  display: inline-block;
  position: relative;
  max-width: 247px;
  width: 100%;
  margin-right: 3px;
}
main#Contact .zip-wrap::before {
  content: "〒";
  font-size: 18px;
  position: absolute;
  top: 0.8em;
  left: 24px;
  margin: auto;
}
main#Contact .zip-wrap input {
  padding: 12px 21px 12px 55px;
  width: 100%;
}
main#Contact input[type=button] {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #000;
  max-width: 140px;
  width: 100%;
  background: #dddddd;
  border: 3px solid #dddddd;
  padding: 10px 19px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
}
main#Contact input[type=button]:hover {
  background: none;
}
main#Contact input[type=checkbox] + label {
  padding-left: 29px;
  position: relative;
  margin-right: 29px;
  cursor: pointer;
}
main#Contact input[type=checkbox] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #dddddd;
  background: #dddddd;
  box-sizing: border-box;
}
main#Contact input[type=checkbox] + label::after {
  content: "";
  opacity: 0;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  display: block;
  height: 9px;
  left: 7px;
  margin-top: -8px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
main#Contact input[type=checkbox]:checked + label {
  background: none;
}
main#Contact input[type=checkbox]:checked + label::after {
  opacity: 1;
}
main#Contact input[type=radio] + label {
  padding-left: 27px;
  position: relative;
  margin-right: 27px;
  cursor: pointer;
}
main#Contact input[type=radio] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #dddddd;
  background: #dddddd;
  box-sizing: border-box;
  border-radius: 50%;
}
main#Contact input[type=radio] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 9px;
  height: 9px;
  background: #000;
  border-radius: 50%;
  opacity: 0;
}
main#Contact input[type=radio]:checked + label {
  background: none;
}
main#Contact input[type=radio]:checked + label::after {
  opacity: 1;
}
main#Contact .select-box {
  overflow: hidden;
  width: 60%;
  text-align: center;
  position: relative;
  border-radius: 2px;
  background: #dddddd;
}
main#Contact .select-box select {
  font-size: 16px;
  color: #000;
  letter-spacing: 0.035em;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 12px 38px 12px 21px;
}
main#Contact .select-box select::-ms-expand {
  display: none;
}
main#Contact .select-box::before {
  position: absolute;
  top: 1.25em;
  right: 21px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  pointer-events: none;
}
main#Contact textarea {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  border: 1px solid #dddddd;
  background: #dddddd;
  box-sizing: border-box;
  width: 100%;
  padding: 12px 21px;
  min-height: 174px;
}
main#Contact .overscroll {
  overflow-y: scroll;
  height: 237px;
  padding: 25px 21px;
  background: #dddddd;
}
main#Contact .overscroll ul > li {
  margin-bottom: 25px;
}
main#Contact .overscroll ul > li strong {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 5px;
  color: #000;
}
main#Contact .overscroll ul > li p {
  font-size: 14px;
  line-height: 1.42;
}
main#Contact .overscroll ul > li > ol {
  margin-top: 5px;
}
main#Contact .overscroll ul > li > ol li {
  text-indent: -1.25em;
  padding-left: 1.25em;
}
main#Contact .overscroll ul > li:first-child strong {
  margin-bottom: 20px;
}
main#Contact .overscroll ul > li:last-child {
  margin-bottom: 0;
}
main#Contact .submit_area {
  margin-top: 85px;
  text-align: center;
}
main#Contact .submit_area span {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #000;
  width: 262px;
  background: #dddddd;
  box-sizing: border-box;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #dddddd;
  transition: all 0.3s ease;
}
main#Contact .submit_area span input[type=submit] {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #000;
  cursor: pointer;
  width: 100%;
  height: 58px;
  box-sizing: border-box;
}
main#Contact .submit_area span:hover {
  background: none;
}
main#Contact .submit_area span:hover input[type=submit] {
  color: #000;
}
main#Contact .submit_area ul.koumoku {
  max-width: 590px;
  margin: 20px auto 0;
}
main#Contact .submit_area ul.koumoku li {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #000;
  width: 262px;
  background: #5f4b08;
  box-sizing: border-box;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #5f4b08;
  transition: all 0.3s ease;
}
main#Contact .submit_area ul.koumoku li input[type=submit] {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #000;
  cursor: pointer;
  width: 100%;
  height: 58px;
  box-sizing: border-box;
}
main#Contact .submit_area ul.koumoku li:hover {
  background: none;
}
main#Contact .submit_area ul.koumoku li:hover input[type=submit] {
  color: #000;
}
main#Contact .submit_area ul.koumoku li:hover svg path {
  fill: #000;
}
main#Contact .btn_back {
  margin-top: 25px;
  text-align: center;
}
main#Contact .btn_back input {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #fff;
  width: 262px;
  background: #dddddd;
  box-sizing: border-box;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #dddddd;
  transition: all 0.3s ease;
  height: 58px;
  padding: 15px 15px 14px;
}
main#Contact .contact_back {
  margin-top: 25px;
  text-align: center;
}
main#Contact .contact_back a {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #fff;
  width: 262px;
  background: #dddddd;
  box-sizing: border-box;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #dddddd;
  transition: all 0.3s ease;
  height: 58px;
  padding: 15px 15px 14px;
}
main#Contact .contact_back a:hover {
  color: #000;
  background: none;
}

/*==========================================
  Layout
==========================================*/
/*==================================
  Top
==================================*/
#Top {
  /*==================================
  	.main-visual-area
  ==================================*/
  /*==================================
  	.section-news
  ==================================*/
  /*==================================
  	.section-amuse-toyota
  ==================================*/
  /*==================================
  	.section-classes
  ==================================*/
  /*==================================
  	.section-insta
  ==================================*/
  /*=================================
  	.google-map-area
  ==================================*/
}
#Top .main-visual-area {
  overflow: hidden;
  position: relative;
  /*.line-img
  -------------------------*/
  /*.title-area
  -------------------------*/
  /*.loop-anime-area
  -------------------------*/
}
#Top .main-visual-area .line-img {
  position: absolute;
  top: 20px;
  right: -50px;
  width: 140%;
  z-index: -1;
}
#Top .main-visual-area .title-area {
  height: 255px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#Top .main-visual-area .title-area .title-pos {
  padding-left: 15px;
}
#Top .main-visual-area .title-area .title-pos .title {
  font-size: 18px;
  color: #333;
  padding-bottom: 6px;
  line-height: 1;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
}
#Top .main-visual-area .title-area .title-pos .text {
  font-size: 22px;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.05em;
}
#Top .main-visual-area .title-area .title-pos .text .text-color {
  position: relative;
  line-height: 1;
  margin-right: -8px;
  display: inline-block;
}
#Top .main-visual-area .title-area .title-pos .text .text-color:nth-child(1) {
  color: #ffae00;
}
#Top .main-visual-area .title-area .title-pos .text .text-color:nth-child(1) .line {
  width: 103px;
}
#Top .main-visual-area .title-area .title-pos .text .text-color:nth-child(2) {
  color: #6760a2;
}
#Top .main-visual-area .title-area .title-pos .text .text-color:nth-child(2) .line {
  width: 66px;
}
#Top .main-visual-area .title-area .title-pos .text .text-color:nth-child(3) {
  color: #f6200a;
}
#Top .main-visual-area .title-area .title-pos .text .text-color:nth-child(3) .line {
  width: 51px;
}
#Top .main-visual-area .title-area .title-pos .text .text-color:nth-child(4) {
  color: #10a184;
}
#Top .main-visual-area .title-area .title-pos .text .text-color:nth-child(4) .line {
  width: 57px;
}
#Top .main-visual-area .title-area .title-pos .text .text-color .line {
  position: absolute;
  display: inline-block;
  left: calc(50% - 8px);
  bottom: -12px;
  transform: translate(-50%, 0);
}
#Top .main-visual-area .title-area .title-pos .text.js-open-anime .text-color:nth-child(1) {
  transform: translateX(-30px);
  transition: all 0.7s ease-in-out;
  transition-delay: 0s;
  opacity: 0;
}
#Top .main-visual-area .title-area .title-pos .text.js-open-anime .text-color:nth-child(2) {
  transform: translateX(-30px);
  transition: all 0.7s ease-in-out;
  transition-delay: 0.3s;
  opacity: 0;
}
#Top .main-visual-area .title-area .title-pos .text.js-open-anime .text-color:nth-child(3) {
  transform: translateX(-30px);
  transition: all 0.7s ease-in-out;
  transition-delay: 0.6s;
  opacity: 0;
}
#Top .main-visual-area .title-area .title-pos .text.js-open-anime .text-color:nth-child(4) {
  transform: translateX(-30px);
  transition: all 0.7s ease-in-out;
  transition-delay: 0.9s;
  opacity: 0;
}
#Top .main-visual-area .title-area .title-pos .text.js-open-anime.move .text-color:nth-child(1) {
  transform: translateX(0);
  opacity: 1;
}
#Top .main-visual-area .title-area .title-pos .text.js-open-anime.move .text-color:nth-child(2) {
  transform: translateX(0);
  opacity: 1;
}
#Top .main-visual-area .title-area .title-pos .text.js-open-anime.move .text-color:nth-child(3) {
  transform: translateX(0);
  opacity: 1;
}
#Top .main-visual-area .title-area .title-pos .text.js-open-anime.move .text-color:nth-child(4) {
  transform: translateX(0);
  opacity: 1;
}
#Top .main-visual-area .loop-anime-area {
  display: flex;
  gap: 20px;
}
#Top .main-visual-area .loop-anime-area .loop-anime {
  display: flex;
  gap: 20px;
  width: 1684px;
  animation: loopAnimation 70s linear infinite;
}
#Top .main-visual-area .loop-anime-area .loop-anime .item-type-a {
  width: 304px;
}
#Top .main-visual-area .loop-anime-area .loop-anime .item-type-a .poto-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#Top .main-visual-area .loop-anime-area .loop-anime .item-type-a .poto-area .twin-photo {
  display: flex;
  gap: 20px;
}
#Top .main-visual-area .loop-anime-area .loop-anime .item-type-a .poto-area .twin-photo .photo {
  width: 142px;
  height: 142px;
  overflow: hidden;
  border-radius: 10px;
}
#Top .main-visual-area .loop-anime-area .loop-anime .item-type-a .poto-area .single-photo .photo {
  width: 304px;
  height: 232px;
  overflow: hidden;
  border-radius: 20px;
}
#Top .main-visual-area .loop-anime-area .loop-anime .item-type-a.reverse .poto-area {
  flex-direction: column-reverse;
}
#Top .main-visual-area .loop-anime-area .loop-anime .item-type-b {
  width: 244px;
}
#Top .main-visual-area .loop-anime-area .loop-anime .item-type-b .poto-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#Top .main-visual-area .loop-anime-area .loop-anime .item-type-b .poto-area .single-photo-type-a .photo {
  width: 244px;
  height: 242px;
  overflow: hidden;
  border-radius: 10px;
}
#Top .main-visual-area .loop-anime-area .loop-anime .item-type-b .poto-area .single-photo-type-b .photo {
  width: 244px;
  height: 132px;
  overflow: hidden;
  border-radius: 10px;
}
#Top .main-visual-area .loop-anime-area .loop-anime .item-type-b.reverse .poto-area {
  flex-direction: column-reverse;
}
@keyframes loopAnimation {
  0% {
    transform: translate(0%);
  }
  100% {
    transform: translate(-100%);
  }
}
#Top .linebanner {
  padding: 65px 15px 0 15px;
}
#Top .section-news {
  padding: 65px 0;
  /*.inner
  -------------------------*/
  /*.main-title-area
  -------------------------*/
  /*.content-container
  -------------------------*/
}
#Top .section-news .inner {
  padding: 0 15px;
}
#Top .section-news .main-title-area {
  padding-bottom: 16px;
}
#Top .section-news .content-container .layout-type-a {
  display: none;
}
#Top .section-news .content-container .layout-type-b .news-lists {
  padding-bottom: 32px;
}
#Top .section-news .content-container .layout-type-b .news-lists .item a {
  padding: 20px 0;
  border-bottom: solid 1px #c9c5e8;
  display: block;
  position: relative;
}
#Top .section-news .content-container .layout-type-b .news-lists .item a .data-lists {
  padding-bottom: 10px;
  display: flex;
}
#Top .section-news .content-container .layout-type-b .news-lists .item a .data-lists .time {
  color: #999999;
  display: inline-block;
  font-size: 12px;
  margin-right: 12px;
}
#Top .section-news .content-container .layout-type-b .news-lists .item a .text {
  font-size: 17px;
  padding-right: 56px;
  word-break: break-all;
  overflow-wrap: break-word;
}
#Top .section-news .content-container .layout-type-b .news-lists .item a .icon-arrow-area {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#Top .section-news .content-container .layout-type-b .news-lists .item a .icon-arrow-area .icon-arrow {
  width: 20px;
  height: 20px;
  background-color: #504894;
}
#Top .section-news .content-container .layout-type-b .news-lists .item a .icon-arrow-area .icon-arrow .arrow {
  left: 1px;
  background-color: #fff;
  width: 6px;
  height: 10px;
}
#Top .section-news .content-container .layout-type-b .arrow-button-area {
  text-align: center;
}
#Top .section-amuse-toyota {
  overflow: hidden;
}
#Top .section-amuse-toyota .section-wrap {
  position: relative;
  background-color: #f2f0ff;
  padding-top: 48px;
  padding-bottom: 140px;
  /*.line-img
  -------------------------*/
  /*.inner
  -------------------------*/
  /*.main-title-area
  -------------------------*/
  /*.content-container
  -------------------------*/
}
#Top .section-amuse-toyota .section-wrap .line-img {
  width: 170%;
  position: absolute;
  bottom: 30px;
  right: -30px;
}
#Top .section-amuse-toyota .section-wrap .inner {
  padding: 0 15px;
}
#Top .section-amuse-toyota .section-wrap .main-title-area {
  text-align: center;
  padding-bottom: 40px;
}
#Top .section-amuse-toyota .section-wrap .content-container {
  position: relative;
}
#Top .section-amuse-toyota .section-wrap .content-container .layout-type-a {
  padding: 0 35px;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 24px;
}
#Top .section-amuse-toyota .section-wrap .content-container .layout-type-a .amuse-img-pos .amuse-img-01 {
  margin-bottom: -90px;
}
#Top .section-amuse-toyota .section-wrap .content-container .layout-type-a .amuse-img-pos .amuse-img-01 .photo {
  display: inline-block;
  width: 100%;
}
#Top .section-amuse-toyota .section-wrap .content-container .layout-type-a .amuse-img-pos .amuse-img-02 {
  text-align: right;
  position: relative;
  margin-right: -20px;
}
#Top .section-amuse-toyota .section-wrap .content-container .layout-type-a .amuse-img-pos .amuse-img-02 .photo {
  display: inline-block;
  width: 40%;
}
#Top .section-amuse-toyota .section-wrap .content-container .layout-type-b {
  box-sizing: border-box;
  position: relative;
}
#Top .section-amuse-toyota .section-wrap .content-container .layout-type-b .text-area {
  padding-bottom: 20px;
}
#Top .section-amuse-toyota .section-wrap .content-container .layout-type-b .text-area .text {
  font-size: 14px;
  line-height: 1.8;
}
#Top .section-amuse-toyota .section-wrap .content-container .layout-type-b .arrow-button-area {
  text-align: center;
}
#Top .section-amuse-toyota .section-wrap .content-container .layout-type-b .amuse-img-03 {
  display: none;
}
#Top .section-classes {
  background-color: #f2f0ff;
  /*.inner
  -------------------------*/
  /*.main-title-area
  -------------------------*/
  /*.swiper-area
  -------------------------*/
  /*.swiper-arrow-button-area
  -------------------------*/
  /*.section-sub
  -------------------------*/
}
#Top .section-classes .inner {
  padding-bottom: 70px;
  margin: 0 auto;
}
#Top .section-classes .main-title-area {
  text-align: center;
  padding-bottom: 42px;
}
#Top .section-classes .main-title-area .title .en-text::after {
  background-color: #10a184;
}
#Top .section-classes .swiper-area {
  position: relative;
  padding: 0 15px 64px 15px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide .photo-area .photo {
  width: 100%;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide .content-area {
  padding: 16px;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide .content-area .label-lists {
  padding-bottom: 16px;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide .content-area .label-lists .label-text {
  font-size: 12px;
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 500;
  display: inline-block;
  margin-left: 2px;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide .content-area .label-lists .label-text .pos {
  position: relative;
  top: -1px;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide .content-area .label-lists .label-1 {
  background-color: #1eb95c;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide .content-area .label-lists .label-2 {
  background-color: #504894;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide .content-area .label-lists .label-3 {
  background-color: #c86192;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide .content-area .label-lists .label-4 {
  background-color: #ffae00;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide .content-area .title {
  font-size: 21px;
  line-height: 1.2;
  padding-bottom: 8px;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide .content-area .open-lists {
  padding-bottom: 8px;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide .content-area .open-lists li {
  font-size: 14px;
  color: #7b7b7b;
}
#Top .section-classes .swiper-area .swiper .swiper-wrapper .swiper-slide .content-area .period-text {
  font-size: 14px;
  color: #7b7b7b;
}
#Top .section-classes .swiper-area .swiper-pagination .swiper-pagination-bullet {
  margin: 0 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #aaa;
  transform: scale(1);
  transform-origin: center center;
  transition: width 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}
#Top .section-classes .swiper-area .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
  top: -2px;
  transform: scale(1.5, 1.5);
  width: 22px;
  height: 8px;
  border-radius: 99px;
  background-color: #504894;
  transform-origin: center center;
  opacity: 1;
  padding: 0;
}
#Top .section-classes .swiper-area .swiper-button-custom-prev {
  display: none;
}
#Top .section-classes .swiper-area .swiper-button-custom-next {
  display: none;
}
#Top .section-classes .swiper-arrow-button-area {
  width: 100%;
  padding-top: 16px;
}
#Top .section-classes .swiper-arrow-button-area .arrow-button-area {
  text-align: center;
}
#Top .section-classes .section-sub {
  background-color: #fff;
  padding: 70px 0;
  /*.innre
  -------------------------*/
  /*.use-lists-area
  -------------------------*/
}
#Top .section-classes .section-sub .innre {
  padding: 0 15px;
}
#Top .section-classes .section-sub .use-lists-area .use-lists {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item {
  display: flex;
  width: 100%;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item a {
  box-sizing: border-box;
  border-radius: 10px;
  display: block;
  padding: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item a .wrap {
  flex: 1;
  border-radius: 10px;
  box-sizing: border-box;
  border: solid 1px #fff;
  padding: 20px 15px 15px 15px;
  position: relative;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item a .wrap .icon-area {
  text-align: center;
  padding-bottom: 11px;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item a .wrap .text-area {
  text-align: center;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item a .wrap .text-area .title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item a .wrap .text-area .text {
  color: #fff;
  font-weight: 700;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item a .wrap .arrow-button-area {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item a .wrap .arrow-button-area .button .icon-arrow-area .icon-arrow {
  width: 30px;
  height: 30px;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item a .wrap .arrow-button-area .button .icon-arrow-area .icon-arrow .arrow {
  width: 6px;
  height: 10px;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item:nth-child(1) a {
  background-color: #d55c5c;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item:nth-child(1) a .wrap .icon-area .icon {
  display: inline-block;
  width: 43px;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item:nth-child(1) a .wrap .arrow-button-area .icon-arrow {
  background-color: #fff;
  border: none;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item:nth-child(1) a .wrap .arrow-button-area .icon-arrow .arrow {
  background-color: #cf4f4f;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item:nth-child(2) a {
  background-color: #817cc0;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item:nth-child(2) a .wrap .icon-area .icon {
  display: inline-block;
  width: 39px;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item:nth-child(2) a .wrap .arrow-button-area .icon-arrow {
  background-color: #fff;
  border: none;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item:nth-child(2) a .wrap .arrow-button-area .icon-arrow .arrow {
  background-color: #817cc0;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item:nth-child(3) a {
  background-color: #5ea782;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item:nth-child(3) a .wrap .icon-area .icon {
  display: inline-block;
  width: 35px;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item:nth-child(3) a .wrap .arrow-button-area .icon-arrow {
  background-color: #fff;
  border: none;
}
#Top .section-classes .section-sub .use-lists-area .use-lists .item:nth-child(3) a .wrap .arrow-button-area .icon-arrow .arrow {
  background-color: #5ea782;
}
#Top .section-insta {
  background: linear-gradient(to right, rgb(154, 115, 207) 0%, rgb(221, 147, 180) 100%);
  padding: 48px 0;
  /*.inner
  -------------------------*/
  /*.content-container
  -------------------------*/
}
#Top .section-insta .inner {
  margin: 0 auto;
  padding: 0 15px;
}
#Top .section-insta .content-container .layout-type-a .title-area {
  padding-bottom: 8px;
}
#Top .section-insta .content-container .layout-type-a .title-area .title .en-text {
  text-align: center;
  display: block;
  padding-bottom: 24px;
  color: #fff;
  font-size: 14px;
}
#Top .section-insta .content-container .layout-type-a .title-area .title .en-text .icon-insta {
  display: block;
  width: 18px;
  margin: 0 auto 8px auto;
}
#Top .section-insta .content-container .layout-type-a .title-area .title .jp-text {
  text-align: center;
  color: #fff;
  font-size: 25px;
  letter-spacing: -0.05em;
  line-height: 1.5;
  display: block;
}
#Top .section-insta .content-container .layout-type-a .text-area {
  padding-bottom: 30px;
}
#Top .section-insta .content-container .layout-type-a .text-area .text {
  text-align: center;
  line-height: 1.5;
  color: #fff;
}
#Top .section-insta .content-container .layout-type-a .arrow-button-area .button {
  color: #fff;
}
#Top .section-insta .content-container .layout-type-a .arrow-button-area .button .icon-arrow {
  border: solid 2px #fff;
  background-color: transparent;
}
#Top .section-insta .content-container .layout-type-a .arrow-button-area .button .icon-arrow .arrow {
  background-color: #fff;
}
#Top .section-insta .content-container .layout-type-b .insta-lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding-bottom: 30px;
}
#Top .section-insta .content-container .layout-type-b .insta-lists .item {
  border-radius: 10px;
  overflow: hidden;
}
#Top .section-insta .content-container .layout-type-b .insta-lists .item:nth-last-child(-n+2) {
  display: none;
}
#Top .section-insta .content-container .layout-type-b .insta-lists .item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
#Top .section-insta .content-container .layout-type-b .arrow-button-area {
  text-align: center;
}
#Top .section-insta .content-container .layout-type-b .arrow-button-area .button .text {
  color: #fff;
}
#Top .section-insta .content-container .layout-type-b .arrow-button-area .button .icon-arrow-area .icon-arrow {
  border-color: #fff;
}
#Top .section-insta .content-container .layout-type-b .arrow-button-area .button .icon-arrow-area .icon-arrow .arrow {
  background-color: #fff;
}
#Top .google-map-area {
  padding-top: 0 !important;
}

#Application {
  /*=================================
  	.section-application
  ==================================*/
}
#Application .section-application {
  /*.line
  -------------------------*/
  /*.download-lists-area
  -------------------------*/
}
#Application .section-application .inner {
  padding: 0 15px;
}
#Application .section-application .download-lists-area .content-text {
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  padding-bottom: 20px;
}
#Application .section-application .download-lists-area .download-lists .item {
  padding: 18px 0;
  border-bottom: solid 1px #c9c5e8;
}
#Application .section-application .download-lists-area .download-lists .item .text {
  position: relative;
}
#Application .section-application .download-lists-area .download-lists .item .text .icon-pdf {
  position: absolute;
  display: inline-block;
  top: -1px;
  left: 0;
  width: 15px;
  height: 15px;
}
#Application .section-application .download-lists-area .download-lists .item .text a {
  padding-left: 24px;
  font-size: 15px;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 5px;
}

#About {
  /*=================================
  	.anchor-button-lists-area
  ==================================*/
  /*=================================
  	.content-lists-type-a
  ==================================*/
  /*=================================
  	.content-lists-type-b
  ==================================*/
  /*=================================
  	section(ベース)
  ==================================*/
  /*=================================
  	.section-amuse
  ==================================*/
  /*=================================
  	.section-ground
  ==================================*/
  /*=================================
  	.section-court
  ==================================*/
  /*=================================
  	.section-school
  ==================================*/
  /*=================================
  	.section-yuya
  ==================================*/
}
#About .anchor-button-lists-area {
  padding: 0 15px 50px;
}
#About .anchor-button-lists-area .anchor-button-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 30px;
}
#About .anchor-button-lists-area .anchor-button-lists .button {
  width: calc((100% - 30px) / 2);
  text-align: left;
  display: block;
}
#About .anchor-button-lists-area .anchor-button-lists .button a {
  font-size: 15px;
  font-weight: 600;
  padding: 8px 0 16px;
  display: block;
  position: relative;
  font-weight: 700;
}
#About .anchor-button-lists-area .anchor-button-lists .button a::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 16px;
  top: 9px;
  right: 6px;
  transform: translate(-50%, 0);
  mask-image: url(../images/common/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transform: rotate(90deg);
}
#About .anchor-button-lists-area .anchor-button-lists .button:nth-child(1) a {
  color: #504894;
  border-bottom: solid 1px #504894;
}
#About .anchor-button-lists-area .anchor-button-lists .button:nth-child(1) a::after {
  background-color: #504894;
}
#About .anchor-button-lists-area .anchor-button-lists .button:nth-child(2) a {
  color: #0f9278;
  border-bottom: solid 1px #0f9278;
}
#About .anchor-button-lists-area .anchor-button-lists .button:nth-child(2) a::after {
  background-color: #0f9278;
}
#About .anchor-button-lists-area .anchor-button-lists .button:nth-child(3) a {
  color: #f19c08;
  border-bottom: solid 1px #f19c08;
}
#About .anchor-button-lists-area .anchor-button-lists .button:nth-child(3) a::after {
  background-color: #f19c08;
}
#About .anchor-button-lists-area .anchor-button-lists .button:nth-child(4) a {
  color: #2877d7;
  border-bottom: solid 1px #2877d7;
}
#About .anchor-button-lists-area .anchor-button-lists .button:nth-child(4) a::after {
  background-color: #2877d7;
}
#About .anchor-button-lists-area .anchor-button-lists .button:nth-child(5) a {
  color: #575757;
  border-bottom: solid 1px #575757;
}
#About .anchor-button-lists-area .anchor-button-lists .button:nth-child(5) a::after {
  background-color: #575757;
}
#About .content-lists-type-a .item {
  padding-bottom: 30px;
}
#About .content-lists-type-a .item:nth-last-child(1) {
  padding-bottom: 0;
}
#About .content-lists-type-a .item .content-container .layout-type-a {
  padding-bottom: 16px;
}
#About .content-lists-type-a .item .content-container .layout-type-a .photo {
  border-radius: 10px;
  overflow: hidden;
}
#About .content-lists-type-a .item .content-container .layout-type-b .sub-section {
  padding-bottom: 16px;
}
#About .content-lists-type-a .item .content-container .layout-type-b .sub-section:nth-last-child(1) {
  padding-bottom: 0;
}
#About .content-lists-type-a .item .content-container .layout-type-b .sub-section .title {
  font-size: 15px;
  color: #504894;
  padding-left: 12px;
  padding-bottom: 10px;
  position: relative;
  line-height: 1;
}
#About .content-lists-type-a .item .content-container .layout-type-b .sub-section .title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  background-color: #504894;
}
#About .content-lists-type-a .item .content-container .layout-type-b .sub-section .text {
  line-height: 1.6;
}
#About .content-lists-type-a .item .content-container .layout-type-b .sub-section .note-text {
  padding-top: 8px;
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
}
#About .content-lists-type-a .item .content-container .layout-type-b .lists li {
  padding-left: 8px;
  padding-right: 16px;
  position: relative;
}
#About .content-lists-type-a .item .content-container .layout-type-b .lists li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 999px;
}
#About .content-lists-type-a .item .content-container .layout-type-b .table {
  width: 100%;
}
#About .content-lists-type-a .item .content-container .layout-type-b .table tr:nth-child(1) th {
  border-top: 0;
  padding-top: 0;
}
#About .content-lists-type-a .item .content-container .layout-type-b .table tr:nth-child(1) td {
  padding-top: 0;
  border-top: 0;
}
#About .content-lists-type-a .item .content-container .layout-type-b .table tr th {
  font-size: 15px;
  width: 100px;
  text-align: left;
  padding: 16px 0;
  border-top: solid 1px #c2bdea;
  border-bottom: solid 1px #c2bdea;
}
#About .content-lists-type-a .item .content-container .layout-type-b .table tr td {
  font-size: 15px;
  text-align: left;
  padding: 16px 0;
  border-top: solid 1px #c2bdea;
  border-bottom: solid 1px #c2bdea;
}
#About .content-lists-type-a .item .content-container .layout-type-b .table tr:nth-last-child(1) th {
  border-bottom: none;
}
#About .content-lists-type-a .item .content-container .layout-type-b .table tr:nth-last-child(1) td {
  border-bottom: none;
}
#About .content-lists-type-a .item .content-container .layout-type-b .icon-pin-text-area {
  display: flex;
  align-items: center;
  padding-top: 16px;
}
#About .content-lists-type-a .item .content-container .layout-type-b .icon-pin-text-area .icon-pin {
  display: inline-block;
  width: 14px;
  margin-right: 6px;
  font-size: 1px;
  position: relative;
  top: 2px;
}
#About .content-lists-type-a .item .content-container .layout-type-b .icon-pin-text-area .text {
  font-size: 13px;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 4px;
}
#About .content-lists-type-b {
  padding-top: 40px;
}
#About .content-lists-type-b .item {
  padding-bottom: 40px;
}
#About .content-lists-type-b .item:nth-last-child(1) {
  padding-bottom: 0;
}
#About .content-lists-type-b .item .content-container .photo-area {
  padding-bottom: 16px;
}
#About .content-lists-type-b .item .content-container .photo-area .photo {
  border-radius: 10px;
  overflow: hidden;
}
#About .content-lists-type-b .item .content-container .photo-area .photo img {
  width: 100%;
}
#About .content-lists-type-b .item .content-container .text-area .text {
  line-height: 1.6;
}
#About .content-lists-type-b .item .content-container .text-area .note-text {
  padding-top: 8px;
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
}
#About section {
  padding-bottom: 60px;
  position: relative;
  /*.anchor-mark
  -------------------------*/
  /*.inner
  -------------------------*/
}
#About section .anchor-mark {
  position: absolute;
  left: 0;
  top: -16px;
  width: 1px;
  height: 1px;
}
#About section .inner {
  margin: 0 auto;
  padding: 0 15px;
}
#About section .main-title-area {
  padding-bottom: 46px;
}
#About section .main-title-area .title {
  text-align: center;
}
#About section .main-title-area .title .jp-text {
  font-size: 30px;
  font-weight: 500;
}
#About .section-amuse {
  padding-bottom: 80px;
  /*.map-area
  -------------------------*/
  /*.sub-title-area
  -------------------------*/
}
#About .section-amuse .map-area {
  padding-bottom: 40px;
}
#About .section-amuse .map-area .map-wrap {
  padding: 80px 15px 40px 15px;
  background-color: #f2f0ff;
}
#About .section-amuse .map-area .map-wrap .map .photo {
  max-width: 1020px;
  margin: 0 auto;
}
#About .section-amuse .sub-title-area .sub-title::after {
  background-color: #504894;
}
#About .section-ground {
  position: relative;
  padding-bottom: 72px;
  /*.main-title-area
  -------------------------*/
  /*.sub-title-area
  -------------------------*/
}
#About .section-ground .ground-line {
  width: 100%;
  position: absolute;
  z-index: -1;
  top: -80px;
  left: 0;
  opacity: 1;
  height: 600px;
  opacity: 0.08;
  overflow: hidden;
}
#About .section-ground .ground-line img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: auto;
  transform-origin: left top;
  transform: scale(1.3);
}
#About .section-ground .main-title-area .title .en-text::after {
  background-color: #10a184;
}
#About .section-ground .sub-title-area .sub-title::after {
  background-color: #10a184;
}
#About .section-court {
  /*.main-title-area
  -------------------------*/
  /*.sub-title-area
  -------------------------*/
}
#About .section-court .main-title-area .title .en-text::after {
  background-color: #ffae00;
}
#About .section-court .sub-title-area .sub-title::after {
  background-color: #ffae00;
}
#About .section-school {
  /*.main-title-area
  -------------------------*/
  /*.sub-title-area
  -------------------------*/
}
#About .section-school .main-title-area .title .en-text::after {
  background-color: #2877d7;
}
#About .section-school .sub-title-area .sub-title::after {
  background-color: #2877d7;
}
#About .section-yuya {
  padding-bottom: 0 !important;
  /*.main-title-area
  -------------------------*/
  /*.sub-title-area
  -------------------------*/
}
#About .section-yuya .main-title-area .title::after {
  background-color: #747474;
}
#About .section-yuya .sub-title-area .sub-title::after {
  background-color: #747474;
}

/*==================================
  #Classes
==================================*/
#Classes {
  /*=================================
  	.sub-visual-area
  ==================================*/
  /*=================================
  	.section-classes
  ==================================*/
  /*.google-map-area
  -------------------------*/
}
#Classes .sub-visual-area {
  padding-bottom: 0;
}
#Classes .section-classes {
  background-color: #f2f0ff;
  padding: 56px 0;
  /*.inner
  -------------------------*/
  /*.category-select-area
  -------------------------*/
  /*.main-title-area
  -------------------------*/
  /*.classes-lists-area
  -------------------------*/
}
#Classes .section-classes .inner {
  padding: 0 15px;
}
#Classes .section-classes .main-title-area {
  padding-bottom: 55px;
}
#Classes .section-classes .main-title-area .title {
  text-align: center;
}
#Classes .section-classes .classes-lists-area .classes-lists {
  display: grid;
  gap: 35px;
}
#Classes .google-map-area {
  padding-top: 0;
}

/*==================================
	#ClassesBlog
==================================*/
#ClassesBlog {
  /*==================================
  .section-blog
  ==================================*/
}
#ClassesBlog .section-blog {
  /*.inner
  -------------------------*/
  /*.blog-content
  -------------------------*/
}
#ClassesBlog .section-blog .inner {
  padding: 0 15px;
}
#ClassesBlog .section-blog #blog-content {
  /*.title-area
  -------------------------*/
  /*.casses-labels-lists-area
  -------------------------*/
  /*.event-schedule-area
  -------------------------*/
  /*p
  -------------------------*/
  /*a
  -------------------------*/
  /*img
  -------------------------*/
}
#ClassesBlog .section-blog #blog-content .title-area {
  padding-bottom: 8px;
}
#ClassesBlog .section-blog #blog-content .title-area h1 {
  font-size: 21px;
  line-height: 1.5;
  word-break: break-all;
}
#ClassesBlog .section-blog #blog-content .casses-labels-lists-area {
  padding-bottom: 20px;
}
#ClassesBlog .section-blog #blog-content .casses-labels-lists-area .casses-labels-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
#ClassesBlog .section-blog #blog-content .casses-labels-lists-area .casses-labels-lists li {
  font-size: 12px;
  padding: 2px 12px;
  border-radius: 999px;
  color: #fff;
}
#ClassesBlog .section-blog #blog-content .casses-labels-lists-area .casses-labels-lists li .pos {
  position: relative;
  top: -1px;
}
#ClassesBlog .section-blog #blog-content .event-schedule-area {
  display: flex;
  padding-bottom: 25px;
}
#ClassesBlog .section-blog #blog-content .event-schedule-area .event-title-area .event-title {
  word-break: keep-all;
  color: #504894;
}
#ClassesBlog .section-blog #blog-content .event-schedule-area .event-lists-area p {
  font-size: 14px;
  color: #7b7b7b;
  word-break: break-all;
}
#ClassesBlog .section-blog #blog-content .event-content {
  word-break: break-all;
}
#ClassesBlog .section-blog #blog-content .event-content p {
  word-break: break-all;
}
#ClassesBlog .section-blog #blog-content p {
  line-height: 1.8;
}
#ClassesBlog .section-blog #blog-content a {
  color: #204c87;
  text-decoration: underline;
  text-underline-offset: 5px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  font-size: 14px;
}
#ClassesBlog .section-blog #blog-content a::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  right: -16px;
  mask-image: url(../images/common/icon-ex-link.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #204c87;
}
#ClassesBlog .section-blog #blog-content img {
  display: block;
}

/*==================================
  News
==================================*/
#News {
  /*==================================
  	.section-news
  ==================================*/
  /*=================================
  	.page_navigation
  =================================*/
}
#News .section-news {
  /*.inner
  -------------------------*/
  /*.news-lists-area
  -------------------------*/
}
#News .section-news .inner {
  margin: 0 auto;
  padding: 0 15px;
}
#News .section-news .news-lists-area {
  padding-bottom: 50px;
}
#News .section-news .news-lists-area .news-lists .item {
  border-bottom: solid 1px #c9c5e8;
}
#News .section-news .news-lists-area .news-lists .item:nth-child(1) a {
  padding-top: 2px;
}
#News .section-news .news-lists-area .news-lists .item a {
  display: block;
  position: relative;
  padding: 32px 64px 32px 0;
}
#News .section-news .news-lists-area .news-lists .item a .label-area {
  display: flex;
}
#News .section-news .news-lists-area .news-lists .item a .label-area .time-area {
  padding-bottom: 16px;
  margin-right: 8px;
}
#News .section-news .news-lists-area .news-lists .item a .label-area .time-area .time {
  position: relative;
  top: 2px;
  font-size: 12px;
  display: block;
  color: #999999;
}
#News .section-news .news-lists-area .news-lists .item a .text-area .text {
  font-size: 17px;
  word-break: break-all;
  overflow-wrap: break-word;
  line-height: 1.5;
}
#News .section-news .news-lists-area .news-lists .item a .icon-arrow-area {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#News .section-news .news-lists-area .news-lists .item a .icon-arrow-area .icon-arrow {
  width: 20px;
  height: 20px;
  background-color: #504894;
}
#News .section-news .news-lists-area .news-lists .item a .icon-arrow-area .icon-arrow .arrow {
  left: 1px;
  background-color: #fff;
  width: 6px;
  height: 10px;
}
#News .page_navigation {
  /*.nav-links
  ------------------------*/
}
#News .page_navigation .wp-pagenavi {
  display: block;
  margin: 0 auto;
  width: 90%;
}
#News .page_navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /*.prev
  ------------------------*/
  /*.next
  ------------------------*/
}
#News .page_navigation .nav-links .prev, #News .page_navigation .nav-links .next {
  position: absolute;
  padding: 0 !important;
  top: -1px;
}
#News .page_navigation .nav-links .prev .page-icon-arrow, #News .page_navigation .nav-links .next .page-icon-arrow {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
}
#News .page_navigation .nav-links .prev .page-icon-arrow::after, #News .page_navigation .nav-links .next .page-icon-arrow::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 9px;
  height: 15px;
  mask-image: url(../images/common/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #514995;
}
#News .page_navigation .nav-links .prev {
  position: absolute;
  left: 0;
}
#News .page_navigation .nav-links .prev .page-icon-arrow {
  position: relative;
}
#News .page_navigation .nav-links .prev .page-icon-arrow::after {
  left: 9px;
  transform: scale(-1, 1);
}
#News .page_navigation .nav-links .next {
  position: absolute;
  right: 0;
}
#News .page_navigation .nav-links .next .page-icon-arrow {
  position: relative;
}
#News .page_navigation .nav-links .next .page-icon-arrow:after {
  right: 9px;
}
#News .page_navigation .nav-links .page-numbers {
  font-size: 16px;
  padding: 0 8px;
  font-weight: 600;
  color: #4f4f4f;
}
#News .page_navigation .nav-links .page-numbers.dots {
  position: relative;
  top: 0;
  color: #4f4f4f;
  padding: 0;
}
#News .page_navigation .nav-links .page-numbers.current {
  color: #fff;
  position: relative;
  top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  border-radius: 999px !important;
  width: 42px !important;
  height: 23px !important;
  padding: 0 0 2px 0;
  background-color: #504894 !important;
  line-height: 1.8;
  position: relative;
  top: 1px;
  left: 0;
}

/*==================================
	NewsBlog
==================================*/
#NewsBlog {
  /*==================================
  .section-blog
  ==================================*/
}
#NewsBlog .section-blog {
  /*.inner
  -------------------------*/
  /*.blog-content
  -------------------------*/
}
#NewsBlog .section-blog .inner {
  padding: 0 15px;
}
#NewsBlog .section-blog #blog-content {
  /*.news-meta-area
  -------------------------*/
  /*.title-area
  -------------------------*/
  /*p
  -------------------------*/
  /*a
  -------------------------*/
  /*img
  -------------------------*/
}
#NewsBlog .section-blog #blog-content .news-meta-area {
  display: flex;
  padding-bottom: 16px;
}
#NewsBlog .section-blog #blog-content .news-meta-area .time-area {
  margin-right: 16px;
}
#NewsBlog .section-blog #blog-content .news-meta-area .time-area .time {
  color: #999999;
  font-size: 13px;
  font-weight: 500;
}
#NewsBlog .section-blog #blog-content .news-meta-area .label-area {
  position: relative;
  top: -2px;
}
#NewsBlog .section-blog #blog-content .news-meta-area .label-area .label {
  font-size: 13px;
  color: #fff;
  padding: 5px 16px;
  border-radius: 999px;
}
#NewsBlog .section-blog #blog-content .news-meta-area .label-area .label .pos {
  font-size: 12px;
  position: relative;
  top: -1px;
  font-weight: 600;
}
#NewsBlog .section-blog #blog-content .title-area {
  padding-bottom: 24px;
}
#NewsBlog .section-blog #blog-content .title-area h1 {
  font-size: 21px;
  line-height: 1.5;
  word-break: break-all;
}
#NewsBlog .section-blog #blog-content .event-content {
  word-break: break-all;
}
#NewsBlog .section-blog #blog-content .event-content p {
  word-break: break-all;
}
#NewsBlog .section-blog #blog-content p {
  line-height: 1.8;
}
#NewsBlog .section-blog #blog-content a {
  color: #204c87;
  text-decoration: underline;
  text-underline-offset: 5px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  font-size: 14px;
}
#NewsBlog .section-blog #blog-content a::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  right: -16px;
  mask-image: url(../images/common/icon-ex-link.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #204c87;
}
#NewsBlog .section-blog #blog-content img {
  display: block;
}

#Price {
  /*=================================
  	.section-base
  ==================================*/
  /*=================================
  	.scroll-area
  ==================================*/
  /*=================================
  	.section-amuse
  ==================================*/
  /*=================================
  	.section-ground
  ==================================*/
  /*=================================
  	.section-court
  ==================================*/
  /*=================================
  	.section-yuya
  ==================================*/
  /*.amuse-table-type-a-area
  -------------------------*/
}
#Price .section-base {
  padding-bottom: 64px;
  /*.inner
  -------------------------*/
  /*.sub-title-area
  -------------------------*/
  /*.note-text-area
  -------------------------*/
  /*.text-lists
  -------------------------*/
}
#Price .section-base .inner {
  padding: 0 15px;
}
#Price .section-base .main-title-area {
  padding-bottom: 48px;
}
#Price .section-base .main-title-area .title {
  text-align: center;
}
#Price .section-base .sub-section {
  padding-bottom: 40px;
}
#Price .section-base .sub-section:nth-last-child(1) {
  padding-bottom: 0;
}
#Price .section-base .sub-section:nth-last-child(1) .text-lists {
  padding-bottom: 0;
}
#Price .section-base .sub-title-area {
  padding-bottom: 10px;
}
#Price .section-base .sub-title-area .sub-title {
  font-weight: 500;
}
#Price .section-base .txt_pd {
  padding: 0 0 16px 0;
}
@media screen and (min-width: 1400px) {
  #Price .section-base .txt_pd {
    padding: 0 0 1.1428571429vw 0;
  }
}
#Price .section-base .note-text-area .note-text {
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
}
#Price .section-base .text-lists {
  padding-bottom: 24px;
}
#Price .section-base .text-lists li {
  padding-left: 8px;
  position: relative;
}
#Price .section-base .text-lists li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 999px;
}
#Price .scroll-area {
  overflow-x: scroll;
  padding-bottom: 20px;
}
#Price .scroll-area::-webkit-scrollbar {
  height: 5px;
}
#Price .scroll-area::-webkit-scrollbar-track {
  background-color: #bfbfc1;
}
#Price .scroll-area::-webkit-scrollbar-thumb {
  background-color: #504894;
  border-radius: 8px;
}
#Price .section-amuse {
  /*.amuse-table-type-a-b-area
  -------------------------*/
  /*.amuse-table-type-c
  -------------------------*/
}
#Price .section-amuse .amuse-table-type-a-b-area {
  width: 100%;
  overflow: hidden;
  padding-bottom: 10px;
  /*.amuse-table-type-a
  -------------------------*/
  /*.amuse-table-type-b
  -------------------------*/
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area {
  width: 100%;
  padding-bottom: 10px;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a {
  width: 1000px;
  overflow: hidden;
  border-collapse: separate;
  border-radius: 5px;
  border: solid 1px #8f8f8f;
  border-spacing: 0;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-last-child(1) {
  border: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr th {
  font-weight: 500;
  vertical-align: middle;
  text-align: center;
  padding: 8px 0;
  color: #fff;
  border-right: 1px solid #bfbfc1;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr th .pos {
  position: relative;
  top: -2px;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr th .small-text {
  font-size: 12px;
  line-height: 1;
  margin-top: 6px;
  display: block;
  margin-top: 2px;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr td {
  vertical-align: middle;
  text-align: center;
  padding: 8px 0;
  border-right: 1px solid #bfbfc1;
  border-bottom: 1px solid #bfbfc1;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr td .en-text {
  font-size: 11px;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(1) th:nth-child(1) {
  width: 28%;
  background-color: #504894;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(1) th:nth-child(n+2) {
  width: 12%;
  color: #fff;
  background-color: #6e61bf;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(1) th:nth-last-child(1) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(2) td:nth-child(1) {
  width: 16%;
  background-color: #f6f7f9;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(2) td:nth-child(2) {
  width: 12%;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(2) td:nth-child(8) {
  background-color: #f6f7f9;
  border-right: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(3) td {
  background-color: #f6f7f9;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(3) td:nth-child(7) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(4) td:nth-child(7) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(5) td {
  background-color: #f6f7f9;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(6) td:nth-child(7) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(7) td {
  background-color: #f6f7f9;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(7) td:nth-child(7) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(8) td:nth-child(-n+7) {
  border-bottom: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-a-area .amuse-table-type-a tr:nth-child(8) td:nth-child(7) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b {
  width: 1000px;
  border-collapse: separate;
  border-radius: 5px;
  border: solid 1px #8f8f8f;
  border-spacing: 0;
  overflow: hidden;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr {
  border-bottom: 1px solid #bfbfc1;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr:nth-last-child(1) {
  border: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr th {
  vertical-align: middle;
  text-align: center;
  padding: 8px 0;
  color: #fff;
  border-right: 1px solid #bfbfc1;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr th .pos {
  display: block;
  position: relative;
  top: -2px;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr th .small-text {
  font-size: 12px;
  display: block;
  line-height: 1;
  margin-top: 2px;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr td {
  vertical-align: middle;
  text-align: center;
  padding: 8px 0;
  border-right: 1px solid #bfbfc1;
  border-bottom: 1px solid #bfbfc1;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr:nth-child(1) th:nth-child(1) {
  width: 28%;
  background-color: #504894;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr:nth-child(1) th:nth-child(n+2) {
  width: 12%;
  color: #fff;
  background-color: #6e61bf;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr:nth-child(1) th:nth-last-child(1) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr:nth-child(2) td:nth-child(1) {
  width: 16%;
  background-color: #f6f7f9;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr:nth-child(2) td:nth-child(2) {
  width: 12%;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr:nth-child(2) td:nth-child(8) {
  background-color: #f6f7f9;
  border-right: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr:nth-child(3) td {
  background-color: #f6f7f9;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr:nth-child(3) td:nth-child(7) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr:nth-child(4) td:nth-child(7) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr:nth-child(5) td {
  background-color: #f6f7f9;
  border-bottom: none;
}
#Price .section-amuse .amuse-table-type-a-b-area .amuse-table-type-b-area .amuse-table-type-b tr:nth-child(5) td:nth-child(5) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-c-area {
  padding-bottom: 10px;
  overflow: hidden;
  width: 100%;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c {
  width: 800px;
  border-collapse: separate;
  border-radius: 5px;
  border: solid 1px #8f8f8f;
  border-spacing: 0;
  overflow: hidden;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr {
  border-bottom: 1px solid #bfbfc1;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-last-child(1) {
  border: none;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr th {
  vertical-align: middle;
  text-align: center;
  padding: 8px 0;
  color: #fff;
  border-right: 1px solid #bfbfc1;
  background-color: #6e61bf;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr td {
  vertical-align: middle;
  text-align: center;
  padding: 10px 0;
  border-right: 1px solid #bfbfc1;
  border-bottom: 1px solid #bfbfc1;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr td .row {
  width: 68%;
  margin: 0 auto;
  display: flex;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr td .row .cell {
  width: 50%;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(1) th:nth-child(1) {
  background-color: #504894;
  width: 300px;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(1) th:nth-child(4) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(2) td:nth-child(1) {
  background-color: #f6f7f9;
  width: 150px;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(2) td:nth-child(2) {
  width: 150px;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(2) td:nth-child(3) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(3) td {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(4) td {
  background-color: #f6f7f9;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(4) td:nth-child(2) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(5) td {
  background-color: #f6f7f9;
  border-right: none;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(6) td:nth-child(2) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(7) {
  background-color: #f6f7f9;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(7) td:nth-child(2) {
  border-right: none;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(8) td:nth-child(-n+4) {
  border-bottom: none;
}
#Price .section-amuse .amuse-table-type-c-area .amuse-table-type-c tr:nth-child(8) td:nth-child(2) {
  border-right: none;
}
#Price .section-ground {
  /*.ground-table-type-a
  -------------------------*/
  /*.ground-table-type-b
  -------------------------*/
}
#Price .section-ground .ground-table-type-a-area {
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
#Price .section-ground .ground-table-type-a-area .ground-table-type-a {
  width: 800px;
  overflow: hidden;
  border-collapse: separate;
  border-radius: 5px;
  border: solid 1px #8f8f8f;
  border-spacing: 0;
}
#Price .section-ground .ground-table-type-a-area .ground-table-type-a tr th {
  font-weight: 500;
  vertical-align: middle;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  border-right: 1px solid #bfbfc1;
  background-color: #1bb395;
}
#Price .section-ground .ground-table-type-a-area .ground-table-type-a tr td {
  vertical-align: middle;
  text-align: center;
  padding: 10px 0;
  border-right: 1px solid #bfbfc1;
  border-bottom: 1px solid #bfbfc1;
}
#Price .section-ground .ground-table-type-a-area .ground-table-type-a tr:nth-child(1) th:nth-child(1) {
  width: 120px;
  background-color: #10a184;
}
#Price .section-ground .ground-table-type-a-area .ground-table-type-a tr:nth-child(2) td:nth-child(5) {
  border-right: none;
}
#Price .section-ground .ground-table-type-a-area .ground-table-type-a tr:nth-child(3) td {
  background-color: #f6f7f9;
}
#Price .section-ground .ground-table-type-a-area .ground-table-type-a tr:nth-child(3) td:nth-child(-n+6) {
  border-bottom: none;
}
#Price .section-ground .ground-table-type-a-area .ground-table-type-a tr:nth-child(3) td:nth-child(5) {
  border-right: none;
}
#Price .section-ground .ground-table-type-b-area {
  overflow: hidden;
  width: 100%;
}
#Price .section-ground .ground-table-type-b-area .ground-table-type-b {
  width: 580px;
  overflow: hidden;
  border-collapse: separate;
  border-radius: 5px;
  border: solid 1px #8f8f8f;
  border-spacing: 0;
}
@media screen and (min-width: 580px) {
  #Price .section-ground .ground-table-type-b-area .ground-table-type-b {
    width: 100%;
  }
}
#Price .section-ground .ground-table-type-b-area .ground-table-type-b tr th {
  font-weight: 500;
  vertical-align: middle;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  border-right: 1px solid #bfbfc1;
  background-color: #1bb395;
}
#Price .section-ground .ground-table-type-b-area .ground-table-type-b tr th .pos {
  position: relative;
  top: -1px;
}
#Price .section-ground .ground-table-type-b-area .ground-table-type-b tr th .small-text {
  font-size: 12px;
  display: block;
}
#Price .section-ground .ground-table-type-b-area .ground-table-type-b tr td {
  vertical-align: middle;
  text-align: center;
  padding: 10px 0;
  border-right: 1px solid #bfbfc1;
  border-bottom: 1px solid #bfbfc1;
}
#Price .section-ground .ground-table-type-b-area .ground-table-type-b tr:nth-child(1) th:nth-child(1) {
  background-color: #10a184;
  width: 120px;
}
#Price .section-ground .ground-table-type-b-area .ground-table-type-b tr:nth-child(2) td:nth-child(2) {
  border-right: none;
  border-bottom: none;
}
#Price .section-ground .ground-table-type-b-area .ground-table-type-b tr:nth-child(3) td {
  background-color: #f6f7f9;
}
#Price .section-ground .ground-table-type-b-area .ground-table-type-b tr:nth-child(3) td:nth-child(-n+6) {
  border-bottom: none;
}
#Price .section-court {
  /*.court-table-type-a-a-area
  -------------------------*/
  /*.court-table-type-a-area
  -------------------------*/
}
#Price .section-court .court-table-type-a-a-area .title {
  font-size: 14px;
  line-height: 1;
  padding-bottom: 6px;
  overflow: hidden;
}
#Price .section-court .court-table-type-a-area {
  padding-bottom: 16px;
  width: 100%;
  overflow: hidden;
}
#Price .section-court .court-table-type-a-area.add-pd {
  padding-bottom: 0;
}
#Price .section-court .court-table-type-a-area .court-table-type-a {
  width: 800px;
  overflow: hidden;
  border-collapse: separate;
  border-radius: 5px;
  border: solid 1px #8f8f8f;
  border-spacing: 0;
}
#Price .section-court .court-table-type-a-area .court-table-type-a tr th {
  font-weight: 500;
  vertical-align: middle;
  text-align: center;
  padding: 10px 0;
  color: #000;
  border-right: 1px solid #bfbfc1;
  background-color: #ffc207;
}
#Price .section-court .court-table-type-a-area .court-table-type-a tr th span {
  font-size: 14px;
}
#Price .section-court .court-table-type-a-area .court-table-type-a tr td {
  vertical-align: middle;
  text-align: center;
  padding: 10px 0;
  border-right: 1px solid #bfbfc1;
  border-bottom: 1px solid #bfbfc1;
}
#Price .section-court .court-table-type-a-area .court-table-type-a tr:nth-child(1) th:nth-child(1) {
  width: 120px;
  background-color: #ffae00;
}
#Price .section-court .court-table-type-a-area .court-table-type-a tr:nth-child(2) td:nth-child(4) {
  border-right: none;
}
#Price .section-court .court-table-type-a-area .court-table-type-a tr:nth-child(3) td:nth-child(4) {
  border-right: none;
}
#Price .section-court .court-table-type-a-area .court-table-type-a tr:nth-child(3) td {
  background-color: #f6f7f9;
}
#Price .section-court .court-table-type-a-area .court-table-type-a tr:nth-child(3) td:nth-child(-n+6) {
  border-bottom: none;
}
#Price .section-yuya {
  padding-bottom: 0 !important;
  /*.yuya-table-type-a-area
  -------------------------*/
}
#Price .section-yuya .yuya-table-type-a-area {
  padding-bottom: 16px;
  width: 100%;
  overflow: hidden;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a {
  width: 800px;
  overflow: hidden;
  border-collapse: separate;
  border-radius: 5px;
  border: solid 1px #8f8f8f;
  border-spacing: 0;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a.small {
  min-width: 450px;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr th {
  font-weight: 500;
  vertical-align: middle;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  border-right: 1px solid #bfbfc1;
  background-color: #868686;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr th span {
  font-size: 14px;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr td {
  vertical-align: middle;
  text-align: center;
  padding: 10px 0;
  border-right: 1px solid #bfbfc1;
  border-bottom: 1px solid #bfbfc1;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr td.bdno-r {
  border-right: none;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr td.bdno-b {
  border-bottom: none;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr td.bgno {
  background-color: transparent !important;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(1) th:nth-child(1) {
  background-color: #747474;
  width: 150px;
}
@media screen and (min-width: 1400px) {
  #Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(1) th:nth-child(1) {
    width: 20vw 0;
  }
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(1) th.st {
  width: 100px;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(2) td:nth-child(1) {
  background-color: #f6f7f9;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(2) td:nth-child(5) {
  border-right: none;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(3) td {
  background-color: #f6f7f9;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(3) td:nth-child(4) {
  border-right: none;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(4) td:nth-child(5) {
  border-right: none;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(5) td {
  background-color: #f6f7f9;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(5) td:nth-child(4) {
  border-right: none;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(6) td:nth-child(1) {
  background-color: #f6f7f9;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(6) td:nth-child(5) {
  border-right: none;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(7) td {
  background-color: #f6f7f9;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(7) td:nth-child(4) {
  border-right: none;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(8) td:nth-child(5) {
  border-right: none;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(9) td {
  background-color: #f6f7f9;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(9) td:nth-child(4) {
  border-right: none;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(10) td:nth-child(1) {
  background-color: #f6f7f9;
  border-bottom: none;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(10) td:nth-child(5) {
  border-right: none;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(11) td {
  background-color: #f6f7f9;
  border-bottom: none;
}
#Price .section-yuya .yuya-table-type-a-area .yuya-table-type-a tr:nth-child(11) td:nth-child(4) {
  border-right: none;
}
#Price .scroll-container {
  width: 100%;
  margin: 80px 0;
  overflow: hidden;
}
@media screen and (min-width: 1400px) {
  #Price .scroll-container {
    overflow: visible;
  }
}

#User {
  /*=================================
  	section(ベース)
  ==================================*/
  /*=================================
  	.section-open-hour
  ==================================*/
  /*=================================
  	.sub-section.sub-section-personal
  ==================================*/
  /*=================================
  	.sub-section.sub-section-note
  ==================================*/
}
#User .section-base {
  /*.inner
  -------------------------*/
  /*.main-title-area
  -------------------------*/
  /*=================================
  	.sub-section
  ==================================*/
}
#User .section-base:nth-last-child(1) {
  padding-bottom: 0;
}
#User .section-base .inner {
  padding: 0 15px;
}
#User .section-base .main-title-area {
  padding-bottom: 48px;
}
#User .section-base .main-title-area .title {
  text-align: center;
}
#User .section-base .sub-section {
  padding-bottom: 40px;
  /*.text-area
  -------------------------*/
  /*.disc-lists-area
  -------------------------*/
  /*.note-text-area
  -------------------------*/
  /*.num-lists-area
  -------------------------*/
  /*.icon-pdf-text-container
  -------------------------*/
  /*.icon-pdf-text-area
  -------------------------*/
  /*.sub-title-area
  -------------------------*/
  /*.scroll-area
  -------------------------*/
}
#User .section-base .sub-section:nth-last-child(1) {
  padding-bottom: 0;
}
#User .section-base .sub-section .text-area {
  padding-bottom: 16px;
}
#User .section-base .sub-section .text-area .heading {
  font-size: 15px;
  font-weight: 600;
}
#User .section-base .sub-section .text-area .text {
  line-height: 1.6;
}
#User .section-base .sub-section .text-area .text .link-text {
  color: #504894;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-right: 4px;
}
#User .section-base .sub-section .disc-lists-area {
  padding-bottom: 24px;
}
#User .section-base .sub-section .disc-lists-area .disc-lists li {
  padding-left: 14px;
  position: relative;
  padding-bottom: 4px;
}
#User .section-base .sub-section .disc-lists-area .disc-lists li::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 999px;
}
#User .section-base .sub-section .note-text-area {
  padding-bottom: 12px;
}
#User .section-base .sub-section .note-text-area .note-text {
  text-indent: -1em;
  padding-left: 0.5em;
}
#User .section-base .sub-section .num-lists-area .num-lists li {
  padding-bottom: 6px;
  text-indent: -1.6em;
  padding-left: 1.6em;
}
#User .section-base .sub-section .icon-pdf-text-container {
  margin-top: -10px;
  padding-bottom: 38px;
}
#User .section-base .sub-section .icon-pdf-text-area {
  padding-top: 20px;
}
#User .section-base .sub-section .icon-pdf-text-area .text {
  font-size: 15px;
}
#User .section-base .sub-section .sub-title-area {
  padding-bottom: 16px;
}
#User .section-base .sub-section .sub-title-area .sub-title {
  font-weight: 600;
}
#User .section-base .sub-section .scroll-area {
  overflow-x: scroll;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}
#User .section-base .sub-section .scroll-area::-webkit-scrollbar {
  height: 5px;
}
#User .section-base .sub-section .scroll-area::-webkit-scrollbar-track {
  background-color: #bfbfc1;
}
#User .section-base .sub-section .scroll-area::-webkit-scrollbar-thumb {
  background-color: #504894;
  border-radius: 8px;
}
#User .section-open-hour {
  /*.open-hour-area
  -------------------------*/
  /*=================================
  	.sub-section.sub-section-app
  ==================================*/
}
#User .section-open-hour .open-hour-area {
  padding-bottom: 48px;
}
#User .section-open-hour .open-hour-area .open-hour {
  background-color: #504894;
  padding: 15px 10px;
  border-radius: 5px;
  overflow: hidden;
}
#User .section-open-hour .open-hour-area .open-hour .open-hour-title {
  text-align: center;
  color: #fff;
  padding-bottom: 16px;
}
#User .section-open-hour .open-hour-area .open-hour .open-hour-title .text {
  display: block;
  padding-bottom: 8px;
}
#User .section-open-hour .open-hour-area .open-hour .open-hour-title .time-text {
  font-size: 24px;
}
#User .section-open-hour .open-hour-area .open-hour .open-hour-title .s {
  display: inline-block;
  padding: 5px 0 0 0;
}
#User .section-open-hour .open-hour-area .closed-days-area .closed-days {
  background-color: #fff;
  padding: 18px 15px;
  text-align: center;
  border-radius: 5px;
}
#User .section-open-hour .open-hour-area .closed-days-area .closed-days .closed-days-title {
  font-size: 14px;
  padding-bottom: 8px;
  color: #504894;
}
#User .section-open-hour .open-hour-area .closed-days-area .closed-days .closed-days-lists li {
  font-size: 13px;
  color: #6760a2;
}
#User .section-open-hour .sub-section.sub-section-app {
  /*.amuse-table-type-a-area
  -------------------------*/
  /*.amuse-table-type-b-area
  -------------------------*/
  /*.amuse-table-type-c-area
  -------------------------*/
  /*.apps-lists-area
  -------------------------*/
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area {
  padding-bottom: 32px;
  overflow: hidden;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a {
  width: 760px;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a thead tr:nth-child(1) th {
  text-align: left;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a thead tr:nth-child(1) th:nth-child(1) {
  font-size: 18px;
  color: #504894;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a thead tr:nth-child(1) th:nth-child(2) {
  text-align: center;
  background-color: #504894;
  color: #fff;
  padding: 16px;
  border-radius: 10px 10px 0 0;
  border-bottom: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a thead tr:nth-child(2) th {
  color: #fff;
  text-align: left;
  background-color: #6f61c0;
  width: 180px;
  text-align: center;
  border-right: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a thead tr:nth-child(2) th:nth-child(1) {
  background-color: #504894;
  padding: 16px;
  border-radius: 10px 0 0 0;
  width: 280px;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a thead tr:nth-child(2) th:nth-child(5) {
  text-align: center;
  padding: 16px;
  border-radius: 0 10px 0 0;
  border-right: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody {
  border-collapse: separate;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr td {
  vertical-align: middle;
  text-align: center;
  padding: 16px 0;
  border-bottom: solid 1px #bfbfc1;
  border-right: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr td .t-br {
  display: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr:nth-child(1) td:nth-child(1) {
  position: relative;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr:nth-child(1) td:nth-child(1) .circle-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-left: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr:nth-child(1) td:nth-child(2) {
  position: relative;
  border-bottom: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr:nth-child(1) td:nth-child(2) .circle-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr:nth-child(1) td:nth-child(3) {
  position: relative;
  border-bottom: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr:nth-child(1) td:nth-child(3) .circle-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr:nth-child(1) td:nth-child(5) {
  border-bottom: none;
  border-right: none;
  position: relative;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr:nth-child(1) td:nth-child(5) .small-text {
  font-size: 12px;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr:nth-child(1) td:nth-child(5) .circle-line {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border-bottom: solid 1px #bfbfc1;
  border-right: solid 1px #bfbfc1;
  border-radius: 0 0 10px 0;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr:nth-child(2) td:nth-child(1) {
  position: relative;
  border-bottom: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr:nth-child(2) td:nth-child(1) .circle-line {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #bfbfc1;
  border-left: solid 1px #bfbfc1;
  border-radius: 0 0 0 10px;
  background-color: #f6f7f9;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr:nth-child(2) td:nth-child(2) {
  border-bottom: none;
  position: relative;
  background-color: #f6f7f9;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-a-area .amuse-table-type-a tbody tr:nth-child(2) td:nth-child(2) .circle-line {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area {
  padding-bottom: 8px;
  overflow: hidden;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b {
  width: 760px;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b thead tr:nth-child(1) th {
  text-align: left;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b thead tr:nth-child(1) th:nth-child(1) {
  font-size: 18px;
  color: #10a184;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b thead tr:nth-child(1) th:nth-child(2) {
  text-align: center;
  background-color: #10a184;
  color: #fff;
  padding: 16px;
  border-radius: 10px 10px 0 0;
  border-bottom: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b thead tr:nth-child(2) th {
  color: #fff;
  text-align: left;
  background-color: #1cb295;
  width: 180px;
  text-align: center;
  border-right: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b thead tr:nth-child(2) th:nth-child(1) {
  background-color: #10a184;
  padding: 16px;
  border-radius: 10px 0 0 0;
  width: 280px;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b thead tr:nth-child(2) th:nth-child(5) {
  text-align: center;
  padding: 16px;
  border-radius: 0 10px 0 0;
  border-right: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b tbody {
  border-collapse: separate;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b tbody tr td {
  vertical-align: middle;
  text-align: center;
  padding: 16px 0;
  border-bottom: solid 1px #bfbfc1;
  border-right: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b tbody tr td .t-br {
  display: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b tbody tr:nth-child(1) td:nth-child(1) {
  position: relative;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b tbody tr:nth-child(1) td:nth-child(1) .circle-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-left: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b tbody tr:nth-child(1) td:nth-child(3) {
  position: relative;
  border-bottom: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b tbody tr:nth-child(1) td:nth-child(3) .circle-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b tbody tr:nth-child(1) td:nth-child(4) {
  border-bottom: none;
  border-right: none;
  position: relative;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b tbody tr:nth-child(1) td:nth-child(4) .circle-line {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border-bottom: solid 1px #bfbfc1;
  border-right: solid 1px #bfbfc1;
  border-radius: 0 0 10px 0;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b tbody tr:nth-child(2) td:nth-child(1) {
  position: relative;
  border-bottom: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b tbody tr:nth-child(2) td:nth-child(1) .circle-line {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #bfbfc1;
  border-left: solid 1px #bfbfc1;
  border-radius: 0 0 0 10px;
  background-color: #f6f7f9;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b tbody tr:nth-child(2) td:nth-child(2) {
  position: relative;
  border-bottom: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-b-area .amuse-table-type-b tbody tr:nth-child(2) td:nth-child(2) .circle-line {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #bfbfc1;
  background-color: #f6f7f9;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area {
  overflow: hidden;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c {
  width: 760px;
  margin-bottom: 3px;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c thead tr:nth-child(1) th {
  text-align: left;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c thead tr:nth-child(1) th:nth-child(1) {
  font-size: 18px;
  color: #2876d8;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c thead tr:nth-child(1) th:nth-child(2) {
  text-align: center;
  background-color: #2876d8;
  color: #fff;
  padding: 16px;
  border-radius: 10px 10px 0 0;
  border-bottom: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c thead tr:nth-child(2) th {
  color: #fff;
  text-align: left;
  background-color: #478ee8;
  width: 180px;
  text-align: center;
  border-right: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c thead tr:nth-child(2) th:nth-child(1) {
  background-color: #2876d8;
  padding: 16px;
  border-radius: 10px 0 0 0;
  width: 280px;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c thead tr:nth-child(2) th:nth-child(5) {
  border-radius: 0 10px 0 0;
  border-right: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody {
  border-collapse: separate;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr td {
  vertical-align: middle;
  text-align: center;
  padding: 16px 0;
  border-bottom: solid 1px #bfbfc1;
  border-right: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr td .t-br {
  display: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(1) td:nth-child(1) {
  position: relative;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(1) td:nth-child(1) .circle-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-left: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(1) td:nth-child(3) {
  position: relative;
  border-bottom: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(1) td:nth-child(3) .circle-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(1) td:nth-child(4) {
  position: relative;
  border-bottom: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(1) td:nth-child(4) .circle-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(1) td:nth-child(5) {
  position: relative;
  border-right: none;
  border-bottom: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(1) td:nth-child(5) .small-text {
  font-size: 16px;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(1) td:nth-child(5) .circle-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-right: solid 1px #bfbfc1;
  border-bottom: solid 1px #bfbfc1;
  border-radius: 0 0 10px 0;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(2) td:nth-child(1) {
  position: relative;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(2) td:nth-child(1) .circle-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-left: solid 1px #bfbfc1;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(3) td:nth-child(1) {
  position: relative;
  border-bottom: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(3) td:nth-child(1) .circle-line {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-left: solid 1px #bfbfc1;
  border-bottom: solid 1px #bfbfc1;
  border-radius: 0 0 0 10px;
  background-color: #f6f7f9;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(3) td:nth-child(2) {
  position: relative;
  border-bottom: none;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(3) td:nth-child(2) .circle-line {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #bfbfc1;
  background-color: #f6f7f9;
}
#User .section-open-hour .sub-section.sub-section-app .amuse-table-type-c-area .amuse-table-type-c tbody tr:nth-child(2) td:nth-child(1) {
  position: relative;
}
#User .section-open-hour .sub-section.sub-section-app .apps-lists-area {
  padding-bottom: 10px;
}
#User .section-open-hour .sub-section.sub-section-app .apps-lists-area .apps-lists li {
  position: relative;
  font-weight: 600;
  padding-bottom: 6px;
  padding-left: 14px;
}
#User .section-open-hour .sub-section.sub-section-app .apps-lists-area .apps-lists li:nth-last-child(1) {
  padding-bottom: 0;
}
#User .section-open-hour .sub-section.sub-section-app .apps-lists-area .apps-lists li .weight-text {
  font-weight: 500;
}
#User .section-open-hour .sub-section.sub-section-app .apps-lists-area .apps-lists li .small-text {
  font-weight: 500;
  padding-left: 10px;
  display: inline-block;
}
#User .section-open-hour .sub-section.sub-section-app .apps-lists-area .apps-lists li::after {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  width: 4px;
  height: 16px;
  background-color: #6e61bf;
}
#User .sub-section.sub-section-personal {
  /*.amuse-table-type-d-area
  -------------------------*/
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area {
  overflow: hidden;
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area .amuse-table-type-d {
  width: 760px;
  margin-bottom: 2px;
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area .amuse-table-type-d thead tr th {
  text-align: center;
  color: #fff;
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area .amuse-table-type-d thead tr th:nth-child(1) {
  width: 350px;
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area .amuse-table-type-d thead tr th:nth-child(2) {
  background-color: #504894;
  padding: 16px 0;
  border-radius: 10px 0 0 0;
  width: 325px;
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area .amuse-table-type-d thead tr th:nth-child(3) {
  background-color: #6e61bf;
  padding: 16px 0;
  border-radius: 0 10px 0 0;
  width: 325px;
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area .amuse-table-type-d tbody {
  position: relative;
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area .amuse-table-type-d tbody tr td {
  vertical-align: middle;
  text-align: center;
  padding: 24px 0;
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area .amuse-table-type-d tbody tr td:nth-child(1) {
  text-align: left;
  position: relative;
  padding-left: 4%;
  box-sizing: border-box;
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area .amuse-table-type-d tbody tr td:nth-child(1) .weight-text {
  font-weight: 700;
  display: block;
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area .amuse-table-type-d tbody tr td:nth-child(1) .small-text {
  font-size: 14px;
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area .amuse-table-type-d tbody tr td:nth-child(1) .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #bfbfc1;
  border-right: none;
  border-radius: 10px 0 0 10px;
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area .amuse-table-type-d tbody tr td:nth-child(2) {
  text-align: center;
  position: relative;
}
#User .sub-section.sub-section-personal .amuse-table-type-d-area .amuse-table-type-d tbody tr td:nth-child(2) .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #bfbfc1;
  border-radius: 0 0 10px 0;
}
#User .sub-section.sub-section-note {
  /*.icon-pdf-text-area
  -------------------------*/
}
#User .sub-section.sub-section-note .icon-pdf-text-area {
  padding-top: 0;
}