@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;
}  
.nav__side-buttons {
    min-width: 360px;
}
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;
    min-width: initial;
  }
  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;
	 text-align: center;
  }
  header .nav__side-buttons > a span.sp-only {
    display: inline-block !important;
  }
}
@media not screen and (max-width: 989px) {
  header .nav--school .top-logo {
    line-height: 1;
    flex: 0 0 272px;
  }
  header .nav--school .menu {
    max-width: 450px;
    margin: auto;
  }
}

.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;
}
@media screen and (max-width: 767px) {
  .post-type-archive-school .banner--template {
    padding: 16px 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;
  }
}

.archive {
  padding: 40px 0;
}
.archive__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.archive--post .archive__items > div {
  flex: 1 1 320px;
  max-width: 320px;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  .archive--post .archive__items > div {
    flex: 1 1 auto;
    max-width: none;
    margin: 20px auto;
  }
  .archive--post .archive__items > div > a:first-child {
    height: auto;
    margin: 0 -16px;
  }
}
.archive--case .archive__items {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: #E5E5E5;
  overflow: hidden;
}
@media screen and (max-width: 989px) {
  .archive--case .archive__items {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .archive--case .archive__items {
    grid-template-columns: 1fr;
    max-width: 414px;
    margin: auto -16px;
    box-shadow: none;
    border-radius: 0;
  }
}
.archive--case .archive__items > .archive-case {
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  vertical-align: bottom;
  height: 386px;
}
.archive--case .archive__items > .archive-case:nth-child(6n+1) .archive-case__decoration__circle {
  background-color: #99DAFF;
}
.archive--case .archive__items > .archive-case:nth-child(6n+1) .archive-case__main__robot {
  background: url(../image/robot-icons/robot-blue.svg);
}
.archive--case .archive__items > .archive-case:nth-child(6n+2) .archive-case__decoration__circle {
  background-color: #FADC82;
}
.archive--case .archive__items > .archive-case:nth-child(6n+2) .archive-case__main__robot {
  background: url(../image/robot-icons/robot-yellow.svg);
}
.archive--case .archive__items > .archive-case:nth-child(6n+3) .archive-case__decoration__circle {
  background-color: #CBDE9B;
}
.archive--case .archive__items > .archive-case:nth-child(6n+3) .archive-case__main__robot {
  background: url(../image/robot-icons/robot-green.svg);
}
.archive--case .archive__items > .archive-case:nth-child(6n+4) .archive-case__decoration__circle {
  background-color: #E0C6AF;
}
.archive--case .archive__items > .archive-case:nth-child(6n+4) .archive-case__main__robot {
  background: url(../image/robot-icons/robot-coffee.svg);
}
.archive--case .archive__items > .archive-case:nth-child(6n+5) .archive-case__decoration__circle {
  background-color: #AAE6F2;
}
.archive--case .archive__items > .archive-case:nth-child(6n+5) .archive-case__main__robot {
  background: url(../image/robot-icons/robot-skyblue.svg);
}
.archive--case .archive__items > .archive-case:nth-child(6n+0) .archive-case__decoration__circle {
  background-color: #F2AAAA;
}
.archive--case .archive__items > .archive-case:nth-child(6n+0) .archive-case__main__robot {
  background: url(../image/robot-icons/robot-terra.svg);
}
@media screen and (max-width: 767px) {
  .archive--case .archive__items > .archive-case {
    height: 454px;
  }
}
.archive--case .archive__items > .archive-case .archive-case__decoration, .archive--case .archive__items > .archive-case .archive-case__logo {
  position: absolute;
}
.archive--case .archive__items > .archive-case .archive-case__decoration {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.archive--case .archive__items > .archive-case .archive-case__decoration__circle {
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  max-height: 200px;
  max-width: 200px;
  border-radius: 50%;
}
.archive--case .archive__items > .archive-case .archive-case__logo {
  top: 20px;
  width: 100%;
  text-align: center;
  transition: 0.3s ease-out;
}
.archive--case .archive__items > .archive-case .archive-case__logo img {
  width: 80px;
  height: 40px;
  object-fit: contain;
}
.archive--case .archive__items > .archive-case .archive-case__main {
  padding: 30px 40px;
  position: relative;
  transition: 0.3s ease-in-out;
}
.archive--case .archive__items > .archive-case .archive-case__main * {
  text-align: center;
}
.archive--case .archive__items > .archive-case .archive-case__main h3:first-child {
  color: white;
  font-size: 14px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.04em;
}
.archive--case .archive__items > .archive-case .archive-case__main__robot {
  width: 62px;
  height: 70px;
  background-size: contain !important;
  margin: 15px auto;
}
.archive--case .archive__items > .archive-case .archive-case__main__quote {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .archive--case .archive__items > .archive-case .archive-case__logo {
    top: 40px;
  }
  .archive--case .archive__items > .archive-case .archive-case__decoration__circle {
    max-width: 270px;
    max-height: 270px;
  }
  .archive--case .archive__items > .archive-case .archive-case__main h3:first-child {
    font-size: 18px;
    line-height: 28px;
  }
  .archive--case .archive__items > .archive-case .archive-case__main__robot {
    width: 122px;
    height: 140px;
  }
  .archive--case .archive__items > .archive-case .archive-case__main__quote {
    font-size: 14px;
    line-height: 20px;
    height: 2em;
  }
  .archive--case .archive__items > .archive-case .archive-case__main__quote br {
    display: none;
  }
}
.archive--case .archive__items > .archive-case:hover .archive-case__logo, .archive--case .archive__items > .archive-case:active .archive-case__logo {
  top: -150px;
}
.archive--case .archive__items > .archive-case:hover .archive-case__decoration__circle, .archive--case .archive__items > .archive-case:active .archive-case__decoration__circle {
  max-height: 1000px;
  max-width: 1000px;
  border-radius: 0;
}
.archive--case .archive__items > .archive-case:hover .archive-case__main, .archive--case .archive__items > .archive-case:active .archive-case__main {
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .archive--case .archive__items > .archive-case:hover .archive-case__main, .archive--case .archive__items > .archive-case:active .archive-case__main {
    margin-bottom: 84px;
  }
}
.archive--school .archive__items .archive-school {
  position: relative;
  margin: 40px auto;
}
.archive--school .archive__items .archive-school__bubble {
  position: absolute;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-align: center;
  width: 70px;
  height: 70px;
  left: -35px;
  top: -35px;
  line-height: 70px;
}
@media screen and (max-width: 767px) {
  .archive--school .archive__items .archive-school__bubble {
    width: 60px;
    height: 60px;
    left: -30px;
    top: -30px;
    line-height: 60px;
    left: 10px;
  }
}
.archive--school .archive__items .archive-school h3 {
  margin: 20px 0 10px;
}
.archive--school .archive__items .archive-school__byline {
  font-size: 14px;
  line-height: 24px;
}
.archive--school .archive__items .archive-school__byline br {
  display: none;
}
.archive--ebook .archive__items .archive-ebook {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: space-between;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 344px;
  height: 384px;
  padding: 40px;
  box-sizing: border-box;
  margin: 10px 0;
}
.archive--ebook .archive__items .archive-ebook h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  height: 3em;
  display: flex;
  align-items: center;
}
.archive--ebook .archive__items .archive-ebook img {
  max-width: 200px;
  height: 120px;
  margin: 40px auto;
  object-fit: contain;
}
.archive--ebook .archive__items .archive-ebook__button {
  position: relative;
  border-radius: 10px;
  color: var(--red);
  background: var(--beige);
  text-align: center;
  padding: 13px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  box-sizing: border-box;
}
.archive--ebook .archive__items .archive-ebook__button::after {
  content: "";
  background: url(../image/red-chevron.svg);
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  right: 13px;
  top: 13px;
}
@media screen and (max-width: 767px) {
  .archive--ebook .archive__items {
    justify-content: center;
  }
  .archive--ebook .archive__items .archive-ebook {
    height: auto;
    padding: 18px 32px 30px;
  }
  .archive--ebook .archive__items .archive-ebook h3 {
    height: auto;
    font-size: 16px;
  }
  .archive--ebook .archive__items .archive-ebook img {
    max-width: 200px;
    margin: 18px auto 30px;
  }
}

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