@charset "utf-8";

/*--------------------------------------------------------------
    ボタン
  --------------------------------------------------------------*/

/* 基本 */
a.btn-white,
a.btn-black,
a.btn-b-white {
  display: inline-block;
  margin: 0.3rem 0rem;
  padding: 0.4rem 1.2rem 0.4rem 1.2rem !important;
  text-align: center;
  text-decoration: none;

  font-size: 0.8rem !important;
  font-weight: 400 !important;
  line-height: 0.8rem !important;
  border-radius: 1.5rem;

  filter: drop-shadow(1px 1px 1px rgb(0 0 0 / 0.1));

  transition: background-color 0.3s ease;
}

a.btn-black.big {
  margin: 0.3rem 0rem;
  padding: 0.5rem 2rem 0.8rem 2rem !important;

  font-size: clamp(2.0rem, 2.2vw, 3.2rem) !important;
  line-height: 1.2 !important;
  font-weight: 400;

  border-radius: 2rem;

  background-color: rgb(var(--main-color) / 1.0);
}

a.btn-black.big:hover {
  background-color: rgb(var(--main-color) / 0.7);
}

/* 白 */
a.btn-white {
  color: #333 !important;
  background-color: #fff;
}

a.btn-white:hover {
  background-color: #ddd;
}

/* 白-ボーダー付き */
a.btn-b-white {
  color: #333 !important;
  background-color: #fff;
  border: 1px solid #ccc;
}

a.btn-b-white:hover {
  background-color: #ddd;
}

/* 黒 */
a.btn-black {
  color: #fff !important;
  background-color: #000;
}

a.btn-black:hover {
  background-color: #555;
}

/* 矢印付きの時の処理 */
a.btn-b-white>.material-symbols-outlined,
a.btn-white>.material-symbols-outlined {
  color: #777;
  font-size: 1.2rem;
  vertical-align: -0.3rem;
  margin-left: 0.3rem;
}

a.btn-black>.material-symbols-outlined {
  color: #777;
  font-size: 1.2rem;
  vertical-align: -0.3rem;
  margin-left: 0.3rem;
}


/*--------------------------------------------------------------
    form用ボタン
  --------------------------------------------------------------*/



button.whitebutton {
  /* ボタンのサイズと余白 */
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;

  padding-bottom: 0.1rem;

  /* ボタンのテキストスタイル */
  letter-spacing: 2.5px;
  font-weight: 500;
  text-align: center;

  /* ボタンの色と背景 */
  color: #fff;
  background-color: #666;

  /* ボタンのボーダーと角丸 */
  border: none;
  border-radius: 45px;

  /* ボタンの影 */
  box-shadow: 2px 2px 2px rgb(0 0 0 / 0.1);

  /* ボタンの変化とカーソル */
  transition: all 0.3s ease 0s;
  cursor: pointer;

  /* ボタンのアウトラインと改行 */
  outline: none;
}

button.whitebutton:hover {
  /* ホバー時のテキスト色と背景 */
  color: #666;
  background-color: #fff;

  /* ホバー時の影と位置変化 */
  box-shadow: 2px 2px 2px rgb(0 0 0 / 0.4);
  transform: translateY(-2px);
}

button.whitebutton>a {
  font-size: 0.9rem;
  line-height: 1.2rem;
  align-items: center;
  display: block;
  color: #fff;
  margin: 0;
  padding: 0.2rem 1rem 0.2rem 1rem;
  border-radius: 2rem;
}

button.whitebutton>a:hover {
  color: rgb(var(--text-color) / 1.0);
}

button.close {
  border: 1px solid #eee;
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
  padding-right: 0.5rem;
}


/*--------------------------------------------------------------
    ボタン
  --------------------------------------------------------------*/

button.blackbutton {
  /* ボタンのサイズと余白 */
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;

  padding: 0.5rem 1rem 0.5rem 1rem;


  /* ボタンのテキストスタイル */
  letter-spacing: 2.5px;
  font-weight: 500;

  /* ボタンの色と背景 */
  color: #666;
  background-color: #fff;

  /* ボタンのボーダーと角丸 */
  border: 0px;
  border-radius: 45px;

  /* ボタンの影 */
  box-shadow: 2px 2px 2px rgb(0 0 0 / 0.1);

  /* ボタンの変化とカーソル */
  transition: all 0.3s ease 0s;
  cursor: pointer;

  /* ボタンのアウトラインと改行 */
  outline: none;
}

