@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&family=Noto+Sans+JP:wght@100;400;500;700&family=Roboto:wght@400;700&display=swap");
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  font-family: "Roboto", "Noto Sans JP", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

code,
kbd,
pre,
samp {
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

menu,
ol,
ul {
  list-style: none;
  list-style-image: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.35);
}

a:active, a:hover {
  outline: 0;
}

a:focus {
  outline: none;
}

a img,
a svg {
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

.scroll {
  opacity: 0;
}

.scroll:nth-of-type(2) {
  -webkit-animation-delay: 0.15s !important;
  animation-delay: 0.15s !important;
}

.scroll:nth-of-type(3) {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.scroll.is-scroll.is-scroll--top {
  -webkit-animation: fadein 0.8s ease forwards;
  animation: fadein 0.8s ease forwards;
}

.scroll.is-scroll.is-scroll--right {
  -webkit-animation: right 0.8s ease forwards;
  animation: right 0.8s ease forwards;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.scroll.is-scroll.is-scroll--left {
  -webkit-animation: left 0.8s ease forwards;
  animation: left 0.8s ease forwards;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

@-webkit-keyframes fadein {
  0%,
  10% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadein {
  0%,
  10% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes right {
  0%,
  10% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes right {
  0%,
  10% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes left {
  0%,
  10% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes left {
  0%,
  10% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slide-bg {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

@keyframes slide-bg {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

@-webkit-keyframes slide-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.slide-bg {
  position: relative;
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slide-bg:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: #0061bc;
}

.slide-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.is-move .slide-bg:before {
  -webkit-animation: slide-bg 1s ease 0s 1 normal forwards;
  animation: slide-bg 1s ease 0s 1 normal forwards;
}

.is-move .slide-txt {
  -webkit-animation: slide-txt 0s ease 0.55s 1 normal forwards;
  animation: slide-txt 0s ease 0.55s 1 normal forwards;
}

@media screen and (min-width: 1024px) {
  .sp {
    display: none;
  }
}

.material-icons {
  vertical-align: middle;
}

.header {
  width: 100%;
  background: #004f9a;
  position: fixed;
  top: 0;
  z-index: 10000;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header-logo {
  width: 120px;
  line-height: 0;
}

.header-nav {
  position: absolute;
  top: 50.8px;
  right: 0;
}

.header-nav li {
  font-size: 16px;
  font-weight: 900;
  padding: 0 2rem;
}

.header-nav li a {
  display: inline-block;
  position: relative;
}

.header-nav li a:not(:only-child):after, .header-nav li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}

.header-nav li a .new {
  color: #0061bc;
}

.header .nav-dropdown {
  background: rgba(255, 255, 255, 0.95);
  position: absolute;
  display: none;
  z-index: 1;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.header .nav-dropdown > li + li {
  border-top: 1px solid #0061bc;
}

.header .nav-dropdown > li a {
  color: #0061bc;
  padding: 10px;
  background: transparent;
  display: block;
}

.header .nav-dropdown > li a:hover {
  color: #fff;
  background: rgba(4, 191, 239, 0.85);
}

.header-trigger {
  width: 60px;
  height: 60px;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10000;
}

.header-trigger #nav-toggle {
  position: absolute;
  left: 15px;
  top: -37px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}

.header-trigger #nav-toggle.active span {
  background-color: transparent;
}

.header-trigger #nav-toggle.active span:before, .header-trigger #nav-toggle.active span:after {
  top: 0;
}

.header-trigger #nav-toggle.active span:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header-trigger #nav-toggle.active span:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header-trigger span,
.header-trigger span:before,
.header-trigger span:after {
  cursor: pointer;
  width: 35px;
  height: 3px;
  background: #fff;
  position: absolute;
  display: block;
  content: "";
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.header-trigger span:before {
  top: -10px;
}

.header-trigger span:after {
  bottom: -10px;
}

@media only screen and (max-width: 1023px) {
  .header-logo {
    margin: 0 auto;
  }
  .header-trigger {
    display: block;
  }
  .header-nav {
    width: 100%;
  }
  .header-nav ul {
    height: 100vh;
    display: none;
    padding-bottom: 20px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 9999;
  }
  .header-nav li {
    padding: 0;
    border-bottom: 1px solid #e7e7e7;
  }
  .header-nav li a {
    padding: 15px;
    display: block;
  }
  .header-nav li ul li a {
    padding-left: 30px;
  }
  .header .nav-dropdown {
    position: static;
    margin: 0 15px;
    padding: 0;
    background: #fff;
  }
  .header-login {
    position: fixed;
    top: 15px;
    left: 10px;
  }
  .header-login a {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    display: block;
  }
  .header-signup {
    width: 100%;
    bottom: 0;
    right: 0;
    position: fixed;
  }
  .header-signup a {
    font-size: 13px;
    padding: 10px;
    background: #ff9300;
    border: 1px solid #ff9300;
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .header-inner {
    padding: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .header-inner {
    padding: 15px;
  }
  .header-logo {
    width: 150px;
  }
  .header-nav {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-nav .g_nav_list {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }
  .header-nav .g_nav_list > li {
    padding: 0 15px;
  }
  .header-nav .g_nav_list li {
    font-size: 15px;
    display: inline-block;
  }
  .header-nav .g_nav_list li a {
    color: #fff;
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .header-nav .g_nav_list li a:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .header-nav .g_nav_list li a:hover:after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .header-nav .g_nav_list li a .new {
    color: #fcee45;
  }
  .header-signup {
    width: 200px;
    top: 80px;
    right: 15px;
    position: fixed;
  }
  .header-signup a {
    font-size: 15px;
    padding: 10px;
    background: #ff9300;
    border: 1px solid #ff9300;
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    display: block;
    border-radius: 50px;
  }
  .header-signup a:hover {
    color: #ff9300;
    background: #fff;
  }
}

.main {
  color: #333;
  display: block;
  padding-top: 50.8px;
}
@media screen and (min-width: 1024px) {
  .main {
    padding-top: 68.5px;
  }
}

footer {
  text-align: center;
  padding: 0 10px 30px;
}

footer p {
  font-size: 12px;
  margin-top: 40px;
}

.footer-fix {
	width: 100%;
	position: fixed;
	bottom:0;
	right:0;
	padding: 15px;
	background: rgba(255,255,255,.9);
	-webkit-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
	transform: translateY(100px);
	opacity: 0;
	box-sizing: border-box;
}
.footer-fix.is-open {
	opacity: 1;
	transform: translateY(0);
}
.footer-movie {
   margin-bottom: 20px;
  display: none;
}
.footer-btn {
  margin: 0 auto;
}

.footer-btn a {
  font-size: 1.4rem;
  padding:1.2rem;
}
.footer-btn a:after {
	width: 18px;
	height: 18px;
  background-size: 18px 18px;
      right: 1.5rem;
}
@media screen and (min-width: 768px) {
  footer {
    text-align: center;
    padding: 0 10px 40px;
  }
  footer p {
    font-size: 13px;
    margin-top: 60px;
  }
  .footer-fix {
	width: 220px;
	padding: 15px;
	}
.footer-movie {
  display: block;
}
}
@media screen and (min-width: 1340px) {
  footer {
    text-align: center;
    padding: 0 10px 40px;
  }
  footer p {
    font-size: 13px;
    margin-top: 60px;
  }
  .footer-fix {
	width: 16.5vw;
	}
.footer-btn a {
  font-size: 1.5rem;
}
}
.hero-header {
  position: relative;
  margin-top: 3rem;
}

.hero-header__img .pass-icon {
  width: 80px;
  position: absolute;
  top: 1rem;
}

.hero-header__block .h-sub-title {
  font-size: 2rem;
  font-weight: 600;
  color: #0061bc;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid #0061bc;
  border-bottom: 1px solid #0061bc;
  display: inline-block;
  letter-spacing: 0.75rem;
  text-align: center;
}
.hero-header__block .h-sub-title span {
    font-size: 1.5rem;
    display: block;
    color: #fff;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ee1a3d;
    border-radius: 6px;
    text-align: center;
}
.hero-header__block .h-heading {
  font-size: 2.8rem;
}

.hero-header__block .h-heading span {
  font-size: 4.6rem;
}

.hero-header__block .h-notice {
  margin-top: 3rem;
}

.hero-header__block .h-notice h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-header__block .h-results {
  margin-top: 3rem;
  text-align: left;
}

.hero-header__block .h-results-title {
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding: 0.5rem 2rem;
  width: auto;
  color: #fff;
  background: #0061bc;
  z-index: 0;
}

.hero-header__block .h-results-title:after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 13px 10px 0;
  border-color: transparent #0061bc transparent transparent;
  z-index: -1;
}

.hero-header__block .h-results-list {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero-header__block .h-results-list li {
  width: 30%;
  font-weight: 600;
  color: #0061bc;
  position: relative;
  border-bottom: 1px solid #0061bc;
}

.hero-header__block .h-results-list li:before {
  content: "";
  background-image: url(../images/svg/check-icon.svg);
  background-size: 35px 35px;
  background-position: center center;
  width: 35px;
  height: 35px;
  display: block;
  margin: 0 auto 1rem;
}

@media screen and (max-width: 1023px) {
  .hero-header {
    padding: 4rem 1rem 0;
  }
  .hero-header__img .pass-icon {
    left: 1rem;
  }
  .hero-header__block {
    margin-top: 3rem;
    text-align: center;
  }
  .hero-header__block .h-results-list li {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .hero-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
    overflow: hidden;
  }
  .hero-header__img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: -2%;
  }
  .hero-header__img .pass-icon {
    width: 100px;
    top: 0;
    right: 5rem;
  }
  .hero-header__block {
    width: 50%;
    margin: 0 2.5vw;
  }
  .hero-header__block .h-sub-title {
    margin-bottom: 2rem;
  }
  .hero-header__block .h-heading {
    font-size: 2.8vw;
  }
  .hero-header__block .h-heading span {
    font-size: 3.5vw;
  }
  .hero-header__block .h-notice {
    margin-top: 4rem;
  }
  .hero-header__block .h-notice h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .hero-header__block .h-notice p {
    font-size: 1.6rem;
  }
  .hero-header__block .h-results {
    margin-top: 4rem;
  }
  .hero-header__block .h-results-title {
    font-size: 1.8rem;
    padding: 0.75rem 2rem;
  }
  .hero-header__block .h-results-list li {
    width: 31%;
    font-size: 1.6rem;
    padding-left: 2.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .hero-header__block .h-results-list li:before {
    background-size: 18px 18px;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0.25rem;
    left: 0;
  }
}

@media screen and (min-width: 1300px) {
  .hero-header__block .h-heading span {
    font-size: 3.6vw;
  }
  .hero-header__block .h-notice p {
    font-size: 1.8rem;
  }
  .hero-header .h-results-list li {
    font-size: 1.8rem;
  }
}

.copy {
  font-size: 1.2rem;
  text-align: center;
  padding: 6rem 0 2rem;
}

.repechage .c1 {
  padding: 4rem 1rem;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.repechage .c1-heading {
  font-size: 2.6rem;
  text-align: center;
  margin: -6rem 0 4rem;
}

.repechage .c1-heading span {
  background: #fff;
  display: inline-block;
  padding: 0 2rem;
}

.repechage .c1-wrap {
  max-width: 850px;
  margin: 0 auto;
}

.repechage .c1-wrap__list {
  text-align: center;
}

.repechage .c1-wrap__list ul {
  display: inline-block;
}

.repechage .c1-wrap__list ul li {
  font-weight: 600;
  text-align: left;
  padding-left: 4rem;
  position: relative;
}

.repechage .c1-wrap__list ul li + li {
  margin-top: 1.5rem;
}

.repechage .c1-wrap__list ul li:last-child {
  font-size: 1.8rem;
}

.repechage .c1-wrap__list ul li:before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../images/svg/arrow-icon.svg);
  background-size: 30px 30px;
  position: absolute;
  top: 0;
  left: 0;
}

.repechage .c1-wrap__list ul li span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #dedede));
  background: linear-gradient(transparent 60%, #dedede 60%);
}

.repechage .c1-wrap__txt {
  margin-top: 3rem;
  padding: 2rem;
  background: #0061bc;
  border-radius: 6px;
}

.repechage .c1-wrap__txt p {
  color: #fff;
}

.repechage .c2 {
  margin-top: 6rem;
  padding: 0 1rem;
}

.repechage .c2-sub {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
}

.repechage .c2-sub span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #dedede));
  background: linear-gradient(transparent 60%, #dedede 60%);
}

.repechage .c2-heading {
  font-size: 4rem;
  text-align: center;
  margin-top: 1rem;
  color: #0061bc;
}

.repechage .c2-heading span {
  display: inline-block;
  padding: 1rem 2rem;
  position: relative;
}

.repechage .c2-heading span:before {
  content: "";
  width: 10px;
  height: 100%;
  border-top: 1px solid #0061bc;
  border-left: 1px solid #0061bc;
  border-bottom: 1px solid #0061bc;
  position: absolute;
  top: 0;
  left: 0;
}

.repechage .c2-heading span:after {
  content: "";
  width: 10px;
  height: 100%;
  border-top: 1px solid #0061bc;
  border-right: 1px solid #0061bc;
  border-bottom: 1px solid #0061bc;
  position: absolute;
  top: 0;
  right: 0;
}

.repechage .c2-wrap {
  max-width: 940px;
  margin: 0 auto;
}

.repechage .c2-point {
  margin-top: 3rem;
  padding: 4rem;
  border: 2px solid #dedede;
  border-radius: 6px;
}

.repechage .c2-point__img {
  text-align: center;
}

.repechage .c2-point__block {
  margin-top: 2rem;
}

.repechage .c2-point__block h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.repechage .c2-point__block h2 span {
  color: #0061bc;
}

.repechage .c2-point__block p {
  font-size: 1.8rem;
}

.repechage .c2-txt {
  margin-top: 3rem;
  padding: 2.5rem;
  position: relative;
}

.repechage .c2-txt:before {
  content: "";
  width: 50px;
  height: 50px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  position: absolute;
  top: 0;
  left: 0;
}

.repechage .c2-txt:after {
  content: "";
  width: 50px;
  height: 50px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  position: absolute;
  bottom: 0;
  right: 0;
}

.repechage .c2-txt p {
  line-height: 1.7;
}

.repechage .c2-txt p span {
  color: #0061bc;
  font-weight: 600;
}

.repechage .c3 {
  margin-top: 6rem;
  padding: 4rem 1rem;
  background: #0061bc;
}

.repechage .c3-heading {
  font-size: 3rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}

.repechage .c3-heading span {
  background: #fff;
  color: #0061bc;
  display: inline-block;
  padding: 0 1rem;
}

.repechage .c3-txt {
  text-align: center;
  color: #fff;
}

.repechage .c3-wrap {
  max-width: 940px;
  margin: 0 auto;
}

.repechage .c3-step {
  margin-top: 5rem;
  padding: 2.5rem 5rem;
  background: #fff;
  position: relative;
  border-radius: 6px;
  text-align: center;
}

.repechage .c3-step__number {
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  line-height: 6rem;
  height: 60px;
  color: #08a7ff;
  position: absolute;
  top: -3rem;
  left: 2rem;
}

.repechage .c3-step__img {
  margin-bottom: 2rem;
}

.repechage .c3-step__txt {
  font-size: 1.7rem;
}

.repechage .c3-step__time {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #0061bc;
  display: inline-block;
}

.repechage .c4 {
  margin-top: 6rem;
  padding: 0 1rem;
}

.repechage .c4-heading {
  font-size: 3rem;
  text-align: center;
}

.repechage .c4-wrap {
  max-width: 940px;
  margin: 0 auto;
}

.repechage .c4-work {
  margin-top: 3rem;
  padding: 4rem 2rem;
  border: 2px solid #0061bc;
  border-radius: 6px;
}

.repechage .c4-work__img {
  width: 85%;
  margin: 0 auto;
}

.repechage .c4-work__block {
  margin-top: 2rem;
}

.repechage .c4-work__block h2 {
  font-size: 2rem;
  color: #0061bc;
  background: #ebf7fd;
  padding: 0.35rem 2rem;
  display: inline-block;
}

.repechage .c4-work__block .work-list li {
  margin-top: 1rem;
  padding-left: 3rem;
  position: relative;
}

.repechage .c4-work__block .work-list li:before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/svg/check-icon2.svg);
  background-size: 20px 20px;
  position: absolute;
  top: 0.2rem;
  left: 0;
}

.repechage .c4-sub-work {
  margin-top: 4rem;
  text-align: center;
}

.repechage .c4-sub-work h3 {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  color: #fff;
  font-size: 2.2rem;
  background: #0061bc;
}

.repechage .c4-sub-work h3:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #0061bc;
}

.repechage .c4-sub-work-list li {
  width: 40%;
  display: inline-block;
  vertical-align: top;
  margin: 2rem 1rem 0;
}

.repechage .c4-sub-work-list li h4 {
  font-size: 1.5rem;
  color: #0061bc;
  margin: 1rem;
}
.c4-not-work {
	margin-top: 4rem;
}
.c4-not-work h4 {
	font-size: 1.8rem;
	text-align: center;
}
.c4-not-work h4 span {
	color:#e9011e;
}
.c4-not-work .n1{
	border: 1px solid #dedede;
    border-radius: 6px;
	margin-top: 2rem;
	padding: 2rem;
}
.c4-not-work .n1 h5{
	font-size: 1.6rem;
	color:#0061bc;
}
.c4-not-work .n1 li{
	font-size: 1.5rem;
	text-align: left;
	list-style: disc;
	margin: 1rem 0 0 1.5rem;
}
.c4-not-work .n1 p{
	font-size: 1.5rem;
	font-weight: bold;
	text-align: left;
	margin-top: 2rem;
}
.repechage .c5 {
  margin-top: 6rem;
  padding: 4rem 1rem;
  background: #ebf7fd;
}

.repechage .c5-heading {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.repechage .c5-txt {
  text-align: center;
}

.repechage .c5-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.repechage .c5-flow {
  margin-top: 3rem;
}

.repechage .c5-flow li {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 2.5rem 1.5rem;
  background: #fff;
  text-align: center;
  border-radius: 6px;
  position: relative;
}

.repechage .c5-flow li + li {
  margin-top: 6rem;
}

.repechage .c5-flow li + li:before {
  content: "";
  display: block;
  position: absolute;
  top: -5.2rem;
  left: 50%;
  width: 24px;
  height: 24px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: translateX(-50%) rotate(135deg);
          transform: translateX(-50%) rotate(135deg);
}

.repechage .c5-flow li:last-child {
  color: #fff;
  background: #0061bc;
}

.repechage .c5-flow-number {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  line-height: 45px;
  width: 45px;
  height: 45px;
  color: #fff;
  text-align: center;
  background: #08a7ff;
  border-radius: 50%;
  position: absolute;
  top: -2rem;
  left: 1rem;
}

.repechage .c6 {
  margin-top: 6rem;
  padding: 0 1rem;
}

.repechage .c6-txt {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.repechage .c6-txt + p {
  margin-top: 2rem;
}

.repechage .c6 .contact-btn {
  max-width: 580px;
  margin: 3rem auto 0;
}

.repechage .c6 .contact-btn a {
  font-size: 2.4rem;
}

@media screen and (max-width: 1023px) {
  .repechage .c2-point__block {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .repechage .c1 {
    padding: 8rem 1rem;
  }
  .repechage .c1-heading {
    font-size: 5rem;
    text-align: center;
    margin: -11.5rem 0 4rem;
  }
  .repechage .c1-wrap__list ul li {
    font-size: 2rem;
  }
  .repechage .c1-wrap__list ul li + li {
    margin-top: 2.5rem;
  }
  .repechage .c1-wrap__list ul li:last-child {
    font-size: 2.3rem;
  }
  .repechage .c1-wrap__txt {
    margin-top: 5rem;
    padding: 3rem;
  }
  .repechage .c1-wrap__txt p {
    font-size: 1.8rem;
  }
  .repechage .c2 {
    margin-top: 10rem;
  }
  .repechage .c2-sub {
    font-size: 3.2rem;
  }
  .repechage .c2-heading {
    font-size: 7rem;
    margin-top: 2rem;
  }
  .repechage .c2-heading span {
    padding: 1rem 3rem;
  }
  .repechage .c2-heading span:before {
    content: "";
    width: 20px;
  }
  .repechage .c2-heading span:after {
    content: "";
    width: 20px;
  }
  .repechage .c2-point {
    margin-top: 5rem;
    padding: 4rem 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .repechage .c2-point__img {
    width: 330px;
  }
  .repechage .c2-point__block {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 2rem 0 0;
  }
  .repechage .c2-point__block h2 {
    font-size: 4rem;
    margin-bottom: 2.5rem;
  }
  .repechage .c2-point__block h2 span {
    color: #0061bc;
  }
  .repechage .c2-point__block p {
    font-size: 2rem;
  }
  .repechage .c2-txt {
    margin-top: 5rem;
    padding: 3.5rem;
    position: relative;
  }
  .repechage .c2-txt:before, .repechage .c2-txt:after {
    width: 80px;
    height: 80px;
  }
  .repechage .c2-txt p {
    font-size: 1.8rem;
  }
  .repechage .c3 {
    margin-top: 10rem;
    padding: 8rem 1rem;
    background: #0061bc;
  }
  .repechage .c3-heading {
    font-size: 6rem;
    margin-bottom: 3.5rem;
  }
  .repechage .c3-txt {
    font-size: 2rem;
  }
  .repechage .c3-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .repechage .c3-step {
    width: 32%;
    margin-top: 6rem;
    padding: 3rem 1rem;
    background: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .repechage .c3-step__img {
    padding: 0 3rem;
    margin-bottom: 3rem;
  }
  .repechage .c4 {
    margin-top: 10rem;
  }
  .repechage .c4-heading {
    font-size: 6rem;
  }
  .repechage .c4-work {
    margin-top: 3rem;
    padding: 4rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .repechage .c4-work__img {
    width: 300px;
  }
  .repechage .c4-work__block {
    margin: 0 0 0 4rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .repechage .c4-work__block h2 {
    font-size: 2.2rem;
  }
  .repechage .c4-work__block .work-list li {
    margin-top: 2rem;
    font-size: 1.7rem;
  }
  .repechage .c4-sub-work {
    margin-top: 6rem;
  }
  .repechage .c4-sub-work h3 {
    padding: 1.5rem 3rem;
    font-size: 3rem;
  }
  .repechage .c4-sub-work-list {
    margin-top: 3rem;
  }
  .repechage .c4-sub-work-list li {
    width: 20%;
    display: inline-block;
    vertical-align: top;
    margin: 2rem 2rem 0;
  }
  .repechage .c4-sub-work-list li h4 {
    font-size: 1.8rem;
    margin: 1.5rem;
  }
  .c4-not-work {
	margin-top: 4rem;
}
.c4-not-work h4 {
	font-size: 2rem;
}
.not-work-inner {
	display: flex;
	justify-content: space-between;
}
.c4-not-work .n1{
	width: 48%;
	margin-top: 2rem;
	padding: 2.5rem;
	box-sizing: border-box;
}
.c4-not-work .n1 h5{
	font-size: 1.8rem;
}

  .repechage .c5 {
    margin-top: 10rem;
    padding: 8rem 1rem;
    background: #ebf7fd;
  }
  .repechage .c5-heading {
    font-size: 6rem;
    margin-bottom: 3.5rem;
  }
  .repechage .c5-txt {
    font-size: 2rem;
  }
  .repechage .c5-flow {
    margin-top: 6rem;
  }
  .repechage .c5-flow li {
    font-size: 2.2rem;
    padding: 3rem 1.5rem;
  }
  .repechage .c5-flow-number {
    left: 2rem;
  }
  .repechage .c6 {
    margin-top: 10rem;
  }
  .repechage .c6-txt {
    font-size: 2.7rem;
  }
  .repechage .c6-txt + p {
    margin-top: 3rem;
  }
  .repechage .c6 .contact-btn {
    max-width: 580px;
    margin: 4rem auto 0;
  }
  .repechage .c6 .contact-btn a {
    font-size: 2.8rem;
  }
  .repechage .c6 .contact-btn a:after {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
    right: 2.5rem;
  }
}

.price {
  max-width: 940px;
  padding: 0 1rem;
  margin: 3rem auto 0;
}

.price-heading {
  font-size: 3rem;
  text-align: center;
}

.price-flow {
  margin-top: 3rem;
}

.price-flow__block {
  width: 70vw;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.price-flow__block + div {
  margin-top: 10rem;
}

.price-flow__block + div:before {
  content: "+";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12rem;
  font-weight: 100;
  position: absolute;
  top: -15.5rem;
  left: 50%;
  margin-left: -3rem;
}

.price-flow__block .p-notice {
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin: 2rem 0 0;
}

.price-flow__block h2 {
  font-size: 2.5rem;
  color: #0061bc;
}

.price-flow__block h2 span {
  font-size: 5rem;
}

.price-point {
  margin-top: 6rem;
}

.price-point-txt {
  font-size: 2rem;
  font-weight: 700;
  padding: 2rem;
  background: #ebf7fd;
  border-radius: 6px;
}

.price-point-txt + div {
  margin-top: 1.5rem;
}

.price-point-txt span {
  display: inline-block;
  padding-left: 3.5rem;
  position: relative;
}

.price-point-txt span:before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../images/svg/check-icon.svg);
  background-size: 25px 25px;
  position: absolute;
  top: 0.15rem;
  left: 0;
}

.price-movie {
  margin-top: 6rem;
}

.price-movie h2 {
  font-size: 2.6rem;
  text-align: center;
  color: #0061bc;
  margin-bottom: 2rem;
}

.price-movie .vimeo {
  width: 100%;
  padding: 56.25% 0 0 0;
  position: relative;
}

.price-movie .vimeo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .price {
    margin-top: 6rem;
  }
  .price-heading {
    font-size: 5rem;
    text-align: center;
  }
  .price-flow {
    margin-top: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .price-flow__block {
    width: 230px;
  }
  .price-flow__block + div {
    margin-top: 0;
  }
  .price-flow__block + div:before {
    font-size: 11rem;
    top: 3.3rem;
    left: -7rem;
    margin-left: 0;
  }
  .price-flow__block .p-notice {
    font-size: 2.3rem;
  }
  .price-flow__block h2 {
    font-size: 2.5rem;
    color: #0061bc;
  }
  .price-flow__block h2 span {
    font-size: 5.2rem;
  }
  .price-point {
    margin-top: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .price-point-txt {
    width: 43%;
    text-align: center;
    margin: 0 0.75rem;
    padding: 2rem;
    margin-top: 1.5rem;
  }
  .price-point-txt:first-child {
    width: 70%;
  }
  .price-movie {
    margin-top: 10rem;
  }
  .price-movie h2 {
    font-size: 4rem;
  }
}

.cv {
  max-width: 880px;
  margin: 4rem auto 8rem;
  padding: 0 1rem;
}

.cv div {
  margin: 1rem 0;
}

.btn {
  font-size: 2rem;
  font-weight: 600;
  display: block;
  padding: 1.3rem;
  color: #fff !important;
  text-align: center;
  border-radius: 50px;
  position: relative;
}

.btn:after {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../images/svg/btn-icon.svg);
  background-size: 25px 25px;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn--primary {
  background: #ff9300;
}

.btn--second {
  background: #0061bc;
}

@media screen and (min-width: 1024px) {
  .cv {
		margin: 6rem auto 10rem;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
  }
  .cv div {
    width: 48%;
  }
  .btn {
    font-size: 2.2rem;
    padding: 1.8rem;
  }
  .btn--primary:hover {
    background: #ffa800;
  }
  .btn--second:hover {
    background: #08a7ff;
  }
}
