@charset "UTF-8";
:root {
  --red: #ff6666;
  --rose: #FF9999;
  --pink: #FCCFCF;
  --beige: #FFF0F0;
  --text-color: #242E33;
  --off-white: #f8f7f7;
  --light-gray: #F6F4F4;
}

* {
  color: var(--text-color);
}

.bg-off-white {
  background: var(--off-white);
}

.bg-light-gray {
  background: var(--light-gray);
}

.text-red, .text-red * {
  color: var(--red);
}

button {
  background: none;
}

section {
  padding: 100px 0 120px;
}
@media screen and (max-width: 767px) {
  section {
    padding: 40px 0 60px;
  }
}
section .container > h2 {
  margin-bottom: 40px;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 0.04em;
}
section .container > h2 strong {
  display: block;
}
@media screen and (max-width: 767px) {
  section .container > h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.container {
  max-width: 1080px;
  padding: 0 16px;
  box-sizing: content-box;
  margin: auto;
}
.container--big {
  max-width: 1340px;
}

.clearfix {
  clear: both;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/***** Common components *****/
header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
  padding: 10px 0;
}
header .nav {
  display: flex;
  align-items: center;
}
header .nav__menu a {
  font-weight: 500;
}
header .nav__side-buttons > a {
  display: inline-block;
}
@media not screen and (max-width: 989px) {
  header .nav .top-logo {
    flex: 0 0 234px;
  }
  header .nav__menu {
    margin: 0 60px;
    flex: 1 1 auto;
  }
  header .nav__menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .nav__menu__button {
    display: none;
  }
  header .nav__menu a {
    font-size: 18px;
  }
  header .nav__side-buttons > a {
    height: 50px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 50px;
  }
  header .nav__side-buttons > a + a {
    margin-left: 20px;
  }
}
@media screen and (max-width: 989px) {
  header .nav .top-logo {
    flex: 1 1 auto;
    margin: 0 10px;
    order: 1;
    max-height: 40px;
  }
  header .nav .top-logo > img {
    max-height: 40px;
  }
  header .nav__menu {
    order: 0;
  }
  header .nav__menu__items {
    transition: 0.3s;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    z-index: 1;
    padding-bottom: 0;
  }
  header .nav__menu__items ul {
    flex-direction: column;
  }
  header .nav__menu__items ul li + li {
    margin-left: 0;
    border-top: 1px solid var(--text-color);
  }
  header .nav__menu__items ul li a {
    padding: 24px 16px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    position: relative;
  }
  header .nav__menu__items ul li a::after {
    position: absolute;
    right: 16px;
  }
  header .nav__menu__items ul li span {
    color: var(--text-gray);
    font-size: 14px;
    margin-left: 20px;
  }
  header .nav__menu__button {
    display: flex;
    width: 20px;
    background: none;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  header .nav__menu__button span {
    display: block;
    height: 2px;
    background: var(--text-color);
    transition: 0.2s;
    width: 20px;
  }
  header .nav__menu__button span + span {
    margin-top: 6px;
  }
  header .nav__menu__button.active span:first-of-type {
    transform: rotate(45deg) translate(7px, 10px);
  }
  header .nav__menu__button.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .nav__menu__button.active span:last-of-type {
    transform: rotate(-45deg) translate(7px, -10px);
  }
  header .nav__menu__button.active span + span {
    margin-top: 10px;
  }
  header .nav__menu__button.active + .nav__menu__items {
    padding-bottom: 20px;
    max-height: 100vh;
    overflow: scroll;
  }
  header .nav__side-buttons {
    order: 2;
    flex: 0 0 102px;
  }
  header .nav__side-buttons > a {
    width: 48px;
    font-size: 10px;
    text-align: center;
    line-height: 48px;
  }
  header .nav__side-buttons > a span.pc-only {
    display: none;
  }
  header .nav__side-buttons > a span.sp-only {
    display: inline-block !important;
  }
}

.button {
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
}
.button--main {
  background: linear-gradient(to right, var(--red), var(--rose));
}
.button--main:hover, .button--main:focus, .button--main:active {
  background: linear-gradient(to left, var(--red), var(--rose));
}
.button--main, .button--main * {
  color: white;
}
.button--reverse {
  background: var(--beige);
}
.button--reverse, .button--reverse * {
  color: var(--red);
}
.button--default {
  width: 300px;
  margin: auto;
  line-height: 60px;
  max-width: 100%;
  text-align: center;
}
.button--transparent {
  border: 1px solid var(--red);
  color: var(--red);
}

.robot-background {
  background: url(../image/robo-runner.jpg) no-repeat 100%/cover;
}
.robot-background--darken {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}

.archive-post, .archive-school {
  max-width: 320px;
}
.archive-post > *, .archive-school > * {
  display: block;
}
.archive-post > a:first-child, .archive-school > a:first-child {
  height: 200px;
}
.archive-post > a:first-child img, .archive-school > a:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-post small, .archive-school small {
  letter-spacing: 0.2em;
  color: var(--rose);
  margin: 20px 0 10px;
  font-size: 12px;
  font-weight: bold;
}
.archive-post h3, .archive-school h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 767px) {
  .archive-post, .archive-school {
    margin: 10px 0;
  }
}

.footer__main {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  border-top: 1px solid #e5e5e5;
  padding: 30px 0 40px;
}
.footer__main__left p, .footer__main__left a {
  font-size: 12px;
  color: #6b6b6b;
}
.footer__main__left p + p, .footer__main__left a + p {
  margin-top: 1em;
}
.footer__main__right a {
  background: #EDE9E9;
  display: inline-block;
  font-size: 0;
}
.footer__main__right a + a {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .footer__main {
    margin-top: 30px;
    padding-top: 20px;
    flex-direction: column;
    align-items: center;
  }
  .footer__main__left p {
    text-align: center;
  }
  .footer__main > div + div {
    margin-top: 30px;
  }
}

.banner--template {
  background-image: url(../image/banner-overlay.svg), url(../image/banner.jpg);
  background-position: left center, center;
  background-size: contain, cover;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.banner--template h1 {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.banner--template p {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .banner--template {
    background-size: auto 190px, cover;
    background-position: min(0px, calc(100vw - 592px)) center, center;
  }
  .banner--template h1 {
    font-size: 36px;
  }
}

/****** From Marche *********/
p, a {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  p, a {
    font-size: 14px;
  }
}

h1 {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 68px;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
  }
}

h2, .h2 {
  font-size: 34px;
  font-weight: 900;
  line-height: 45px;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  text-align: center;
}
h2 small, h2 strong, .h2 small, .h2 strong {
  display: block;
  text-align: center;
}
h2 small, .h2 small {
  font-size: 24px;
}
h2 strong, .h2 strong {
  font-size: 64px;
  line-height: 84px;
}
@media screen and (max-width: 767px) {
  h2, .h2 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  h2 small, .h2 small {
    font-size: 16px;
  }
  h2 strong, .h2 strong {
    font-size: 46px;
    line-height: 54px;
  }
}

h3, .h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  h3, .h3 {
    font-size: 20px;
    line-height: 32px;
  }
}

img.number, div.number {
  height: 53px;
  width: auto;
}
img.number--white svg path, div.number--white svg path {
  fill: white;
}

.input-area h2 {
  margin: 2em 0 1em;
  font-size: 22px;
  line-height: 1.5;
  text-align: left;
}
.input-area h3 {
  margin: 0.5em 0 1em;
  line-height: 1.5;
  font-size: 18px;
}
.input-area p, .input-area li {
  font-size: 15px;
  line-height: 24px;
}
.input-area p {
  margin-bottom: 1em;
}
.input-area ul {
  list-style: "－ " inside none;
}
.input-area ol {
  list-style: decimal inside none;
}
.input-area figure img {
  margin: auto;
  display: block;
  object-fit: contain;
  height: auto;
}
.input-area figure figcaption {
  font-size: 14px;
  color: #686868;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .input-area h2 {
    font-size: 18px;
  }
  .input-area h3 {
    font-size: 16px;
  }
  .input-area p, .input-area li {
    font-size: 14px;
  }
}

