@charset "UTF-8";
/*--------------------------
Reset
--------------------------*/
*, ::before, ::after {
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
  vertical-align: middle;
}

html {
  line-height: 1.15;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

span {
  vertical-align: top;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  border-radius: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button, [type=button], [type=reset], [type=submit], [role=button] {
  color: inherit;
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  min-width: 0;
  padding: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

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

caption {
  text-align: left;
}

td, th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

strong {
  vertical-align: top;
}

del {
  vertical-align: top;
}

/* -----------------------------
Base
------------------------------*/
html {
  font-size: 15px;
}
@media (min-width: 800px) {
  html {
    font-size: 16px;
  }
}

body {
  background-color: #fff;
  color: #000;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6875;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

a {
  color: #333;
  text-decoration: none;
}
a:visited {
  color: #333;
}
a:hover {
  color: #333;
  text-decoration: none;
}
a:active {
  color: #333;
  text-decoration: none;
}
@media (min-width: 1000px) {
  a[href^="tel:"] {
    cursor: text;
    text-decoration: none;
  }
}
a[href^="tel:"]:hover {
  color: #333;
}

::-moz-selection {
  background-color: #036eb8;
  color: #fff;
  text-shadow: none;
}

::selection {
  background-color: #036eb8;
  color: #fff;
  text-shadow: none;
}

@media (min-width: 1000px) {
  .sp-only {
    display: none !important;
  }
}

@media (max-width: 999px) {
  .pc-only {
    display: none !important;
  }
}

/* 幅 */
.w10p {
  width: 10%;
}

.w20p {
  width: 20%;
}

.w30p {
  width: 30%;
}

.w40p {
  width: 40%;
}

.w50p {
  width: 50%;
}

.w60p {
  width: 60%;
}

.w70p {
  width: 70%;
}

.w80p {
  width: 80%;
}

.w90p {
  width: 90%;
}

.w100p {
  width: 100%;
}

/* /幅 */
/* 配置 */
.txt-r {
  text-align: right;
}

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

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

/* /配置 */
.mt20 {
  margin-top: 2vw;
}
@media (min-width: 800px) {
  .mt20 {
    margin-top: 20px;
  }
}

.mt30 {
  margin-top: 3vw;
}
@media (min-width: 800px) {
  .mt30 {
    margin-top: 30px;
  }
}

.mt40 {
  margin-top: 4vw;
}
@media (min-width: 800px) {
  .mt40 {
    margin-top: 40px;
  }
}

.mt50 {
  margin-top: 5vw;
}
@media (min-width: 800px) {
  .mt50 {
    margin-top: 50px;
  }
}

/*--------------------------
  Components
--------------------------*/
@-webkit-keyframes btn-slide-left {
  0% {
    right: -50px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@keyframes btn-slide-left {
  0% {
    right: -50px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@-webkit-keyframes btn-slide-top {
  0% {
    bottom: -50px;
    opacity: 0;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}
@keyframes btn-slide-top {
  0% {
    bottom: -50px;
    opacity: 0;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}
/**************************/
/* フェードイン表示 */
/**************************/
/* 画面外 */
.fadein {
  opacity: 0;
  transition: all 2s;
}

/* /画面外 */
/* 画面内 */
.fadein.scrollin {
  opacity: 1;
}

/* /画面内 */
/* 順番に表示 */
.fadein:nth-of-type(2) {
  transition-delay: 200ms;
}

.fadein:nth-of-type(3) {
  transition-delay: 400ms;
}

.fadein:nth-of-type(4) {
  transition-delay: 600ms;
}

.fadein:nth-of-type(5) {
  transition-delay: 800ms;
}

/* /順番に表示 */
/**************************/
/* /フェードイン表示 */
/**************************/
/**************************/
/* フェードイン表示＋上移動 */
/**************************/
/* 画面外 */
.fadeup {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 1s;
}

/* /画面外 */
/* 画面内 */
.fadeup.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* /画面内 */
/* 順番に表示 */
.fadeup:nth-of-type(2) {
  transition-delay: 200ms;
}

.fadeup:nth-of-type(3) {
  transition-delay: 400ms;
}

.fadeup:nth-of-type(4) {
  transition-delay: 600ms;
}

.fadeup:nth-of-type(5) {
  transition-delay: 800ms;
}

.fadeup:nth-of-type(6) {
  transition-delay: 1000ms;
}

.fadeup:nth-of-type(7) {
  transition-delay: 1200ms;
}

.fadeup:nth-of-type(8) {
  transition-delay: 1400ms;
}

/* /順番に表示 */
/**************************/
/* /フェードイン表示＋上移動 */
/**************************/
/**************************/
/* フェードイン表示＋左移動 */
/**************************/
/* 画面外 */
.fadeleft {
  opacity: 0.1;
  transform: translate(50px, 0);
  transition: all 1s;
}

/* /画面外 */
/* 画面内 */
.fadeleft.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* /画面内 */
/* 順番に表示 */
.fadeleft:nth-of-type(2) {
  transition-delay: 200ms;
}

.fadeleft:nth-of-type(3) {
  transition-delay: 400ms;
}

.fadeleft:nth-of-type(4) {
  transition-delay: 600ms;
}

.fadeleft:nth-of-type(5) {
  transition-delay: 800ms;
}

.fadeleft:nth-of-type(6) {
  transition-delay: 1000ms;
}

.fadeleft:nth-of-type(7) {
  transition-delay: 1200ms;
}

.fadeleft:nth-of-type(8) {
  transition-delay: 1400ms;
}

/* /順番に表示 */
/**************************/
/* /フェードイン表示＋左移動 */
/**************************/
/**************************/
/* ズームイン表示 */
/**************************/
/* 画面外 */
.zoomin {
  opacity: 0;
  transition: 0.8s;
  transform: scale(0, 0);
}

/* /画面外 */
/* 画面内 */
.zoomin.scrollin {
  opacity: 1;
  transform: scale(1, 1);
}

/* /画面内 */
/* 順番に表示 */
.zoomin:nth-of-type(2) {
  transition-delay: 200ms;
}

.zoomin:nth-of-type(3) {
  transition-delay: 400ms;
}

.zoomin:nth-of-type(4) {
  transition-delay: 600ms;
}

.zoomin:nth-of-type(5) {
  transition-delay: 800ms;
}

.zoomin:nth-of-type(6) {
  transition-delay: 1000ms;
}

.zoomin:nth-of-type(7) {
  transition-delay: 1200ms;
}

.zoomin:nth-of-type(8) {
  transition-delay: 1400ms;
}

/* /順番に表示 */
/**************************/
/* /ズームイン表示 */
/**************************/
/**************************/
/* 回転表示 */
/**************************/
/* 画面外 */
.roll {
  opacity: 0;
  transition: all 800ms;
  transform: rotate(0deg);
}

/* /画面外 */
/* 画面内 */
.roll.scrollin {
  opacity: 1;
  transform: rotate(360deg);
}

/* /画面内 */
/* 順番に表示 */
.roll:nth-of-type(2) {
  transition-delay: 200ms;
}

.roll:nth-of-type(3) {
  transition-delay: 400ms;
}

.roll:nth-of-type(4) {
  transition-delay: 600ms;
}

.roll:nth-of-type(5) {
  transition-delay: 800ms;
}

.roll:nth-of-type(6) {
  transition-delay: 1000ms;
}

.roll:nth-of-type(7) {
  transition-delay: 1200ms;
}

.roll:nth-of-type(8) {
  transition-delay: 1400ms;
}

/* /順番に表示 */
/**************************/
/* /回転表示 */
/**************************/
/**************************/
/* 3D回転表示 */
/**************************/
/* 画面外 */
.roll3d {
  opacity: 0;
  transition: all 800ms;
  transform: rotateY(0deg);
}

/* /画面外 */
/* 画面内 */
.roll3d.scrollin {
  opacity: 1;
  transform: rotateY(360deg);
}

/* /画面内 */
/* 順番に表示 */
.roll3d:nth-of-type(2) {
  transition-delay: 200ms;
}

.roll3d:nth-of-type(3) {
  transition-delay: 400ms;
}

.roll3d:nth-of-type(4) {
  transition-delay: 600ms;
}

.roll3d:nth-of-type(5) {
  transition-delay: 800ms;
}

.roll3d:nth-of-type(6) {
  transition-delay: 1000ms;
}

.roll3d:nth-of-type(7) {
  transition-delay: 1200ms;
}

.roll3d:nth-of-type(8) {
  transition-delay: 1400ms;
}

/* /順番に表示 */
/**************************/
/* /3D回転表示 */
/**************************/
/**************************/
/* ズームイン＆3D回転表示 */
/**************************/
/* 画面外 */
.zoomin3d {
  opacity: 0;
  transition: all 800ms;
  transform: scale(0, 0) rotateY(180deg);
}

/* /画面外 */
/* 画面内 */
.zoomin3d.scrollin {
  opacity: 1;
  transform: scale(1, 1) rotateY(360deg);
}

/* /画面内 */
/* 順番に表示 */
.zoomin3d:nth-of-type(2) {
  transition-delay: 200ms;
}

.zoomin3d:nth-of-type(3) {
  transition-delay: 400ms;
}

.zoomin3d:nth-of-type(4) {
  transition-delay: 600ms;
}

.zoomin3d:nth-of-type(5) {
  transition-delay: 800ms;
}

.zoomin3d:nth-of-type(6) {
  transition-delay: 1000ms;
}

.zoomin3d:nth-of-type(7) {
  transition-delay: 1200ms;
}

.zoomin3d:nth-of-type(8) {
  transition-delay: 1400ms;
}

/* /順番に表示 */
/**************************/
/* /ズームイン＆3D回転表示 */
/**************************/
html {
  scroll-behavior: smooth;
}

html,
body {
  padding-top: 0 !important;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
}
body.active {
  height: 100%;
  overflow: hidden;
}

img {
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  vertical-align: top;
  width: 100%;
}
@media (max-width: 999px) {
  img {
    max-width: 100%;
  }
}

a:hover {
  opacity: 0.7;
}

.header {
  align-items: center;
  display: flex;
  height: 80px;
  justify-content: space-between;
  left: 0;
  position: fixed;
  top: 0;
  transition: transform 0.4s 0.4s;
  width: 100%;
  z-index: 97;
}
@media (min-width: 1000px) {
  .header {
    align-items: flex-start;
    height: 115px;
    justify-content: center;
    padding-top: 0;
  }
}
.header.hidden {
  transform: translateY(-80px);
}
@media (min-width: 1000px) {
  .header.hidden {
    transform: translateY(-115px);
  }
}
.header .header-wrapper {
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding: 0 15px;
  width: 100%;
}
@media (min-width: 1000px) {
  .header .header-wrapper {
    display: block;
    padding: 0;
  }
}
.header .header-wrapper .btn-ham {
  cursor: pointer;
  height: 40px;
  position: relative;
  width: 40px;
  z-index: 9999;
}
@media (min-width: 1000px) {
  .header .header-wrapper .btn-ham {
    display: none;
  }
}
.header .header-wrapper .btn-ham > span {
  background-color: #fff;
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
  width: 30px;
}
.header .header-wrapper .btn-ham > span:nth-child(1) {
  top: 30px;
}
.header .header-wrapper .btn-ham > span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .header-wrapper .btn-ham > span:nth-child(3) {
  bottom: 30px;
}
.header .header-wrapper .btn-ham.active > span {
  background-color: #fff;
}
.header .header-wrapper .btn-ham.active > span:nth-child(1) {
  transform: translate(-50%, -10px) rotate(-45deg);
}
.header .header-wrapper .btn-ham.active > span:nth-child(2) {
  opacity: 0;
}
.header .header-wrapper .btn-ham.active > span:nth-child(3) {
  transform: translate(-50%, 12px) rotate(45deg);
}
.header .header-wrapper .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 998;
}
.header .header-wrapper .nav-ham {
  background-color: rgba(0, 0, 0, 0.2);
  background: #03081e;
  height: 100vh;
  left: 100%;
  overflow: scroll;
  padding: 40px 0;
  position: fixed;
  transition: all 0.3s ease;
  top: 0;
  width: 90%;
  z-index: 999;
}
.header .header-wrapper .nav-ham.active {
  left: 10%;
}
.header .header-wrapper .nav-ham ul {
  padding: 0 20px;
}
.header .header-wrapper .nav-ham ul li + li {
  border-top: 1px solid #363a4f;
}
.header .header-wrapper .nav-ham ul li a {
  background: #03081e;
  color: #fff;
  display: block;
  padding: 15px;
}
.header .header-wrapper .nav-ham ::after {
  background: url(../images/common/logo.svg) no-repeat center 0;
  content: "";
  display: block;
  height: 37px;
  left: 50%;
  position: absolute;
  top: 500px;
  transform: translateX(-50%);
  width: 60px;
  z-index: 999;
}
.header .h-txt {
  align-items: center;
  background: #000;
  color: #fff;
  display: flex;
  font-size: 10px;
  justify-content: center;
  height: 30px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (min-width: 1000px) {
  .header .h-txt {
    font-size: 10px;
    font-weight: 400;
    height: 30px;
    letter-spacing: 0.2em;
    position: relative;
    width: 100%;
  }
}
.header .logo {
  width: 60px;
}
@media (min-width: 1000px) {
  .header .logo {
    margin: 20px auto 0;
    width: 60px;
  }
}
.header .h-nav {
  display: none;
  margin-top: 10px;
}
@media (min-width: 1000px) {
  .header .h-nav {
    display: block;
    margin-top: 10px;
  }
}
.header .h-nav ul {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 0 auto;
  padding: 3px 0;
  width: 860px;
}
.header .h-nav ul li {
  position: relative;
}
.header .h-nav ul li a {
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.2em;
  position: relative;
}
.header .h-nav ul li a:hover {
  opacity: 1;
}
.header .h-nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #888;
  transform: scale(0, 1);
  transform-origin: left;
  transition: 0.3s;
}
.header .h-nav ul li a:hover::before {
  transform: scale(1);
}
.header .h-nav ul li a.tab-link::after {
  background: url(../images/common/icon_tab_link.svg) no-repeat 0 0;
  background-size: cover;
  content: "";
  display: block;
  height: 30px;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
}
.header .btn-contact {
  display: none;
}
@media (min-width: 1000px) {
  .header .btn-contact {
    display: block;
    height: 115px;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 115px;
  }
}
.header .btn-contact a {
  align-items: center;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 400;
  height: 100%;
  justify-content: center;
  line-height: 1.4;
  padding-top: 30px;
  position: relative;
  text-align: center;
  width: 100%;
}
.header .btn-contact a::before {
  background: url(../images/common/icon_contact.svg) no-repeat 0 0;
  background-size: cover;
  content: "";
  display: block;
  height: 25px;
  left: 50%;
  position: absolute;
  top: 25px;
  transform: translateX(-50%);
  width: 25px;
}
.header .btn-contact a span {
  font-size: 10px;
}

main .btn-float-trial {
  -webkit-animation: btn-slide-top 2s;
          animation: btn-slide-top 2s;
  bottom: 0;
  opacity: 0.9;
  position: fixed;
  right: 0;
  width: 220px;
  z-index: 2;
}
@media (min-width: 1000px) {
  main .btn-float-trial {
    -webkit-animation: btn-slide-left 2s;
            animation: btn-slide-left 2s;
    right: 0;
    top: 150px;
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
  }
}
main .btn-float-trial a {
  align-items: center;
  background: #e62c88;
  border-radius: 15px 0 0 0;
  color: #fff;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1000px) {
  main .btn-float-trial a {
    border-radius: 10px 0 0 10px;
    font-weight: 400;
    height: 220px;
    transition: 0.5s;
    width: 35px;
  }
}
@media (min-width: 1000px) {
  main .btn-float-trial a:hover {
    opacity: 1;
    width: 50px;
  }
}

.footer {
  background: #0b0e12;
  padding: 30px 20px;
  position: relative;
}
@media (min-width: 1000px) {
  .footer {
    padding: 30px 20px;
  }
}
.footer .copyright {
  color: #eee;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (min-width: 1200px) {
  #wrapper {
    background: #1f2b61;
  }
}
@media (min-width: 1300px) {
  #wrapper {
    display: flex;
  }
}
#wrapper #left-area {
  display: none;
}
@media (min-width: 1300px) {
  #wrapper #left-area {
    background: #1f2b61;
    display: block;
    height: 100vh;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: calc(100vw - 1200px);
  }
}
#wrapper #left-area img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
}
@media (min-width: 1200px) {
  #wrapper #main-area {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
  }
}
@media (min-width: 1300px) {
  #wrapper #main-area {
    flex-shrink: 0;
    width: 1200px;
  }
}
#wrapper #main-area img {
  width: 100%;
}

/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}