button.blackbutton:hover {
  /* ホバー時のテキスト色と背景 */
  color: #fff;
  background-color: #666;

  /* ホバー時の影と位置変化 */
  box-shadow: 2px 2px 2px rgb(0 0 0 / 0.4);
  transform: translateY(-2px);
}

button.blackbutton>a {
  font-size: 0.9rem;
  line-height: 1.2rem;
  align-items: center;
  display: block;
  color: rgb(var(--text-color) / 1.0);
  margin: 0;
  padding: 0.2rem 1rem 0.2rem 1rem;
  border-radius: 2rem;
}

button.blackbutton>a:hover {
  color: #fff;
}

button.b-type1 a {
  font-size: 0.9rem;
  color: rgb(var(--main-color) / 1.0) !important;
}

button.b-type2 a {
  font-size: 0.9rem;
  color: rgb(var(--orange-color) / 1.0) !important;
}

button.b-type3 a {
  font-size: 0.9rem;
  color: rgb(var(--gray-color) / 1.0) !important;
}

button.b-type-taiso a {
  font-size: 0.9rem;
  color: rgb(var(--taiso-color) / 1.0) !important;
}

button.b-type-youji a {
  font-size: 0.9rem;
  color: rgb(var(--child-color) / 1.0) !important;
}

.b-frame {
  border: 1px solid #aaa !important;
  width: 100% !important;
}

button.whitebutton {
  /* ボタンのサイズと余白 */
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;

  padding-bottom: 0.1rem;

  /* ボタンのテキストスタイル */
  letter-spacing: 2.5px;
  font-weight: 500;

  /* ボタンの色と背景 */
  color: #fff;
  background-color: #666;

  /* ボタンのボーダーと角丸 */
  border: none;
  border-radius: 45px;

  /* ボタンの影 */
  box-shadow: 2px 2px 2px rgb(0 0 0 / 0.1);

  /* ボタンの変化とカーソル */
  transition: all 0.3s ease 0s;
  cursor: pointer;

  /* ボタンのアウトラインと改行 */
  outline: none;
}

button.whitebutton:hover {
  /* ホバー時のテキスト色と背景 */
  color: #666;
  background-color: #fff;

  /* ホバー時の影と位置変化 */
  box-shadow: 2px 2px 2px rgb(0 0 0 / 0.4);
  transform: translateY(-2px);
}

button.whitebutton>a {
  font-size: 0.9rem;
  line-height: 1.2rem;
  align-items: center;
  display: block;
  color: #fff;
  margin: 0;
  padding: 0.2rem 1rem 0.2rem 1rem;
  border-radius: 2rem;
}

button.whitebutton>a:hover {
  color: rgb(var(--text-color) / 1.0);
}

button.close {
  border: 1px solid #eee;
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
  padding-right: 0.5rem;
}







/* たいそう・ぶどう教室　ボタン基本設定 */
a.btnset {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  line-height: 100%;
  vertical-align: middle;
  align-items: center;
  border-radius: 2rem;
  margin: 0;
  padding: 0.3rem 1.0rem 0.4rem 1.0rem;
  text-decoration: none;
  mix-blend-mode: multiply;
}



/* 3連つなぎボタン設定 */
a.btn-type-b-half-L,
a.btn-type-b-half-M,
a.btn-type-b-half-R {
  color: rgb(var(--white-color) / 1.0);
  border: 1px solid rgb(var(--white-color) / 1.0);
  background-color: rgb(var(--black-color) / 0.4);
  transition: all 1s ease-out;
  mix-blend-mode: multiply;
}


a.btn-type-b-half-L {
  border-radius: 2rem 0 0 2rem;
}

a.btn-type-b-half-M {
  border-radius: 0;
}

a.btn-type-b-half-R {
  border-radius: 0 2rem 2rem 0;
}


a.btn-type-b-half-L:hover,
a.btn-type-b-half-M:hover,
a.btn-type-b-half-R:hover {
  color: rgb(var(--white-color) / 1.0);
  border: 1px solid rgb(var(--taiso3nd-color) / 1.0);
  background-color: rgb(var(--taiso3nd-color) / 1.0);
  transition: all 1s ease-out;
  mix-blend-mode: multiply;
}



/* ろんり教室　ボタン基本設定 */

