@charset "UTF-8";
/**
* Foundation
* ========================== */
/* サイト幅 */
/* フォントファミリー */
/* フォントカラー */
/* フォントサイズ */
/* フォントウェイト */
/* 行の高さ */
/* 背景・ブロック区切り */
/* テーブルボーダー */
/* オパシティ */
/* フォーム */
/* リセットcss & 基本設定 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-family: "Sarabun", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #4c4f35;
  line-height: 1.5;
  background: #fff;
  /*　footer 下部固定用*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  min-height: 100vh;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
  background: transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover, a:focus {
  opacity: 0.7;
  cursor: pointer;
}

@media print, screen and (min-width: 769px) {
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

video {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
}

th,
td {
  padding: 4px 6px;
  text-align: left;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: "";
  content: none;
}

address {
  font-style: normal;
}

/* フォーム関連
*****************************************/
form {
  margin: 0;
  padding: 0;
}

form button {
  width: auto;
  display: inline-block;
  padding: 0.6em 2em;
  margin: 0;
  background-image: none;
  background-color: pink;
  color: #fff;
  border-radius: 0;
  font-size: inherit;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

form button:hover, form button:focus {
  outline: none;
}

form button:hover {
  opacity: 0.7;
}

form button ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input,
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #4c4f35;
  border-radius: 0;
  background-image: none;
  font-family: inherit;
  font-size: inherit;
}

textarea:hover, textarea:focus {
  outline: none;
}

textarea:focus {
  outline: none;
  border-color: #5bedf7;
  -webkit-box-shadow: none;
          box-shadow: none;
}

textarea ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input {
  /* ラジオボタンのスタイルを変更
*****************************************/
  /* チェックボックスのスタイルを変更
*****************************************/
}

input:focus {
  outline: none;
  border-color: #5bedf7;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type="submit"], input[type="button"] {
  width: auto;
  display: inline-block;
  padding: 0.6em 2em;
  margin: 0;
  background-image: none;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 0;
  font-size: 1.6rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, input[type="button"]:focus {
  outline: none;
}

input[type="submit"]:hover, input[type="button"]:hover {
  opacity: 0.7;
}

input[type="submit"] ::-moz-focus-inner, input[type="button"] ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + span {
  display: inline-block;
  position: relative;
  padding: 3px 10px 3px 24px;
  margin: 0 16px 0 0;
  cursor: pointer;
}

input[type="radio"] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid #4c4f35;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: block;
}

input[type="radio"] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type="radio"]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  display: block;
  opacity: 1;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  padding: 3px 10px 3px 22px;
  margin: 0 16px 0 0;
  cursor: pointer;
  -webkit-transition: all 1s;
  transition: all 1s;
}

input[type="checkbox"] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid #4c4f35;
  border-radius: 2px;
  display: block;
}

input[type="checkbox"] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type="checkbox"]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  margin-top: -0.2em;
  display: block;
}

select {
  padding: 0.4em 2.4em 0.4em 0.8em;
  border-radius: 0;
  background-position: right 6px center;
  background-repeat: no-repeat;
  background-size: 24px;
  font-family: inherit;
  font-size: 1.6rem;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border: 1px solid #4c4f35;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #5bedf7;
}

/****
		for boot strap
*****/
.md-form label, .md-form label.active {
  font-size: 1.6rem;
  /*boot strap*/
}

.form-control {
  font-size: 1.6rem;
}

.btn {
  font-size: 1.6rem;
}

.card-body {
  padding-right: 2rem;
  padding-left: 2rem;
}

.bl-topnav .dropdown-toggle::after {
  position: absolute;
  bottom: 0;
}

