@charset "UTF-8";
/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat;
  /* 1 */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  cursor: default;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: .67em 0;
}

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ffff00;
  color: #000000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */
::-moz-selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse;
}

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default;
}

/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

img,
embed,
iframe,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

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

td,
th {
  padding: 0;
  text-align: left;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  font-family: 'Noto Sans JP', "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0 auto;
  position: relative;
  word-wrap: break-word;
  font-size: 62.5%;
  /** 10px */
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  overflow-x: hidden;
}

ul,
li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s all ease 0s;
  transition: 0.3s all ease 0s;
}

a:hover {
  opacity: 0.6;
}

input {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

.br-pc::before {
  content: "\A";
  white-space: pre;
}

.br::before {
  content: "\A";
  white-space: pre;
}

.fadein {
  opacity: 0;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.fadein.on {
  opacity: 1;
}

.header {
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header.fixed {
  position: fixed;
  left: 0;
  top: 0;
  background: #000d3f;
  z-index: 100;
}

.header-logo {
  padding-top: 14px;
}

.header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1140px;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.header-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 770px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 70px;
}

.header-a {
  color: #fff;
  font-size: 1.2rem;
  display: block;
  padding-top: 30px;
}

.header-toggle {
  display: none;
  width: 56px;
  height: 56px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 110;
}

.header-toggle span {
  display: block;
  background: #fff;
  width: 40px;
  height: 2px;
  position: absolute;
  left: 8px;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.header-toggle span:nth-of-type(1) {
  top: 15px;
}

.header-toggle span:nth-of-type(2) {
  top: 25px;
}

.header-toggle span:nth-of-type(3) {
  top: 35px;
}

.header-toggle.on span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 25px;
}

.header-toggle.on span:nth-of-type(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 25px;
}

.header-toggle.on span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 25px;
}

main {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.12rem;
  color: #fff;
  background: #0a0124;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
}

.left-ttl {
  max-width: 540px;
  padding-left: 140px;
  position: relative;
  z-index: 1;
}

.left-ttl:after {
  content: '';
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  top: 17%;
  left: 0;
  z-index: -1;
}

.left-ttl.blue:after {
  background: #009ee7;
  background-image: -webkit-linear-gradient(125deg, #009ee7 50%, #140e71 100%);
}

.left-ttl.yellow:after {
  background: #dca901;
  background-image: -webkit-linear-gradient(145deg, #b6bb54 0%, #0088c7 0%, #b8bb52 50%, #dca901 100%);
}

.left-ttl-eng {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.5rem;
}

.left-ttl-ja {
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
  margin-top: 20px;
}

.center-ttl {
  width: 100%;
  padding-left: 140px;
  line-height: 1.2;
}

.center-ttl-eng-small {
  font-size: 4.8rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  letter-spacing: .4rem;
  display: inline-block;
  margin-right: 20px;
}

.center-ttl-eng-big {
  font-size: 6.8rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  letter-spacing: .4rem;
}

.center-ttl-ja {
  font-size: 1.6rem;
  display: block;
}

.wrapper {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

.seckv {
  width: 100%;
  height: 690px;
  background: url(/img/bg_kv.png) no-repeat;
  background-size: cover;
  padding-top: 70px;
  text-align: center;
}

.seclead {
  padding: 110px 0;
  background: url(/img/bg_lead.png) center 45% no-repeat;
}

.seclead-ttl {
  color: #1948a0;
  background: -webkit-linear-gradient(right, #0691de, #1948a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 0.4rem;
  font-weight: bold;
}

.seclead-txt {
  line-height: 2.25;
  width: 830px;
  margin: 55px auto 0;
  text-align: left;
}

.seclead-notice {
  display: block;
  text-align: right;
  font-size: 1.2rem;
  margin-top: 20px;
}

.secmovie {
  position: relative;
  padding-bottom: 210px;
}

.secmovie .left-ttl {
  position: absolute;
}

.secmovie-box {
  width: 955px;
  margin: 0 0 0 auto;
  height: 515px;
  background: url(/img/bg_movie.png) no-repeat;
  position: relative;
}

.secmovie-box-in {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 700px;
  height: 390px;
}

.secmovie-box-in iframe {
  width: 100%;
  height: 100%;
}
.sec-link-box {
  text-align: center;
}
.sec-link-box a {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: .2rem;
  color: #000;
  background: #fff;
  display: inline-block;
  border-radius: 50px;
  text-align: center;
  padding: 15px 50px;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(19, 19, 19, 0.18);
          box-shadow: 0px 10px 30px 0px rgba(19, 19, 19, 0.18);
}


.sec02 {
  padding-bottom: 180px;
}

.sec02-ttl-box {
  width: 100%;
  height: 415px;
  position: relative;
  z-index: 1;
}

.sec02-ttl-box:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 45px;
  left: 0;
  z-index: -1;
  background: url(/img/bg_sec02.png) no-repeat;
  background-size: cover;
}

.sec02-ttl {
  font-size: 2.2rem;
  margin-bottom: 20px;
  letter-spacing: 0.1rem;
  font-weight: 600;
  text-align: center;
}

.sec02-ttl-in {
  width: 830px;
  margin: 40px auto 0;
}

.sec02-figure {
  background: #fff;
  width: 1000px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 85px 40px;
  margin: -40px auto 0;
}

.sec03-kv {
  text-align: center;
}

.sec03-kv-figure {
  padding: 0 30px;
}

.sec03-kv-txt {
  width: 830px;
  margin: 60px auto;
  text-align: left;
}

.sec03-figure {
  background: #fff;
  width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 50px 40px;
}

.sec03-list {
  width: 1000px;
  margin: 0 auto;
}

.sec03-list-dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #3b3450;
  margin-bottom: 10px;
}

.sec03-list-dl:last-child dt {
  background: url(/img/bg_sec03_list_02.png) no-repeat;
}

.sec03-list-dt {
  font-weight: bold;
  width: 500px;
  background: url(/img/bg_sec03_list_01.png) no-repeat;
  background-size: cover;
  padding: 35px 0 0 80px;
  min-height: 150px;
}

.sec03-list-dd {
  width: calc(100% - 500px);
  line-height: 1.2;
  letter-spacing: 0rem;
  position: relative;
}

.sec03-list-dd p {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-right: 70px;
}

.sec03-list-ttl {
  text-align: center;
  font-size: 2.4rem;
  margin: 80px 0 30px;
  font-weight: bold;
}

.sec03-list-ttl span {
  color: #0a0124;
  display: inline-block;
  background: #fff;
  padding: 15px;
  margin: 0 10px;
}
.sec03-box {
  width: 1000px;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 70px 80px;
  margin: 0 auto 15px;
  color: #000;
}

.sec03-box:before {
  font-size: 24rem;
  font-family: 'Roboto', sans-serif;
  color: #1948a0;
  background: -webkit-linear-gradient(right, #1a80af, #af8712);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  position: absolute;
  top: 0;
  line-height: 0.8;
}
.sec03-box iframe {
  width: 100%;
  height: 100%;
}
.sec03-box-movie {
  margin-top: 50px;
  width: 830px;
  height: 470px;
}
.sec03-link-box {
  margin-top: 50px;
  margin-bottom: 80px;
}
.sec04 {
  padding-top: 50px;
  padding-bottom: 100px;
}

.sec04-box {
  width: 1000px;
  margin: 0 auto 20px;
  color: #000;
  padding: 58px 100px 40px 100px;
  background: url(/img/bg_sec04_box.png) no-repeat;
}

.sec04-box h3 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 30px;
}

.sec04-box a {
  display: block;
  width: 180px;
  color: #fff;
  background: #147aad;
  padding: 15px;
  text-align: center;
  border-radius: 30px;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(19, 19, 19, 0.18);
          box-shadow: 0px 10px 30px 0px rgba(19, 19, 19, 0.18);
  margin: 10px 0 0 auto;
}
.sec04-link-box {
  margin-top: 50px;
  margin-bottom: 100px;
}

.sec05-ttl-box {
  width: 100%;
  height: 415px;
  position: relative;
  z-index: 1;
}

.sec05-ttl-box:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 45px;
  left: 0;
  z-index: -1;
  background: -webkit-linear-gradient(145deg, #b6bb54 0%, #009fe9 0%, #b8bb52 50%, #f9be13 100%);
  background-size: cover;
  opacity: 0.8;
}

.sec05-box-wrap {
  position: relative;
  top: -250px;
}

.sec05-box {
  width: 1000px;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 70px 80px;
  margin: 0 auto 15px;
  color: #000;
}

.sec05-box:before {
  font-size: 24rem;
  font-family: 'Roboto', sans-serif;
  color: #1948a0;
  background: -webkit-linear-gradient(right, #1a80af, #af8712);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  position: absolute;
  top: 0;
  line-height: 0.8;
}

.sec05-box-ttl {
  font-size: 2.4rem;
  font-weight: bold;
}

.sec05-box-ttl-blue {
  font-size: 3rem;
  font-weight: bold;
  color: #1948a0;
  background: -webkit-linear-gradient(right, #0691de, #1948a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec05-box figure {
  margin-top: 50px;
}

.sec05-box-movie {
  margin-top: 50px;
  width: 830px;
  height: 470px;
}

.sec05-box iframe {
  width: 100%;
  height: 100%;
}

.sec05-box-01:before {
  content: '01';
  right: -30px;
}

.sec05-box-02:before {
  content: '02';
  right: -8px;
}

.sec05-box-03:before {
  content: '03';
  right: -5px;
}

.sec05-box-04:before {
  content: '04';
  right: -5px;
}

.sec05-box-05:before {
  content: '05';
  right: -5px;
}

.sec05-box-06:before {
  content: '06';
  right: -5px;
}

.sec05-box-07:before {
  content: '07';
  right: -5px;
}

.secnews {
  background: url(/img/bg_news.png) no-repeat;
  background-size: cover;
  margin-top: -100px;
}

.secnews-in {
  width: 1000px;
  margin: 0 auto;
  padding: 70px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.secnews-ttl-wrap {
  width: 390px;
}

.secnews-cont-wrap {
  width: calc(100% - 390px);
}

.secnews-ttl {
  position: relative;
  width: 100%;
  line-height: 1.3;
}

.secnews-ttl-eng {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.5rem;
}

.secnews-ttl-ja {
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
  margin-top: 20px;
}

.secnews-cont {
  background: rgba(255, 255, 255, 0.2);
  padding: 40px 20px;
  min-height: 190px;
  margin-bottom: 15px;
  font-size: 2rem;
}

.secnews-cont a {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  display: block;
  margin: 0 0 0 auto;
  background: #147aad;
  width: 180px;
  border-radius: 30px;
  text-align: center;
  padding: 10px;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(19, 19, 19, 0.18);
          box-shadow: 0px 10px 30px 0px rgba(19, 19, 19, 0.18);
  margin-top: 30px;
}
.secnews-link-box {
  margin-top: 0px;
  padding-bottom: 50px;
}
.faq-ttl-box {
  width: 100%;
  height: 415px;
  position: relative;
  z-index: 1;
}

.faq-ttl-box:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 45px;
  left: 0;
  z-index: -1;
  background: -webkit-linear-gradient(145deg, #b6bb54 0%, #009fe9 0%, #b8bb52 50%, #f9be13 100%);
  background-size: cover;
  opacity: 0.8;
}

.faq-box-wrap {
  position: relative;
  top: -250px;
}

.faq-box {
  width: 1000px;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 70px 80px;
  margin: 0 auto 15px;
  color: #000;
}

.faq-box:before {
  font-size: 24rem;
  font-family: 'Roboto', sans-serif;
  color: #1948a0;
  background: -webkit-linear-gradient(right, #1a80af, #af8712);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  position: absolute;
  top: 0;
  line-height: 0.8;
}

.faq-box-ttl {
  font-size: 2.4rem;
  font-weight: bold;
}

.faq-box-ttl-blue {
  font-size: 3rem;
  font-weight: bold;
  color: #1948a0;
  background: -webkit-linear-gradient(right, #0691de, #1948a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-box:before {
  content: 'FAQ';
  right: -30px;
}
.faq-link-box {
  margin-top: 50px;
  padding-bottom: 20px;
}

.footer {
  padding: 100px 0 40px;
  background: url(/img/bg_footer.png) no-repeat;
  background-size: cover;
}

.footer-ttl {
  font-family: 'Roboto', sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
  letter-spacing: .3rem;
}

.footer-link {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: .2rem;
  color: #000;
  background: #fff;
  display: block;
  width: 400px;
  border-radius: 30px;
  text-align: center;
  padding: 15px 0;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(19, 19, 19, 0.18);
          box-shadow: 0px 10px 30px 0px rgba(19, 19, 19, 0.18);
  margin: 70px auto;
}

.footer-address {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
}

.footer-address a {
  color: #fff;
}

.nttdata-logo {
  text-align: center;
}

.footer-copy {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  margin-top: 20px;
}

@media screen and (max-width: 950px) {
  .header {
    overflow-y: scroll;
  }
  .header-logo {
    position: absolute;
    top: 0;
  }
  .header-nav {
    width: 60%;
    height: 100vh;
    background: #000;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    padding: 70px 20px 20px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    z-index: 100;
  }
  .header-nav.on {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .header-ul {
    padding-right: 0;
    display: block;
    width: 100%;
  }
  .header-a {
    padding: 20px 0;
  }
  .header-toggle {
    display: block;
  }
  main {
    font-size: 1.2rem;
  }
  .left-ttl {
    padding-left: 30px;
    width: 75%;
    max-width: 100%;
  }
  .left-ttl-eng {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.15rem;
    width: 100%;
    display: block;
  }
  .left-ttl-ja {
    font-size: 1.3rem;
    margin-top: 0px;
  }
  .center-ttl {
    line-height: 1;
    padding-left: 20px;
  }
  .center-ttl-eng-small {
    font-size: 2rem;
    margin-right: 0;
  }
  .center-ttl-eng-big {
    font-size: 2.2rem;
    letter-spacing: .15rem;
  }
  .center-ttl-ja {
    font-size: 1.3rem;
    letter-spacing: .15rem;
  }
  .seckv {
    height: 400px;
  }
  .seclead {
    padding: 20px 0 50px;
  }
  .seclead-ttl {
    font-size: 1.7rem;
    letter-spacing: 0.1rem;
  }
  .seclead-txt {
    width: 100%;
    margin: 20px auto 0;
    padding: 0 20px;
  }
  .seclead-notice {
    font-size: 1.1rem;
    text-align: left;
  }
  .secmovie {
    padding-bottom: 70px;
  }
  .secmovie-box {
    width: 100%;
  }
  .secmovie-box-in {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
  }
  .secmovie-box-in iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .sec-link-box a {
    width: calc(100% - 50px);
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.5rem;
  }
  .sec02 {
    padding-bottom: 60px;
  }
  .sec02-ttl-box {
    height: auto;
  }
  .sec02-ttl {
    font-size: 1.8rem;
  }
  .sec02-ttl-in {
    width: 100%;
    padding: 0 20px;
  }
  .sec02-figure {
    width: calc(100% - 40px);
    padding: 146% 20px 20px 20px;
    margin: 20px auto 0;
    background: url(/img/figure_sec02_sp.png) no-repeat;
    background-size: 100%;
  }
  .sec02-figure img {
    display: none;
  }
  .sec03-kv-txt {
    width: 100%;
    padding: 0 20px;
    margin: 30px auto;
  }
  .sec03-figure {
    width: calc(100% - 40px);
    padding: 124% 20px 20px 20px;
    background: url(/img/figure_sec03_sp_dp.png) no-repeat;
    background-size: 100%;
  }
  .sec03-figure img {
    display: none;
  }
  .sec03-list {
    width: 100%;
  }
  .sec03-list-dt {
    padding: 38px 8px 0;
    width: 30%;
    letter-spacing: 0;
  }
  .sec03-list-dt br {
    display: none;
  }
  .sec03-list-dd {
    width: 70%;
    line-height: 1.4;
    letter-spacing: 0.05rem;
  }
  .sec03-list-dd p {
    padding: 0 15px 0 0;
  }
  .sec03-list-ttl {
    font-size: 1.6rem;
    margin: 40px 0 30px;
  }
  .sec03-list-ttl span {
    padding: 7px;
    margin: 0 3px;
  }
  .sec03-box {
    width: calc(100% - 40px);
    padding: 30px 20px;
  }
  .sec03-box:before {
    font-size: 10rem;
  }
  .sec03-box iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .sec03-box-movie {
    width: 100%;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    position: relative;
  }
  .sec03-link-box {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .sec04 {
    padding-bottom: 50px;
  }
  .sec04-box {
    width: 100%;
    padding: 30px 20px;
    margin: 20px auto;
  }
  .sec04-box h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .sec04-box a {
    padding: 8px;
  }
  .sec04-link-box {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .sec05-ttl-box {
    height: 100px;
  }
  .sec05-ttl-box:after {
    top: 10px;
  }
  .sec05-box-wrap {
    top: -30px;
  }
  .sec05-box {
    width: calc(100% - 40px);
    padding: 30px 20px;
  }
  .sec05-box:before {
    font-size: 10rem;
  }
  .sec05-box-ttl {
    font-size: 1.6rem;
  }
  .sec05-box-ttl-blue {
    font-size: 1.6rem;
    display: inline-block;
  }
  .sec05-box-movie {
    width: 100%;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    position: relative;
  }
  .sec05-box iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .sec05-box-01:before {
    right: -10px;
  }
  .secnews {
    margin-top: 0;
  }
  .secnews-in {
    width: 100%;
    display: block;
    padding: 40px 0;
  }
  .secnews-ttl-wrap {
    width: 100%;
  }
  .secnews-cont-wrap {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .secnews-ttl {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  .secnews-ttl-eng {
    font-size: 2rem;
    line-height: 1;
  }
  .secnews-ttl-ja {
    font-size: 1.3rem;
    margin-top: 0;
  }
  .secnews-cont {
    font-size: 1.2rem;
    padding: 30px 20px;
    min-height: auto;
  }
  .secnews-cont a {
    font-size: 1.2rem;
    padding: 8px;
  }
  .secnews-link-box {
    margin-top: 0px;
    padding-bottom: 50px;
  }
  .faq-ttl-box {
    height: 100px;
  }
  .faq-ttl-box:after {
    top: 10px;
  }
  .faq-box-wrap {
    top: -30px;
  }
  .faq-box {
    width: calc(100% - 40px);
    padding: 30px 20px;
  }
  .faq-box:before {
    font-size: 10rem;
  }
  .faq-box-ttl {
    font-size: 1.6rem;
  }
  .faq-box-ttl-blue {
    font-size: 1.6rem;
    display: inline-block;
  }
  .faq-box:before {
    right: -10px;
  }
  .faq-link-box {
    margin-top: 30px;
    padding-bottom: 60px;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer-ttl {
    font-size: 2rem;
  }
  .footer-link {
    width: calc(100% - 50px);
    font-size: 1.5rem;
    margin: 30px auto;
  }
}

@media screen and (max-width: 768px) {
  .br-sp::before {
    content: "\A";
    white-space: pre;
  }
  .br-pc::before {
    content: "";
    white-space: normal;
  }
}

@media screen and (max-width: 320px) {
  .seclead-ttl br {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
