@charset "UTF-8";
:root {
  --max-width: 1280px;
  --color-grey: #969696;
  --color-light-grey: #f3f3f3;
  --color-blue: #002950;
  --color-red: #c26f19;
  --color-gold: #a88e50;
  --color-border: #e4e4e4;
  --color-border-dark: #bfbfbf;
}

/* stylelint-disable function-whitespace-after */
@font-face {
  font-family: YuGothicM;
  src: local("Yu Gothic Medium");
}
:root {
  /*
   * z-index
   */
  --z-lv-1: 1;
  --z-lv-2: 10;
  --z-lv-3: 100;
  --z-lv-4: 1000;
  --z-lv-5: 10000;
  --z-lv-6: 100000;
  --z-lv-7: 1000000;
  --z-lv-8: 10000000;
  --z-lv-9: 100000000;
  --z-lv-10: 1000000000;
  --z-behindLv-1: -1;
  --z-behindLv-2: -10;
  --z-behindLv-3: -100;
  --z-behindLv-4: -1000;
  --z-behindLv-5: -10000;
  --z-behindLv-6: -100000;
  --z-behindLv-7: -1000000;
  --z-behindLv-8: -10000000;
  --z-behindLv-9: -100000000;
  --z-behindLv-10: -1000000000;
  /*
   * font
   * http://mw-s.jp/2017css-font-win-mac/
   * http://silight.hatenablog.jp/entry/2015/07/02/214601
   */
  --fontFamily-base: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  --fontFamily-mincho: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  --fontFamily-mono: monospace, serif;
  --fontFamily-offer: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  --fontWeight-thin: 100;
  --fontWeight-extraLight: 200;
  --fontWeight-light: 300;
  --fontWeight-normal: 400;
  --fontWeight-medium: 500;
  --fontWeight-semiBold: 600;
  --fontWeight-bold: 700;
  --fontWeight-extraBold: 800;
  --fontWeight-black: 900;
  /*
   * easing
   */
  --easeIn-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  /* http://easings.net/ja#easeInSine */
  --easeOut-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  /* http://easings.net/ja#easeOutSine */
  --easeInOut-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  /* http://easings.net/ja#easeInOutSine */
  --easeIn-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  /* http://easings.net/ja#easeInQuad */
  --easeOut-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* http://easings.net/ja#easeOutQuad */
  --easeInOut-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  /* http://easings.net/ja#easeInOutQuad */
  --easeIn-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  /* http://easings.net/ja#easeInCubic */
  --easeOut-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  /* http://easings.net/ja#easeOutCubic */
  --easeInOut-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  /* http://easings.net/ja#easeInOutCubic */
  --easeIn-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  /* http://easings.net/ja#easeInQuart */
  --easeOut-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  /* http://easings.net/ja#easeOutQuart */
  --easeInOut-quart: cubic-bezier(0.77, 0, 0.175, 1);
  /* http://easings.net/ja#easeInOutQuart */
  --easeIn-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  /* http://easings.net/ja#easeInQuint */
  --easeOut-quint: cubic-bezier(0.23, 1, 0.32, 1);
  /* http://easings.net/ja#easeOutQuint */
  --easeInOut-quint: cubic-bezier(0.86, 0, 0.07, 1);
  /* http://easings.net/ja#easeInOutQuint */
  --easeIn-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  /* http://easings.net/ja#easeInExpo */
  --easeOut-expo: cubic-bezier(0.19, 1, 0.22, 1);
  /* http://easings.net/ja#easeOutExpo */
  --easeInOut-expo: cubic-bezier(1, 0, 0, 1);
  /* http://easings.net/ja#easeInOutExpo */
  --easeIn-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  /* http://easings.net/ja#easeInCirc */
  --easeOut-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  /* http://easings.net/ja#easeOutCirc */
  --easeInOut-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  /* http://easings.net/ja#easeInOutCirc */
  --easeIn-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  /* http://easings.net/ja#easeInBack */
  --easeOut-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* http://easings.net/ja#easeOutBack */
  --easeInOut-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  /* http://easings.net/ja#easeInOutBack */
  /*
   * famous layouts
   */
  --size-ipad-long: 1024px;
  --size-ipad-short: 768px;
  --size-ipadPro10inch-long: 1112px;
  --size-ipadPro10inch-short: 834px;
}