main {
  padding-top: 40px;
}
main section {
  padding: 0;
}
main section + section {
  margin-top: 80px;
}
main .container {
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  main section + section {
    margin-top: 30px;
  }
}

.post__header h1 {
  font-size: 34px;
  line-height: 46px;
  margin-bottom: 40px;
}
.post__header__supplementary {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.post__header__supplementary p {
  font-size: 16px;
  line-height: 1.5;
  color: #6b6b6b;
}
.post__header__supplementary p:first-child {
  font-weight: bold;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .post__header h1 {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 30px;
  }
}
.post__main {
  position: relative;
  padding-bottom: 60px;
}
.post__main img.post__thumbnail {
  height: auto;
  margin-bottom: 60px;
}
.post__main__sharing * {
  color: #6b6b6b;
}
.post__main__sharing > p {
  font-size: 13px;
  line-height: 22px;
}
.post__main__sharing__buttons li a.ssbp-btn {
  border: 0;
  background-color: transparent;
  line-height: 1em;
}
.post__main__sharing__buttons li a.ssbp-btn::before {
  width: 20px;
  margin-right: 10px;
  display: table;
}
@media not screen and (max-width: 989px) {
  .post__main__sharing {
    position: sticky;
    width: 130px;
    transform: translateX(-150px);
    top: 40px;
    height: 0;
  }
  .post__main__sharing .ssbp-list li {
    display: block !important;
  }
  .post__main__sharing .ssbp-list li a.ssbp-btn {
    display: flex;
    align-items: center;
  }
  .post__main__sharing .ssbp-list li a.ssbp-btn::before {
    width: 20px;
    margin-right: 10px;
    display: table;
  }
  .post__main__sharing .ssbp-list li a.ssbp-btn .ssbp-text {
    display: inline-block;
    font-size: 10px;
  }
}
@media screen and (max-width: 989px) {
  .post__main__sharing {
    padding: 10px 0;
    width: 140px;
  }
  .post__main__sharing > p {
    font-size: 10px;
    line-height: 16px;
  }
  .post__main__sharing > p > br {
    display: none;
  }
  .post__main__sharing__buttons li {
    margin-top: 0 !important;
  }
  .post__main__sharing__buttons li + li {
    margin-left: 20px !important;
  }
}

/*# sourceMappingURL=post.css.map */
