@charset "UTF-8";


ul{
  padding-left: 0;
}

li{
  list-style: none;
}

/*---------------------------
フローティングメニュー
---------------------------*/

.floating__menu {
  display: none;
  opacity: 0;
  position: fixed;
  right: 20px;
  /*bottom: 0;*/
  bottom: -100px;
  width: 100px;
  margin: 0 0 0 auto;
  transition: bottom 0.5s, opacity 0.5s;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .floating__menu {
    right: 0;
    width: 100%;
  }
}

.floating__menu-list {
  border: 0px solid;
}
@media screen and (max-width: 767px) {
  .floating__menu-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.floating__menu-list--line {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: #00B900;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .floating__menu-list--line {
    width: 50%;
    height: 40px;
    margin-bottom: 0px;
    border-radius: 0px;
  }
}

.floating__menu-list--line:hover {
  background-color: #90ee90;
}

.floating__menu-list--form {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: #E384A6;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .floating__menu-list--form {
    width: 50%;
    height: 40px;
    margin-bottom: 0px;
    border-radius: 0px;
  }
}

.floating__menu-list--form:hover {
  background-color: #ffb6c1;
}

@media screen and (max-width: 767px) {
  .floating__menu--pc { display: none; }
}

.floating__menu-btn {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .floating__menu-btn {
    height: 40px;
    border-radius: 0px;
  }
}