/* major breakpoints */
@keyframes funyafunya {
  from {
    border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
  }
  12.5% {
    border-radius: 80% 30% 50% 50%/50%;
  }
  25% {
    border-radius: 40% 40% 50%/30% 50% 50%;
  }
  37.5% {
    border-radius: 20% 30% 56% 70%/80% 50% 70% 20%;
  }
  50% {
    border-radius: 5%;
  }
  62.5% {
    border-radius: 3%;
  }
  75% {
    border-radius: 2%;
  }
  86.5% {
    border-radius: 1%;
  }
  to {
    border-radius: 0;
  }
}
:root {
  --max-width: 1280px;
}

.Header {
  position: relative;
  z-index: 10000000;
  z-index: var(--z-lv-8);
  width: 100%;
  background: #fff;
}

.BodyWrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  z-index: var(--z-lv-7);
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  transition: background 400ms;
}

.BodyWrapper.-visually-hidden {
  background: transparent;
}

.BodyWrapper[hidden] {
  display: none;
}

:root {
  --max-width: 1280px;
}

.observer-fadein {
  opacity: 0;
  /*transition: all 1200ms cubic-bezier(0.165, 0.84, 0.44, 1);*/
  transition: all 1s ease-out;
  transform: translate3d(0, 30px, 0);
}