.bl-topnav .navbar-nav {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

/* boot strap my-menuタブ */
.tab-content {
  border-right: 2px solid #eee;
  border-left: 2px solid #eee;
  border-bottom: 2px solid #eee;
}

.tooltip {
  font-size: 1.8rem;
}

/* フォントサイズ・タイトルタグ*/
.fontsize--SS {
  font-size: 1rem;
}

.fontsize--S {
  font-size: 1.2rem;
}

.fontsize--M {
  font-size: 1.4rem;
}

.fontsize--L {
  font-size: 1.6rem;
}

.fontsize--LL {
  font-size: 1.8rem;
}

.fontsize--TL {
  font-size: 2.4rem;
}

@media screen and (min-width: 960px) {
  .fontsize--SS {
    font-size: 1rem;
  }
  .fontsize--S {
    font-size: 1.4rem;
  }
  .fontsize--M {
    font-size: 1.6rem;
  }
  .fontsize--L {
    font-size: 1.8rem;
  }
  .fontsize--TL {
    font-size: 4.0rem;
  }
}

.ff-ffNIKU {
  font-family: 'Hannotate SC','メイリオ', Meiryo,'Chalkboard SE','Chalkboard','Comic Sans MS',sans-serif;
}

.hp_pc {
  display: none;
}

@media print, screen and (min-width: 1221px) {
  .hp_pc {
    display: inline-block;
  }
}

@media print, screen and (min-width: 769px) {
  .hp_pc.mb {
    display: block;
  }
}

.hp_sp {
  display: block;
}

@media print, screen and (min-width: 1221px) {
  .hp_sp {
    display: none;
  }
}

@media print, screen and (min-width: 769px) {
  .hp_sp.mb {
    display: none;
  }
}

.hp_xsp {
  display: inline;
}

@media print, screen and (min-width: 360px) {
  .hp_xsp {
    display: none;
  }
}

.hp-mtS {
  margin-top: 2rem;
}

.hp-color-info {
  color: orange;
  font-weight: bold;
}

.hp-color-f {
  color: #fff;
}

.el_index_ttl {
  display: block;
  font-family: "Sarabun", "Noto Sans JP", sans-serif;
  color: #4c4f35;
  font-size: 2.2rem;
}

@media print, screen and (min-width: 769px) {
  .el_index_ttl {
    display: inline;
    font-size: 2.5rem;
  }
}

.hp_small {
  font-size: 14px;
  color: #4C4C4C;
}

@media print, screen and (min-width: 769px) {
  .hp_small {
    display: inline;
    font-size: 13px;
  }
}

.el_lv2_ttl {
  font-family: "Sarabun", "Noto Sans JP", sans-serif;
  color: #4c4f35;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: .055em;
}

@media print, screen and (min-width: 960px) {
  .el_lv2_ttl {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}

.el_lv3_ttl {
  position: relative;
  font-family: "Sarabun", "Noto Sans JP", sans-serif;
  color: #4c4f35;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.el_lv3_ttl::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-size: 8px 1px;
  background-image: linear-gradient(to right, #808080, #808080 3px, transparent 3px, transparent 8px);
}

@media print, screen and (min-width: 960px) {
  .el_lv3_ttl {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 3rem;
  }
}

.el_lv4_ttl {
  font-size: 1.5rem;
  font-weight: bold;
}

@media print, screen and (min-width: 960px) {
  .el_lv4_ttl {
    font-size: 1.6rem;
  }
}

.btn-right {
  text-align: right;
}

.el-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #26C6DA;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.el-btn:hover {
  color: #fff;
}

.el-btn.el-btn-teach {
  padding: .5rem 1rem;
  background: #fff;
  border: 1px solid #333;
  color: #333;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.el-btn.el-btn-teach i {
  padding-right: .5rem;
}

.el-btn.el-btn-simple {
  padding: .5rem 1rem;
  background: #fff;
  border: 1px solid #333;
  color: #333;
  font-weight: normal;
  margin-left: auto;
}

.el-btn.el-btn-bgBlue {
  padding: 1rem 1.5rem;
  background: #fff;
  border: 2px solid #67d7e5;
  color: #333;
  font-weight: normal;
  margin-left: auto;
}

.el-btn.el-btn-reservation {
  background: tomato;
  margin-left: auto;
  width: 200px;
}

.el-btn.el-btn-contact {
  width: 200px;
}

.el-btn.el-btn-border {
  border: 2px solid #333;
  border-radius: 0;
  background: #fff;
  -webkit-box-shadow: 4px 4px 0 #ccc;
          box-shadow: 4px 4px 0 #ccc;
  color: #333;
}

.el-btn.el-btn-border:hover {
  -webkit-box-shadow: -4px -4px 0 #333;
          box-shadow: -4px -4px 0 #333;
  opacity: 1;
}

.hp-hover {
  -webkit-transition: .2s;
  transition: .2s;
}

.hp-hover:hover .card {
  color: #333 !important;
  position: relative;
  top: -2px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 15px 0 rgba(0, 0, 0, 0.13);
          box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 15px 0 rgba(0, 0, 0, 0.13);
}

.hp-hover:hover .card a {
  color: #333 !important;
}

.font-weight-lighter {
  color: #4545;
}

.flag {
  display: inline-block;
  width: 30px;
  border: 1px solid #ddd;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 20px;
}

.flag > img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.isRead,
.isNotice {
  position: relative;
}

.isRead .el-notice,
.isNotice .el-notice {
  position: absolute;
  display: inline-block;
  left: 3px;
  top: 3px;
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 5px;
}

.hp_link_small {
  font-size: smaller;
  letter-spacing: 0;
}

.bl-iconUnit {
  padding-top: 1rem;
}

.bl-iconUnit::before, .bl-iconUnit::after {
  content: '';
  display: block;
}

.bl-iconUnit::after {
  clear: both;
}

.bl-user-icon {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.bl-user-icon .img-wrapper {
  width: 80px;
  height: 80px;
  padding-top: 80px;
}

@media print, screen and (min-width: 960px) {
  .bl-user-icon .img-wrapper {
    width: 100px;
    height: 100px;
    padding-top: 100px;
  }
}

.bl-user-iconName {
  text-align: center;
}

/* 共通 */
.show-timezone-area {
  font-weight: bold;
  padding: 1rem;
  border: 2px solid #547BA8;
  color: #547BA8;
  background: #EAEFF9;
  margin-bottom: 1rem;
}

.page-resister,
.page-login {
  font-size: 16px !important;
}

.page-resister .form-group,
.page-login .form-group {
  text-align: left;
}

.page-resister label,
.page-login label {
  font-size: 16px;
}

.page-resister small,
.page-login small {
  font-size: 14px;
  display: block;
  text-align: center;
}

.fb_login {
  margin-top: 2rem;
}

.fb_login i {
  font-size: large;
  margin-right: 1rem;
}

.fb_login a {
  width: 100%;
  border-radius: 3px;
}

@media print, screen and (min-width: 960px) {
  .fb_login {
    margin-top: 2rem;
  }
  .fb_login i {
    font-size: large;
    margin-right: 1rem;
  }
  .fb_login a {
    width: 45%;
    border-radius: 3px;
  }
}

.pagination .page-item .page-link {
  font-size: 16px;
}

/**
* Layout
* ========================== */
.wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}

.ly_section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ly_section:first-child {
  padding-top: 100px;
}

.ly_inner {
  max-width: 560px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

@media print, screen and (min-width: 769px) {
  .ly_section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ly_inner {
    max-width: 1000px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.container {
  margin-top: 2rem;
  margin-bottom: 7rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  /* footer下部固定用*/
}

.container.column-2 {
  margin: auto;
  margin-bottom: 3rem;
}

.container.column-2 .sidebar {
  position: relative;
  bottom: -1rem;
}

.container.column-2 .sidebar-item {
  padding-right: 1rem;
  padding-left: 1rem;
}

.container.column-2 .sidebar-item .el-btn {
  min-width: 200px;
}

@media print, screen and (min-width: 769px) {
  .container.column-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .container.column-2 .main {
    width: calc(100% - 320px);
  }
  .container.column-2 .sidebar {
    position: static;
    width: 300px;
    margin-left: 20px;
  }
  .container.column-2 .sidebar-inner {
    display: block;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .container.column-2 .sidebar-item {
    padding-right: 2rem;
    padding-left: 2rem;
    text-align: left;
  }
}

/* Project ------------ */
.header-inner {
  width: 1200px;
  max-width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  margin-top: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #F3F5F6;
  text-align: center;
}

.footer-inner {
  width: 1200px;
  max-width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.nav-lang {
  padding: .2rem .5rem;
  list-style: none;
  border: 1px solid #333;
}

.nav-lang .dropdown-toggle::after {
  bottom: -0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media print, screen and (min-width: 769px) {
  .nav-lang .dropdown-toggle::after {
    bottom: -0.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.navbar-brand {
  font-size: 1.6rem;
}

.navbar-nav .dropdown-menu {
  font-size: 1.6rem;
}

#drawer-checkbox {
  display: none;
}

#drawer-icon {
  display: inline-block;
  position: fixed;
  z-index: 50;
  top: 7px;
  right: 10px;
  height: 25px;
  width: 32px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#drawer-icon span {
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #535353;
  border-radius: 5px;
  display: block;
  height: 2px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#drawer-icon span:nth-of-type(1) {
  top: 0px;
}

#drawer-icon span:nth-of-type(2) {
  top: 42%;
}

#drawer-icon span:nth-of-type(3) {
  bottom: 0;
}

#drawer-checkbox:checked ~ #drawer-icon span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
      -ms-transform: translateY(12px) rotate(-45deg);
          transform: translateY(12px) rotate(-45deg);
}

#drawer-checkbox:checked ~ #drawer-icon span:nth-of-type(2) {
  opacity: 0;
}

#drawer-checkbox:checked ~ #drawer-icon span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
      -ms-transform: translateY(-12px) rotate(45deg);
          transform: translateY(-12px) rotate(45deg);
}

#drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: 350px;
  max-width: 90%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  text-align: center;
}

#drawer-content.nav-guest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
}

#drawer-content.nav-guest a {
  color: #333;
}

