html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
hd,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
hd,
hgroup,
menu,
nav,
section {
  display: block;
}
html {
  font-size: 10px;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after {
  content: '';
  content: none;
}
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-family: 'Rubik', sans-serif;
  color: #333;
  background: #fff;
}
body {
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.1s ease;
}
a:hover {
  opacity: 0.7;
}
input {
  padding: 0;
}
.wrapper {
  padding: 34px 0 0;
}
@media only screen and (max-width: 1080px) {
  .wrapper {
    padding: 60px 0 0;
  }
}
.data-confirmation {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 65535;
  background: rgba(255,255,255,0.8);
  padding: 8px;
  width: 100%;
  display: none;
}
.data-confirmation-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.data-confirmation-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.data-confirmation-button {
  font-size: 14px;
  background: #f7ccd4;
  color: #333;
  padding: 2px 0;
  width: 60px;
  margin-left: 8px;
  text-align: center;
  border-radius: 3px;
  font-family: 'Rubik', sans-serif;
  flex-shrink: 0;
  transition: all 0.1s ease;
}
.data-confirmation-button:hover {
  opacity: 0.7;
}
.hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  background: #f2f244;
  z-index: 65535;
}
@media only screen and (max-width: 1080px) {
  .hd {
    height: auto;
    padding: 10px;
  }
}
.hd-inner {
  display: flex;
  justify-content: space-between;
  width: 1080px;
  margin: 0 auto;
  height: 100%;
}
@media only screen and (max-width: 1080px) {
  .hd-inner {
    width: 100%;
  }
}
.hd-col {
  font-size: 14px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  line-height: 34px;
  display: flex;
}
.hd-col.sub:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (max-width: 1080px) {
  .hd-col {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
@media only screen and (max-width: 1080px) {
  .hd-col.hide-mb {
    display: none;
  }
}
.hd-col-item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1080px) {
  .hd-col-item {
    line-height: 20px;
  }
}
.hd-col-item + .hd-col-item {
  margin-left: 8px;
}
@media only screen and (max-width: 1080px) {
  .hd-col-item + .hd-col-item {
    margin-left: 0;
    margin-top: 4px;
  }
}
.hd-col-item-sub {
  display: flex;
  align-items: center;
  line-height: 20px;
}
.hd-col-item-sub + .hd-col-item-sub {
  margin-left: 8px;
}
.ft {
  background: #f2f244;
}
.ft-inner {
  width: 1080px;
  margin: 0 auto;
  padding: 20px 0;
}
@media only screen and (max-width: 1080px) {
  .ft-inner {
    width: auto;
  }
}
.ft-copy {
  font-size: 13px;
  text-align: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.ft-copy:not(:first-child) {
  margin-top: 20px;
}
.ft-links {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1080px) {
  .ft-links {
    padding: 0 10px;
    flex-direction: column;
  }
}
.ft-link-item {
  display: inline-block;
  position: relative;
  padding: 0 0 0 15px;
  font-size: 16px;
  line-height: 1.2;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.ft-link-item:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 3px;
  height: 100%;
  background: #333;
}
.ft-link-item+.ft-link-item {
  margin-left: 20px;
}
@media only screen and (max-width: 1080px) {
  .ft-link-item+.ft-link-item {
    margin-left: 0;
    margin-top: 6px;
  }
}
.ft-link-name {
  font-size: 13px;
  margin-bottom: 10px;
  padding-left: 12px;
  position: relative;
}
.ft-link-hd {
  font-size: 16px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
}
.ft-link-hd:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  content: "";
  background: #333;
}
.main {
  margin-bottom: 150px;
  padding-top: 20px;
  font-size: 16px;
}
@media only screen and (max-width: 1080px) {
  .main {
    width: auto;
    margin-bottom: 80px;
  }
}
.about {
  display: flex;
  align-items: center;
  background: url("/wall.png") repeat;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 1080px) {
  .about {
    background-size: 60%;
  }
}
.about-inner {
  width: 1080px;
  margin: 0 auto;
  background: rgba(255,255,255,0.8);
  padding: 40px 20px 20px;
}
.about-logo {
  width: 80%;
  max-width: 420px;
  height: auto;
  margin: 0 auto 10px;
}
.about-logo img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.about-text {
  width: 100%;
  line-height: 1.8;
  font-size: 20px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
@media only screen and (max-width: 1080px) {
  .about-text {
    font-size: 16px;
  }
}
.about-text em {
  font-weight: bold;
  text-shadow: 0 0 1px #f2f244;
}
.tool-content {
  margin-top: 50px;
}
.tool-content p {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tool-content code {
  display: block;
  width: 100%;
  min-height: 100px;
  background: #e6f9e6;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px;
  font-family: 'IBM Plex Mono', monospace;
}
.tool-content ul:not(:first-child) {
  margin-top: 40px;
}
.tool-content li {
  padding-left: 20px;
  position: relative;
}
.tool-content li:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  content: "";
  width: 5px;
  height: 5px;
  background: #ea5b76;
}
.tool-content figure:empty {
  width: 100%;
  height: 220px;
  background: #d2d2d2;
}
.tool-content *:not(:first-child) {
  margin-top: 20px;
}
.lessons {
  width: 1080px;
  margin: 0 auto;
}
@media only screen and (max-width: 1080px) {
  .lessons {
    width: auto;
  }
}
.lessons + .lessons {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px dashed #aaa;
}
.lessons-list {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1080px) {
  .lessons-list {
    flex-direction: column;
    margin: 0 10px;
  }
}
.lessons-description {
  font-size: 14px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  text-align: center;
  width: 1080px;
  margin: 0 auto 20px;
}
.lesson {
  width: 48%;
  padding: 12px;
  background: #fcffcf;
  position: relative;
  border-radius: 3px;
}
@media only screen and (max-width: 1080px) {
  .lesson {
    width: auto;
    margin-top: 10px;
  }
}
.lesson.tool {
  background: #fff2cf;
}
.lesson:not(:nth-child(2n)) {
  margin-right: 4%;
}
@media only screen and (max-width: 1080px) {
  .lesson:not(:nth-child(2n)) {
    margin-right: 0;
  }
}
.lesson:nth-child(n+3) {
  margin-top: 30px;
}
@media only screen and (max-width: 1080px) {
  .lesson:nth-child(n+3) {
    margin-top: 10px;
  }
}
.lesson[data-done="true"] {
  border: 1px solid #22d01f;
}
.lesson[data-done="true"]:before {
  position: absolute;
  top: 6px;
  right: 15px;
  width: 6px;
  height: 18px;
  content: "";
  background: transparent;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #22d01f #22d01f transparent;
  transform: rotate(32deg);
}
@media only screen and (max-width: 1080px) {
  .lesson[data-done="true"]:before {
    display: none;
  }
}
.lesson-link-area {
  display: flex;
}
.lesson-image {
  width: 100px;
  height: 100px;
  border-radius: 3px;
}
.lesson-image:empty {
  background: #ddd;
}
.lesson-info {
  width: 100%;
}
.lesson-title {
  font-size: 20px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  margin-bottom: 8px;
  padding: 0 0 8px;
  border-bottom: 1px solid #888;
}
.lesson-desc {
  font-size: 16px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: #888;
}
.article {
  width: 1080px;
  margin: 0 auto;
}
@media only screen and (max-width: 1080px) {
  .article {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.article-hd {
  margin-bottom: 10px;
}
.article-title {
  font-size: 20px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  line-height: 30px;
  border-bottom: 1px solid #aaa;
  margin-bottom: 20px;
  padding: 0 0 5px 0;
}
@media only screen and (max-width: 1080px) {
  .article-title {
    text-align: center;
    margin-bottom: 10px;
  }
}
.article-goal {
  font-size: 16px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.article-sub-title {
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
  padding-left: 25px;
}
@media only screen and (max-width: 1080px) {
  .article-sub-title {
    margin-bottom: 10px;
    padding-left: 15px;
    font-size: 16px;
  }
}
.article-sub-title:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 5px;
  height: 100%;
  background: #333;
}
.article-goal-text p:before {
  content: "・";
  display: inline;
}
.code-pane {
  position: relative;
}
@media only screen and (max-width: 1080px) {
  .code-pane {
    display: flex;
    flex-direction: column;
  }
}
.code {
  width: 100%;
  height: 500px;
  padding: 15px;
  border: 1px solid #f7ccd4;
  border-radius: 3px;
  font-size: 16px;
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1.8;
  position: relative;
  z-index: 29;
  vertical-align: top;
}
.code:focus {
  background: #e6f9e6;
}
.code[data-annotation="on"] {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: annotation_1;
          animation-name: annotation_1;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 3;
          animation-iteration-count: 3;
}
.code_helper {
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  border: 1px solid #f7ccd4;
  border-left: none;
  font-size: 13px;
  background: rgba(252,255,207,0.8);
  z-index: 32;
}
.code_helper[data-annotation="on"] {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: annotation_2;
          animation-name: annotation_2;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 3;
          animation-iteration-count: 3;
}
.code_helper a {
  color: #ea5b76;
}
@media only screen and (max-width: 1080px) {
  .code_helper {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    height: auto;
    border: none;
  }
}
.code_helper_nav {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
@media only screen and (max-width: 1080px) {
  .code_helper_nav {
    padding: 4px 0;
  }
}
.code_helper_nav_item {
  line-height: 18px;
  height: 18px;
  font-size: 13px;
}
.code_helper_content {
  padding: 10px;
}
.code_helper_chunk {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.code_helper_chunk + .code_helper_chunk {
  margin-top: 15px;
}
.code_helper_chunk_title {
  display: inline-block;
  background: #fff;
  padding: 2px 4px;
  border-radius: 3px;
  border: 1px solid #ddd;
}
.code_helper_chunk_text {
  padding-top: 5px;
  border-top: 1px dashed #aaa;
  margin-top: 5px;
}
.code_helper_chunk_text img {
  width: 100%;
  height: auto;
  margin-top: 10px;
  border: 1px solid #ddd;
}
.code_validation {
  position: absolute;
  bottom: 1px;
  right: 400px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  z-index: 32;
}
@media only screen and (max-width: 1080px) {
  .code_validation {
    display: none;
  }
}
.code_validation_icon {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  position: relative;
}
.code_validation_icon.ok {
  background: #ccf7d1;
}
.code_validation_icon.ng {
  background: #f7ccd4;
}
.code_validation_icon.ng:before {
  position: absolute;
  top: 5px;
  left: 13px;
  content: "";
  width: 5px;
  height: 13px;
  background: #fff;
  border-radius: 1px;
}
.code_validation_icon.ng:after {
  position: absolute;
  top: 20px;
  left: 13px;
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 1px;
}
.code_validation_icon.ok:before {
  position: absolute;
  top: 7px;
  left: 16px;
  content: "";
  width: 3px;
  height: 18px;
  background: #0400ff;
  transform: rotate(40deg);
}
.code_validation_icon.ok:after {
  position: absolute;
  top: 16px;
  left: 8px;
  content: "";
  width: 3px;
  height: 6px;
  background: #0400ff;
  transform: rotate(130deg);
}
.code_validation_message {
  font-size: 11px;
  padding: 0 5px;
  color: #999;
}
.guide-pane {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
@media only screen and (max-width: 1080px) {
  .guide-pane {
    flex-direction: column-reverse;
  }
}
.article-guide-nav {
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1080px) {
  .article-guide-nav {
    margin: 10px auto 0;
  }
}
.article-guide-text {
  width: calc(100% - 200px - 20px);
  font-size: 16px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2px 5px;
}
@media only screen and (max-width: 1080px) {
  .article-guide-text {
    width: auto;
  }
}
.article-guide-text[data-annotation="on"] {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: annotation_0;
          animation-name: annotation_0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 3;
          animation-iteration-count: 3;
}
.guide-alert {
  color: #e62424;
  margin: 10px 0;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 16px;
  background: #cecece;
  padding: 10px;
  border-radius: 3px;
}
.row.sample {
  background: #fdffd8;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 5px 10px;
  letter-spacing: 1px;
  font-family: 'IBM Plex Mono', monospace;
}
.row:not(:first-child) {
  margin-top: 10px;
}
.button {
  padding: 7px 0;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #f7ccd4;
  border-radius: 3px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.button.compact {
  width: 50%;
  max-width: 400px;
}
@media only screen and (max-width: 1080px) {
  .button.compact {
    width: auto;
    padding: 0 10px;
  }
}
.button.simple {
  background: #eee;
}
.button.safe {
  background: #95ea95;
}
.button.finished {
  background: #ccf7d1;
  cursor: default;
}
.button:not(.finished):hover {
  opacity: 0.7;
}
.cursors {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cursors:not(:first-child) {
  margin-top: 4px;
}
.cursor {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.cursor.hidden {
  visibility: hidden;
  cursor: default;
}
.cursor:hover {
  opacity: 0.7;
}
.cursor:before,
.cursor:after {
  position: absolute;
  left: 12px;
  content: "";
  width: 3px;
  height: 12px;
  background: #333;
}
.cursor.l:before {
  top: 6px;
  transform: rotate(45deg);
}
.cursor.l:after {
  top: 13px;
  transform: rotate(-225deg);
}
.cursor.r:before {
  top: 13px;
  transform: rotate(45deg);
}
.cursor.r:after {
  top: 6px;
  transform: rotate(-225deg);
}
.position {
  font-size: 16px;
}
.position:not(:first-child) {
  margin-left: 10px;
}
.position:not(:first-child) {
  margin-right: 10px;
}
.keywords {
  margin-top: 30px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.keyword-list {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
@media only screen and (max-width: 1080px) {
  .keyword-list {
    flex-direction: column;
  }
}
.keyword-item {
  width: 48%;
}
@media only screen and (max-width: 1080px) {
  .keyword-item {
    width: auto;
    margin-top: 10px;
  }
}
.keyword-title {
  font-weight: bold;
  border-bottom: 1px solid #aaa;
  margin-bottom: 8px;
}
.keyword-text {
  font-size: 16px;
}
.next-link {
  margin: 80px auto 0;
  width: 500px;
}
@media only screen and (max-width: 1080px) {
  .next-link {
    width: auto;
    margin: 40px 10px 0;
  }
}
.next-link-item + .next-link-item {
  margin-top: 15px;
}
.main-section {
  width: 1080px;
  margin: 0 auto;
}
@media only screen and (max-width: 1080px) {
  .main-section {
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
  }
}
.main-section:first-child {
  margin-top: 60px;
}
@media only screen and (max-width: 1080px) {
  .main-section:first-child {
    margin-top: 20px;
  }
}
.main-section:not(:first-child) {
  margin-top: 80px;
}
@media only screen and (max-width: 1080px) {
  .main-section:not(:first-child) {
    margin-top: 40px;
  }
}
.main-section-hd {
  font-size: 24px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  margin-bottom: 30px;
  padding-left: 25px;
  position: relative;
}
@media only screen and (max-width: 1080px) {
  .main-section-hd {
    font-size: 20px;
    margin-bottom: 15px;
    padding-left: 15px;
  }
}
.main-section-hd:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #333;
  width: 5px;
  height: 100%;
}
.main-section-hd.sub {
  font-size: 20px;
}
.main-section-hd.sub:not(:first-child) {
  margin-top: 30px;
}
.main-section-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.main-section-text a {
  color: #ea5b76;
}
.main-section-text + .main-section-text {
  margin-top: 20px;
}
.main_nav {
  padding: 70px 0 40px;
  display: flex;
  margin: 0 auto;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  justify-content: center;
  width: 1080px;
}
.main_nav_item {
  padding: 0 20px 7px;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}
.main_nav_item.current:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  content: "";
  width: 80%;
  height: 2px;
  background: #ea5b76;
}
.main_nav_item + .main_nav_item {
  margin-left: 20px;
}
.concept-item {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  padding-left: 120px;
  position: relative;
}
@media only screen and (max-width: 1080px) {
  .concept-item {
    padding-left: 0;
  }
}
.concept-item:not(:first-child) {
  margin-top: 30px;
}
.concept-item:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 90px;
  height: 90px;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: inst;
          animation-name: inst;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  transform: translate(0, -50%);
}
@media only screen and (max-width: 1080px) {
  .concept-item:before {
    display: none;
  }
}
.concept-item:nth-child(1):before {
  background: url("/inst-01.png");
  background-size: cover;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.concept-item:nth-child(2):before {
  background: url("/inst-02.png");
  background-size: cover;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.concept-item:nth-child(3):before {
  background: url("/inst-03.png");
  background-size: cover;
  -webkit-animation-name: inst;
          animation-name: inst;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.concept-hd {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #717120;
}
@media only screen and (max-width: 1080px) {
  .concept-hd {
    font-size: 16px;
  }
}
.concept-text {
  font-size: 16px;
  line-height: 1.8;
}
.feature-item {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  padding: 15px;
  background: #eee;
  border-radius: 4px;
}
@media only screen and (max-width: 1080px) {
  .feature-item {
    padding: 10px;
  }
}
.feature-item.main-item {
  background: #fdffcf;
}
.feature-item + .feature-item {
  margin-top: 25px;
}
.feature-item-inner {
  display: flex;
  transition: 0.2s all ease;
}
@media only screen and (max-width: 1080px) {
  .feature-item-inner {
    flex-flow: column;
  }
}
.feature-item-inner:hover {
  opacity: 0.7;
}
.feature-item-col .img {
  width: 160px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1080px) {
  .feature-item-col .img {
    width: 120px;
    top: auto;
    transform: none;
    margin: 0 auto;
  }
}
.feature-item-col .img img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.feature-item-col:not(:last-child) {
  margin-right: 15px;
}
@media only screen and (max-width: 1080px) {
  .feature-item-col:not(:last-child) {
    margin-bottom: 10px;
  }
}
.feature-item-hd {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #888;
}
@media only screen and (max-width: 1080px) {
  .feature-item-hd {
    font-size: 20px;
  }
}
.feature-item-text {
  font-size: 16px;
  line-height: 1.5;
}
.feature-item-text p {
  padding-left: 1em;
}
.feature-item-text p:before {
  content: "・";
  display: inline-block;
  text-indent: -1em;
}
.feature-item-text p + p {
  margin-top: 10px;
}
.feature-catch {
  display: inline-block;
  background: #f2f244;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1080px) {
  .feature-catch {
    padding: 2px;
  }
}
.page-header {
  justify-content: center;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 1080px) {
  .page-header {
    margin-bottom: 2px;
  }
}
.page-header-image {
  width: 160px;
  height: auto;
  margin: 0 auto 20px;
}
@media only screen and (max-width: 1080px) {
  .page-header-image {
    width: 120px;
    margin-bottom: 10px;
  }
}
.page-header-image img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.page-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  display: block;
  padding: 0 20px 10px;
  position: relative;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
@media only screen and (max-width: 1080px) {
  .page-title {
    font-size: 20px;
  }
}
.page-title:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 0);
  height: 2px;
  content: "";
  background: #333;
}
.page-content {
  font-size: 16px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  margin-top: 40px;
  line-height: 1.8;
}
@media only screen and (max-width: 1080px) {
  .page-content {
    margin: 20px 10px 0;
  }
}
.page-content p:not(:first-child) {
  margin-top: 20px;
}
.page-content a:not(.button) {
  color: #ea5b76;
  text-decoration: underline;
}
.page-content em {
  font-weight: bold;
  color: #162a90;
}
.page-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1080px) {
  .page-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.page-content h3:not(:first-child) {
  margin-top: 70px;
}
@media only screen and (max-width: 1080px) {
  .page-content h3:not(:first-child) {
    margin-top: 40px;
  }
}
.page-content .mt,
.page-content .mt:not(:first-child) {
  margin-top: 60px;
}
@media only screen and (max-width: 1080px) {
  .page-content .mt,
  .page-content .mt:not(:first-child) {
    margin-top: 30px;
  }
}
.page-content figure {
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 10px;
  background: #ddd;
  border-radius: 3px;
  display: inline-block;
}
.page-content figure.no-frame {
  padding: 0;
  background: transparent;
}
.page-content figure.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media only screen and (max-width: 1080px) {
  .page-content figure {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 6px;
  }
}
.page-content img {
  vertical-align: top;
  max-width: 100%;
}
.page-content ul {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px dashed #aaa;
  border-bottom: 1px dashed #aaa;
}
.page-content li {
  padding-left: 1em;
  position: relative;
}
.page-content li:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 3px;
  height: 3px;
  background: #333;
}
.page-content li:not(:last-child) {
  margin-bottom: 8px;
}
.infos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1080px) {
  .infos {
    flex-direction: column;
  }
}
.info-item {
  width: 48%;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.info-item:nth-child(n+3) {
  margin-top: 40px;
}
@media only screen and (max-width: 1080px) {
  .info-item:nth-child(n+3) {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 1080px) {
  .info-item {
    width: 100%;
    margin-top: 15px;
  }
}
.info-hd {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 1080px) {
  .info-hd {
    font-size: 16px;
  }
}
.info-image {
  margin: 0 auto 10px;
  overflow: hidden;
  text-align: center;
}
.info-image img {
  vertical-align: top;
  width: auto;
  height: 160px;
}
@media only screen and (max-width: 1080px) {
  .info-image img {
    height: 100px;
  }
}
.info-text {
  font-size: 16px;
  line-height: 1.8;
}
.info-text a {
  color: #ea5b76;
  text-decoration: underline;
}
.nav-course {
  margin: 0 auto;
  width: 1080px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.nav-course a {
  font-size: 14px;
  color: #888;
}
@media only screen and (max-width: 1080px) {
  .nav-course {
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    width: auto;
  }
}
.payment-form {
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #aaa;
}
.payment-form-row {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1080px) {
  .payment-form-row {
    flex-direction: column;
  }
}
.payment-form-row:not(:first-child) {
  margin-top: 15px;
}
.payment-form-row-label {
  text-align: right;
  width: 300px;
  margin-right: 10px;
}
@media only screen and (max-width: 1080px) {
  .payment-form-row-label {
    width: auto;
    text-align: left;
    margin-right: 0;
    margin-bottom: 6px;
  }
}
.payment-form-row-value {
  width: calc(100% - 300px - 10px);
}
@media only screen and (max-width: 1080px) {
  .payment-form-row-value {
    width: auto;
  }
}
.payment-form-row-value input {
  width: 100%;
  padding: 4px 0 4px 8px;
  border: 1px solid #aaa;
  border-radius: 3px;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
}
.StripeElement {
  border-bottom: 1px solid #aaa;
}
@media only screen and (max-width: 1080px) {
  .StripeElement {
    width: 100%;
  }
}
.error {
  color: #de3838;
}
.for-tips {
  max-width: 500px;
  border: 3px dashed #f2f244;
  border-radius: 3px;
  margin: 40px auto 0;
  padding: 20px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
@media only screen and (max-width: 1080px) {
  .for-tips {
    padding: 10px;
  }
}
.for-tips p {
  margin-bottom: 15px;
}
.for-tips figure {
  max-width: 160px;
  margin: 15px auto;
}
@media only screen and (max-width: 1080px) {
  .for-tips figure {
    max-width: 110px;
  }
}
.for-tips figure img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.for-tips-hd {
  font-size: 20px;
  color: #717120;
  margin-bottom: 6px;
  text-align: center;
}
.school {
  background: #f4f4f4;
  border: 1px solid #cf06c3;
  padding: 20px;
  max-width: 1000px;
  margin: 20px auto 0;
  border-radius: 4px;
}
.school h2 {
  font-size: 30px;
  position: relative;
  padding-left: 20px;
}
.school h2:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  background: #cf06c3;
}
.school figure {
  margin-top: 20px;
  margin-bottom: 20px;
  transition: all 0.1s ease;
}
.school figure:hover {
  opacity: 0.7;
}
.school img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.school p {
  line-height: 1.8;
  font-size: 20px;
}
.school a {
  text-decoration: underline;
}
@-webkit-keyframes inst {
  0% {
    transform: translate(0, -50%) scale(1);
  }
  25% {
    transform: translate(0, -50%) scale(1.2);
  }
  50% {
    transform: translate(0, -50%) scale(1);
  }
  100% {
    transform: translate(0, -50%) scale(1);
  }
}
@keyframes inst {
  0% {
    transform: translate(0, -50%) scale(1);
  }
  25% {
    transform: translate(0, -50%) scale(1.2);
  }
  50% {
    transform: translate(0, -50%) scale(1);
  }
  100% {
    transform: translate(0, -50%) scale(1);
  }
}
@-webkit-keyframes annotation_0 {
  0% {
    background: transparent;
  }
  50% {
    background: #e9eaff;
  }
  95% {
    background: transparent;
  }
}
@keyframes annotation_0 {
  0% {
    background: transparent;
  }
  50% {
    background: #e9eaff;
  }
  95% {
    background: transparent;
  }
}
@-webkit-keyframes annotation_1 {
  0% {
    background: #fff;
  }
  50% {
    background: #e9eaff;
  }
  95% {
    background: #fff;
  }
}
@keyframes annotation_1 {
  0% {
    background: #fff;
  }
  50% {
    background: #e9eaff;
  }
  95% {
    background: #fff;
  }
}
@-webkit-keyframes annotation_2 {
  0% {
    background: rgba(252,255,207,0.8);
  }
  50% {
    background: #e9eaff;
  }
  95% {
    background: rgba(252,255,207,0.8);
  }
}
@keyframes annotation_2 {
  0% {
    background: rgba(252,255,207,0.8);
  }
  50% {
    background: #e9eaff;
  }
  95% {
    background: rgba(252,255,207,0.8);
  }
}

/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

code[class*="language-"],
pre[class*="language-"] {
	color: black;
	background: none;
	text-shadow: 0 1px white;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
	text-shadow: none;
	background: #b3d4fc;
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
	text-shadow: none;
	background: #b3d4fc;
}

@media print {
	code[class*="language-"],
	pre[class*="language-"] {
		text-shadow: none;
	}
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #f5f2f0;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: slategray;
}

.token.punctuation {
	color: #999;
}

.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
	color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #690;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: #9a6e3a;
	background: hsla(0, 0%, 100%, .5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
	color: #07a;
}

.token.function,
.token.class-name {
	color: #DD4A68;
}

.token.regex,
.token.important,
.token.variable {
	color: #e90;
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

