@charset "UTF-8";
:root {
  --max-width: 1280px;
  --color-grey: #969696;
  --color-light-grey: #f3f3f3;
  --color-blue: #002950;
  --color-red: #b10510;
  --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: #004066;
  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 {
    position: relative;
    width: calc(100% + 8vw);
    margin: 0 -4vw;
  }
}

@media only screen and (max-width: 768px) {
  .js-scroll-container,
.js-scroll-container02 {
    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;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit__title {
    margin-bottom: 1.769em;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit {
    margin-bottom: 60px;
    padding: 0 10px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 78px;
    padding-left: 10px;
  }
}
.Certificated .Merit .Merit__item {
  background: #fff;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item {
    width: 46.9696%;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item:not(:first-child) {
    margin-top: 21px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item:not(.Merit__item-wide) {
    margin-bottom: 53px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item.Merit__item-wide {
    width: 100%;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item.Merit__item-wide .Merit__detail {
    padding: 18px 48px 26px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item.Merit__item-wide .Merit__detail small {
    font-size: 9px;
  }
}
.Certificated .Merit .Merit__item figure img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__detail {
    padding: 18px 20px 20px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__detail {
    padding: 24px 27px 33px;
  }
}
.Certificated .Merit .Merit__item .Merit__detail p {
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__detail p {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__detail p {
    font-size: 1.6rem;
  }
}
.Certificated .Merit .Merit__item .Merit__detail .Merit__offer {
  font-family: var(--fontFamily-offer);
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__detail .Merit__offer {
    margin-top: 10px;
  }
}
.Certificated .Merit .Merit__item .Merit__detail .Merit__offer li {
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__detail .Merit__offer li {
    font-size: 1rem;
    margin-left: 1em;
    text-indent: -1em;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__detail .Merit__offer li {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__buttons {
    margin-top: 16px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__buttons li {
    width: calc((100% - 22px) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__buttons li:not(:first-child) {
    margin-top: 9px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__buttons li a {
    width: 100%;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__BeforeAfter {
    align-items: flex-start;
    display: flex;
    padding-left: 38px;
  }
}
.Certificated .Merit .Merit__item .Merit__BeforeAfter h5 {
  font-family: var(--fontFamily-mincho);
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__before {
    margin: 0 auto 35px;
    padding-top: 40px;
    width: 230px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__before {
    flex-shrink: 0;
    margin-right: auto;
    padding-top: 87px;
    width: 31.829%;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__before h5 {
    font-size: 2rem;
    margin-bottom: 6px;
    text-align: right;
    width: 205px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__before h5 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
.Certificated .Merit .Merit__item .Merit__before figure {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__before figure {
    text-align: center;
  }
}
.Certificated .Merit .Merit__item .Merit__before figure img {
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__before figure img {
    width: 205px;
  }
}
.Certificated .Merit .Merit__item .Merit__before figure::after {
  border-color: transparent transparent transparent #a88e50;
  border-style: solid;
  content: "";
  height: 0;
  position: absolute;
  width: 0;
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__before figure::after {
    border-width: 16px 0 16px 12px;
    transform: rotate(90deg);
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__before figure::after {
    border-width: 22px 0 22px 16px;
    right: -36px;
    top: 33.74%;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__before figcaption {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__before figcaption {
    font-size: 1.6rem;
    margin-top: 12px;
  }
}
.Certificated .Merit .Merit__item .Merit__after {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__after {
    padding: 0 15px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__after {
    width: 62.61%;
  }
}
.Certificated .Merit .Merit__item .Merit__after h5 {
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__after h5 {
    font-size: 2.3rem;
    left: 29px;
    top: 14px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__after h5 {
    font-size: 3.1rem;
    left: 16px;
    top: 16px;
  }
}
.Certificated .Merit .Merit__item .Merit__service-menu {
  align-items: center;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__service-menu {
    flex-direction: column;
    margin-top: 28px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__service-menu {
    margin-top: 17px;
  }
}
.Certificated .Merit .Merit__item .Merit__service-menu h5 {
  background: #f0f0f0;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__service-menu h5 {
    font-size: 1.4rem;
    height: 20px;
    margin-bottom: 48px;
    width: 246px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__service-menu h5 {
    font-size: 1.6rem;
    margin-right: 48px;
    padding: 30px 0;
    width: 195px;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__service-menu h5 span {
    display: inline-block;
    position: relative;
    transform: translateY(13px);
    z-index: 2;
  }
}
.Certificated .Merit .Merit__item .Merit__service-menu h5::after {
  border-style: solid;
  content: "";
  height: 0;
  position: absolute;
  width: 0;
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__service-menu h5::after {
    border-color: #f0f0f0 transparent transparent transparent;
    border-width: 28px 123px 0 123px;
    bottom: -28px;
    left: 0;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__service-menu h5::after {
    border-color: transparent transparent transparent #f0f0f0;
    border-width: 39px 0 39px 17px;
    right: -17px;
    top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__service-menu .Merit__menu {
    margin-bottom: 15px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__service-menu .Merit__menu {
    font-size: 1.4rem;
    display: flex;
    line-height: 1.714;
    margin-right: auto;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__service-menu .Merit__menu ul {
    width: 235px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__service-menu .Merit__menu ul:first-child {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__service-menu .Merit__menu li {
    font-size: 1.4rem;
    line-height: 2;
  }
}
@media only screen and (max-width: 768px) {
  .Certificated .Merit .Merit__item .Merit__service-menu .Merit__service-link .Item__button {
    padding: 5px 0;
    width: 245px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated .Merit .Merit__item .Merit__service-menu .Merit__service-link .Item__button {
    padding: 3px 0;
    width: 232px;
  }
}
@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;
  }
}
@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 print, screen and (min-width: 769px) {
  .Support .Section__title {
    margin-bottom: 1.769em;
  }
}
@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;
  }
}

.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 .Merit .Merit__item {
  background: #f9f9f9;
}
@media print, screen and (min-width: 769px) {
  .Certificated__for15 .Merit .Merit__item.Merit__item-wide {
    align-items: center;
    display: flex;
    width: 100%;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated__for15 .Merit .Merit__item.Merit__item-wide figure {
    flex-shrink: 0;
    width: 46.9696%;
  }
}
.Certificated__for15 .Merit .Merit__item.Merit__item-wide figure img {
  max-width: 100%;
}
@media print, screen and (min-width: 769px) {
  .Certificated__for15 .Example__inner .Example__text {
    font-size: 1.8rem;
    margin-bottom: 35px;
  }
}
@media print, screen and (min-width: 769px) {
  .Certificated__for15 .Example__inner figure {
    margin-left: 0;
  }
}
.Certificated__for15 .Support .Support__item {
  background: #f9f9f9;
}

.Proud {
  background: var(--color-light-grey);
}
@media only screen and (max-width: 768px) {
  .Proud {
    padding: 0 4vw 53px;
  }
}
@media print, screen and (min-width: 769px) {
  .Proud {
    padding: 80px 0 70px;
  }
}
@media print, screen and (min-width: 769px) {
  .Proud .Section__header {
    margin-bottom: 45px;
  }
}
@media print, screen and (min-width: 769px) {
  .Proud .Proud__inner {
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 768px) {
  .Proud .Proud__top {
    margin-top: 23px;
    margin-bottom: 53px;
  }
}
@media print, screen and (min-width: 769px) {
  .Proud .Proud__top {
    align-items: center;
    display: flex;
    margin-bottom: 75px;
  }
}
@media only screen and (max-width: 768px) {
  .Proud .Proud__top figure {
    margin-bottom: 23px;
  }
}
@media print, screen and (min-width: 769px) {
  .Proud .Proud__top figure {
    flex-shrink: 0;
    margin-right: 46px;
    width: 56.4%;
  }
}
.Proud .Proud__top figure img {
  width: 100%;
}
@media print, screen and (min-width: 769px) {
  .Proud .Proud__top .Proud__top-detail {
    width: 39%;
  }
}
.Proud .Proud__top .Proud__text {
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .Proud .Proud__top .Proud__text {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}
@media print, screen and (min-width: 769px) {
  .Proud .Proud__top .Proud__text {
    font-size: 1.6rem;
    margin-bottom: 50px;
  }
}
.Proud .Proud__top .Proud__button .Item__button {
  padding: 21px 0;
}
@media print, screen and (min-width: 769px) {
  .Proud .Proud__top .Proud__button .Item__button {
    max-width: 300px;
    width: 100%;
  }
}
@media print, screen and (min-width: 769px) {
  .Proud .Section__title {
    margin-bottom: 43px;
  }
}
@media only screen and (max-width: 768px) {
  .Proud .Proud__special {
    margin-bottom: 18px;
  }
}
@media print, screen and (min-width: 769px) {
  .Proud .Proud__special {
    align-items: center;
    display: flex;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 950px) {
  .Proud .Proud__special {
    justify-content: center;
  }
}
.Proud .Proud__special .Proud__special-item {
  align-items: center;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .Proud .Proud__special .Proud__special-item {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 950px) {
  .Proud .Proud__special .Proud__special-item:first-child {
    margin-right: 10px;
  }
}
.Proud .Proud__special h4 {
  background: #535353;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .Proud .Proud__special h4 {
    font-size: 1.4rem;
    margin-right: 10px;
    padding: 17px 0;
    width: 94px;
  }
}
@media print, screen and (min-width: 769px) {
  .Proud .Proud__special h4 {
    font-size: 1.9rem;
    margin-right: 14px;
    padding: 23px 0;
    width: 128px;
  }
}
@media screen and (min-width: 768px) and (max-width: 950px) {
  .Proud .Proud__special h4 {
    font-size: 1.6rem;
    margin-right: 12px;
    padding: 20px 0;
    width: 100px;
  }
}
.Proud .Proud__special .Proud__fee {
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .Proud .Proud__special .Proud__fee {
    font-size: 1.6rem;
  }
}
@media print, screen and (min-width: 769px) {
  .Proud .Proud__special .Proud__fee {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 950px) {
  .Proud .Proud__special .Proud__fee {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 768px) {
  .Proud .Proud__special .Proud__off {
    font-size: 3.5rem;
    margin-left: auto;
  }
}
@media print, screen and (min-width: 769px) {
  .Proud .Proud__special .Proud__off {
    font-size: 4.8rem;
    margin-left: 8px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 950px) {
  .Proud .Proud__special .Proud__off {
    font-size: 3.8rem;
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .Proud .Proud__special .Proud__off span {
    font-size: 4.4rem;
  }
}
@media print, screen and (min-width: 769px) {
  .Proud .Proud__special .Proud__off span {
    font-size: 6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 950px) {
  .Proud .Proud__special .Proud__off span {
    font-size: 4.8rem;
  }
}
.Proud .Proud__offer li {
  font-family: var(--fontFamily-offer);
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .Proud .Proud__offer li {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 769px) {
  .Proud .Proud__offer li {
    font-size: 1.3rem;
    margin-left: 1em;
    text-indent: -1em;
  }
}

@media only screen and (max-width: 768px) {
  .Requirements {
    padding: 53px 4vw 14px;
  }
}
@media print, screen and (min-width: 769px) {
  .Requirements {
    padding: 75px 15px 50px;
  }
}
@media print, screen and (min-width: 769px) {
  .Requirements .Requirements__inner {
    margin: 0 auto;
    max-width: 1000px;
  }
}
.Requirements .Requirements__item {
  border-bottom: 1px solid var(--color-border);
  display: flex;
}
@media only screen and (max-width: 768px) {
  .Requirements .Requirements__item {
    margin-bottom: 27px;
    padding-bottom: 27px;
  }
}
@media print, screen and (min-width: 769px) {
  .Requirements .Requirements__item {
    margin-bottom: 37px;
    padding-bottom: 45px;
  }
}
.Requirements .Requirements__item h4 {
  flex-shrink: 0;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .Requirements .Requirements__item h4 {
    font-size: 1.6rem;
    line-height: 2;
    width: 110px;
  }
}
@media print, screen and (min-width: 769px) {
  .Requirements .Requirements__item h4 {
    font-size: 1.4rem;
    width: 31.4%;
  }
}
.Requirements .Requirements__item .Requirements__detail ol {
  list-style-type: decimal;
}
@media only screen and (max-width: 768px) {
  .Requirements .Requirements__item .Requirements__detail ol {
    padding-left: 2em;
  }
}
.Requirements .Requirements__item .Requirements__detail li {
  list-style-type: decimal;
}
@media only screen and (max-width: 768px) {
  .Requirements .Requirements__item .Requirements__detail li {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
@media print, screen and (min-width: 769px) {
  .Requirements .Requirements__item .Requirements__detail li {
    font-size: 1.4rem;
    list-style-position: inside;
    line-height: 1.75;
  }
}
.Requirements .Requirements__item .Requirements__detail p {
  font-family: var(--fontFamily-offer);
}
@media only screen and (max-width: 768px) {
  .Requirements .Requirements__item .Requirements__detail p {
    font-size: 1rem;
    margin-top: 1em;
    padding-left: 1em;
  }
}
@media print, screen and (min-width: 769px) {
  .Requirements .Requirements__item .Requirements__detail p {
    font-size: 1.4rem;
    line-height: 1.75;
  }
}
.Requirements .Requirements__offer {
  font-family: var(--fontFamily-offer);
}
@media only screen and (max-width: 768px) {
  .Requirements .Requirements__offer {
    font-size: 1rem;
    line-height: 1.6;
    margin-left: 1em;
    text-indent: -1em;
  }
}
@media print, screen and (min-width: 769px) {
  .Requirements .Requirements__offer {
    font-size: 1.3rem;
    line-height: 1.75;
  }
}