@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  font-feature-settings: "palt";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  word-break: break-all;
  line-break: strict;
  -webkit-hyphens: auto;
          hyphens: auto;
  text-align: justify;
  line-height: 1.8rem;
}

html {
  overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
}
a:link, a:visited, a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

fieldset, img {
  border: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

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

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

br {
  letter-spacing: 0;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  font-family: "Noto Sans JP", "Yu Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ------------------------------------- 
  header
------------------------------------- */
header {
  background: #001E40;
  width: 100%;
}
header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 95%;
  margin: 0 auto;
  padding: 10px 0;
}
header p, header a {
  color: #FFFFFF;
  font-weight: bold;
}
header a:hover {
  text-decoration: none;
  opacity: 0.7;
}
header .title {
  max-width: 273px;
}
header .menu {
  position: relative;
}
header .menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-right: 200px;
}
header .menu_line {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: #30D952;
  border-radius: 10px;
  width: 160px;
  line-height: 60px;
  padding: 0 10px;
  text-align: center;
  font-size: 1.125rem;
}
@media screen and (max-width: 1280px) {
  header .wrap {
    width: 100%;
    height: 60px;
    padding: 10px 20px;
  }
  header .title {
    max-width: 150px;
  }
  header .menu_line {
    right: 60px;
    border-radius: 5px;
    line-height: 40px;
  }
}
@media screen and (max-width: 1024px) {
  header .title p {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }
  header .menu_line {
    width: 140px;
    font-size: 1rem;
  }
}

/* ------------------------------------- 
  sp-menu
------------------------------------- */
.hamburger {
  display: block;
  position: fixed;
  background: #1B65D1;
  z-index: 9999;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  /* スマホメニューを開いてる時のボタン */
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  left: 15px;
  background: #FFFFFF;
  transition: 0.3s all;
}
.hamburger span:nth-child(1) {
  top: 20px;
}
.hamburger span:nth-child(2) {
  top: 30px;
}
.hamburger span:nth-child(3) {
  top: 40px;
}
.hamburger.active span:nth-child(1) {
  top: 30px;
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 30px;
  transform: rotate(45deg);
}

/* メニュー背景　**************************/
.globalMenuSp {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  background-color: #1B65D1;
  text-align: center;
  width: 100%;
  transition: all 0.6s;
  opacity: 0;
  pointer-events: none;
  height: 100vh;
  /* クリックでjQueryで追加・削除 */
}
.globalMenuSp .globalMenuSp-wrap {
  width: 90%;
  margin: 70px auto 0;
}
.globalMenuSp .globalMenuSp-wrap ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.globalMenuSp .globalMenuSp-wrap li a {
  display: block;
  text-align: center;
}
.globalMenuSp.active {
  opacity: 100;
  pointer-events: auto;
  display: block;
}

/* ------------------------------------- 
  font・text
------------------------------------- */
/* font ******/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  color: #000000;
}

h1, h2, h3 {
  font-weight: bold;
  letter-spacing: 0.1rem;
}

h1 {
  font-size: 5rem;
  line-height: 1.8em;
}

h2 {
  font-size: 3.125rem;
  line-height: 1.5em;
}

h3 {
  font-size: 1.875rem;
  line-height: 1.5em;
}

p, dl, dt, li, th, td, a {
  font-size: 1rem;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
  h2 {
    font-size: 2.1875rem;
  }
  h3 {
    font-size: 1.4375rem;
  }
  p, dl, dt, li, th, td, a {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.5625rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  p, dl, dt, li, th, td, a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.4375rem;
  }
  h3 {
    font-size: 1rem;
  }
}
/* text ******/
.txt_bold {
  font-weight: bold;
}

.txt_normal {
  font-weight: normal;
}

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

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

/* ------------------------------------- 
  a
------------------------------------- */
a {
  color: #000000;
  transition: all 0.3s;
}

/* ------------------------------------- 
  layout
------------------------------------- */
.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

/* PC SP ******/
.sp-375, .sp-480, .sp-768, .sp-960, .sp-1024, .sp-1280, .sp-1440, .sp-1536, .sp-1920 {
  display: none !important;
}