#drawer-content .nav-item {
  margin-right: .5rem;
}

#drawer-checkbox:checked ~ #drawer-content {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
          box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}

#drawer-close {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

#drawer-checkbox:checked ~ #drawer-close {
  display: block;
  opacity: 0.3;
}

.drawer-content-item a {
  padding: 2rem;
  display: block;
}

.drawer-content-item a:hover {
  cursor: pointer;
  background: silver;
  opacity: .7;
  -webkit-transition: .3s;
  transition: .3s;
}

@media print, screen and (min-width: 769px) {
  #drawer-icon {
    display: none;
  }
  #drawer-content {
    position: static;
    overflow: hidden;
    width: auto;
    max-width: 100%;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    text-align: center;
  }
  #drawer-content.nav-guest {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background: transparent;
    font-size: 1.6rem;
  }
  #drawer-content.nav-guest a {
    color: #fff;
  }
}

/** userページ
*/
/* フォローボタン */
.followBtn {
  padding-left: 2rem;
}

.followBtn:hover {
  cursor: pointer;
}

.heart-icon {
  position: relative;
  width: 2rem;
}

.heart-icon i {
  position: absolute;
  top: 4px;
  left: 0;
  display: inline;
}

.heart-icon i.fas {
  z-index: -1000;
  opacity: 0;
  color: tomato;
}

