@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap");
@media screen and (min-width: 1024px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://example.com/MaterialIcons-Regular.eot); /
  src: local("Material Icons"), local("MaterialIcons-Regular"),
    url(https://example.com/MaterialIcons-Regular.woff2) format("woff2"),
    url(https://example.com/MaterialIcons-Regular.woff) format("woff"),
    url(https://example.com/MaterialIcons-Regular.ttf) format("truetype");
}*/
body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  background-color: white;
}

main {
  margin: 0 auto 40px auto;
}

h1 {
  margin: 0;
}

/***********/
/* Layout */
/***********/
@media screen and (min-width: 1024px) {
  .ly-sm {
    max-width: 790px;
    margin: 0 auto;
  }
  .ly-md {
    max-width: 1018px;
    margin: 0 auto;
  }
  .ly-lg {
    max-width: 1220px;
    margin: 0 auto;
  }
}
/***********/
/* Utility */
/***********/
/* background color */
.bg--gray {
  background-color: #ecebeb;
}

.bg--lightgray {
  background-color: #f9f9f9;
}

.bg--skyblue {
  background-color: #5083d6;
}

.bg-lightblue {
  background-color: #2797b8;
}

.bg-lightpink {
  background-color: #e06c79;
}

/* font */
.font-white {
  color: #fff !important;
}

.font-gray {
  color: #3e3a39 !important;
}

.font-skyblue {
  color: #5083d6 !important;
}

.font-pink {
  color: #ee1d52 !important;
}

.font-bold {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.text-sm {
  font-size: 12px !important;
}

.text-sl {
  font-size: 16px;
}

.text-md {
  font-size: 18px;
}

.text-ml {
  font-size: 20px;
}

.text-lg {
  font-size: 24px;
}

.text-xl {
  font-size: 36px;
}

.line-h-1 {
  line-height: 1;
}

.line-h-1h {
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .text-left-pc {
    text-align: left !important;
  }
  .text-right-pc {
    text-align: right !important;
  }
  .text-sl-pc {
    font-size: 18px !important;
    line-height: 26px !important;
    font-weight: bold !important;
  }
  .text-m-pc {
    font-size: 20px;
  }
  .text-md-pc {
    font-size: 30px;
  }
  .text-ml-pc {
    font-size: 36px;
  }
  .text-lg-pc {
    font-size: 40px;
  }
}
.w-full {
  width: 100%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-50 {
  width: 50%;
}

.w-66 {
  width: 66.6666666667%;
}

.h-auto {
  height: auto;
}

@media screen and (min-width: 1024px) {
  .w-full-pc {
    width: 100%;
  }
  .w-50-pc {
    width: 50% !important;
  }
  .w-60-pc {
    width: 60% !important;
  }
  .w-66-pc {
    width: 66.6666666667%;
  }
  .w-75-pc {
    width: 75% !important;
  }
}
.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.justify-between {
  justify-content: space-between;
}

.justify-ceter {
  justify-content: center;
}

.items-center {
  align-items: center;
}

@media screen and (min-width: 1024px) {
  .flex-pc {
    display: flex !important;
  }
  .justify-between-pc {
    justify-content: space-between;
  }
  .items-baseline-pc {
    align-items: baseline;
  }
}
/* space */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.mx-7 {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-9 {
  margin-top: 2.25rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-11 {
  margin-top: 2.75rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-17 {
  margin-top: 4.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.ml-11 {
  margin-left: 2.75rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

@media screen and (min-width: 1024px) {
  .mt--18px-pc {
    margin-top: -18px;
  }
  .mt-3-pc {
    margin-top: 0.75rem;
  }
  .mt-8-pc {
    margin-top: 2rem;
  }
  .mt-10-pc {
    margin-top: 2.5rem;
  }
  .mt-18-pc {
    margin-top: 4.5rem !important;
  }
  .mt-90px-pc {
    margin-top: 90px;
  }
  .mb-3-pc {
    margin-bottom: 0.75rem;
  }
  .mr-6-pc {
    margin-right: 1.5rem;
  }
  .mr-15-pc {
    margin-right: 3.75rem;
  }
  .ml-3-pc {
    margin-left: 0.75rem;
  }
  .ml-5-pc {
    margin-left: 1.25rem;
  }
  .ml-6-pc {
    margin-left: 1.5rem;
  }
  .ml-7-pc {
    margin-left: 1.75rem;
  }
  .ml-160px-pc {
    margin-left: 160px;
  }
  .ml-255px-pc {
    margin-left: 255px;
  }
  .mx-8-pc {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .mx-auto-pc {
    margin-left: auto;
    margin-right: auto;
  }
  .pt-6-pc {
    padding-top: 1.5rem !important;
  }
  .pl-7-pc {
    padding-left: 1.75rem;
  }
  .pl-12-pc {
    padding-left: 3rem;
  }
}
.p-1 {
  padding: 0.25rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

/* border */
.border-lightblue {
  border-color: #2797b8 !important;
}

.border-lightpink {
  border-color: #e06c79 !important;
}

.border-dashed--lightgary {
  border-bottom: 2px dashed #aadceb;
}

.radius-tl10 {
  border-top-left-radius: 10px;
}

.radius-tr10 {
  border-top-right-radius: 10px;
}

.radius-bl10 {
  border-bottom-left-radius: 10px;
}

.radius-br10 {
  border-bottom-right-radius: 10px;
}

.border-sharp {
  border-bottom: 1px solid #000;
}

.border-sharp::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  background: #000;
  right: 6px;
  bottom: -2px;
  transform: rotateZ(-45deg);
}

/*************/
/* page */
/*************/
main > h1 {
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .p-instagram-image-worry-pc {
    width: 160px;
    height: fit-content;
    margin-top: -60px;
    margin-left: 108px;
    margin-right: 42px;
  }
  .p-instagram-image-arrow-pc {
    width: 84px;
    height: fit-content;
    margin-top: -50px;
    margin-left: auto;
    margin-right: 80px;
  }
  .problem__list span {
    display: block !important;
  }
}
/*************/
/* component */
/*************/
/* ploblem list */
.problem__list {
  line-height: 24px;
}

.problem__list span {
  display: inline;
  background-image: linear-gradient(to right, #aadceb, #aadceb 4px, transparent 4px, transparent 4px);
  background-size: 7px 2px;
  background-position: bottom;
  background-repeat: repeat-x;
  font-size: 16px;
  font-weight: 900;
  margin-right: 4px;
  margin-top: 2px;
}

/*
.problem__list::before {
  font-family: "Font Awesome 5 Free";
  content: "\f567";
  font-size: 16px;
  font-weight: 900;
  margin-right: 4px;
  margin-top: 2px;
}
*/
.problem__image {
  height: 180px;
}
@media screen and (max-width: 1023px) {
  .problem__image img {
    max-width: 100px;
  }
}

.problem__image img:first-child {
  left: 20%;
}

.problem__image > img + img {
  top: 30px;
  left: 60%;
}

/* marker */
.marker {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

/* button */
.button {
  background: transparent linear-gradient(90deg, #f26289 0%, #a065d4 100%) 0% 0% no-repeat padding-box;
  box-sizing: border-box;
  border-radius: 38px;
  position: relative;
}

.button::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 5%;
  margin-top: -4px;
}

/* heading */
.heading-underline::after {
  content: "";
  position: absolute;
  background-color: #5083d6;
  width: 50px;
  height: 4px;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

/* checked-list */
/*
.check-done::before {
  font-family: "Material Icons";
  content: "\e876";
  position: absolute;
  font-size: 16px;
  color: #3e3a39;
}
*/
/*
.checked-list::before {
  font-family: "Material Icons";
  content: "\e2e6";
  position: absolute;
  font-size: 16px;
  color: #3e3a39;
}
*/
.checked-list--skyblue::before {
  color: #5083d6 !important;
}

/* plan */
.plan h2 {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.plan .plan-content {
  border-left: 1px solid;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media screen and (min-width: 1024px) {
  /* ploblem list */
  .problem__list {
    font-size: 18px;
  }
  .problem__list::before {
    font-size: 24px;
    margin-right: 8px;
  }
  /* button */
  .button {
    width: 450px !important;
    height: 75px;
    line-height: 51px;
    transition: 300ms;
  }
  .button::before {
    width: 12px;
    height: 12px;
  }
  .button:hover {
    width: 480px !important;
    height: 80px;
    line-height: 55px;
  }
  /* heading */
  .heading-underline::after {
    bottom: -10px;
  }
  /* checked-list */
  .checked-list::before {
    font-size: 21px;
  }
  /* plan */
  .plan {
    width: 320px;
  }
  .plan .plan-content {
    height: calc(100% - 68px);
  }
  /* en */
  .en {
    margin-left: 8px;
  }
  .en::after {
    content: "(税込)";
    font-size: 10px;
    position: absolute;
    top: -10px;
    right: 5px;
  }
}
.plan-content {
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-content ul {
  flex-grow: 1;
}

.plan-btn {
  margin-top: 40px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}

.plan-btn .button {
  display: flex !important;
  width: 100% !important;
  height: 75px !important;
  flex-direction: column;
  line-height: 1.4;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.plan-btn .button:hover {
  height: 75px !important;
  transform: scale(1.02);
}

.plan-btn .button span {
  font-size: 18px;
}

.plan-btn .button::before {
  width: 10px !important;
  height: 10px !important;
}/*# sourceMappingURL=snsmovieschool.css.map */