@media (max-width: 1920px) {
  .sp-1920 {
    display: block !important;
  }
  .pc-1920 {
    display: none !important;
  }
}
@media (max-width: 1536px) {
  .sp-1536 {
    display: block !important;
  }
  .pc-1536 {
    display: none !important;
  }
}
@media (max-width: 1440px) {
  .sp-1440 {
    display: block !important;
  }
  .pc-1440 {
    display: none !important;
  }
}
@media (max-width: 1280px) {
  .sp-1280 {
    display: block !important;
  }
  .pc-1280 {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .sp-1024 {
    display: block !important;
  }
  .pc-1024 {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .sp-960 {
    display: block !important;
  }
  .pc-960 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-768 {
    display: block !important;
  }
  .pc-768 {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .sp-480 {
    display: block !important;
  }
  .pc-480 {
    display: none !important;
  }
}
@media (max-width: 375px) {
  .sp-375 {
    display: block !important;
  }
  .pc-375 {
    display: none !important;
  }
}
/* ------------------------------------- 
  button
------------------------------------- */
.button {
  position: relative;
  display: block;
  border-radius: 10px;
  max-width: 600px;
  width: 70%;
  margin: 0 auto;
  line-height: 100px;
  letter-spacing: 0.1rem;
  text-align: center;
  font-size: 1.5625rem;
  font-weight: bold;
  color: #FFFFFF;
}
.button:hover {
  text-decoration: none;
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
}

.button-line {
  background: #30D952;
}
.button-line::after {
  background: url(../images/arrow.svg) no-repeat;
  background-size: 100%;
}
.button-line:hover::after {
  right: 25px;
}

.button-entry {
  background: #1B65D1;
}
.button-entry::after {
  background: url(../images/arrow2.svg) no-repeat;
  background-size: 100%;
}
.button-entry:hover::after {
  top: 53%;
}

@media screen and (max-width: 1024px) {
  .button {
    line-height: 80px;
    font-size: 1.25rem;
  }
  .button::after {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 768px) {
  .button {
    max-width: 450px;
    width: 100%;
    line-height: 60px;
    font-size: 1.125rem;
  }
  .button::after {
    right: 15px;
  }
  .button-line:hover::after {
    right: 10px;
  }
}
@media screen and (max-width: 480px) {
  .button {
    font-size: 1rem;
  }
  .button::after {
    right: 5px;
  }
  .button-entry::after {
    right: 10px;
  }
  .button-line:hover::after {
    right: 5px;
  }
}
/* ------------------------------------- 
  phone
------------------------------------- */
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------- 
  layout common
------------------------------------- */
.mv, section {
  position: relative;
  width: 100%;
}

section::before {
  content: "";
  position: absolute;
  transform: skewY(-10deg);
  top: -150px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 130%;
}
section .wrap {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 200px;
}
section .title, section .title2 {
  margin-bottom: 90px;
}
section .title {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section .title .title-sub {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 150px;
  padding-left: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2em;
}
section .title .title-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  z-index: -1;
  transform: skewX(20deg);
  width: 260px;
  height: 100%;
}
section .title h2 {
  max-width: 837px;
  width: 67.5%;
  text-align: left;
}
section .title-type01 .title-sub {
  color: #FFFFFF;
}
section .title-type01 .title-sub::before {
  background: #013168;
  background-size: 100%;
}
section .title-type01 h2 {
  color: #FFFFFF;
  text-shadow: 5px 5px #001E40;
}
section .title-type02 .title-sub {
  color: #FFFFFF;
}
section .title-type02 .title-sub::before {
  background: #1B65D1;
  background-size: 100%;
}
section .title-type02 h2 {
  color: #FFFFFF;
}
section .title-type03 .title-sub {
  color: #1B65D1;
}
section .title-type03 .title-sub::before {
  background: rgba(27, 101, 209, 0.1);
  background-size: 100%;
}
section .title-type03 h2 {
  color: #001E40;
  text-shadow: 3px 3px #CCD2D9;
}
section .title-type04 .title-sub {
  color: #1B65D1;
}
section .title-type04 .title-sub::before {
  background: #FFFFFF;
  background-size: 100%;
}
section .title-type04 h2 {
  color: #001E40;
  text-shadow: 3px 3px #CCD2D9;
}
section .title2 {
  font-size: 3.125rem;
  text-align: center;
  color: #001E40;
}
section .h3-lead {
  margin-bottom: 50px;
  text-align: center;
  color: #FFFFFF;
}

section.cont-sub {
  padding-top: 200px;
}

ul.step {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
ul.step li {
  position: relative;
  border: 2px solid #FFFFFF;
  height: 100%;
  padding: 90px 30px 40px;
}
ul.step li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  background: url(../images/arrow3_white.svg) no-repeat;
  background-size: 100%;
  width: 30px;
  height: 48px;
}
ul.step li:last-child::after {
  opacity: 0;
}
ul.step p, ul.step h4 {
  color: #FFFFFF;
}
ul.step .num {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #FFFFFF;
  width: 80px;
  margin: 0;
  padding: 0;
  line-height: 80px;
  text-align: center;
  font-size: 1.875rem;
  font-weight: bold;
  color: #1B65D1;
}
ul.step h4 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}
ul.step p {
  margin-top: 30px;
}

ul.att li {
  font-size: 0.875rem;
}

@media screen and (max-width: 1024px) {
  section .wrap {
    padding-bottom: 150px;
  }
  section .title, section .title2 {
    margin-bottom: 70px;
  }
  section .title .title-sub {
    height: 120px;
    padding-left: 30px;
    font-size: 1.875rem;
  }
  section .title .title-sub::before {
    width: 200px;
  }
  section.cont-sub {
    padding-top: 150px;
  }
  ul.step {
    grid-template-columns: repeat(2, 1fr);
  }
  ul.step li {
    padding: 60px 30px 40px;
  }
  ul.step li:nth-child(2)::after {
    opacity: 0;
  }
  ul.step .num {
    width: 60px;
    line-height: 60px;
  }
  ul.step h4 {
    font-size: 1.125rem;
  }
  ul.step p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  section::before {
    top: -100px;
  }
  section .wrap {
    padding-bottom: 100px;
  }
  section .title, section .title2 {
    margin-bottom: 50px;
  }
  section .title .title-sub {
    height: 100px;
    padding-left: 20px;
    font-size: 1.25rem;
  }
  section .title .title-sub::before {
    width: 150px;
  }
  section.cont-sub {
    padding-top: 100px;
  }
  ul.step {
    grid-template-columns: repeat(2, 1fr);
  }
  ul.step li {
    padding: 60px 20px 30px;
  }
  ul.step li:nth-child(2)::after {
    border: none;
  }
  ul.step .num {
    width: 50px;
    line-height: 50px;
  }
  ul.step h4 {
    font-size: 1rem;
  }
  ul.att li {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  section::before {
    top: -80px;
  }
  section .title {
    flex-direction: column;
    align-items: flex-start;
  }
  section .title .title-sub {
    height: 80px;
    font-size: 1.125rem;
  }
  section .title h2 {
    width: 100%;
    margin-top: 30px;
    text-align: center;
  }
  ul.step {
    grid-template-columns: repeat(1, 1fr);
  }
  ul.step li::after {
    top: auto;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%) rotate(90deg);
  }
  ul.step li:nth-child(2):after {
    opacity: 1;
  }
  ul.step .num {
    top: -1px;
    left: -1px;
  }
}
/* ------------------------------------- 
  page_top
------------------------------------- */
#page_top {
  position: fixed;
  right: 5%;
  z-index: 9997;
}
#page_top p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #1B65D1;
  border: 1px solid #FFFFFF;
  border-radius: 100%;
  text-align: center;
  font-size: 0.9375rem;
  letter-spacing: 0;
  color: #FFFFFF;
}
#page_top:hover {
  cursor: pointer;
  text-decoration: none;
  opacity: 0.7;
}