.heart-icon i.far {
  z-index: 2;
}

.is_followed.followed .heart-icon i.fas {
  z-index: 2;
  opacity: 1;
}

.is_followed.followed .heart-icon i.far {
  z-index: -1000;
}

/* プロフィール表示エリア */
.bl-yourProfile {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.bl-my-menu .nav-item {
  border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.bl-my-menu .nav-item i {
  margin-right: 1rem;
}

.bl-yourProfile-img {
  position: relative;
  padding-right: 1rem;
  margin-bottom: 2rem;
}

.bl-yourProfile-img .img-wrapper {
  padding-top: 100px;
}

.bl-yourProfile-img .change-myImage {
  position: absolute;
  bottom: 0;
  left: 0;
}

.bl-yourProfile-items {
  width: 100%;
}

.bl-yourProfile-items .bl-yourProfile-btn {
  text-align: right;
}

.bl-yourProfile-message {
  border-top: 1px solid #ddd;
  padding-top: 2rem;
}

.border-note {
  position: relative;
  font-size: 1.4rem;
  margin-top: 3rem;
  z-index: 1;
}

.border-note span {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: .5rem;
}

.border-note::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
}

@media print, screen and (min-width: 641px) {
  .bl-yourProfile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media print, screen and (min-width: 769px) {
  .bl-yourProfile-img {
    padding-right: 3rem;
  }
}

/* プロフ画像D&D プレビュー */
.change-image-wrap {
  position: relative;
  width: 150px;
  height: 150px;
}

.change-image-wrap .input-image,
.change-image-wrap .drop-image,
.change-image-wrap .show-db-image {
  position: absolute;
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.change-image-wrap .input-image {
  z-index: 3;
  opacity: 0;
}

.change-image-wrap .drop-image {
  z-index: 1;
}

.change-image-wrap .show-db-image {
  z-index: 0;
}

/* プロフ画像変更モーダル*/
.bl-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.bl-modal-bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.bl-modal-content {
  background: #fff;
  left: 50%;
  padding: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
}

.bl-modal-content input[type="submit"] {
  background: #333;
  margin-top: 1rem;
}

@media print, screen and (min-width: 769px) {
  .bl-modal-content {
    padding: 40px;
    width: 30%;
  }
}

.img-wrapper {
  width: 100px;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 100px;
  border-radius: 50%;
}

.img-wrapper > img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.img-wrapper.small {
  width: 50px;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 50px;
}

.img-wrapper.small > img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.img-wrapper.x-small {
  width: 30px;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 30px;
}

.img-wrapper.x-small > img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

/* myレッスン create page */
.ly-flex {
  width: 100%;
}

.ly-flex .bl-flex-item {
  width: 100%;
}

@media print, screen and (min-width: 769px) {
  .ly-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .ly-flex .bl-flex-item {
    width: 48%;
  }
}

/* lesson */
.bl-lessonCard {
  border: 1px solid #ddd;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.bl-lessonCard-title {
  font-weight: bold !important;
  padding: 1rem 1rem .5rem;
}

.bl-lessonCard-body {
  padding: .5rem 1rem;
}

.bl-lessonCard-plan {
  margin-top: auto;
  padding: .5rem 1rem 1rem;
}

.price-item {
  display: inline-block;
  padding: .5rem 1rem;
  border: 1px solid #333;
  border-radius: 3px;
}

.bl-lessonCard-minute {
  font-weight: bold;
  color: tomato;
}

.bl-lessonCard-editBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bl-lessonCard-editBtn .bl-lessonCard-edit {
  color: blue;
}

@media print, screen and (min-width: 769px) {
  .bl-lessonCard-unit.page-usertop,
  .bl-lessonCard-unit.page-reservation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .bl-lessonCard-unit.page-usertop label,
  .bl-lessonCard-unit.page-reservation label {
    display: block;
  }
  .bl-lessonCard-unit.page-usertop .bl-lessonCard,
  .bl-lessonCard-unit.page-reservation .bl-lessonCard {
    width: calc( (100% - 2rem) / 2);
  }
  .bl-lessonCard-unit.page-usertop .bl-lessonCard:not(:nth-of-type(2n)),
  .bl-lessonCard-unit.page-reservation .bl-lessonCard:not(:nth-of-type(2n)) {
    margin-right: .9rem;
  }
}

/* schedule表示エリア */
table th,
table td {
  font-size: 1.6rem;
}

input[type="radio"] {
  display: block;
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
}

table.schedule-noInput input[type="checkbox"] {
  display: none;
  pointer-events: none;
}

.table-clossTable {
  height: 45vh;
  overflow-y: auto;
  border: 1px solid #eee;
}

.table-clossTable .headerSticky thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.bl-btnWrapper {
  margin-top: 2rem;
  text-align: center;
}

/* マイメニュー内　divで作り直し*/
.my-tab-btnWrap {
  text-align: right;
}

.bl-my-menu {
  padding: 0rem;
}

.bl-my-menu h3 {
  font-weight: bold !important;
}

.bl-my-menu i {
  margin-right: 1rem;
}

.bl-my-menu-item {
  padding: 2rem;
}

.bl-my-menu-item.seito {
  background-color: #FEFAFE;
}

.bl-my-menu-item.seito h3 {
  color: #a868a8;
}

.bl-my-menu-item.sensei {
  background-color: #F9FFFF;
}

.bl-my-menu-item.sensei h3 {
  color: #74abab;
}

.bl-my-menu-item.follow {
  background-color: #FFFFE8;
}

.bl-my-menu-item.follow h3 {
  color: #a1a164;
}

.bl-my-menu-content.my-booking {
  max-height: 30vh;
  overflow-y: scroll;
}

.bl-my-menu-content.my-student {
  max-height: 30vh;
  overflow-y: scroll;
}

@media print, screen and (min-width: 769px) {
  .bl-my-menu {
    padding: 2rem;
  }
}

/* 予約済みレッスン内容表示エリア */
.myRservation {
  display: block;
  padding: 1rem;
  margin-bottom: 1rem;
  white-space: nowrap;
  /* 折り返されないように */
  overflow-x: auto;
  /* 横スクロール */
  -webkit-overflow-scrolling: touch;
}

.myRservation a {
  text-decoration: underline;
}

.myRservation th {
  font-weight: bold;
  padding: 1rem;
}

.myRservation td {
  padding: 1rem;
}

.myRservation tbody tr:nth-child(odd) {
  background: #eee;
}

/* profile 編集*/
.profile-edit label {
  font-size: 2rem;
  text-align: left;
}

.el-message-move {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
}

.el-message-move p {
  position: absolute;
  -webkit-animation: move-down 1.5s ease-in-out infinite;
          animation: move-down 1.5s ease-in-out infinite;
  background: lightyellow;
  padding: .5rem;
}

@-webkit-keyframes move-down {
  0% {
    top: -10%;
  }
  50% {
    top: 10%;
  }
  100% {
    top: -10%;
  }
}

@keyframes move-down {
  0% {
    top: -10%;
  }
  50% {
    top: 10%;
  }
  100% {
    top: -10%;
  }
}

/* side-bar*/
.sidebar-item .el-btn:not(:first-child) {
  margin-top: 1rem;
}

td.reserve-ok {
  background: skyblue;
}

td.reserved {
  background: lightgray;
}

/**
* スケジュール編集画面
*/
.bl-schedule.page-editSchedule td {
  padding: 0;
}

.bl-schedule.page-editSchedule input[type="checkbox"] {
  display: block;
  opacity: 1;
  -webkit-appearance: auto !important;
     -moz-appearance: auto !important;
          appearance: auto !important;
  padding: 5px !important;
}

.bl-schedule.page-editSchedule label {
  position: relative;
  display: block;
  padding: 10px 6px;
  height: 35px;
}

.bl-schedule.page-editSchedule label:hover {
  cursor: pointer;
}

.bl-schedule.page-editSchedule label::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: -1px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #ddd;
}

.bl-schedule.page-editSchedule label.clicked::after {
  content: "";
  display: block;
  width: 20px;
  height: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 3px solid tomato;
  border-left: 3px solid tomato;
  position: absolute;
  top: 50%;
  left: 50%;
  /*箱を斜めに傾けてチェック表示にする*/
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg) translateY(-50%);
      transform: rotate(-45deg) translateY(-50%);
}

/**
* 予約画面
*/
.reservation_step2 {
  margin-top: 2rem;
}

.page-reservation .bl-lessonCard {
  background: #eee;
  color: #bbb;
  -webkit-transition: .2s;
  transition: .2s;
}

.page-reservation .bl-lessonCard:hover {
  background: #fff;
  color: #333;
  cursor: pointer;
}

.page-reservation .bl-lessonCard.checked {
  background: #fff;
  color: #333;
}

.page-reservation table th {
  text-align: center;
}

.page-reservation table tbody tr {
  border-top: 1px solid #eee;
}

.page-reservation table tbody tr:last-child {
  border-bottom: 1px solid #eee;
}

.page-reservation table td {
  text-align: center;
  border-left: 1px solid #eee;
}

.page-reservation table td:last-child {
  border-right: 1px solid #eee;
}

.bl-mTB-box {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mihon {
  display: inline-block;
  background: skyblue;
  margin-right: 1rem;
}

.mihon.mihon-reserved {
  background: #ddd;
}

.mihon.mihon-disabled {
  background: #fff;
  border: 1px solid #333;
}

.page-reservation table input[type=checkbox] {
  opacity: 0;
  display: block;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

.page-reservation table input[type=checkbox]:hover {
  cursor: pointer;
}

.page-reservation table input[type=checkbox]:checked {
  background: tomato;
}

.page-reservation table .reserve-ok:not(.reserved):hover {
  cursor: pointer !important;
}

.page-reservation table td.reserve-ok.clicked {
  background: tomato;
}

/* 掲示板menu周り */
.post-menu {
  text-align: right;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.post-menu li {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 2px;
}

.post-menu li i {
  margin-right: .7rem;
  color: #EE5511;
}

.post-menu li:nth-of-type(2n) i {
  color: #11ABED;
}

.post-menu li:not(:last-child) {
  margin-right: 2rem;
}

.post-menu li:hover {
  color: inherit;
}

.post-content.card-body {
  padding: 2rem;
}

.post {
  position: relative;
}

.post .post-editBtn {
  font-size: 14px;
  position: absolute;
  right: 0;
  top: 1rem;
}

.post .post-editBtn a {
  color: #658CFF;
}

.post-image {
  position: relative;
  margin-right: 1.5rem;
}

.post-image .img-wrapper {
  padding-top: 50px;
}

.post-image .post-user-name {
  position: absolute;
  left: 70px;
  top: 0;
  font-size: 16px;
  line-height: 1.2;
}

.post-body {
  width: 100%;
}

.post-title {
  font-weight: bold !important;
  font-size: 1.8rem;
}

.post-content {
  font-size: 1.8rem;
  padding-top: .5rem;
}

.post-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1rem;
  font-size: 1.4rem;
}

.post-info i {
  margin-right: 1rem;
}

.comment {
  width: 100%;
}

.comment .btn {
  background: #323232;
  color: #fff;
  font-weight: bold;
}

.comment .comment-title {
  font-size: 2rem;
  padding-top: 2rem;
}

.comment-item {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.comment-time {
  font-size: 1.2rem;
}

@media print, screen and (min-width: 769px) {
  .post-title {
    font-size: 2rem;
  }
  .post-menu {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
  .post-content.card-body {
    padding: 2rem 4rem;
  }
  .post .card-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .post-image {
    margin-right: 3rem;
    width: 83px;
  }
  .post-image .img-wrapper {
    padding-top: 50px;
    margin: auto;
  }
  .post-image .post-user-name {
    position: static;
    text-align: center;
    font-size: 1vw;
  }
  .comment-item {
    padding-top: 2rem;
    margin-bottom: 2rem;
  }
  .comment-time {
    font-size: 1.4rem;
  }
}

.page_chat .pagination {
  display: none;
}

.chat .chat-item {
  overflow: hidden;
}

.chat dt {
  margin-bottom: 1rem;
}

.chat dd {
  margin-bottom: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.chat .message-image {
  float: left;
}

.chat .message-info {
  position: relative;
  font-size: 1.3rem;
  text-align: right;
}

.chat .message-isReaded {
  position: absolute;
  left: 0;
}

.chat .message-text {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  position: relative;
}

.chat .message-text a {
  color: #0645ad;
  text-decoration: underline;
}

.chat .message-text i {
  padding-right: .5rem;
}

.chat .message-text .not_read {
  position: absolute;
  display: inline-block;
  left: 3px;
  top: 3px;
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 5px;
}

.chat .message-file {
  color: gray;
}

.chat input[type="submit"].fileDownload_btn {
  color: inherit;
  padding: .2rem 1rem .2rem 0;
  background: transparent;
  color: blue;
}

.message-form {
  margin-top: 3rem;
}

.message-form .fileSend_wrap {
  position: relative;
}

.message-form .file {
  border: 0px transparent solid;
  width: 60%;
  padding-left: 45px;
}

.message-form .file_resetBtn {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  margin-left: auto;
  font-weight: bold;
  color: gray;
  cursor: pointer;
  line-height: 1;
}

.message-form textarea {
  padding: 2rem;
}

.is_readed {
  position: relative;
  top: -2rem;
}

@media print, screen and (min-width: 769px) {
  .chat .chat-name {
    font-size: 1vw;
  }
  .chat dt {
    position: static;
    width: 80px;
    float: left;
  }
  .chat dd {
    padding-left: 100px;
    margin-bottom: 2rem;
  }
  .chat .message-image {
    float: none;
  }
  .chat .message-date {
    font-size: 1.2rem;
  }
  .chat .message-text {
    padding: 2rem;
    position: relative;
    display: block;
    padding: 7px 10px;
    max-width: 100%;
    border: solid 1px #ddd;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 5px;
  }
  .chat .message-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -24px;
    margin-top: -13px;
    border: 12px solid transparent;
    border-right: 12px solid #FFF;
    z-index: 2;
  }
  .chat .message-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -26px;
    margin-top: -14px;
    border: 13px solid transparent;
    border-right: 13px solid #ddd;
    z-index: 1;
  }
  .chat .message-info {
    font-size: 1.4rem;
  }
}

.page-load-status {
  display: none;
  /* hidden by default */
  padding-top: 20px;
  border-top: 1px solid #DDD;
  text-align: center;
  color: #777;
}

/**********
  トップページ
*/
.test-account {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  font-size: 1.6rem;
  text-align: left;
  font-weight: normal;
  border: 1px solid #eee;
  max-width: 216px;
  margin-left: auto;
  margin-right: auto;
}

.bl-section.bl-topSyoukai {
  padding: 1.5rem;
  border: 3px solid #eee;
  border-radius: 5px;
  margin-top: 3rem;
  margin-bottom: 5rem;
  line-height: 2;
}

.bl-section.bl-topSyoukai .cl-blue {
  color: blue;
}

.bl-section.bl-topSyoukai .cl-red {
  color: red;
}

.bl-section.bl-topSyoukai a {
  text-decoration: underline;
}

@media print, screen and (min-width: 960px) {
  .bl-section.bl-topSyoukai {
    padding: 2rem;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.bl-section.bl-topSyoukai .bl-flag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 2rem;
  height: auto;
  /* for safari*/
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /* for safari*/
}

.bl-section.bl-topSyoukai .bl-flag img:first-child {
  margin-right: 2rem;
}

.bl-section.bl-topSyoukai .bl-flag img {
  width: 100px;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
}

.bl-section {
  padding: 10px 0;
}

.bl-sectionTitle {
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding: 1rem 2rem;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  background: #67d7e5;
}

.mv {
  position: relative;
  top: -20px;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 100vh;
}

.mv > img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.mv .mv-body {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  font-size: 20px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 20px 30px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}

.mv .mv-bodyContent {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mv .mv-btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: tomato;
}

@media print, screen and (min-width: 769px) {
  .mv {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-top: 100vh;
  }
  .mv > img {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .mv .mv-body {
    font-size: 24px;
    padding: 30px 50px;
    background: transparent;
  }
  .mv .mv-bodyContent {
    position: absolute;
    top: 40%;
    left: 70%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
  }
  .mv .mv-btn {
    margin-top: 4rem;
    padding: 1.5rem 3rem;
  }
}

@media print, screen and (min-width: 1025px) {
  .mv .mv-body {
    right: 50px;
    font-size: 33px;
    padding: 30px 50px;
  }
  .mv .mv-btn {
    font-size: 2.6rem;
    margin-top: 4rem;
    padding: 1.5rem 3rem;
  }
}

/* 先生一人分のカード **/
.t-content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.t-content1 {
  width: 110px;
  margin-right: 1rem;
}

.t-content2 {
  width: calc(100% - 110px);
  padding-left: 1rem;
}

.t-content3 {
  margin-right: 1rem;
}

.bl-lessonCard-unit.page-common-top {
  margin-top: 1rem;
}

.bl-lessonCard-unit.page-common-top .bl-lessonCard {
  width: 100%;
}

.bl-lessonCard-unit.page-common-top .bl-lessonCard-plan {
  margin-top: auto;
}

.bl-lessonCard-unit.page-common-top .price-min {
  font-size: smaller;
  color: #454545;
}

@media print, screen and (min-width: 641px) {
  .bl-lessonCard-unit.page-common-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .bl-lessonCard-unit.page-common-top .bl-lessonCard {
    width: 220px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .bl-lessonCard-unit.page-common-top .bl-lessonCard:first-child {
    margin-right: 1rem;
  }
}

@media print, screen and (min-width: 641px) and (min-width: 960px) {
  .t-card > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .t-content-left {
    width: 50%;
  }
  .t-content2 {
    width: calc(100% - 110px);
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .t-content3 {
    width: 50%;
  }
}

/* このサイトについて ページ */
.el-btn.el-btn-register {
  background-color: tomato;
}

.about-section {
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.about-section a {
  color: blue;
  text-decoration: underline;
}

.about-lv2Title {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.about-lv2Title::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: inline-block;
  width: 1rem;
  height: 100%;
  background: #26C6DA;
}

.about-lv3Title {
  font-size: 2.2rem;
  font-weight: bold;
  color: 　 #26C6DA;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.about-point {
  background-color: #F9FFFF;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.about-point i {
  margin-left: .5rem;
  margin-right: .5rem;
}

.about-video {
  width: 600px;
  max-width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #eee;
}

.about-list {
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 2rem;
  background: #F9FFFF;
  color: #26c6da;
}

.about-list ul {
  list-style-type: disc;
  margin-left: 3rem;
}

.about-list ul span {
  color: #4c4f35;
}

/* Utility ------------ */