.modaal-container {
  background: transparent;
  max-width: 400px;
}
.modaal-container .modaal-content-container {
  padding: 0;
}
.modaal-container .popup-reserve ul li + li {
  margin-top: 30px;
}
.modaal-container .popup-reserve ul li a {
  background: #1a859c;
  border-radius: 80px;
  color: #fff;
  display: block;
  padding: 20px;
  text-align: center;
}
.modaal-container .popup-reserve ul li a p:nth-of-type(1) {
  font-size: 18px;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
}
.modaal-container .popup-reserve ul li a p:nth-of-type(2) {
  font-size: 13px;
  margin-top: 10px;
}
.modaal-container .popup-reserve ul li a p:nth-of-type(3) {
  margin-top: 10px;
  text-decoration: underline;
}

#page-top {
  /*--------------------------
  Slider
  --------------------------*/
}
#page-top .top-mv-video {
  height: 600px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (min-width: 1000px) {
  #page-top .top-mv-video {
    height: 750px;
  }
}
#page-top .top-mv-video video {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
}
#page-top .top-mv-video .mv-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
#page-top .top-mv-video .copy {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  left: 50%;
  letter-spacing: 0.2em;
  padding: 5px 5px 5px 15px;
  text-align: center;
  transform: translateX(-50%);
  top: 50%;
  white-space: nowrap;
}
@media (min-width: 1000px) {
  #page-top .top-mv-video .copy {
    font-size: 16px;
    white-space: unset;
  }
}
#page-top .start {
  background: url(../images/common/bg_getting_started.jpg) no-repeat center 0;
  background-size: cover;
  margin: 0 auto;
  padding: 80px 20px;
}
@media (min-width: 1000px) {
  #page-top .start {
    padding: 120px 20px;
  }
}
#page-top .start .start-wrapper {
  margin: 0 auto;
  max-width: 1200px;
}
#page-top .start h2 {
  color: #888;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
}
#page-top .start h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  margin-top: 30px;
  position: relative;
}
@media (min-width: 1000px) {
  #page-top .start h3 {
    font-size: 28px;
  }
}
#page-top .start h3::before {
  bottom: -15px;
  content: "■■■";
  color: #fff;
  font-size: 6px;
  height: 3px;
  left: 0;
  letter-spacing: 2em;
  padding-left: 1px;
  position: absolute;
}
#page-top .start .txt-s01 {
  color: #ccc;
  font-size: 14px;
  line-height: 2;
  margin-top: 50px;
}
@media (min-width: 1000px) {
  #page-top .start .txt-s01 {
    font-size: 16px;
  }
}
#page-top .works {
  background-size: cover;
  background: url(../images/common/bg_works.jpg) no-repeat center center;
  background-size: cover;
  margin: 0 auto;
  padding: 80px 20px;
}
@media (min-width: 1000px) {
  #page-top .works {
    padding: 120px 20px;
  }
}
#page-top .works .works-wrapper {
  margin: 0 auto;
  max-width: 1200px;
}
#page-top .works .works-wrapper h2 {
  color: #888;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
}
#page-top .works .works-wrapper .works-slider .slider li .user-works .works-img img {
  border: 1px solid #ccc;
}
#page-top .information {
  background: url(../images/common/bg_information.jpg) no-repeat 0 center;
  background-size: cover;
  margin: 0 auto;
  padding: 80px 20px;
}
@media (min-width: 1000px) {
  #page-top .information {
    padding: 120px 20px;
  }
}
#page-top .information .information-wrapper {
  margin: 0 auto;
  max-width: 1200px;
}
#page-top .information h2 {
  color: #888;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
}
#page-top .information .tb-information {
  margin-top: 20px;
}
@media (min-width: 1000px) {
  #page-top .information .tb-information {
    align-items: center;
    display: flex;
    margin-top: 30px;
  }
}
#page-top .information .tb-information table {
  width: 100%;
}
#page-top .information .tb-information table th {
  border-bottom: 1px solid #bbb;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 20px 0;
  width: 140px;
}
#page-top .information .tb-information table td {
  border-bottom: 1px solid #bbb;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 20px 0;
}
#page-top .contact {
  background: url(../images/common/bg_contact.jpg) no-repeat 0 center;
  background: #fff;
  background-size: cover;
  margin: 0 auto;
  padding: 80px 20px;
}
@media (min-width: 1000px) {
  #page-top .contact {
    padding: 120px 20px;
  }
}
#page-top .contact .contact-wrapper {
  margin: 0 auto;
  max-width: 1200px;
}
#page-top .contact h2 {
  color: #888;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
}
#page-top .contact form {
  margin-top: 20px;
  width: 100%;
}
@media (min-width: 1000px) {
  #page-top .contact form {
    margin-top: 30px;
  }
}
#page-top .contact form label {
  display: block;
  letter-spacing: 0.1em;
  width: 100%;
}
#page-top .contact form label + label {
  margin-top: 30px;
}
#page-top .contact form input {
  background: #fff;
  border: 1px solid #ccc;
  display: block;
  font-size: 16px;
  margin-top: 10px;
  padding: 10px;
  max-width: 350px;
  width: 100%;
}
#page-top .contact form textarea {
  background: #fff;
  border: 1px solid #ccc;
  display: block;
  font-size: 16px;
  height: 150px;
  margin-top: 10px;
  padding: 10px;
  width: 100%;
}
#page-top .contact form button {
  align-items: center;
  background: #1f2b61;
  border: 1px solid #1f2b61;
  border-radius: 30px;
  color: #fff;
  display: flex;
  height: 40px;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.2em;
  margin: 40px auto 0;
  text-align: center;
  transition: all 0.3s;
  width: 100px;
}
#page-top .contact form button:hover {
  background: #3f4d83;
}
#page-top .contact form button:disabled {
  background: #ccc;
  border-color: #ccc;
}
#page-top .works-slider {
  border: 1px solid #ccc;
  margin: 20px auto 0;
  max-width: 1200px;
  padding: 50px 0;
}
#page-top .works-slider .slider .user-works {
  cursor: pointer;
  padding: 0 20px;
}
#page-top .works-slider .slider .user-works .works-ttl {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 10px;
  position: relative;
}
#page-top .works-slider .slider .user-works .works-ttl::after {
  background: #1a859c;
  content: "";
  display: block;
  height: 2px;
  margin-top: 20px;
  width: 20px;
}
#page-top .works-slider .slider .user-works .works-ttl span {
  display: block;
  font-size: 13px;
  margin-top: 5px;
}
#page-top .works-slider .slider .user-works .works-content {
  background: #efefef;
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
  padding: 20px;
}
#page-top .works-slider .slider .slick-dots {
  bottom: -45px !important;
}
#page-top .works-slider .slider .slick-arrow {
  background-color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  font-size: 0;
  height: 30px;
  outline: none;
  position: absolute;
  top: 50%;
  transition: 0.5s;
  transform: translateY(-50%);
  width: 30px;
  z-index: 1;
}
#page-top .works-slider .slider .slick-arrow:hover {
  background: #000;
}
#page-top .works-slider .slider .slick-arrow::before {
  border: 1px solid #09000d;
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  top: 10px;
  transform: rotate(45deg);
  width: 12px;
}
#page-top .works-slider .slider .slick-next {
  opacity: 0.9;
  right: -10px;
}
#page-top .works-slider .slider .slick-next:hover::before {
  border: 1px solid #fff;
  border-width: 3px 3px 0 0;
}
#page-top .works-slider .slider .slick-next::before {
  border-width: 3px 3px 0 0;
  left: 8px;
}
#page-top .works-slider .slider .slick-prev {
  left: -10px;
  opacity: 0.9;
}
#page-top .works-slider .slider .slick-prev:hover::before {
  border: 1px solid #fff;
  border-width: 0 0 3px 3px;
}
#page-top .works-slider .slider .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 8px;
}

/*--------------------------
  Print Styles
--------------------------*/
@media print {
  *, *::before, *::after {
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    text-shadow: none !important;
  }

  a, a:visited {
    text-decoration: underline;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }
}