/* 3連つなぎボタン設定 */
a.r-btn-type-b-half-L,
a.r-btn-type-b-half-M,
a.r-btn-type-b-half-R {
  color: rgb(var(--white-color) / 1.0);
  border: 1px solid rgb(var(--white-color) / 1.0);
  background-color: rgb(var(--black-color) / 0.4);
  background-blend-mode: multiply;
  transition: all 1s ease-out;
  mix-blend-mode: multiply;
}


a.r-btn-type-b-half-L {
  border-radius: 2rem 0 0 2rem;
}

a.r-btn-type-b-half-M {
  border-radius: 0;
}

a.r-btn-type-b-half-R {
  border-radius: 0 2rem 2rem 0;
}


a.r-btn-type-b-half-L:hover,
a.r-btn-type-b-half-M:hover,
a.r-btn-type-b-half-R:hover {
  color: rgb(var(--white-color) / 1.0);
  border: 1px solid rgb(var(--ronri-dark-color) / 1.0);
  background-color: rgb(var(--ronri-dark-color) / 1.0);
  transition: all 1s ease-out;
  mix-blend-mode: multiply;
}


.drop {
  filter: drop-shadow(2px 2px 2px rgb(0 0 0 / 0.3));
}

/*--------------------------------------------------------------
    サブメニューボタン
  --------------------------------------------------------------*/


.submenu-btn {
  position: relative;
  margin: 0;
  display: flex;
  z-index: 99;

  justify-content: stretch;
  align-items: stretch;
}

.submenu-btn a {
  width: 100%;
  padding: 0.1rem 1rem 0.3rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-size: 0.7rem;
  line-height: 0.9rem;
  text-align: center;
  color: rgb(var(--white-color) / 1.0);
  border: 1px solid rgb(var(--white-color) / 1.0);
  background-color: rgb(var(--black-color) / 0.4);
  background-blend-mode: multiply;
  transition: all 1s ease-out;
  mix-blend-mode: multiply;
}

.submenu-btn a>span.material-symbols-outlined {
  font-size: 2rem;
}

.submenu-btn a>span.link-text {
  opacity: 0.7;
}

.submenu-btn a:hover {
  color: rgb(var(--white-color) / 1.0);
  border: 1px solid rgb(var(--ronri-dark-color) / 1.0);
  background-color: rgb(var(--ronri-dark-color) / 1.0);
  transition: all 1s ease-out;
  mix-blend-mode: multiply;
}

.submenu-btn a.souzou:hover {
  border: 1px solid rgb(var(--ronri-dark-color) / 1.0);
  background-color: rgb(var(--ronri-dark-color) / 1.0);
}

.submenu-btn a.ronri:hover {
  border: 1px solid rgb(var(--ronri-dark-color) / 1.0);
  background-color: rgb(var(--ronri-dark-color) / 1.0);
}

.submenu-btn a.taiso:hover {
  border: 1px solid rgb(var(--taiso2nd-dark-color) / 1.0);
  background-color: rgb(var(--taiso2nd-dark-color) / 1.0);
}

.submenu-btn a:first-child {
  padding-left: 3rem;
  border-radius: 3rem 0 0 3rem;
}

.submenu-btn a:last-child {
  padding-right: 3rem;
  border-radius: 0 3rem 3rem 0;
}


