.plan-top {
  padding: 40px 0 50px;
  position: relative;
  width: 100%;
  height: 85vh;
  max-height: 600px;
  background-color: #bde2eb;
  margin: 0 auto;
}
@media screen and (max-width: 780px) {
  .plan-top {
    background-color: #bde2eb;
    height: auto;
    max-height: none;
  }
}
.plan-top__title {
  font-size: 2rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #1EB8CE;
  max-width: 100%;
  margin: 0;
}
.plan-top__catch {
  text-align: center;
  font-size: 1.25rem;
  margin-top: 20px;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  .plan-top__catch {
    margin-top: 30px;
    text-align: left;
  }
}
.plan-top__scroll-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding: 0 15px;
}
.plan-top__scroll-btns.sp {
  display: none;
}
@media screen and (max-width: 780px) {
  .plan-top__scroll-btns.sp {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    margin-top: 30px;
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 15px;
  }
  .plan-top__scroll-btns.sp small {
    font-size: 0.6875rem;
    margin-right: 8px;
    text-align: right;
    display: block;
    line-height: 0.4;
  }
}
@media screen and (max-width: 780px) {
  .plan-top__scroll-btns.pc {
    display: none;
  }
}
.plan-top__scroll-btn {
  position: relative;
  background: url("../images/plans/matomaru.png"), #fff;
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: center center;
  width: calc(20% - 30px);
  padding-top: calc(20% - 30px);
  border-radius: 20px;
  display: block;
}
@media screen and (max-width: 780px) {
  .plan-top__scroll-btn {
    padding: 15px 0;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    width: calc(50% - 10px);
    border: 3px solid;
    background-color: #fff;
    box-sizing: border-box;
    background-size: 50%;
    color: #454545;
    text-align: center;
  }
  .plan-top__scroll-btn.app {
    border-color: #F58C8C;
  }
  .plan-top__scroll-btn.mail {
    border-color: #8ECEFC;
  }
  .plan-top__scroll-btn.line {
    border-color: #72BD44;
  }
  .plan-top__scroll-btn.renkei {
    border-color: #F171C6;
  }
  .plan-top__scroll-btn.support {
    border-color: #EBBA0B;
  }
}
.plan-top__cont-ttl {
  font-size: 1.5625rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1.3;
}
.plan-top__cont-ttl span {
  display: block;
  font-size: 1rem;
}
.plan-top__cont-ttl small {
  font-size: 0.75rem;
  text-align: center;
  display: block;
  line-height: 1.3;
}
.plan-top__scroll-color {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  left: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  padding: 4px 22px;
  color: #fff;
  border-radius: 30px;
  font-size: 1.0625rem;
  font-weight: bold;
  box-shadow: 0px 5px 4px 0px #c0cbd3;
}
.plan-top__scroll-color.app {
  background-color: #F58C8C;
}
.plan-top__scroll-color.mail {
  background-color: #8ECEFC;
}
.plan-top__scroll-color.line {
  background-color: #72BD44;
}
.plan-top__scroll-color.renkei {
  background-color: #F171C6;
}
.plan-top__scroll-color.support {
  background-color: #EBBA0B;
}
.plan-top__btn-outer {
  position: static;
  margin-top: 50px;
}
@media screen and (max-width: 780px) {
  .plan-top__btn-outer {
    margin-top: 30px;
    width: 100%;
  }
  .plan-top__btn-outer .btn_01::after {
    right: 30px;
  }
}
.plan-top__btn {
  width: 40%;
  margin: 0 auto;
}
@media screen and (max-width: 780px) {
  .plan-top__btn {
    width: 250px;
  }
}
.plan-top__btn a {
  transition: 0.4s;
  display: block;
  background: white;
  width: 100%;
  padding: 10px 0;
  line-height: 50px;
  border-radius: 100vh;
  text-align: center;
  border: solid 3px;
  border-color: #ED7D31;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
@media screen and (max-width: 780px) {
  .plan-top__btn a {
    padding: 7px 0;
  }
}
.plan-top__btn a:hover {
  color: #fff;
  background: #e27518;
  border-color: transparent;
  opacity: 1;
}
.plan-top__btn img {
  vertical-align: sub;
  margin-left: 10px;
}

.scroll {
  position: fixed;
  top: 70px;
  left: 0;
  z-index: 10000;
  width: 100%;
  transition: 0.3s;
  transform: translateY(80%);
  box-shadow: 0 5px 5px 0px rgba(138, 138, 150, 0.4);
  opacity: 0;
  pointer-events: none;
  margin-top: 0;
}
.scroll.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  background-color: rgba(242, 242, 242, 0.9);
}
@media screen and (max-width: 780px) {
  .scroll.show {
    top: 70px;
  }
}
.scroll__lists {
  display: flex;
  justify-content: space-between;
  box-shadow: 0 2px 2px 1px #c8c8c8;
}
@media screen and (max-width: 780px) {
  .scroll__lists {
    overflow-x: scroll;
    height: 45px;
    font-size: 0.875rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .scroll__lists::-webkit-scrollbar {
    display: none;
  }
  .scroll__lists::-webkit-scrollbar {
    height: 3px;
    background-color: #ededed;
  }
  .scroll__lists::-webkit-scrollbar-thumb {
    background-color: #c0c0c0;
    border-radius: 3px;
  }
}
.scroll__list {
  /* width: calc(100% / 5); */
  width: 25%;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.2s;
  font-size: 0.875rem;
}
@media screen and (max-width: 780px) {
  .scroll__list {
    width: auto;
    height: 45px;
  }
}
.scroll__list small {
  font-size: 0.625rem;
  display: block;
  line-height: 0.3;
  text-align: right;
  margin-right: 20px;
}
.scroll__list:not(:last-child) {
  border-right: 2px solid #cecece;
}
.scroll__list:hover.app-plan a {
  border-bottom: 4px solid #F58C8C;
  color: #F58C8C;
}
.scroll__list:hover.mail-plan a {
  border-bottom: 4px solid #8ECEFC;
  color: #8ECEFC;
}
.scroll__list:hover.line-plan a {
  border-bottom: 4px solid #72BD44;
  color: #72BD44;
}
.scroll__list:hover.renkei-plan a {
  border-bottom: 4px solid #F171C6;
  color: #F171C6;
}
.scroll__list:hover.support-plan a {
  border-bottom: 4px solid #EBBA0B;
  color: #EBBA0B;
}
.scroll__list a {
  padding-top: 10px;
  display: block;
  text-decoration: none;
  height: 45px;
  transition: 0.3s;
  margin: 0 auto;
}
@media screen and (max-width: 780px) {
  .scroll__list a {
    padding-top: 7px;
    width: 115px;
    height: 45px;
  }
}
@media screen and (max-width: 1080px) {
  .scroll__list a {
    width: 195px;
  }
}
.scroll__list.app-plan a.active {
  border-bottom: 4px solid #F58C8C;
  color: #F58C8C;
}
.scroll__list.mail-plan a.active {
  border-bottom: 4px solid #8ECEFC;
  color: #8ECEFC;
}
.scroll__list.line-plan a.active {
  border-bottom: 4px solid #72BD44;
  color: #72BD44;
}
.scroll__list.renkei-plan a.active {
  border-bottom: 4px solid #F171C6;
  color: #F171C6;
}
.scroll__list.support-plan a.active {
  border-bottom: 4px solid #EBBA0B;
  color: #EBBA0B;
}
@media screen and (max-width: 780px) {
  .scroll__list :hover.app-plan a {
    border-bottom: 4px solid #F58C8C;
    color: #F58C8C;
  }
  .scroll__list :hover.mail-plan a {
    border-bottom: 4px solid #72BD44;
    color: #72BD44;
  }
  .scroll__list :hover.line-plan a {
    border-bottom: 4px solid #72BD44;
    color: #72BD44;
  }
  .scroll__list :hover.renkei-plan a {
    border-bottom: 4px solid #F171C6;
    color: #F171C6;
  }
  .scroll__list :hover.support-plan a {
    border-bottom: 4px solid #EBBA0B;
    color: #EBBA0B;
  }
}

.plan {
  padding-bottom: 50px;
}
.plan::before {
  content: "";
  height: 125px;
  visibility: hidden;
  display: block;
}
@media screen and (max-width: 780px) {
  .plan::before {
    height: 65px;
    visibility: visible;
  }
}
@media screen and (max-width: 780px) {
  .plan {
    padding: 0;
  }
}
.plan__title {
  font-size: 1.5625rem;
}
@media screen and (max-width: 780px) {
  .plan__title {
    padding-top: 50px;
  }
}
.plan__catch {
  margin-top: 20px;
}
@media screen and (max-width: 780px) {
  .plan__catch {
    margin-top: 10px;
    font-size: 1.125rem;
  }
}
.plan__main-box {
  margin-top: 50px;
}
@media screen and (max-width: 780px) {
  .plan__main-box {
    margin-top: 30px;
  }
}
.plan__main-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 780px) {
  .plan__main-top {
    flex-direction: column;
  }
}
.plan__main-top figure {
  width: 25%;
}
@media screen and (max-width: 780px) {
  .plan__main-top figure {
    width: 70%;
  }
}
.plan__main-txt {
  width: 72%;
  font-size: 1rem;
}
@media screen and (max-width: 780px) {
  .plan__main-txt {
    width: 100%;
    margin-top: 15px;
  }
}
.plan__main-txt span {
  font-weight: bold;
}
.plan__main-txt small {
  display: block;
  margin-top: 20px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 780px) {
  .plan__main-txt small {
    margin-top: 5px;
  }
}
.plan__caution {
  font-size: 1.0625rem;
  text-align: left;
  margin-top: 10px;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 780px) {
  .plan__caution {
    text-align: left;
    margin-top: 10px;
  }
}
.plan__caution span {
  color: #EA7240;
}
.plan__price {
  max-width: 60%;
  margin: 40px auto 0;
}
@media screen and (max-width: 780px) {
  .plan__price {
    max-width: 100%;
  }
}
.plan__price-outer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.plan__box {
  width: 42%;
}
@media screen and (max-width: 780px) {
  .plan__box {
    width: 45%;
  }
}
.plan__box dl {
  border: 2px solid #454545;
  padding: 20px 10px;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (max-width: 780px) {
  .plan__box dl {
    padding: 10px 5px;
  }
}
.plan__box dt {
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (max-width: 780px) {
  .plan__box dt {
    font-size: 1.125rem;
  }
}
.plan__box dd {
  font-weight: bold;
  font-size: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .plan__box dd {
    margin-top: 10px;
    font-size: 1.4375rem;
    line-height: 1.2;
  }
}
.plan__box dd span {
  font-size: 0.9375rem;
}
@media screen and (max-width: 780px) {
  .plan__box dd span {
    font-size: 0.75rem;
  }
}
.plan__box dd small {
  display: block;
  text-align: center;
  font-size: 0.9375rem;
}
@media screen and (max-width: 780px) {
  .plan__box dd small {
    font-size: 0.75rem;
  }
}
.plan__box-caution {
  font-size: 0.8125rem;
}
@media screen and (max-width: 780px) {
  .plan__box-caution {
    font-size: 0.75rem;
  }
}
.plan__plus {
  font-size: 2.5rem;
  color: #1EB8CE;
  font-weight: bold;
  margin-top: 40px;
}
@media screen and (max-width: 780px) {
  .plan__plus {
    font-size: 1.875rem;
    margin-top: 30px;
  }
}
.plan .top_btn_outer {
  position: static;
  margin: 60px auto 40px;
}
@media screen and (max-width: 780px) {
  .plan .top_btn_outer {
    position: unset;
    margin-bottom: 0;
  }
}
.plan__price-caution {
  text-align: center;
  font-size: 0.875rem;
  display: block;
  margin-top: 10px;
}
.plan--app {
  margin-top: 4px;
}
@media screen and (max-width: 780px) {
  .plan--app::before {
    margin-top: -65px;
  }
}
.plan--app, .plan--line, .plan--support {
  background-color: #fdfaf5;
}
@media screen and (max-width: 780px) {
  .plan--line::before, .plan--support::before {
    background-color: #F6FDFF;
  }
}
.plan--mail, .plan--renkei {
  background-color: #F6FDFF;
}
@media screen and (max-width: 780px) {
  .plan--mail::before, .plan--renkei::before {
    background-color: #fdfaf5;
  }
}
.plan--renkei {
  padding-bottom: 30px;
}

.support-menu {
  padding: 70px 0 50px;
}
.support-menu__title {
  text-align: center;
}
.support-menu__text {
  font-size: 1.0625rem;
  margin-top: 30px;
}
.support-menu__table {
  margin: 30px auto 0;
  background-color: #fff;
  border-collapse: collapse;
  width: 80%;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .support-menu__table {
    font-size: 0.8125rem;
    width: 100%;
  }
}
.support-menu__table th, .support-menu__table td {
  border: 1px solid #454545;
  padding: 14px 10px;
}
.support-menu__table th {
  background-color: #ffe2c0;
  text-align: center;
  font-weight: bold;
}
.support-menu__table td span {
  display: block;
  font-size: 0.875rem;
}
@media screen and (max-width: 780px) {
  .support-menu__table td {
    padding: 10px 3px;
  }
}
.support-menu__menu {
  width: 30%;
}
.support-menu__detail {
  width: 50%;
}
.support-menu__price {
  width: 20%;
}
.support-menu__detail-cnt {
  text-align: left;
}
.support-menu__link-txt {
  margin-top: 60px;
  font-weight: bold;
  text-align: center;
}
.support-menu .top_btn_outer {
  position: static;
  margin-top: 40px;
}/*# sourceMappingURL=plan.css.map */