/* ------------------------------------- 
  footer
------------------------------------- */
footer {
  background: url(../images/footer_bg.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
}
footer .wrap {
  width: 90%;
  margin: 0 auto;
  padding: 100px 0;
}
footer h2, footer p {
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.5em;
  letter-spacing: 0.2rem;
}
footer h2 {
  font-size: 5rem;
  text-shadow: 5px 5px #001E40;
}
footer p.lead {
  margin-top: 30px;
  font-size: 2.5rem;
}
footer .button {
  margin-top: 50px;
}
footer .footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 70px;
}
footer .footer-menu a {
  text-decoration: underline;
  font-size: 1.25rem;
  font-weight: bold;
  color: #FFFFFF;
}
footer .footer-menu a:hover {
  text-decoration: none;
}
footer .footer-credit {
  margin-top: 30px;
}
footer .footer-credit p {
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  footer .wrap {
    padding: 70px 0;
  }
  footer h2 {
    font-size: 3.75rem;
  }
  footer p.lead {
    font-size: 1.875rem;
  }
  footer .footer-menu a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  footer .wrap {
    padding: 50px 0;
  }
  footer h2 {
    font-size: 1.875rem;
  }
  footer p.lead {
    font-size: 1.5625rem;
  }
  footer .button {
    margin-top: 30px;
  }
  footer .footer-menu {
    margin-top: 50px;
  }
  footer .footer-menu a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  footer h2 {
    font-size: 1.5625rem;
  }
  footer p.lead {
    font-size: 1rem;
  }
  footer .button {
    width: 90%;
  }
  footer .footer-menu {
    flex-direction: column;
    gap: 5px;
    margin-top: 50px;
  }
  footer .footer-menu a {
    font-size: 0.875rem;
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  animation-timing-function: ease-out;
  opacity: 0;
}
.animated.infinite {
  animation-iteration-count: infinite;
}

/* ------------------------------------- 
  animation
------------------------------------- */
/* fadeIn **************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

/* fadeInLeft **************************/
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

/* fadeInRight **************************/
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

/* fadeInUp **************************/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes rote {
  0%, 100% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
}
/* fluffy **************************/
@keyframes fluffy1 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fluffy2 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-5px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
/* zoomIn **************************/
@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomInFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoomInFade {
  animation-name: zoomInFade;
}

/* blurIn **************************/
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.blurIn {
  animation-name: blurIn;
}

/* noFilter **************************/
@keyframes noFilter {
  100% {
    opacity: 1;
    filter: none;
  }
}
.noFilter {
  animation-name: noFilter;
}

@keyframes noTransform {
  100% {
    opacity: 1;
    transform: none;
  }
}
.noTransform {
  animation-name: noTransform;
}

/* lineanime **************************/
.lineanime {
  fill: none;
  stroke: #ffffff;
  stroke-width: 19;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1800px;
  stroke-dashoffset: 1800px;
  animation: line 2.5s 0.1s forwards;
}
.lineanime.st2 {
  animation-delay: 0.3s;
}
.lineanime.st3 {
  animation-delay: 0.6s;
}
.lineanime.st4 {
  animation-delay: 0.9s;
}
.lineanime.st5 {
  animation-delay: 1.2s;
}
.lineanime.st6 {
  animation-delay: 1.5s;
}
.lineanime.st7 {
  animation-delay: 1.8s;
}

@keyframes line {
  0% {
    stroke-dashoffset: 1800px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* scaleDown **************************/
@keyframes scaleDown {
  0% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.scaleDown {
  animation-name: scaleDown;
  transform: scale(1.2);
  opacity: 1 !important;
}

/* scaleUP **************************/
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.scaleUp {
  animation-name: scaleUp;
  transform: scale(1);
  opacity: 1 !important;
}

/* passing **************************/
.passing {
  display: block;
}

.passing .passing-bar {
  position: relative;
  display: inline-block;
  transform: translate3d(0, 0, 0);
}

.passing .passing-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

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

.passing.move .passing-txt {
  animation: passing-txt 0s ease 0.5s 1 normal forwards;
}

@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*passingLeft*/
.passingL.passing-bar:before {
  left: 0;
}

.passingL.move .passing-bar:before {
  animation: passing-barL 1s ease 0s 1 normal forwards;
}

@keyframes passing-barL {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
/*passingRight*/
.passingR.passing-bar:before {
  right: 0;
}

.passingR.move .passing-bar:before {
  animation: passing-barR 1s ease 0s 1 normal forwards;
}

@keyframes passing-barR {
  0% {
    right: 0;
    width: 0;
  }
  50% {
    right: 0;
    width: 100%;
  }
  51% {
    right: 0;
    width: 100%;
  }
  100% {
    right: 100%;
    width: 0;
  }
}
/* txt_popout **************************/
.txt_popout {
  overflow: hidden;
}

.txt_popout.move p {
  transform: translateY(2em);
  animation: textanimation 1s forwards;
}

.txt_popout p:nth-child(1) {
  animation-delay: 0.05s;
}

.txt_popout p:nth-child(2) {
  animation-delay: 0.1s;
}

.txt_popout p:nth-child(3) {
  animation-delay: 0.15s;
}

.txt_popout p:nth-child(4) {
  animation-delay: 0.2s;
}

.txt_popout p:nth-child(5) {
  animation-delay: 0.25s;
}

.txt_popout p:nth-child(6) {
  animation-delay: 0.3s;
}

.txt_popout p:nth-child(7) {
  animation-delay: 0.35s;
}

.txt_popout p:nth-child(8) {
  animation-delay: 0.4s;
}

.txt_popout p:nth-child(9) {
  animation-delay: 0.45s;
}

.txt_popout p:nth-child(10) {
  animation-delay: 0.5s;
}

.txt_popout p:nth-child(11) {
  animation-delay: 0.55s;
}

.txt_popout p:nth-child(12) {
  animation-delay: 0.6s;
}

@keyframes textanimation {
  0% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}
/* txt_popout2_out **************************/
.txt_popout2_out {
  display: block;
}

.txt_popout2_out span.l {
  display: inline-block;
  line-height: 1;
  vertical-align: top;
}
.txt_popout2_out.move span.l {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.15s linear, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.txt_popout2_out.move span.l_0 {
  transition-delay: 0s;
}
.txt_popout2_out.move span.l_1 {
  transition-delay: 0.02s;
}
.txt_popout2_out.move span.l_2 {
  transition-delay: 0.04s;
}
.txt_popout2_out.move span.l_3 {
  transition-delay: 0.06s;
}
.txt_popout2_out.move span.l_4 {
  transition-delay: 0.08s;
}
.txt_popout2_out.move span.l_5 {
  transition-delay: 0.1s;
}
.txt_popout2_out.move span.l_6 {
  transition-delay: 0.12s;
}
.txt_popout2_out.move span.l_7 {
  transition-delay: 0.14s;
}
.txt_popout2_out.move span.l_8 {
  transition-delay: 0.16s;
}
.txt_popout2_out.move span.l_9 {
  transition-delay: 0.18s;
}
.txt_popout2_out.move span.l_10 {
  transition-delay: 0.2s;
}
.txt_popout2_out.move span.l_11 {
  transition-delay: 0.22s;
}

/* txt_popout2_in **************************/
.txt_popout2_in {
  display: block;
}

.txt_popout2_in span.l {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.15s linear, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.txt_popout2_in.move span.l {
  display: inline-block;
  line-height: 1;
  vertical-align: top;
  opacity: 1;
  transform: none;
  transition: opacity 0.2s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.txt_popout2_in.move span.l_0 {
  transition-delay: 0.5s;
}
.txt_popout2_in.move span.l_1 {
  transition-delay: 0.52s;
}
.txt_popout2_in.move span.l_2 {
  transition-delay: 0.54s;
}
.txt_popout2_in.move span.l_3 {
  transition-delay: 0.56s;
}
.txt_popout2_in.move span.l_4 {
  transition-delay: 0.58s;
}
.txt_popout2_in.move span.l_5 {
  transition-delay: 0.6s;
}
.txt_popout2_in.move span.l_6 {
  transition-delay: 0.62s;
}
.txt_popout2_in.move span.l_7 {
  transition-delay: 0.64s;
}
.txt_popout2_in.move span.l_8 {
  transition-delay: 0.66s;
}
.txt_popout2_in.move span.l_9 {
  transition-delay: 0.68s;
}
.txt_popout2_in.move span.l_10 {
  transition-delay: 0.7s;
}
.txt_popout2_in.move span.l_11 {
  transition-delay: 0.72s;
}

/* txt_marker **************************/
.txt_marker {
  display: inline;
  position: relative;
}

.txt_marker::before {
  content: "";
  width: 0;
  display: block;
  position: absolute;
  top: -7px;
  left: 0;
  z-index: -2;
}

.txt_marker.move::before {
  animation: markerAnime 1s forwards ease;
}

@keyframes markerAnime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* img-slide **************************/
.img-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  line-height: 0;
}

.img-slide:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  z-index: 1;
  transform-origin: right center;
  transform: scaleX(1);
  transition: width 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.img-slide img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  top: -50%;
  left: -100%;
  transition: 0.7s;
}

.img-slide--move img {
  opacity: 1;
  left: 0;
}

.img-slide--move.img-slide:before {
  transform: scaleX(0);
  width: 100%;
}

/* slideIn **************************/
/*slideInL*/
.slideInL {
  position: relative;
  overflow: hidden;
}

.slideInL::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slideInL--move::after {
  animation: slideInL 1.5s ease-in-out forwards;
}

@keyframes slideInL {
  0% {
    left: 0;
  }
  70% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
/*slideInR*/
.slideInR {
  position: relative;
  overflow: hidden;
}

.slideInR::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}

.slideInR--move::after {
  animation: slideInR 1.5s ease-in-out forwards;
}

@keyframes slideInR {
  0% {
    right: 0;
  }
  70% {
    right: 100%;
  }
  100% {
    right: 100%;
  }
}
/*slideInT*/
.slideInT {
  position: relative;
  overflow: hidden;
}

.slideInT::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slideInT--move::after {
  animation: slideInT 1.5s ease-in-out forwards;
}

@keyframes slideInT {
  0% {
    top: 0;
  }
  70% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
/*slideInB*/
.slideInB {
  position: relative;
  overflow: hidden;
}

.slideInB::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.slideInB--move::after {
  animation: slideInB 1.5s ease-in-out forwards;
}

@keyframes slideInB {
  0% {
    bottom: 0%;
  }
  70% {
    bottom: 100%;
  }
  100% {
    bottom: 100%;
  }
}
/* slideOut **************************/
/*slideOutL*/
.slideOutL {
  position: relative;
  overflow: hidden;
}

.slideOutL::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
  z-index: 1;
}

.slideOutL--move::after {
  animation: slideOutL 1.5s ease-in-out forwards;
}

@keyframes slideOutL {
  0% {
    right: 100%;
  }
  70% {
    right: 0;
  }
  100% {
    right: 0;
  }
}
/*slideOutR*/
.slideOutR {
  position: relative;
  overflow: hidden;
}

.slideOutR::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: 1;
}

.slideOutR--move::after {
  animation: slideOutR 1.5s ease-in-out forwards;
}

@keyframes slideOutR {
  0% {
    left: 100%;
  }
  70% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
/*slideOutT*/
.slideOutT {
  position: relative;
  overflow: hidden;
}

.slideOutT::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 100%;
  left: 0;
  z-index: 1;
}

.slideOutT--move::after {
  animation: slideOutT 1.5s ease-in-out forwards;
}

@keyframes slideOutT {
  0% {
    bottom: 100%;
  }
  70% {
    bottom: 0;
  }
  100% {
    bottom: 0;
  }
}
/*slideOutB*/
.slideOutB {
  position: relative;
  overflow: hidden;
}

.slideOutB::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  z-index: 1;
}

.slideOutB--move::after {
  animation: slideOutB 1.5s ease-in-out forwards;
}

@keyframes slideOutB {
  0% {
    top: 100%;
  }
  70% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
/* liner **************************/
/*linerLeft*/
.linerLeft:before {
  content: "";
  position: absolute;
  left: 0;
}

.linerLeft:before {
  animation: linerLeft 1s ease-in-out forwards;
}

@keyframes linerLeft {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerRight*/
.linerRight:before {
  content: "";
  position: absolute;
  left: 100%;
  transform: translateX(-100%);
  animation: linerRight 1s ease-in-out forwards;
}

@keyframes linerRight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerTop*/
.linerTop:before {
  content: "";
  position: absolute;
  top: 0;
  animation: linerTop 1s ease-in-out forwards;
}

@keyframes linerTop {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*linerBottom*/
.linerBottom:before {
  content: "";
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
  animation: linerBottom 1s ease-in-out forwards;
}

@keyframes linerBottom {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/* ------------------------------------- 
  delay
------------------------------------- */
.delay1 {
  animation-delay: 0.1s !important;
}

.delay2 {
  animation-delay: 0.2s !important;
}

.delay3 {
  animation-delay: 0.3s !important;
}

.delay4 {
  animation-delay: 0.4s !important;
}

.delay5 {
  animation-delay: 0.5s !important;
}

.delay6 {
  animation-delay: 0.6s !important;
}

.delay7 {
  animation-delay: 0.7s !important;
}

.delay8 {
  animation-delay: 0.8s !important;
}

.delay9 {
  animation-delay: 0.9s !important;
}

.delay10 {
  animation-delay: 1s !important;
}

.delay11 {
  animation-delay: 1.1s !important;
}

a {
  transition-duration: 0.3s;
}

/* ------------------------------------- 
  mv
------------------------------------- */
.mv {
  background: #013168;
  background-size: cover;
  height: auto;
  padding-bottom: 200px;
}
.mv .h1-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  background: url(../images/h1_bg.png) no-repeat;
  background-size: 100%;
  background-position: top center;
  padding-top: 50px;
}
.mv .h1-wrap h1 {
  max-width: 1048px;
  width: 70%;
}
.mv .h1-wrap .lead {
  max-width: 500px;
  width: 50%;
}
.mv .button-wrap {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 50px auto 0;
}
.mv .button-wrap li {
  margin-bottom: 30px;
}
.mv .button-wrap li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .mv .button-wrap li {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    padding-bottom: 100px;
  }
  .mv .h1-wrap {
    gap: 30px;
    padding-top: 30px;
  }
  .mv .button-wrap {
    margin-top: 30px;
  }
}
/* ------------------------------------- 
  movie
------------------------------------- */
.movie::before {
  background: #001E40;
  background-size: 100%;
}
.movie .wrap {
  z-index: 2;
  padding-top: 0;
}
.movie .movie-list {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.movie .movie-list li {
  width: 100%;
}
.movie .movie-list video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #000000;
}
.movie .movie-list p {
  margin-top: 15px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .movie .movie-list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
  }
}

/* ------------------------------------- 
  about
------------------------------------- */
.about::before {
  background: #001E40;
  background-size: 100%;
}
.about::after {
  content: "";
  position: absolute;
  top: -150px;
  left: 0;
  z-index: 1;
  background: url(../images/about_bg-title.svg) no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100%;
}
.about .parts {
  position: absolute;
  z-index: 1;
  max-width: 400px;
}
.about .parts-right {
  top: 10%;
  right: 0;
}
.about .parts-left {
  left: 10%;
  bottom: 0;
}
.about .wrap {
  z-index: 2;
  padding-top: 0;
}
.about .title {
  position: relative;
}
.about .overview {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.about .overview .image {
  max-width: 600px;
  width: 48.3%;
}
.about .overview .detail {
  max-width: 570px;
  width: 46%;
}
.about .overview .detail h3, .about .overview .detail p, .about .overview .detail a {
  color: #FFFFFF;
}
.about .overview .detail h3 {
  margin-bottom: 30px;
}
.about .overview .detail p, .about .overview .detail a {
  font-size: 1.25rem;
  line-height: 1.8em;
  margin-bottom: 20px;
}
.about .overview .detail p:last-child, .about .overview .detail a:last-child {
  margin-bottom: 0;
}
.about .overview .detail a {
  text-decoration: underline;
}
.about .recommend {
  margin-top: 100px;
}
.about .recommend h3 {
  font-size: 40;
  text-align: center;
  color: #FFFFFF;
}
.about .recommend ul {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.about .recommend ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background: #FFFFFF;
  max-width: 290px;
  height: 100%;
  padding: 30px 30px 40px 30px;
}
.about .recommend ul li img {
  max-width: 150px;
  width: 60%;
}
.about .recommend ul li p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .about::after {
    top: -80px;
  }
  .about .parts {
    max-width: 200px;
  }
  .about .parts-right {
    top: 5%;
  }
  .about .parts-left {
    left: 5%;
    bottom: 10%;
  }
  .about p {
    font-size: 1.125rem;
  }
  .about .recommend {
    margin-top: 70px;
  }
  .about .recommend h3 {
    font-size: 1.875rem;
  }
  .about .recommend ul {
    margin-top: 40px;
  }
  .about .recommend ul li {
    gap: 10px;
    padding: 20px;
  }
  .about .recommend ul li p {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .about::after {
    top: -50px;
  }
  .about .overview {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
  .about .overview .image, .about .overview .detail {
    margin: 0 auto;
  }
  .about .overview .image {
    width: 70%;
  }
  .about .overview .detail {
    width: 100%;
  }
  .about .overview .detail h3 {
    text-align: center;
  }
  .about .overview .detail p {
    font-size: 1rem;
  }
  .about .recommend {
    margin-top: 50px;
  }
  .about .recommend h3 {
    font-size: 1.5625rem;
  }
  .about .recommend ul {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    width: 90%;
    margin: 30px auto 0;
  }
  .about .recommend ul li {
    padding: 20px;
  }
  .about .recommend ul li p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .about .recommend ul {
    gap: 10px;
  }
}

/* ------------------------------------- 
  prizes
------------------------------------- */
.prizes::before {
  background: linear-gradient(#1B99D1, #1B65D1);
  background-size: 100%;
}
.prizes .prizes-list {
  background: #FFFFFF;
  border: 10px solid;
  padding: 40px;
}
.prizes .prizes-list .title-sub {
  max-width: 300px;
  width: 100%;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 10px 12px;
  letter-spacing: 0.1rem;
}
.prizes .prizes-list .title-sub span {
  display: inline-block;
  max-width: 30px;
  margin-right: 10px;
}
.prizes .prizes-list h4 {
  padding: 40px 0 30px;
  font-weight: bold;
  font-size: 1.875rem;
  line-height: 1.5em;
}
.prizes .prizes-list p {
  font-size: 1.25rem;
  line-height: 1.8em;
}
.prizes .prizes-list_wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 50px auto;
}
.prizes .prizes-list_wrap .prizes-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  max-width: 600px;
  width: 48.3%;
}
.prizes .button {
  margin-top: 70px;
}
.prizes .prizes-list01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -o-border-image: linear-gradient(90deg, #9A891F, #4D4510);
     border-image: linear-gradient(90deg, #9A891F, #4D4510);
  border-image-slice: 1;
  padding: 70px;
}
.prizes .prizes-list01 .image {
  max-width: 500px;
  width: 45.4%;
}
.prizes .prizes-list01 .detail {
  max-width: 500px;
  width: 48.1%;
}
.prizes .prizes-list01 .title-sub {
  background: linear-gradient(90deg, #9A891F, #4D4510);
}
.prizes .prizes-list01 h4 {
  font-size: 2.5rem;
  color: #897A1C;
}
.prizes .prizes-list01 .tag {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.prizes .prizes-list01 .tag li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  background: rgba(27, 101, 209, 0.1);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #1B65D1;
}
.prizes .prizes-list01 .tag li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
}
.prizes .prizes-list02 {
  -o-border-image: linear-gradient(90deg, #8B8B8B, #464646);
     border-image: linear-gradient(90deg, #8B8B8B, #464646);
  border-image-slice: 1;
}
.prizes .prizes-list02 .title-sub {
  background: linear-gradient(90deg, #8B8B8B, #464646);
}
.prizes .prizes-list02 h4 {
  color: #897A1C;
}
.prizes .prizes-list03 {
  -o-border-image: linear-gradient(90deg, #DCA054, #6E502A);
     border-image: linear-gradient(90deg, #DCA054, #6E502A);
  border-image-slice: 1;
}
.prizes .prizes-list03 .title-sub {
  background: linear-gradient(90deg, #DCA054, #6E502A);
}
.prizes .prizes-list03 h4 {
  color: #C9924D;
}
.prizes .prizes-list04 {
  border-color: #1BC5D1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.prizes .prizes-list04 h4 {
  padding-top: 0 !important;
  color: #1BC5D1;
  text-align: center;
}
.prizes .att {
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .prizes .prizes-list {
    padding: 30px;
  }
  .prizes .prizes-list .title-sub {
    margin: 0 auto;
    font-size: 1rem;
  }
  .prizes .prizes-list h4 {
    padding: 30px 0 20px;
    font-size: 1.5625rem;
    text-align: center;
  }
  .prizes .prizes-list p {
    font-size: 1.125rem;
  }
  .prizes .prizes-list_wrap .prizes-list {
    align-items: center;
  }
  .prizes .button {
    margin-top: 50px;
  }
  .prizes .prizes-list01 {
    flex-direction: column;
    gap: 20px;
  }
  .prizes .prizes-list01 .image {
    width: 60%;
    margin: 0 auto;
  }
  .prizes .prizes-list01 .detail {
    max-width: 100%;
    width: 100%;
  }
  .prizes .prizes-list01 h4 {
    font-size: 1.875rem;
  }
  .prizes .prizes-list01 .tag {
    justify-content: center;
    margin-top: 20px;
  }
  .prizes .prizes-list01 .tag li {
    gap: 10px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .prizes .prizes-list {
    border-width: 5px;
    padding: 20px;
  }
  .prizes .prizes-list .title-sub {
    font-size: 0.875rem;
  }
  .prizes .prizes-list h4 {
    padding: 20px 0;
    font-size: 1.125rem;
  }
  .prizes .prizes-list p {
    font-size: 1rem;
  }
  .prizes .prizes-list_wrap {
    flex-direction: column;
    gap: 20px;
    margin: 20px auto;
  }
  .prizes .prizes-list_wrap .prizes-list {
    max-width: 100%;
    width: 100%;
  }
  .prizes .button {
    margin-top: 50px;
  }
  .prizes .prizes-list01 .image {
    width: 80%;
  }
  .prizes .prizes-list01 h4 {
    font-size: 1.5625rem;
  }
  .prizes .prizes-list01 .tag li {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  supporter-p
------------------------------------- */
.supporter-p::before {
  background: #013168;
  background-size: 100%;
}
.supporter-p ul {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 830px;
  width: 90%;
  margin: 100px auto 0;
}
.supporter-p ul li {
  position: relative;
  background: #FFFFFF;
  max-width: 400px;
  height: 100%;
  padding: 40% 50px 30px 50px;
}
.supporter-p ul li img {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 200px;
  width: 50%;
}
.supporter-p ul li .tag {
  padding: 5px 10px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
}
.supporter-p ul li h4, .supporter-p ul li p {
  text-align: center;
}
.supporter-p ul li h4 {
  margin: 20px auto 10px;
  font-weight: bold;
}
.supporter-p ul li h4 span {
  display: block;
  font-size: 1.5625rem;
}
.supporter-p ul li.tokuten01 .tag {
  background: #FF4E4E;
}
.supporter-p ul li.tokuten02 .tag {
  background: #FF904E;
}
@media screen and (max-width: 1024px) {
  .supporter-p ul li {
    padding: 40% 30px 30px 30px;
  }
  .supporter-p ul li .tag {
    font-size: 1.125rem;
  }
  .supporter-p ul li h4 span {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .supporter-p ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .supporter-p ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 20px;
  }
  .supporter-p ul li img {
    position: static;
    transform: none;
    width: 30%;
  }
  .supporter-p ul li .tokuten-wrap {
    width: 100%;
  }
  .supporter-p ul li .tag {
    font-size: 1rem;
  }
  .supporter-p ul li h4 span {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .supporter-p ul li {
    flex-direction: column;
  }
}

/* ------------------------------------- 
  supporter-f
------------------------------------- */
.supporter-f::before {
  background: linear-gradient(#013168, #1B65D1);
  background-size: 100%;
}
.supporter-f .h3-lead {
  margin-bottom: 90px;
}
.supporter-f .tokuten {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 917px;
  margin: 100px auto 0;
}
.supporter-f .tokuten .image {
  max-width: 300px;
  width: 33%;
}
.supporter-f .tokuten .detail {
  max-width: 570px;
  width: 62.1%;
}
.supporter-f .tokuten .detail h3, .supporter-f .tokuten .detail p, .supporter-f .tokuten .detail a {
  color: #FFFFFF;
}
.supporter-f .tokuten .detail h3 {
  font-weight: bold;
  font-size: 2.5rem;
}
.supporter-f .tokuten .detail p, .supporter-f .tokuten .detail a {
  margin-top: 40px;
  font-size: 1.875rem;
  line-height: 1.8em;
  letter-spacing: 0.1rem;
}
.supporter-f .tokuten .detail .text-line {
  font-weight: bold;
  background: linear-gradient(transparent 50%, #5D8DD3 50%);
}
@media screen and (max-width: 1024px) {
  .supporter-f .h3-lead {
    margin-bottom: 70px;
  }
  .supporter-f .tokuten {
    margin-top: 70px;
  }
  .supporter-f .tokuten .detail h3 {
    font-size: 1.875rem;
  }
  .supporter-f .tokuten .detail p {
    margin-top: 30px;
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 1024px) {
  .supporter-f .h3-lead {
    margin-bottom: 50px;
  }
  .supporter-f .tokuten {
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }
  .supporter-f .tokuten .image {
    width: 50%;
  }
  .supporter-f .tokuten .detail {
    width: 100%;
  }
  .supporter-f .tokuten .detail h3, .supporter-f .tokuten .detail p {
    text-align: center;
  }
  .supporter-f .tokuten .detail h3 {
    font-size: 1.5625rem;
  }
  .supporter-f .tokuten .detail p {
    margin-top: 20px;
    font-size: 1.25rem;
  }
}

/* ------------------------------------- 
  join
------------------------------------- */
.join {
  background: #FFFFFF;
}
.join .title {
  margin-bottom: 110px;
}
.join .step li {
  border-color: #1B65D1;
}
.join .step li::after {
  background: url(../images/arrow3_blue.svg) no-repeat;
}
.join .step .num {
  background: #1B65D1;
  color: #FFFFFF;
}
.join .step h4 {
  color: #1B65D1;
}
.join .step p {
  color: #000000;
}
.join .step .line {
  display: block;
  background: #30D952;
  border-radius: 10px;
  max-width: 150px;
  margin: 30px auto 0;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  line-height: 60px;
}
.join .step .line:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .join .title {
    margin-bottom: 70px;
  }
  .join .step .line {
    font-size: 1rem;
    line-height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .join .title {
    margin-bottom: 50px;
  }
  .join .step .line {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  judging
------------------------------------- */
.judging .h3-lead {
  margin-bottom: 90px;
  color: #000000;
}
.judging .judging-list {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.judging .judging-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background: rgba(27, 101, 209, 0.1);
  max-width: 380px;
  height: 100%;
  padding: 50px;
}
.judging .judging-list img {
  max-width: 103px;
  width: 40%;
}
.judging .judging-list h4, .judging .judging-list p {
  text-align: center;
}
.judging .judging-list h4 {
  margin-top: 40px;
  font-size: 1.5625rem;
  font-weight: bold;
  color: #001E40;
}
.judging .judging-list p {
  margin-top: 20px;
}
.judging .tournament {
  margin-top: 70px;
}
.judging .tournament h3 {
  background: #1B65D1;
  width: 100%;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  line-height: 90px;
}
.judging .tournament .seed {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  margin-top: 70px;
}
.judging .tournament .seed-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 60px;
  background: rgba(27, 101, 209, 0.1);
  padding: 50px 80px;
}
.judging .tournament .seed-wrap img {
  max-width: 200px;
  width: 22%;
}
.judging .tournament .seed .detail h4, .judging .tournament .seed .detail p {
  color: #013168;
}
.judging .tournament .seed .detail h4 {
  font-size: 1.875rem;
  font-weight: bold;
}
.judging .tournament .seed .detail p {
  margin-top: 30px;
  font-size: 1.5625rem;
  line-height: 1.8em;
}
.judging .tournament .seed .att {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .judging .h3-lead {
    margin-bottom: 70px;
  }
  .judging .judging-list {
    gap: 20px;
  }
  .judging .judging-list li {
    padding: 40px 30px;
  }
  .judging .judging-list h4 {
    margin-top: 30px;
    font-size: 1.4375rem;
  }
  .judging .judging-list p {
    margin-top: 10px;
  }
  .judging .tournament {
    margin-top: 50px;
  }
  .judging .tournament h3 {
    margin-bottom: 40px;
    font-size: 1.875rem;
    line-height: 70px;
  }
  .judging .tournament .seed {
    margin-top: 50px;
  }
  .judging .tournament .seed-wrap {
    gap: 40px;
    padding: 40px;
  }
  .judging .tournament .seed .detail h4 {
    font-size: 1.5625rem;
  }
  .judging .tournament .seed .detail p {
    margin-top: 20px;
    font-size: 1.25rem;
  }
  .judging .tournament .seed .att {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .judging .h3-lead {
    margin-bottom: 50px;
  }
  .judging .judging-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .judging .judging-list li {
    flex-direction: row;
    gap: 20px;
    max-width: 100%;
    padding: 20px;
  }
  .judging .judging-list h4, .judging .judging-list p {
    text-align: left;
  }
  .judging .judging-list h4 {
    margin-top: 0;
    font-size: 1.125rem;
  }
  .judging .tournament h3 {
    margin-bottom: 30px;
    font-size: 1.4375rem;
    line-height: 60px;
  }
  .judging .tournament .seed {
    margin-top: 30px;
  }
  .judging .tournament .seed-wrap {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }
  .judging .tournament .seed .detail h4 {
    font-size: 1.25rem;
    text-align: center;
  }
  .judging .tournament .seed .detail p {
    font-size: 1rem;
  }
}

/* ------------------------------------- 
  schedule
------------------------------------- */
.schedule {
  background: rgba(27, 101, 209, 0.1);
}
.schedule .detail {
  max-width: 881px;
  width: 90%;
  margin: 0 auto;
}
.schedule .schedule-list {
  position: relative;
}
.schedule .schedule-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 19px;
  transform: translateY(-50%);
  background: #1B65D1;
  background-size: 100%;
  width: 2px;
  height: 95%;
}
.schedule .schedule-list li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 55px;
}
.schedule .schedule-list li:last-child {
  margin-bottom: 0;
}
.schedule .schedule-list li span, .schedule .schedule-list li p {
  font-weight: bold;
  color: #1B65D1;
}
.schedule .schedule-list li span.date {
  display: block;
  padding-left: 65px;
  position: relative;
  font-size: 1.25rem;
}
.schedule .schedule-list li span.date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border: 2px solid #1B65D1;
  border-radius: 100%;
  background: #1B65D1;
  background-size: 100%;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
}
.schedule .schedule-list li p.text {
  background: #FFFFFF;
  max-width: 630px;
  width: 71.5%;
  padding: 10px 20px;
  font-size: 1.875rem;
}
.schedule .schedule-list li.end span.date::before {
  left: 0;
  background: #FFFFFF;
  width: 40px;
  height: 40px;
}
.schedule .schedule-list li.end p {
  color: #FF4E95;
}
.schedule .att {
  margin-top: 70px;
}
@media screen and (max-width: 1024px) {
  .schedule .schedule-list li {
    margin-bottom: 35px;
  }
  .schedule .schedule-list li span.date {
    font-size: 1.125rem;
  }
  .schedule .schedule-list li p.text {
    font-size: 1.4375rem;
  }
  .schedule .att {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .schedule .detail {
    width: 100%;
  }
  .schedule .schedule-list::before {
    left: 12px;
    height: 90%;
  }
  .schedule .schedule-list li {
    margin-bottom: 25px;
  }
  .schedule .schedule-list li span.date {
    font-size: 0.875rem;
    padding-left: 30px;
  }
  .schedule .schedule-list li span.date::before {
    left: 2.5px;
    width: 20px;
    height: 20px;
  }
  .schedule .schedule-list li p.text {
    font-size: 1rem;
  }
  .schedule .schedule-list li.end span.date::before {
    width: 25px;
    height: 25px;
  }
  .schedule .att {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .schedule .schedule-list li p.text {
    width: 57%;
  }
}

/* ------------------------------------- 
  eligibility
------------------------------------- */
.eligibility {
  background: #1B65D1;
}
.eligibility .eligibility-list {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.eligibility .eligibility-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 10px;
  height: 100%;
  padding: 50px 30px;
}
.eligibility .eligibility-list li img {
  max-width: 150px;
  width: 60%;
}
.eligibility .eligibility-list li p {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1B65D1;
  text-align: center;
}
.eligibility .att {
  margin-top: 30px;
}
.eligibility .att li {
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .eligibility .eligibility-list li {
    gap: 30px;
    padding: 30px 20px;
  }
  .eligibility .eligibility-list li p {
    font-size: 1.125rem;
  }
  .eligibility .eligibility-list .att {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .eligibility .eligibility-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .eligibility .eligibility-list li {
    padding: 20px;
    gap: 20px;
  }
  .eligibility .eligibility-list li img {
    width: 50%;
  }
  .eligibility .eligibility-list li p {
    font-size: 1rem;
  }
  .eligibility .eligibility-list .att {
    margin-top: 10px;
  }
}

/* ------------------------------------- 
  faq
------------------------------------- */
.faq .wrap {
  max-width: 1000px;
}
.faq .faq-list {
  width: 100%;
}
.faq .faq-list li {
  background: rgba(27, 101, 209, 0.1);
  margin-bottom: 10px;
  padding: 40px;
}
.faq .faq-list li:last-child {
  margin-bottom: 0;
}
.faq .faq-list li p.question {
  position: relative;
  margin-bottom: 30px;
  padding-left: 60px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #1B65D1;
}
.faq .faq-list li p.question::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  background: url(../images/faq_icon-q.svg) no-repeat;
  background-size: 100%;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1024px) {
  .faq .faq-list li {
    padding: 30px;
  }
  .faq .faq-list li p.question {
    margin-bottom: 20px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .faq .faq-list li {
    padding: 20px;
  }
  .faq .faq-list li p.question {
    margin-bottom: 10px;
    padding-left: 40px;
    font-size: 1rem;
  }
  .faq .faq-list li p.question::before {
    top: 0;
    width: 30px;
    height: 30px;
  }
}

/* ------------------------------------- 
  important
------------------------------------- */
.important .wrap {
  max-width: 1000px;
}
.important ul.important-list {
  background: rgba(27, 101, 209, 0.1);
  padding: 40px 40px 40px 60px;
  list-style: disc;
}
.important ul.important-list li {
  margin-bottom: 10px;
}
.important ul.important-list li:last-child {
  margin-bottom: 0;
}
.important ul.important-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 100px;
}
.important ul.important-menu li a {
  position: relative;
  padding-left: 20px;
  font-weight: bold;
  color: #1B65D1;
}
.important ul.important-menu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #1B65D1;
  border-right: 0;
}
@media screen and (max-width: 1024px) {
  .important ul.important-list {
    padding: 30px 30px 30px 50px;
  }
  .important ul.important-menu {
    margin-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .important ul.important-list {
    padding: 20px 20px 20px 40px;
  }
  .important ul.important-menu {
    gap: 30px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 480px) {
  .important ul.important-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}/*# sourceMappingURL=common_style.css.map */