@media (max-width: 767.98px) {
  /* sm 以下の画面サイズの場合のスタイル */

  .submenu-btn {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
  }

  .submenu-btn a {
    width: 100%;
    padding: 0.3rem 1rem 0.3rem 1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
  }

  .submenu-btn a>span.material-symbols-outlined {
    font-size: 1rem;
  }

  .submenu-btn a>span.link-text {
    opacity: 1;
  }

  .submenu-btn a:first-child {
    padding: 0.3rem 1rem 0.3rem 1rem;
    border-radius: 1rem 1rem 0 0;
  }

  .submenu-btn a:last-child {
    padding: 0.3rem 1rem 0.3rem 1rem;
    border-radius: 0 0 1rem 1rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  /* md の画面サイズの場合のスタイル */
  .submenu-btn {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
  }

  .submenu-btn a {
    width: 100%;
    padding: 0.3rem 1rem 0.3rem 1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
  }

  .submenu-btn a>span.material-symbols-outlined {
    font-size: 1rem;
  }

  .submenu-btn a>span.link-text {
    opacity: 1;
  }

  .submenu-btn a:first-child {
    padding: 0.3rem 1rem 0.3rem 1rem;
    border-radius: 1rem 1rem 0 0;
  }

  .submenu-btn a:last-child {
    padding: 0.3rem 1rem 0.3rem 1rem;
    border-radius: 0 0 1rem 1rem;
  }
}

@media (min-width: 992px) {
  /* lg 以上の画面サイズの場合のスタイル */
}


/*--------------------------------------------------------------
    サブメニューボタン　白
  --------------------------------------------------------------*/


.submenu-btn-w {
  position: relative;
  margin: 0;
  display: flex;
  z-index: 99;

  justify-content: stretch;
  align-items: stretch;
}

.submenu-btn-w a {
  width: 100%;
  padding: 0.1rem 1rem 0.3rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-size: 0.7rem;
  line-height: 0.9rem;
  text-align: center;
  text-decoration: none;
  color: rgb(128 128 128 / 1.0) !important;
  border: 1px solid rgb(var(--black-color) / 0.1);
  background-color: rgb(var(--white-color) / 0.8);
  background-blend-mode: multiply;
  transition: all 1s ease-out;
  mix-blend-mode: multiply;
}

.submenu-btn-w a>img.logo_ronri {
  width: 250px;
}

.submenu-btn-w a>span.material-symbols-outlined {
  font-size: 2rem;
}

.submenu-btn-w a>span.link-text {
  opacity: 0.7;
}

.submenu-btn-w a:hover {
  color: rgb(var(--white-color) / 1.0) !important;
  border: 1px solid rgb(var(--ronri-dark-color) / 1.0);
  background-color: rgb(var(--ronri-dark-color) / 1.0);
  transition: all 1s ease-out;
  mix-blend-mode: multiply;
}

.submenu-btn-w a:hover>* {
  color: rgb(var(--white-color) / 1.0) !important;
}

.submenu-btn-w a.souzou:hover {
  border: 1px solid rgb(var(--ronri-dark-color) / 1.0);
  background-color: rgb(var(--ronri-dark-color) / 1.0);
}

.submenu-btn-w a.ronri:hover {
  border: 1px solid rgb(var(--ronri-dark-color) / 1.0);
  background-color: rgb(var(--ronri-dark-color) / 1.0);
}

.submenu-btn-w a.taiso:hover {
  border: 1px solid rgb(var(--taiso2nd-dark-color) / 1.0);
  background-color: rgb(var(--taiso2nd-dark-color) / 1.0);
}

.submenu-btn-w a:first-child {
  padding-left: 3rem;
  border-radius: 3rem 0 0 3rem;
}

.submenu-btn-w a:last-child {
  padding-right: 3rem;
  border-radius: 0 3rem 3rem 0;
}


@media (max-width: 767.98px) {
  /* sm 以下の画面サイズの場合のスタイル */

  .submenu-btn-w {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
  }

  .submenu-btn-w a {
    width: 100%;
    padding: 0.3rem 1rem 0.3rem 1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
  }

  .submenu-btn-w a>span.material-symbols-outlined {
    font-size: 1rem;
  }

  .submenu-btn-w a>span.link-text {
    opacity: 1;
  }

  .submenu-btn-w a:first-child {
    padding: 0.3rem 1rem 0.3rem 1rem;
    border-radius: 1rem 1rem 0 0;
  }

  .submenu-btn-w a:last-child {
    padding: 0.3rem 1rem 0.3rem 1rem;
    border-radius: 0 0 1rem 1rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  /* md の画面サイズの場合のスタイル */
  .submenu-btn-w {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
  }

  .submenu-btn-w a {
    width: 100%;
    padding: 0.3rem 1rem 0.3rem 1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
  }

  .submenu-btn-w a>span.material-symbols-outlined {
    font-size: 1rem;
  }

  .submenu-btn-w a>span.link-text {
    opacity: 1;
  }

  .submenu-btn-w a:first-child {
    padding: 0.3rem 1rem 0.3rem 1rem;
    border-radius: 1rem 1rem 0 0;
  }

  .submenu-btn-w a:last-child {
    padding: 0.3rem 1rem 0.3rem 1rem;
    border-radius: 0 0 1rem 1rem;
  }
}

@media (min-width: 992px) {
  /* lg 以上の画面サイズの場合のスタイル */
}




/**/
.mapbutton {
  margin: 0;
  padding: 0.2rem 1rem 0.4rem 1rem;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;

  background-color: #fff;
  color: #333;

  border:1px solid #999;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.mapbutton:hover {
  background-color: #666;
  color: #fff;
}