@charset "UTF-8";
/*-------------------------------------
リセットCSS
--------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, a,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  color: #000;
  font-style: normal;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #B1B1B1;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input[type="submit"],
input[type="button"],
input[type="radio"]
select {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="radio"]::-webkit-search-decoration
select::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus,
input[type="radio"]::focus
select::focus {
  outline-offset: -2px;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body, input, textarea, select, button, optgroup {
  font-family: "リュウミン M-KL JIS2004", serif;
  font-size: 1rem;
  color: #000;
  margin: 0;
  padding: 0;
}

html,
body {
 
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  -webkit-overflow-scrolling: touch;
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul, ol, li,
dl, dt, dd,
table,
tr,
th,
td,
small {
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: #000;
  text-decoration: none;
}

body {
  font-family: Helvetica,
 Arial,
 Verdana,
 Roboto,
 "太ゴB101 JIS2004",
 YuGothic,
 "Yu Gothic",
 "Segoe UI",
 sans-serif;
}

@media (min-width: 960px) {
  body {
    min-width: 1200px;
  }
}

header {
    z-index: 10;
     position: fixed;
     display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

header .logo {
    width: calc(220 / 750 * 100vw);
    position: relative;
    margin: 5px 0 0 5px;
}

@media (min-width: 960px) {
    header .logo {
        width: 300px;
        margin-left: 20px;
        top: 20px;
    }
}

header .fixed-btn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (min-width: 960px) {
    header .fixed-btn ul {
        margin-top: 0px;
        margin-right: 0px;
    }
}

header .fixed-btn ul li {
    list-style-type: none;
    letter-spacing: -0.04em;
}

header .fixed-btn ul li.btn-header-black a {
    position: relative;
    left: 1px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media (min-width: 960px) {
    header .fixed-btn ul li.btn-header-black {
        position: fixed;
        top: 5px;
        right: 5px;
      
    }
}

header .fixed-btn ul li.btn-header-black a:hover {
    background: #FFF;
    color: #0075ca;
    border: solid 1px #fff;
}

header .fixed-btn ul li a {
    font-size: 20px;
    display: block;
    width: 125px;
    color: #FFF;
    text-align: center;
    height: 50px;
    background-color: rgba(0, 117, 202, 0.9);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 2px 2px rgba(15, 15, 15, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: solid 1px #B1B1B1;
}

@media (min-width: 960px) {
    header .fixed-btn ul li a {
        font-size: 20px;
        width: 200px;
        height: 40px;
    }
}

.fv {
    min-height: 900px;
    min-height: calc(var(--vh, 1vh) * 100);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fv .fv__center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fv .fv__center h1 {
    color: #fff;
    font-family: "リュウミン M-KL JIS2004", serif;
    font-size: 4.5vw;
    text-align: center;
    line-height: 1.631;
    font-weight: normal;
    margin-bottom: 0.8em;
    filter:drop-shadow(0 0 3px #0f1d70);
}

.fv .fv__center .fv__logo {
    width: calc(450 / 750 * 100vw);
}

@media (min-width: 960px) {
    .fv .fv__center h1 {
        font-size: 35px;
    }
    .fv .fv__center .fv__logo {
        width: 450px;
    }
}

.fv .fv__center .fv__logo img {
    width: 100%;
    display: block;
    margin: 0 auto;
    filter:drop-shadow(0 0 3px #0f1d70);
}

.fv .fv__scroll {
    position: absolute;
    bottom: 0.5em;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 3.5vw;
    letter-spacing: 0;
    width: 9em;
    -webkit-animation: arrowmove 1.2s ease-in-out infinite;
    animation: arrowmove 1.2s ease-in-out infinite;
}

@media (min-width: 960px) {
    .fv .fv__scroll {
        font-size: 17px;
        -webkit-animation: arrowmove 2s ease-in-out infinite;
        animation: arrowmove 2s ease-in-out infinite;
    }
}

.fv .fv__scroll a {
    font-family: "リュウミン M-KL JIS2004", serif;
    color: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    filter:drop-shadow(0 0 3px #0f1d70);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fv .fv__scroll a:after {
    content: "";
    display: block;
    border-top: solid 1px #FFF;
    border-right: solid 1px #FFF;
    width: calc(27 / 750 * 100vw);
    height: calc(27 / 750 * 100vw);
    margin-top: 0;
    filter:drop-shadow(0 0 3px #0f1d70);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

@media (min-width: 960px) {
    .fv .fv__scroll a:after {
        width: 15px;
        height: 15px;
    }
}

@-webkit-keyframes arrowmove {
    0% {
        bottom: 1.65em;
    }
    50% {
        bottom: 1.25em;
    }
    100% {
        bottom: 1.65em;
    }
}

@keyframes arrowmove {
  0% {
    bottom: 1.65em;
  }
  50% {
    bottom: 1.25em;
  }
  100% {
    bottom: 1.65em;
  }
}

.video-area {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

.video-area .video {
    min-height: calc(var(--vh, 1vh) * 100);
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.sec01 {
  z-index: 1;
  background: #f4f4f5;
  padding-top: calc(60 / 750 * 100vw);
  padding-bottom: calc(100 / 750 * 100vw);
  background-size: calc(469.06 / 750 * 100vw) calc(577.14 / 750 * 100vw);
  background-repeat: no-repeat;
  background-position: top calc(925 / 750 * 100vw) left calc(320 / 750 * 100vw);
  overflow-x: hidden;
}

@media (min-width: 960px) {
  .sec01 {
    overflow-x: hidden;
    padding-top: 85px;
    padding-bottom: 129px;
    background-size: 395px 487px;
    background-position: top 263px left calc(((100vw - 1024px) / 2) + 735px);
  }
}

@media (min-width: 960px) {
  .sec01 .inner-layout {
    position: relative;
    width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
}

.sec01 h2 {
  display: none;
  color:#333333;
  font-family: "Times New Roman",serif;
  text-align: center;
  line-height: 1.08;
  font-size: 12vw;
  font-weight: normal;
}

@media (min-width: 960px) {
  .sec01 h2 {
    display: block;
    text-align: left;
    font-size: 100px;
  }
}

.sec01 h3 {
  font-family: "リュウミン M-KL JIS2004", serif;
  color:#f4f4f5;
  font-size: 6vw;
  margin-top: 6.5vw;
  margin-bottom: 6.7vw;
  font-weight: normal;
  text-align: center;
  line-height: 2.5;
  background:#0075ca;
  font-weight: bold;
}

@media (min-width: 960px) {
  .sec01 h3 {
    font-size: 38px;
    padding: 5px 0 10px 10px;
    margin-top: 80px;
    margin-bottom: 31px;
    text-align: left;
    line-height: 1;
    font-weight: normal;
  }
}

.sec01 p {
  font-size: 4.5vw;
  color: #333333;
  line-height: 1.823;
  text-align: center;
  font-weight: bold;
}

@media (min-width: 960px) {
  .sec01 p {
    font-size: 21px;
    text-align: left;
    line-height: 2;
  }
}

.sec01 .Gallenge-the-boot-camp {
  width: calc(513 / 750 * 100vw);
  display: block;
  margin-left: calc(220 / 750 * 100vw);
  
}

@media (min-width: 960px) {
  .sec01 .Gallenge-the-boot-camp {
    width: 350px;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    top: 520px;
    right: -124px;
  }
}

.sec01 .sec01-video {
  position: relative;
  width: 100%;
  padding: 0 10px 56.25%;
  overflow: hidden;
}

@media (min-width: 960px) {
  .sec01 .sec01-video {
    width: 100%;
    margin-top: 30px;
  }
}

.sec01 .sec01-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.sec02 {
  z-index: 1;
  background: #fff;
  padding-top: calc(80 / 750 * 100vw);
  padding-bottom: calc(50 / 750 * 100vw);
  overflow-x: hidden;
}

@media (min-width: 960px) {
  .sec02 {
    padding-top: 127px;
    padding-bottom: 156px;
    overflow-x: hidden;
  }
}

@media (min-width: 960px) {
  .sec02 .inner-layout {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.sec02 h2 {
  font-family: "Times New Roman",serif;
  margin-left: 4%;
  font-size: 12vw;
  color: #0075ca;
  margin-bottom: calc(30 / 750 * 100vw);
  font-weight: normal;
}

@media (min-width: 960px) {
  .sec02 h2 {
    margin-left: 0;
    font-size: 100px;
    margin-bottom: 24px;
  }
}

.sec02 .layout-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 4%;
}

@media (min-width: 960px) {
  .sec02 .layout-1 {
    margin-left: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.sec02 .layout-1 h3 {
  font-family: "リュウミン M-KL JIS2004", serif;
  font-size: 9.3vw;
  letter-spacing: -0.05em;
  font-weight: normal;
  width: 1em;
  margin-left: calc(27 / 750 * 100vw);
}

@media (min-width: 960px) {
  .sec02 .layout-1 h3 {
    font-size: 38px;
    margin-left: 10px;
  }
}

.sec02 .layout-1 p {
  font-size: 4.5vw;
  font-weight: bold;
  color: #333333;
  margin-left: calc(39 / 750 * 100vw);
  line-height: 1.882;
}

@media (min-width: 960px) {
  .sec02 .layout-1 p {
    font-size: 19px;
    margin-left: 29px;
    line-height: 2;
  }
}

.sec02 .layout-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: calc(70 / 750 * 100vw);
  margin-bottom: calc(169 / 750 * 100vw);
}

@media (min-width: 960px) {
  .sec02 .layout-2 {
    margin-top: -104px;
    margin-bottom: 98px;
    margin-left: 234px;
  }
}

.sec02 .layout-2 .sub-ttl {
  width: calc(39 / 750 * 100vw);
  margin-right: calc(13.3 / 750 * 100vw);
  position: relative;
  top: calc(6.1vw + (20 / 750 * 100vw));
}

@media (min-width: 960px) {
  .sec02 .layout-2 .sub-ttl {
    width: 37px;
    margin-right: 16px;
    top: 56px;
  }
}

.sec02 .layout-2 .sub-ttl picture {
  width: 100%;
  display: block;
}

.sec02 .layout-2 .ol-list {
  width: calc(627 / 750 * 100vw);
}

@media (min-width: 960px) {
  .sec02 .layout-2 .ol-list {
    width: 1050px;
  }
}

.sec02 .layout-2 .ol-list ol li {
  list-style-type: none;
  width: 100%;
  margin-bottom: calc(50 / 750 * 100vw);
}

@media (min-width: 960px) {
  .sec02 .layout-2 .ol-list ol li {
    margin-bottom: 19px;
  }
}

.sec02 .layout-2 .ol-list ol li:last-of-type {
  margin-bottom: 0;
}

.sec02 .layout-2 .ol-list ol li .ol-list__ttl {
  font-family: "リュウミン M-KL JIS2004", serif;
  color: #333333;
  font-size: 6.1vw;
  text-align: left;
  padding-right: calc(30 / 750 * 100vw);
  margin-bottom: calc(20 / 750 * 100vw);
}

@media (min-width: 960px) {
  .sec02 .layout-2 .ol-list ol li .ol-list__ttl {
    font-size: 32px;
    text-align: left;
    padding-right: 0;
    margin-bottom: 23px;
  }
}

.sec02 .layout-2 .ol-list ol li .ol-list__ttl.margintop {
  margin-top: calc(80 / 750 * 100vw);
}

@media (min-width: 960px) {
  .sec02 .layout-2 .ol-list ol li .ol-list__ttl.margintop {
    margin-top: 72px;
  }
}

.sec02 .layout-2 .ol-list ol li .ol-list__bg {
  color: #fff;
  background: #0075ca;
  width: 100%;
  height: calc(110 / 750 * 100vw);
  padding: calc(14 / 750 * 100vw) 0 calc(14 / 750 * 100vw) calc(18 / 750 * 100vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
}

@media (min-width: 960px) {
  .sec02 .layout-2 .ol-list ol li .ol-list__bg {
    height: 50px;
    padding: 9px 0 8px 70px;
  }
}

.sec02 .layout-2 .ol-list ol li .ol-list__bg.purple {
  background: #3C0057;
}

.sec02 .layout-2 .ol-list ol li .ol-list__bg .left {
  font-family: "Times New Roman",serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: -0.05em;
  border-right: solid 1px #FFF;
  padding-right: calc(18.8 / 750 * 100vw);
}

@media (min-width: 960px) {
  .sec02 .layout-2 .ol-list ol li .ol-list__bg .left {
    padding-right: 60px;
  }
}

.sec02 .layout-2 .ol-list ol li .ol-list__bg .left .text {
  font-size: 4.5vw;
  margin-right: 0.5em;
}

@media (min-width: 960px) {
  .sec02 .layout-2 .ol-list ol li .ol-list__bg .left .text {
    font-size: 30px;
  }
}

.sec02 .layout-2 .ol-list ol li .ol-list__bg .left .num {
  font-size: 6.9vw;
}

@media (min-width: 960px) {
  .sec02 .layout-2 .ol-list ol li .ol-list__bg .left .num {
    font-size: 36px;
  }
}

.sec02 .layout-2 .ol-list ol li .ol-list__bg .right {
  padding-left: calc(18.8 / 750 * 100vw);
  font-size: 4.3vw;
  line-height: 1.312;
  font-weight: bold;
  letter-spacing: -0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 960px) {
  .sec02 .layout-2 .ol-list ol li .ol-list__bg .right {
    padding-left: 53px;
    font-size: 19px;
    line-height: 1;
  }
}

@media (min-width: 960px) {
  .sec02 .layout-2 .ol-list ol li .ol-list__bg .right br {
    display: none;
  }
}

.sec02 .layout-2 .ol-list ol li .ol-list__text {
  font-size: 4vw;
  color: #333333;
  letter-spacing: -0.04em;
  font-weight: bold;
  line-height: 1.6;
  margin-top: calc(15 / 750 * 100vw);
  margin-right: calc(30 / 750 * 100vw);
}

@media (min-width: 960px) {
  .sec02 .layout-2 .ol-list ol li .ol-list__text {
    font-size: 16px;
    margin-top: 17px;
    margin-right: 50px;
    margin-left: 70px;
  }
}

.sec02 .btn-layout {
  margin: 0 auto;
}

footer {
  background: #f4f4f5;
  padding-top: calc(111 / 750 * 100vw);
  padding-bottom: calc(42 / 750 * 100vw);
  overflow-x: hidden;
}

@media (min-width: 960px) {
  footer {
    padding-top: 57px;
    padding-bottom: 25px;
    position: relative;
  }
}

footer .inner-layout {
  text-align: center;
  color: #333333;
}

@media (min-width: 960px) {
  footer .inner-layout {
    width: 1200px;
    margin: 0 auto;
    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;
  }
}

@media (min-width: 960px) {
  footer .layout-1 {
    width: 550px;
  }
}

@media (min-width: 960px) {
  footer .layout-1 .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

footer .layout-1 .top .ttl {
  font-size: 3.6vw;
  margin-bottom: calc(18 / 750 * 100vw);
}

@media (min-width: 960px) {
  footer .layout-1 .top .ttl {
    font-size: 14px;
    margin-bottom: 0;
    position: relative;
    top: 8px;
  }
}

footer .layout-1 .top .img {
  width: calc(384 / 750 * 100vw);
  margin: 0 auto;
}

@media (min-width: 960px) {
  footer .layout-1 .top .img {
    width: 212px;
  }
}

footer .layout-1 .top .img a {
  display: block;
  width: 100%;
}

footer .layout-1 .bottom {
  margin-top: calc(74 / 750 * 100vw);
}

@media (min-width: 960px) {
  footer .layout-1 .bottom {
    margin-top: 19px;
  }
}

@media (min-width: 960px) {
  footer .layout-1 .bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

footer .layout-1 .bottom ul li {
  margin-bottom: 1em;
  line-height: 2.29;
  list-style-type: none;
}

@media (min-width: 960px) {
  footer .layout-1 .bottom ul li {
    line-height: 1;
  }
}

footer .layout-1 .bottom ul li:last-of-type {
  margin-bottom: 0;
}

footer .layout-1 .bottom ul li a {
  font-size: 4.5vw;
  color: #333333;
}

@media (min-width: 960px) {
  footer .layout-1 .bottom ul li a {
    font-size: 14px;
  }
}

footer .layout-2 {
  margin-top: calc(136 / 750 * 100vw);
}

@media (min-width: 960px) {
  footer .layout-2 {
    margin-top: 0;
    width: 508px;
    margin-left: 67px;
    margin-top: 20px;
  }
}

footer .layout-2 .top .ttl {
  font-size: 4.3vw;
}

@media (min-width: 960px) {
  footer .layout-2 .top .ttl {
    font-size: 14px;
    text-align: left;
    margin-bottom: 9px;
  }
}

@media (min-width: 960px) {
  footer .layout-2 .bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

footer .layout-2 .bottom ul li {
  list-style-type: none;
}

footer .layout-2 .bottom ul li.tel {
  width: calc(453 / 750 * 100vw);
  margin: 0 auto;
  margin-top: calc(41.2 / 750 * 100vw);
}

@media (min-width: 960px) {
  footer .layout-2 .bottom ul li.tel {
    width: 195px;
    margin: 0;
    margin-top: 0;
  }
}

footer .layout-2 .bottom ul li.mail {
  width: calc(587 / 750 * 100vw);
  margin: 0 auto;
  margin-top: calc(52.2 / 750 * 100vw);
}

@media (min-width: 960px) {
  footer .layout-2 .bottom ul li.mail {
    width: 281px;
    margin: 0;
    margin-top: 0;
  }
}

footer .layout-3 a {
  display: block;
  margin: calc(90 / 750 * 100vw) auto;
  width: calc(46 / 750 * 100vw);
}

@media (min-width: 960px) {
  footer .layout-3 a {
    position: absolute;
    top: 32px;
    right: 61px;
    margin: 0;
    width: 20px;
  }
}

@media (min-width: 960px) {
  footer .layout-4 {
    width: 100%;
    margin-top: 58px;
  }
}

footer .layout-4 {
    margin-bottom: 40px;
}

footer .layout-4 small {
  font-family: "Times New Roman",serif;
  font-size: 4.5vw;
}

@media (min-width: 960px) {
  footer .layout-4 small {
    font-size: 14px;
  }
}



.header {
  -webkit-transform: translateY(-180px);
          transform: translateY(-180px);
}

.header.onload.onloadfix {
  -webkit-animation-name: header;
          animation-name: header;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes header {
  0% {
    -webkit-transform: translateY(-180px);
            transform: translateY(-180px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes header {
  0% {
    -webkit-transform: translateY(-180px);
            transform: translateY(-180px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.fv__center {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.fv__center.onload.onloadfix {
  -webkit-animation-name: fv__center;
          animation-name: fv__center;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

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

.transform {
  opacity: 0;
  -webkit-transform: translate3d(80px, -60px, 0) scale(0.6) rotate(-20deg) skew(-30deg);
          transform: translate3d(80px, -60px, 0) scale(0.6) rotate(-20deg) skew(-30deg);
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.transform.show.done {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1) rotate(0deg) skew(0deg);
          transform: translateZ(0) scale(1) rotate(0deg) skew(0deg);
}

.fadeinbottom {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

.fadeinbottom.show.done {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-animation-name: fadeinbottom;
          animation-name: fadeinbottom;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeinbottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fadeinbottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.page {
  background: #f4f4f5;
}

.page .page__content {
  border-bottom: solid 1px #0075CA;
}

.page .page__inner-layout {
  width: 92%;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .page .page__inner-layout {
    max-width: 1078px;
  }
}

.page .page__ttl-layout {
  padding-top: calc(234 / 750 * 100vw);
  margin-bottom: calc(58 / 750 * 100vw);
}

@media (min-width: 960px) {
  .page .page__ttl-layout {
    padding-top: 206px;
    margin-bottom: 46px;
  }
}

.page .page__ttl-layout h1 {
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

@media (min-width: 960px) {
  .page .page__ttl-layout h1 {
    text-align: left;
  }
}

.page .page__ttl-layout h1 .text {
  font-family: "リュウミン M-KL JIS2004", serif;
  font-size: 5.3vw;
  letter-spacing: -0.04em;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: calc(20 / 750 * 100vw);
}

@media (min-width: 960px) {
  .page .page__ttl-layout h1 .text {
    font-size: 38px;
    margin-top: 11px;
  }
}

.page .page__ttl-layout h1 .textEN {
  font-family: "Times New Roman",serif;
  color: #0075CA;
  font-size: 10.7vw;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  line-height: 1.05;
}

@media (min-width: 960px) {
  .page .page__ttl-layout h1 .textEN {
    font-size: 90px;
  }
}

@media (min-width: 960px) {
  .page .page__ttl-layout h1 .textEN br {
    display: none;
  }
}

.page .page__ttl-layout + h2 {
  margin-top: 12vw;
}

@media (min-width: 960px) {
  .page .page__ttl-layout + h2 {
    margin-top: 54px;
  }
}

.page p {
  font-size: 3.7vw;
  line-height: 1.714;
  letter-spacing: -0.04em;
  font-weight: bold;
  margin-bottom: calc(94 / 750 * 100vw);
}

.page p a {
    color: #0060dd;
}

@media (min-width: 960px) {
  .page p {
    font-size: 17px;
    line-height: 1.882;
    margin-bottom: 26px;
  }
}

.page p.page__read {
  margin-bottom: calc(108 / 750 * 100vw);
}

@media (min-width: 960px) {
  .page p.page__read {
    margin-bottom: 26px;
  }
}

.page table {
  width: 100%;
}

.page table tr th {
  border: solid 1px rgba(255, 255, 255, 0.8);
  text-align: left;
  font-size: 3.5vw;
  letter-spacing: -0.04em;
  font-weight: bold;
  line-height: 1.538;
  padding: 0.75em 1em;
  width: 6em;
}

@media (min-width: 960px) {
  .page table tr th {
    font-size: 16px;
    width: 27.5%;
    padding: 23px 18px 23px 37px;
    vertical-align: middle;
  }
}

.page table tr td {
  border: solid 1px rgba(255, 255, 255, 0.8);
  color: #FFF;
  text-align: left;
  font-size: 3.5vw;
  letter-spacing: -0.04em;
  font-weight: bold;
  line-height: 1.538;
  padding: 0.75em 1em;
  width: calc(100% - 6em);
  vertical-align: middle;
}

@media (min-width: 960px) {
  .page table tr td {
    font-size: 16px;
    width: calc(100% - 27.5%);
    padding: 23px 18px 23px 18px;
  }
}

.page table + h3 {
  margin-top: calc(94 / 750 * 100vw);
}

@media (min-width: 960px) {
  .page table + h3 {
    margin-top: 64px;
  }
}

.page table + p {
  margin-top: calc(94 / 750 * 100vw);
}

@media (min-width: 960px) {
  .page table + p {
    margin-top: 64px;
  }
}

.page .table__ol li {
  list-style-position: outside;
  margin-left: 1em;
  padding-left: 0.2em;
  line-height: 1.538;
}

.page .table__ul li {
  list-style-position: outside;
  margin-left: 1em;
  padding-left: 0.2em;
  line-height: 1.538;
}

.page h2 {
  font-family: "リュウミン M-KL JIS2004", serif;
  margin-top: calc(145 / 750 * 100vw);
  font-size: 5.3vw;
  text-align: center;
  font-weight: normal;
  border-bottom: solid 1px #C40000;
  padding-bottom: 0.35em;
  margin-bottom: calc(32 / 750 * 100vw);
  letter-spacing: -0.05em;
}

@media (min-width: 960px) {
  .page h2 {
    margin-top: calc(145 / 750 * 100vw);
    font-size: 38px;
    margin-bottom: 42px;
    text-align: left;
  }
}

.page h3 {
  font-family: "リュウミン M-KL JIS2004", serif;
  font-size: 4.3vw;
  font-weight: normal;
  letter-spacing: -0.05em;
  line-height: 1.4375;
  margin-bottom: calc(26 / 750 * 100vw);
}

@media (min-width: 960px) {
  .page h3 {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 12px;
  }
}

@media (min-width: 960px) {
  .page h3 + p {
    margin-bottom: 90px;
  }
}

.page .right-box {
  text-align: right;
  padding-bottom: calc(220 / 750 * 100vw);
}

@media (min-width: 960px) {
  .page .right-box {
    padding-bottom: 217px;
  }
}

.page .mb0 {
  margin-bottom: 0;
}

.page .mb90 {
  margin-bottom: calc(94 / 750 * 100vw);
}

@media (min-width: 960px) {
  .page .mb90 {
    margin-bottom: 90px;
  }
}

.page .mt0 {
  margin-top: 0;
}

.page .mb26 {
  margin-bottom: 3.5vw;
}

@media (min-width: 960px) {
  .page .mb26 {
    margin-bottom: 26px;
  }
}

.page .padding-l-1em {
  padding-left: 1em;
  display: block;
}

.page .padding-l-2em {
  padding-left: 2em;
  display: block;
}

a.pointer-events {
  pointer-events: none;
}

.multiply {
  mix-blend-mode: multiply;
}

.sp-none {
  display: none;
}

@media (min-width: 960px) {
  .sp-none {
    display: block;
  }
}

@media (min-width: 960px) {
  .pc-none {
    display: none;
  }
}