.observer.-active.observer-fadein {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.-delay300 {
  transition-delay: 300ms;
}

.-delay1200 {
  transition-delay: 1200ms;
}

@media only screen and (max-width: 768px) {
  .KeyVisual::before {
    padding-top: 101.0667%;
  }
}

@media only screen and (max-width: 768px) {
  .KeyVisual__inner {
    justify-content: flex-start;
    padding-top: 24.6667vw;
  }
}

@media only screen and (max-width: 768px) {
  .KeyVisual__header {
    color: #393332;
    font-size: 7.3vw;
    text-align: center;
  }
}
@media print, screen and (min-width: 769px) {
  .KeyVisual__header {
    font-size: 3.2rem;
    font-size: 2.5396825397vw;
  }
}
.KeyVisual__header span {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .KeyVisual__header span {
    border: 1px solid #393332;
    font-size: 4.26vw;
    margin-left: 10px;
    padding: 6px 7px;
  }
}
@media print, screen and (min-width: 769px) {
  .KeyVisual__header span {
    font-size: 1.6rem;
    font-size: 1.2698412698vw;
    border: 1px solid #fff;
    margin-left: 17px;
    padding: 4px 8px;
  }
}

@media only screen and (max-width: 768px) {
  .KeyVisual__eyebrow {
    font-size: 4.26vw;
  }
}

.Section__title {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .Section__title {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: 1.66em;
    padding-left: 26px;
  }
}
@media print, screen and (min-width: 769px) {
  .Section__title {
    font-size: 2.6rem;
    line-height: 1.6;
    margin-bottom: 1.46em;
    padding-left: 2.3em;
  }
}
.Section__title::before {
  background: #000;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  margin-top: -1px;
  position: absolute;
  top: 50%;
}
@media only screen and (max-width: 768px) {
  .Section__title::before {
    width: 1em;
  }
}
@media print, screen and (min-width: 769px) {
  .Section__title::before {
    width: 1.346em;
  }
}

.Section__header-sub {
  color: #614466;
  font-family: Roboto, sans-serif;
  padding-top: 2em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .Section__header-sub {
    font-size: 1.2rem;
  }
}
@media print, screen and (min-width: 769px) {
  .Section__header-sub {
    font-size: 1.5rem;
  }
}

.Item__title {
  align-items: center;
  background: var(--color-gold);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 3.333em;
  left: -0.416em;
  position: absolute;
  top: -0.416em;
  width: 3.333em;
}
@media only screen and (max-width: 768px) {
  .Item__title {
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 769px) {
  .Item__title {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .Item__title small {
    font-size: 1.2rem;
  }
}
@media print, screen and (min-width: 769px) {
  .Item__title small {
    font-size: 1.3rem;
  }
}

.Item__button {
  background: #fff;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.4s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .Item__button {
    font-size: 1.4rem;
    padding: 11px 0;
  }
}
@media print, screen and (min-width: 769px) {
  .Item__button {
    font-size: 1.6rem;
    padding: 10px 0;
    width: 194px;
  }
}
.Item__button svg {
  height: 7px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
}
.Item__button path {
  fill: var(--color-blue);
  transition: 0.4s ease-in-out;
}
@media print, screen and (min-width: 769px) {
  .Item__button:hover {
    background: var(--color-blue);
    color: #fff;
  }
}
@media print, screen and (min-width: 769px) {
  .Item__button:hover path {
    fill: #fff;
  }
}
.Item__button.-reverse {
  background: var(--color-blue);
  color: #fff;
}
.Item__button.-reverse path {
  fill: #fff;
}
@media print, screen and (min-width: 769px) {
  .Item__button.-reverse:hover {
    background: #fff;
    color: var(--color-blue);
  }
}
@media print, screen and (min-width: 769px) {
  .Item__button.-reverse:hover path {
    fill: var(--color-blue);
  }
}

.Item__offer {
  font-family: var(--fontFamily-offer);
}
@media print, screen and (min-width: 769px) {
  .Item__offer {
    font-size: 1.4rem;
  }
}

.Item__scrollButton {
  position: absolute;
  top: calc(50% - 45px);
  display: block;
  width: 90px;
  height: 90px;
  background-color: #a98f52;
  background-image: url("/plus/used/images/button-arrow.png");
  background-repeat: no-repeat;
  background-position: center left 20px;
  background-size: 15%;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
}

@media (min-width: 768px) {
  .Item__scrollButton {
    display: none;
  }
}
.Item__scrollButton.-ready {
  opacity: 0.4;
}

.Item__scrollButton.-ready:hover,
.Item__scrollButton.-ready:focus {
  opacity: 0.7;
}

.Item__scrollButton[data-direction=left] {
  left: -45px;
  transform: rotate(180deg);
}

.Item__scrollButton[data-direction=right] {
  right: -45px;
}

@media only screen and (max-width: 768px) {
  .js-scroll-wrapper,
.js-scroll-wrapper02,
.js-scroll-wrapper03 {
    position: relative;
    width: calc(100% + 8vw);
    margin: 0 -4vw;
  }
}

@media only screen and (max-width: 768px) {
  .js-scroll-container,
.js-scroll-container02,
.js-scroll-container03 {
    overflow-x: auto;
    padding-left: 4vw;
  }
}

.About {
  padding-top: 0 !important;
}
@media print, screen and (min-width: 769px) {
  .About {
    margin-bottom: 0 !important;
    padding-bottom: 83px;
  }
}
.About .About__pict {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .About .About__pict {
    margin-top: 27px;
  }
}
@media print, screen and (min-width: 769px) {
  .About .About__pict {
    margin-top: 67px;
  }
}
.About .About__pict img {
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .About .Section__inner {
    padding-bottom: 13.333vw;
  }
}
@media print, screen and (min-width: 769px) {
  .About .Section__inner {
    padding-bottom: 0 !important;
  }
}
@media only screen and (max-width: 768px) {
  .About .Section__desc {
    text-align: center;
  }
}

.Certificated {
  background: #f3f3f3;
}
@media only screen and (max-width: 768px) {
  .Certificated {
    padding: 15vw 4vw 17vw;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated {
    padding: 70px 15px 100px;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .PageLink {
    margin-bottom: 47px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .PageLink {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    margin: 0 auto 50px;
    max-width: 890px;
    padding: 0 15px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .PageLink li {
    width: 32.58%;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .PageLink li:not(:first-child) {
    margin-top: 15px;
  }
}
.Certificated .PageLink a {
  background: #fff;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.4s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .Certificated .PageLink a {
    font-size: 1.5rem;
    padding: 8px 0;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .PageLink a {
    font-size: 2rem;
    padding: 11px 0;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .PageLink a small {
    font-size: 1.1rem;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .PageLink a small {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .PageLink a:hover {
    background: var(--color-blue);
    color: #fff;
  }
  .Certificated .PageLink a:hover svg path {
    fill: #fff;
  }
}
.Certificated .PageLink svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.Certificated .PageLink svg path {
  fill: var(--color-blue);
  transition: 0.4s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .Certificated .Section__desc {
    margin-top: 30px;
    margin-bottom: 65px;
    text-align: center;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Section__desc {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Certificated__inner {
    margin: 0 auto;
    max-width: 1000px;
  }
}
.Certificated .Point {
  margin-bottom: 70px;
}
@media only screen and (max-width: 768px) {
  .Certificated .Point .Point__block:not(:first-child) {
    margin-top: 23px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Point .Point__block:not(:first-child) {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Point .Point__block h4 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Point .Point__block h4 {
    font-size: 2rem;
    margin-bottom: 19px;
  }
}
.Certificated .Point .Point__block h4 span {
  background: var(--color-gold);
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .Certificated .Point .Point__block h4 span {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
    padding: 5px 0;
    width: 59px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Point .Point__block h4 span {
    font-size: 1.3rem;
    display: inline-block;
    margin-right: 15px;
    padding: 9px 0;
    width: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Point .Point__block h4 strong {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Point .Point__block h4 strong {
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Point .Point__block .Point__detail {
    display: flex;
    justify-content: space-between;
  }
}
.Certificated .Point .Point__block .Point__item {
  align-items: center;
  background: #fff;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .Certificated .Point .Point__block .Point__item {
    padding: 18px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Point .Point__block .Point__item {
    height: 110px;
    padding: 0 26px;
    width: 48.4%;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Point .Point__block .Point__item:not(:first-child) {
    margin-top: 10px;
  }
}
.Certificated .Point .Point__block .Point__item figure {
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .Certificated .Point .Point__block .Point__item figure {
    margin-right: 16px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Point .Point__block .Point__item figure {
    margin-right: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Point .Point__block .Point__item figure img {
    width: 50px;
  }
}
.Certificated .Point .Point__block .Point__item .Point__text h5 {
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .Certificated .Point .Point__block .Point__item .Point__text h5 {
    font-size: 1.4rem;
    line-height: 1.75;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Point .Point__block .Point__item .Point__text h5 {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Point .Point__block .Point__item .Point__text p {
    font-size: 1.4rem;
    line-height: 1.75;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Point .Point__block .Point__item .Point__text p {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Example__inner figure {
    margin-left: -8px;
  }
}

@media only screen and (max-width: 768px) {
  .Example {
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width: 769px) {
  .Example {
    margin-bottom: 88px;
  }
}
.Example .Example__text {
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .Example .Example__text {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 769px) {
  .Example .Example__text {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
@media print, screen and (min-width: 769px) {
  .Example figure {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .Example img {
    height: 324px;
  }
}
@media print, screen and (min-width: 769px) {
  .Example img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .Example .Item__offer {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .Example .Example__item:first-of-type {
    margin-bottom: 35px;
  }
}
@media print, screen and (min-width: 769px) {
  .Example .Example__item:first-of-type {
    margin-bottom: 40px;
  }
}

@media print, screen and (min-width: 769px) {
  .Support .Section__title {
    margin-bottom: 1.769em;
  }
}
@media only screen and (max-width: 768px) {
  .Support .Section__title img {
    width: 165px;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Section__title img {
    margin-left: 28px;
  }
}
@media only screen and (max-width: 768px) {
  .Support .Support__catch {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-bottom: 2.14em;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Support__catch {
    font-size: 1.6rem;
    margin-bottom: 2.875em;
  }
}
@media only screen and (max-width: 768px) {
  .Support .Support__body {
    padding: 0 10px;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Support__body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 10px;
  }
}
.Support .Support__item {
  background: #fff;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .Support .Support__item {
    width: 46.9696%;
  }
}
@media only screen and (max-width: 768px) {
  .Support .Support__item:not(:first-child) {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .Support .Support__item figure img {
    width: 100%;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Support__item figure img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .Support .Support__item .Support__detail {
    padding: 15px;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Support__item .Support__detail {
    padding: 25px 25px 28px;
  }
}
@media only screen and (max-width: 768px) {
  .Support .Support__item .Support__title {
    margin-bottom: 12px;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Support__item .Support__title {
    margin-bottom: 20px;
  }
}
.Support .Support__item .Support__title p {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .Support .Support__item .Support__title p {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Support__item .Support__title p {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.Support .Support__item .Support__title h5 {
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .Support .Support__item .Support__title h5 {
    font-size: 1.7rem;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Support__item .Support__title h5 {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .Support .Support__item .Support__table img {
    width: 100%;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Support__item .Support__table img {
    max-width: 100%;
  }
}
.Support .Support__item .Support__offer {
  font-family: var(--fontFamily-offer);
}
@media only screen and (max-width: 768px) {
  .Support .Support__item .Support__offer {
    font-size: 9px;
    line-height: 1.7;
    margin-top: 8px;
    margin-left: 1em;
    text-indent: -1em;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Support__item .Support__offer {
    font-size: 1.2rem;
    line-height: 1.333;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .Support .Support__item .Support__offer br {
    display: none;
  }
}
.Support .Support__item.Support__item-wide {
  width: 100%;
}
@media print, screen and (min-width: 769px) {
  .Support .Support__item.Support__item-wide {
    align-items: center;
    display: flex;
    margin-bottom: 48px;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Support__item.Support__item-wide .Support__detail {
    padding: 0 47px;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Support__item.Support__item-wide .Support__title {
    align-items: center;
    display: flex;
    justify-content: center;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Support__item.Support__item-wide .Support__title p {
    margin-bottom: 0;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .Support .Item__offer {
    margin-top: 12px;
    padding-left: 10px;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Item__offer {
    margin-top: 25px;
    padding-left: 10px;
  }
}
.Support .Item__offer li {
  color: #1a1a1a;
  margin-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 768px) {
  .Support .Item__offer li {
    font-size: 9px;
    line-height: 1.55;
  }
}
@media print, screen and (min-width: 769px) {
  .Support .Item__offer li {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}

.NextPass {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .NextPass {
    margin-top: 38px;
    padding: 0 10px;
  }
}
@media print, screen and (min-width: 769px) {
  .NextPass {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .NextPass p {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 769px) {
  .NextPass p {
    font-size: 1.8rem;
  }
}
.NextPass p:first-child {
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .NextPass p img {
    width: 100%;
  }
}
.NextPass a {
  transition: opacity 0.4s ease-in-out;
}
@media print, screen and (min-width: 769px) {
  .NextPass a:hover {
    opacity: 0.7;
  }
}

.Certificated__for15 {
  background: #fff;
}
@media print, screen and (min-width: 769px) {
  .Certificated__for15 {
    padding-bottom: 110px;
  }
}
.Certificated__for15 .Point .Point__block .Point__item {
  background: #f9f9f9;
}
@media print, screen and (min-width: 769px) {
  .Certificated__for15 .Example__inner figure {
    margin-left: 0;
  }
}
.Certificated__for15 .Support .Support__item {
  background: #f9f9f9;
}

.Banner {
  background: #f3f3f3;
}
@media only screen and (max-width: 768px) {
  .Banner {
    padding: 45px 15px 55px;
  }
}
@media print, screen and (min-width: 769px) {
  .Banner {
    padding: 80px 0 88px;
  }
}
.Banner .Banners:first-of-type {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .Banners {
    margin-top: 43px;
    padding: 0 10px;
  }
}
@media print, screen and (min-width: 769px) {
  .Banners {
    margin-top: 64px;
  }
}
.Banners h3 {
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .Banners h3 {
    font-size: 1.5rem;
    margin-bottom: 17px;
  }
}
@media print, screen and (min-width: 769px) {
  .Banners h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}
.Banners li {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .Banners li:not(:first-child) {
    margin-top: 10px;
  }
}
@media print, screen and (min-width: 769px) {
  .Banners li:not(:first-child) {
    margin-top: 20px;
  }
}
.Banners li a {
  transition: 0.4s ease-in-out;
}
@media print, screen and (min-width: 769px) {
  .Banners li a:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 768px) {
  .Banners li img {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .Bottom__offer {
    padding: 18px 25px;
  }
}
@media print, screen and (min-width: 769px) {
  .Bottom__offer {
    margin: 0 auto;
    max-width: 1000px;
    padding: 36px 0;
  }
}
.Bottom__offer li {
  margin-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 768px) {
  .Bottom__offer li {
    font-size: 9px;
    line-height: 1.55;
  }
}
@media print, screen and (min-width: 769px) {
  .Bottom__offer li {
    font-size: 1.3rem;
  }
}