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

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

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

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

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

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

  button {
    background: none;
  }

  section {
    padding: 30px 0 30px;
  }
  @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: 1250px;
    padding: 0 16px;
    box-sizing: content-box;
    margin: auto;
  }

  .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;
      width: auto;
    }
    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;
    }
    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;
    }
  }

  .banner {
    position: relative;
    padding: 0;
  }
  .banner > img {
    width: 100%;
  }
  .banner > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .banner > div .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  @media not screen and (max-width: 767px) {
    .banner__body__buttons {
      position: absolute;
      left: 11.8vw;
      top: 35vw;
      min-width: 10%;
      max-width: 37.5%;
      width: 49%;
      height: 15%;
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      margin: 20px 0;
    }

    .banner__body__buttons__button {
      padding: 16px 16px;
      line-height: 26px;
      display: flex;
      align-items: center;
      overflow: hidden;
      justify-content: center;
      width: 100%;
    }

    .free-badge {
      position: absolute;
      top: -2vw;
      right: -2vw;
      background: #fff;
      color: #FF6666;
      border-radius: 50%;
      width: 4vw;
      height: 4vw;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3vw;
    }

    .banner__body__buttons__button + a {
      margin-left: 20px;
    }

    .banner__body__text {
      position: absolute;
      left: 54vw;
      top: 39vw;
      width: 35%;
    }

    .banner__body__text ol {
      list-style: none;
      counter-reset: item;
    }

    .banner__body__text li {
      display: grid;
      grid-template-columns: 1.5em 1fr;
      margin-bottom: 0.5em;

      font-size: calc(100vw * 0.0075);
      color: #ffffff;
    }

    .banner__body__text div {
      grid-column: 2;
      color: #ffffff;
    }

    .banner__body__text li:before {
      counter-increment: item;
      grid-column: 1;
      content: "*" counter(item);
      margin-right: 2px;
    }

    .banner__body__text a {
      text-decoration: underline;
      font-size: calc(100vw * 0.0075);
      display: inline-flex;
      align-items: center;
      line-height: inherit;
    }

    .banner__body__text div.banner__body__text__date {
      font-size: calc(100vw * 0.0065);
      text-align: right;
      color: rgba(255, 255, 255, 0.7);
    }
  }
  @media screen and (max-width: 767px) {
    .container {
      padding: 0 32px;
    }

    .banner__body {
      position: absolute;
      width: 100%;
      min-width: 328px;
      top: 97vw;
      max-width: 89%;
      left: 5vw;
    }

    .banner__body__text span {
      color: white;
      display: block;
      text-align: center;
    }

    .banner__body__buttons {
      display: inline-flex;
      padding-top: 16px;
      flex-direction: column-reverse;
      align-items: flex-start;
      min-width: 328px;
      width: 100%;
    }

    .free-badge {
      display: none;
    }

    .banner__body__buttons__button {
      width: 100%;
      text-align: center;
      padding: 3.5vw 0;
      line-height: 19px;
      margin-top: 20px;
    }

    .banner__body__text {
      letter-spacing: 0;
      padding-top: 16px;
      min-width: 328px;
      width: 100%;
    }

    .banner__body__text ol {
      list-style: none;
      counter-reset: item;
    }

    .banner__body__text li {
      display: grid;
      grid-template-columns: 1.5em 1fr;
      margin-bottom: 0.5em;

      font-size: calc(100vw * 0.025);
      color: #ffffff;
    }

    .banner__body__text div {
      grid-column: 2;
      color: #ffffff;
    }

    .banner__body__text li:before {
      counter-increment: item;
      grid-column: 1;
      content: "*" counter(item);
      margin-right: 2px;
    }

    .banner__body__text a {
      text-decoration: underline;
      font-size: calc(100vw * 0.025);
      display: inline-flex;
      align-items: center;
      line-height: inherit;
    }

    .banner__body__text div.banner__body__text__date {
      font-size: calc(100vw * 0.02);
      text-align: right;
      color: rgba(255, 255, 255, 0.7);
    }
  }

  /* worries */
  .nayami__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nayami__items__item {
    flex: 0 0 234px;
    margin: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nayami__items__item p {
    margin-top: 26px;
    text-align: center;
    line-height: 2;
  }

  .nayami__table table {
    border-collapse: collapse;
  }

  .nayami__table th {
    background-color: red;
    border: solid 2px;
  }

  .nayami__table td {
    background-color: green;
    border: solid 2px;
  }

  p.big {
    text-align: center;
    white-space: pre-wrap;
    font-size: 24px;
    font-weight: 500;
    line-height: 2;
  }
  p.big strong {
    font-weight: 700;
    background: var(--pink);
  }
  @media screen and (max-width: 767px) {
    p.big {
      font-size: 18px;
      line-height: 31px;
    }
  }

  .makase__image {
    margin-top: 80px;
  }
  @media screen and (max-width: 767px) {
    .makase p.big {
      font-size: 18px;
      line-height: 31px;
    }
    .makase__image {
      display: block;
      margin: 48px auto;
    }
  }

  .kaihatsu {
    padding-top: 60px;
  }
  .kaihatsu h2 strong {
    font-size: 64px;
    margin-top: 8px;
  }
  @media screen and (max-width: 767px) {
    .kaihatsu h2 strong {
      font-size: 46px;
    }
  }
  .kaihatsu__points {
    display: flex;
    flex-wrap: wrap;
    max-width: 1980px;
    margin: 60px auto;
    justify-content: space-between;
  }
  .kaihatsu__points__point {
    margin: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    flex: 0 0 calc(33.3% - 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 20px;
    box-sizing: border-box;
    border-radius: 10px;
  }
  .kaihatsu__points__point h3, .kaihatsu__points__point p {
    text-align: center;
  }
  .kaihatsu__points__point h3:first-child {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    z-index: 0;
  }
  .kaihatsu__points__point h3:first-child::after {
    /* background: var(--pink); */
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -4px;
    height: 6px;
    z-index: -1;
  }
  .kaihatsu__points__point__count {
    line-height: 44px;
    vertical-align: bottom;
    color: #867979;
    margin: 8px auto;
    font-size: 44px;
    font-weight: 500;
  }
  .kaihatsu__points__point__count small {
    font-size: 30px;
    font-weight: 700;
    color: #867979;
  }
  .kaihatsu__points__point p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  .kaihatsu__points__point:last-of-type {
    /* background: var(--pink); */
  }
  @media screen and (max-width: 767px) {
    .kaihatsu__points {
      display: block;
    }
    .kaihatsu__points__point {
      width: 100%;
    }
    .kaihatsu__points__point h3:first-child {
      font-size: 12px;
    }
    .kaihatsu__points__point__count {
      font-size: 44px;
    }
    .kaihatsu__points__point:last-of-type {
      flex: 0 0 calc(100% - 10px);
    }
  }
  .kaihatsu__link {
    text-align: center;
  }

  /* SERVICE */
  .service__services__service {
    display: flex;
    background: white;
    position: relative;
    justify-content: space-between;
    border-radius: 10px;
    border-top-left-radius: 0;
    padding: 23px 46px;
  }
  .service__services__service + .service__services__service {
    margin-top: 30px;
  }
  .service__services__service__accessory {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
  }
  .service__services__service__accessory .number {
    margin-right: 40px;
  }
  .service__services__service__accessory .pink-logo {
    max-width: 150px;
    opacity: 0.5;
  }
  .service__services__service__text {
    padding-top: 80px;
  }
  .service__services__service__text h3 {
    margin-bottom: 10px;
  }
  .service__services__service__text p {
    line-height: 32px;
  }
  .service__services__service__text .gray {
    color: #86797a;
  }
  .service__services__service__image {
    max-width: 300px;
  }
  @media screen and (max-width: 767px) {
    .service__services__service {
      padding: 80px 20px 20px 20px;
      flex-direction: column;
      align-items: center;
    }
    .service__services__service__accessory {
      align-items: center;
    }
    .service__services__service__accessory .number {
      max-width: calc(100% - 170px);
      margin-right: 20px;
    }
    .service__services__service__accessory p {
      flex: 0 0 130px;
      margin-right: 10px;
    }
    .service__services__service__accessory img {
      flex: 1 0 auto;
    }
    .service__services__service__text {
      padding-top: 20px;
    }
  }

  /* PRICE */
  .price {
    position: relative;
  }
  .price h2 {
    color: white;
  }
  @media not screen and (max-width: 989px) {
    .price h2 {
      margin-bottom: 80px !important;
    }
  }
  .price__prices__plan {
    background: white;
    flex: 1 1 auto;
    max-width: 33.3%;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  .price__prices__plan__top {
    padding: 30px 20px 20px;
  }
  .price__prices__plan p:not(.h3), .price__prices__plan h4 {
    font-size: 14px;
    line-height: 26px;
  }
  .price__prices__plan p:not(.h3) strong, .price__prices__plan h4 strong {
    font-size: 26px;
  }
  .price__prices__plan p.tax {
    height: 1em;
    line-height: 1;
    color: #86797a;
    margin-bottom: 0.5em;
  }
  .price__prices__plan p.h3 {
    vertical-align: bottom;
    letter-spacing: 0.02em;
  }
  .price__prices__plan p.h3 span {
    font-size: 22px;
  }
  .price__prices__plan h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .price__prices__plan h4 {
    font-weight: 700;
  }
  .price__prices__plan h4:not(:first-child) {
    margin-top: 20px;
  }
  .price__prices__plan__explanation {
    height: 72px;
  }
  .price__prices__plan hr {
    margin: 0 20px;
    color: #867979;
  }
  .price__prices__plan__points {
    padding: 30px;
  }
  .price__prices__plan.featured .price__prices__plan__top {
    background: var(--pink);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .price__prices__plan.featured hr {
    display: none;
  }
  @media not screen and (max-width: 989px) {
    .price__prices {
      display: flex;
    }
    .price__prices__plan:first-of-type {
      border-top-left-radius: 10px;
      border-bottom-left-radius: 10px;
    }
    .price__prices__plan.featured {
      position: relative;
      margin: -30px 0;
      z-index: 2;
      border-radius: 10px;
    }
    .price__prices__plan.featured .price__prices__plan__top {
      padding: 60px 20px 21px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }
    .price__prices__plan.featured hr {
      display: none;
    }
    .price__prices__plan.featured::before {
      content: "";
      position: absolute;
     /* background: url(../image/osusume.svg); */
      width: 70px;
      height: 70px;
      right: 20px;
      top: -35px;
    }
    .price__prices__plan:last-of-type {
      border-top-right-radius: 10px;
      border-bottom-right-radius: 10px;
      z-index: 0;
    }
  }
  @media screen and (max-width: 767px) {
    .price__prices__plan {
      border-radius: 10px;
      margin: 0 5px;
    }
  }
  .price__contact {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  @media not screen and (max-width: 767px) {
    .price {
      background-position: left;
    }
  }
  @media screen and (max-width: 767px) {
    .price {
      background-position: bottom;
    }
  }

  /* SUCCESS */
  @media screen and (max-width: 767px) {
    .success {
      padding-top: 60px;
    }
  }
  .success__case {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 40px;
    max-width: 516px;
    margin: 10px;
    overflow: hidden;
  }
  .success__case::before {
    content: "";
    display: block;
    position: absolute;
    background: url(../image/faded-robot.svg) 100%/100% no-repeat;
    width: 120px;
    height: 139px;
    right: 0;
    top: -10px;
  }
  .success__case > img {
    width: 100px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 20px;
  }
  .success__case h3 {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
  .success__case h2 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin: 10px 0;
    text-align: left;
  }
  .success__case p {
    font-size: 14px;
    line-height: 26px;
  }
  @media screen and (max-width: 767px) {
    .success__case {
      padding: 20px;
    }
    .success__case::before {
      width: 78px;
      height: 90px;
      right: 20px;
      top: 20px;
    }
    .success__case > img {
      width: 180px;
      max-width: calc(100% - 110px);
      height: auto;
      height: 90px;
      object-fit: contain;
    }
  }
  .success #slick-arrows {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
  }
  .success #slick-arrows button {
    background: var(--beige);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .success #slick-arrows button:first-child img {
    transform: rotate(180deg);
  }

  /* PARTNERS */
  .partners__partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .partners__partners__partner {
    background: white;
  }
  .partners__partners__partner img {
    width: 100%;
    object-fit: contain;
    display: block;
    height: 200px;
  }
  .partners__partners__partner h3 {
    border-top: 4px solid var(--light-gray);
    position: relative;
    padding: 16px 20px;
    line-height: 18px;
    letter-spacing: 0;
    transition: 0.3s;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 72px;
    box-sizing: border-box;
  }
  .partners__partners__partner h3:hover {
    background: var(--pink);
  }
  .partners__partners__partner h3::after {
    content: "";
    display: block;
    position: absolute;
    top: 22px;
    right: 15px;
    width: 22px;
    height: 20px;
    background: url(../image/arrow.svg) 100%/100% no-repeat;
  }
  @media screen and (max-width: 767px) {
    .partners__partners__partner h3::after {
      width: 15px;
    }
  }
  @media screen and (max-width: 989px) {
    .partners__partners__partner:last-of-type {
      display: none;
    }
  }
  @media not screen and (max-width: 989px) {
    .partners__partners__partner {
      flex: 0 0 200px;
      margin: 0 8px 8px;
    }
  }
  @media screen and (max-width: 989px) {
    .partners__partners {
      justify-content: center;
      margin: -4px;
    }
    .partners__partners__partner {
      margin: 4px;
      flex: 0 0 160px;
    }
  }

  /* NEWS */
  .news__container {
    display: flex;
    justify-content: space-between;
  }
  @media screen and (max-width: 767px) {
    .news__container {
      flex-direction: column;
      align-items: center;
    }
  }
  .news__link {
    display: flex;
    justify-content: flex-end;
  }
  .news__link a {
    background: #f6f4f4;
    padding: 16px 13px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
  }

  /* TOP-CTA */
  .top-cta {
    background-position: top;
  }
  .top-cta .container > h2, .top-cta .container > p {
    color: #867979;
    text-align: left;
  }
  .top-cta h2 {
    font-size: 30px;
  }
  .top-cta__body {
    max-width: 700px;
  }
  .top-cta__body__buttons {
    margin: 30px -15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .top-cta__body__buttons__button {
    margin: 10px 15px;
    flex: 0 0 calc(50% - 30px);
  }
  .top-cta__body__buttons__button:not(.button) {
    background: rgba(149, 146, 175, 0.9);
    border-radius: 6px;
    padding: 12px 0;
    color: white;
    text-align: center;
    line-height: 16px;
    font-size: 13px;
    font-weight: bold;
  }
  .top-cta__body__buttons__button:not(.button) small {
    color: white;
    display: block;
    font-size: 10px;
  }
  .top-cta__body__buttons__button--shiryo, .top-cta__body__buttons__button--contact {
    padding: 27px 0;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    .top-cta h2 {
      font-size: 20px;
      line-height: 28px;
    }
    .top-cta__body p {
      font-size: 13px;
    }
  }
  @media screen and (max-width: 540px) {
    .top-cta {
      background-position: -620px 25px;
    }
    .top-cta__body__buttons {
      flex-direction: column;
      max-width: 300px;
      margin: 30px auto 0;
    }
    .top-cta__body__buttons__button {
      margin: 5px 0;
    }
  }

  /* FLOAT-FOOTER */
  section.float_footer {
    padding: 0px 0 10px;
  }

  .float_footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
  }

  .float_footer.is-hidden {
    visibility: hidden;
  }

  .float_footer__buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .float_footer a {
    padding: 10px;
  }

  /* ACHIEVEMENT */
  .achievements__achievement {
    display:flex;
    justify-content: space-between;
  }

  .achievements__achievement__text {
    margin-right: 1%;
    background-color: white;
    width: 60%;
    border-radius: 5px;
  }

  .achievements__achievement__title {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(transparent 90%, #ff99ab 80%);
  }

  .achievements__achievement__line1 {
    font-size: 17px;
    font-weight: bold;
    white-space: pre-wrap;
  }

  .achievements__achievement__line2 {
    font-size: 17px;
    font-weight: bold;
    white-space: pre-wrap;
  }

  .achievements__achievement__line3 {
    font-size: 17px;
    font-weight: bold;
    white-space: pre-wrap;
  }

  @media screen and (max-width: 767px) {
    .achievements__achievement {
      display:flex;
      flex-flow: column;
      justify-content:space-between;
    }
    .achievements__achievement__text {
      margin-bottom: 1%;
      background-color: white;
      width: 100%;
    }
  }

  /* LOGO */
  @keyframes logos_scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  .logos_scroll {
    display: flex;
    overflow: hidden;
    width: 100%;
  }

  .logos_scroll__list {
    display: flex;
    list-style: none;
    padding: 20px;
    animation: logos_scroll-left 15s infinite linear 0.5s;
  }

  .logos_scroll__item {
    display: block;
  }

  .logos_scroll__item>img {
    width: 100%;
    height: 100px;
  }
  /**/
  .logos_static__list {
    display: flex; 
    flex-wrap:nowrap;
    gap: 10px 1.4%;
  }

  .logos_static__item>img {
    width: 100%;
    height: 120px;
    flex-grow: 1;
    object-fit: contain;
  }


  @media screen and (max-width: 989px) {
    section.logos {
      padding: 0;
    }
  }

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