@charset "UTF-8";
/* -----------------------------------
    CSS Document
----------------------------------- */
/* -----------------------------------
    global
----------------------------------- */
/* -----------------------------------
    reset
----------------------------------- */
/** * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/) * Richard Clark (http://richclarkdesign.com) * http://cssreset.com */
@import url(//fonts.googleapis.com/earlyaccess/notosansjp.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, 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;
}

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;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* -----------------------------------
    common
----------------------------------- */
/* =================================================
   COMMON
================================================= */
html {
  width: 100%;
  height: auto;
}

body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  word-break: normal;
  word-wrap: break-word;
  color: #000;
  text-align: left;
  width: 100%;
  height: 100%;
  background: #FFF;
}

nav ul {
  list-style: none;
}

img {
  vertical-align: middle;
}

figcaption {
  display: block;
}

a, a:link {
  color: #000;
  text-decoration: underline;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  background: transparent;
}

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

/* -------------------------------------
   font
------------------------------------- */
html,
body {
  line-height: 1.75;
}

/* 320 : iPhone , 360 : Android , 375 : iPhone6 , 414 : iPhone6 Plus */
@media screen and (min-width: 0px) and (max-width: 320px) {
  html,
  body {
    font-size: 62.5%;
    /* 10px */
  }
}

@media screen and (min-width: 321px) and (max-width: 766px) {
  html,
  body {
    font-size: 68%;
    /* 11px */
  }
}

@media screen and (min-width: 767px) {
  html,
  body {
    font-size: 62.5%;
    /* 10px */
    line-height: 1.75;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN","游ゴシック","游ゴシック体",YuGothic,"Yu Gothic","メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  font-weight: 400;
}

/* =================================================
   Global layout
================================================= */
/* -----------------------------------
    common
----------------------------------- */
.visible {
  display: block !important;
}

html {
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
}

body {
  font-size: 1.4rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body:before {
  content: "";
  display: block;
  width: 100%;
  height: 6vmin;
  background: #000;
  position: fixed;
  z-index: 999;
  top: 0;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

/* ---------------------
    animation
*/
@keyframes motion-h1 {
  0% {
    transform: scale(0.98);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes motion-gnav {
  0% {
    transform: translateX(10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes motion-footer {
  0% {
    transform: translateY(200px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* -----------------------------------
    Global
----------------------------------- */
#header,
#footer {
  display: block;
  width: 100%;
  position: fixed;
}

#header .inner,
#footer .inner {
  margin: 0 auto;
}

/* -----------------------------------
    #header
----------------------------------- */
#header {
  z-index: 9999;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
}

#header.active .inner {
  background: rgba(255, 255, 255, 0.75);
}

#header.active .inner .nav ul li:nth-child(1) {
  font-weight: bold;
  font-weight: 700;
}

#header .inner {
  width: 93.75%;
  padding: 3.0rem 0 0;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0);
  transition: 0.3s;
}

#header .inner .h1 {
  width: 76.66667%;
  margin: 0 auto;
  /* -------------------------------------
               animation
            */
  animation-fill-mode: backwards;
  animation-name: motion-h1;
  animation-delay: 0.3s;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

#header .inner .h1 img {
  display: block;
  width: 100%;
  height: auto;
}

#header .inner .h1 a,
#header .inner .h1 a:link {
  display: block;
  text-decoration: none;
}

#header .inner .nav {
  width: 100%;
  padding: 2.0rem 0 0;
}

#header .inner .nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  width: 100%;
  position: relative;
  /* -------------------------------------
                   animation
                */
  animation-fill-mode: backwards;
  animation-name: motion-gnav;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

#header .inner .nav ul:before {
  order: 2;
  content: "";
  display: block;
  font-size: 1px;
  line-height: 1;
  width: 1px;
  height: 1em;
  background: #ccc;
  box-sizing: border-box;
}

#header .inner .nav ul li {
  font-weight: 300;
  list-style-type: none;
  text-align: center;
  width: 49%;
}

#header .inner .nav ul li:nth-child(1) {
  order: 1;
  text-align: right;
}

#header .inner .nav ul li:nth-child(2) {
  order: 3;
  text-align: left;
}

#header .inner .nav ul li a,
#header .inner .nav ul li a:link {
  display: inline-block;
  text-decoration: none;
  padding: 0 1.5rem;
}

#header .inner .nav ul li a:hover {
  color: #000;
}

/* -----------------------------------
    #footer
----------------------------------- */
#footer {
  padding: 1.0rem 0;
  z-index: 999;
  left: 0;
  bottom: 0;
  /* -------------------------------------
       animation
    */
  animation-fill-mode: backwards;
  animation-name: motion-footer;
  animation-delay: 0.3s;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

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

#footer .inner .logo {
  width: 7.03125%;
  margin: 0 auto;
}

#footer .inner .logo img {
  display: block;
  width: 100%;
  height: auto;
}

#footer .inner .logo a,
#footer .inner .logo a:link {
  display: block;
  text-decoration: none;
}

#footer .inner .copy {
  font-size: 1.0rem;
  margin: 2.0rem 0 0;
}

/*
// responsive
// -----------------------------------

@media screen and (min-width:568px){
    
    #header{
        
        .inner{
            
            .h1{
                //width: (400/640)*100%;
            }
            .nav{
                //padding: 1.0rem 0 0;
            }
        }
    }
    #footer{
        
        .inner{
            
            .logo{

                img{
                    
                }
            }
            .copy{
                
            }
        }
    }
}
*/
/* -----------------------------------
    responsive
----------------------------------- */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  body:before {
    height: 4vmin;
  }
  #header {
    transform: translateY(-60%);
  }
  #header.active .inner {
    padding: 2.0rem 0 0;
    padding-bottom: 1.0rem;
  }
  #header.active .inner .nav {
    padding: 1.0rem 0 0;
  }
  #header .inner .h1 {
    width: 220px;
  }
  #header .inner .nav ul {
    font-size: 1.6rem;
  }
  #footer .inner .logo {
    width: 3.125%;
  }
  #footer .inner .copy {
    font-size: 0.9rem;
    margin: 1.0rem 0 0;
  }
}

@media screen and (min-width: 767px) {
  /* ---------------------
        effect
    */
  .ahover {
    transition: 0.3s;
  }
  .ahover:hover {
    opacity: 0.6;
  }
  a.transhover img,
  a.transhover:link img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    transition: 0.5s;
  }
  a.transhover:hover img {
    transform: scale(1.1, 1.1) translate(-45%, -45%) !important;
    opacity: 0.6;
  }
  /* ---------------------
        common
    */
  html {
    min-width: 900px;
  }
  body:before {
    height: 30px;
  }
  #header.active .inner {
    padding: 60px 0 10px;
  }
  #header .inner {
    width: 900px;
    padding: 30px 0 10px;
  }
  #header .inner .h1 {
    width: 292px;
  }
  #header .inner .nav {
    padding: 50px 0 0;
  }
  #header .inner .nav ul {
    font-size: 2.0rem;
  }
  #header .inner .nav ul li a,
  #header .inner .nav ul li a:link {
    padding: 0 2.5rem;
  }
  #footer .inner {
    max-width: 900px;
  }
  #footer .inner .logo {
    width: 45px;
  }
  #footer .inner .copy {
    font-size: 1.2rem;
  }
}

/* -----------------------------------
    wraper: bg object
----------------------------------- */
#motion_bg {
  width: 100%;
  height: 100%;
  min-height: 1500px;
  margin: 0px auto;
  position: fixed;
  overflow: hidden;
}

#motion_bg img {
  position: absolute;
  z-index: 2;
  opacity: 0.5;
}

#motion_bg .box01cover {
  position: absolute;
  left: 0px;
  top: 100px;
  height: 50px;
  width: 50px;
  overflow: visible;
  z-index: 1;
}

#motion_bg .box01-01cover {
  position: absolute;
  left: 800px;
  top: 100px;
  height: 50px;
  width: 50px;
  overflow: visible;
}

#motion_bg .box02cover {
  position: absolute;
  left: 400px;
  top: 100px;
  height: 50px;
  width: 50px;
  overflow: visible;
  z-index: 1;
}

#motion_bg .box02-01cover {
  position: absolute;
  left: -100px;
  top: 100px;
  height: 50px;
  width: 50px;
  overflow: visible;
  z-index: 1;
}

#motion_bg .box03cover {
  position: absolute;
  left: 100px;
  top: 50px;
  height: 50px;
  width: 50px;
  overflow: visible;
  z-index: 1;
}

#motion_bg .box03-01cover {
  position: absolute;
  left: 600px;
  top: 100px;
  height: 50px;
  width: 50px;
  overflow: visible;
  z-index: 1;
}

#motion_bg .box03-02cover {
  position: absolute;
  left: 100px;
  top: 650px;
  height: 50px;
  width: 50px;
  overflow: visible;
  z-index: 1;
}

#motion_bg .box03-03cover {
  position: absolute;
  left: 800px;
  top: 100px;
  height: 50px;
  width: 50px;
  overflow: visible;
  z-index: 1;
}

#motion_bg .box01 {
  position: absolute;
  width: 50px;
  height: 50px;
  overflow: visible;
}

#motion_bg .box02 {
  position: absolute;
  width: 50px;
  height: 50px;
  overflow: visible;
}

#motion_bg .box03 {
  position: absolute;
  width: 50px;
  height: 50px;
  overflow: visible;
}

#motion_bg .box01cover0101 .box01 {
  left: 124px;
  top: 342px;
}

#motion_bg .box01cover0102 .box01 {
  left: 325px;
  top: 746px;
}

#motion_bg .box01cover0103 .box01 {
  left: 231px;
  top: 324px;
}

#motion_bg .box01cover0104 .box01 {
  left: 856px;
  top: 23px;
}

#motion_bg .box01cover0201 .box02 {
  left: 358px;
  top: 623px;
}

#motion_bg .box01cover0202 .box02 {
  left: 763px;
  top: 234px;
}

#motion_bg .box01cover0203 .box02 {
  left: 123px;
  top: 87px;
}

#motion_bg .box01cover0204 .box02 {
  left: 435px;
  top: 76px;
}

#motion_bg .box01cover0205 .box02 {
  left: 43px;
  top: 74px;
}

#motion_bg .box01cover0206 .box02 {
  left: 431px;
  top: 289px;
}

#motion_bg .box01cover0207 .box02 {
  left: 23px;
  top: 0px;
}

#motion_bg .box01cover0208 .box02 {
  left: 0px;
  top: 76px;
}

#motion_bg .box01cover0209 .box02 {
  left: 82px;
  top: 432px;
}

#motion_bg .box01cover0210 .box02 {
  left: 543px;
  top: 34px;
}

#motion_bg .box01cover0200 .box02 {
  left: 0px;
  top: 0px;
}

#motion_bg .box01cover02001 .box02 {
  left: 500px;
  top: 0px;
}

#motion_bg .box01cover0200 .box02 img {
  opacity: 1 !important;
}

#motion_bg .box01cover0301 .box03 {
  left: 4px;
  top: 345px;
}

#motion_bg .box01cover0302 .box03 {
  left: 456px;
  top: 453px;
}

#motion_bg .box01cover0303 .box03 {
  left: 132px;
  top: 23px;
}

#motion_bg .box01cover0304 .box03 {
  left: 348px;
  top: 65px;
}

#motion_bg .box01cover0305 .box03 {
  left: 232px;
  top: 357px;
}

#motion_bg .box01cover0306 .box03 {
  left: 324px;
  top: 324px;
}

#motion_bg .box01cover0307 .box03 {
  left: 34px;
  top: 75px;
}

#motion_bg .box01cover0308 .box03 {
  left: 234px;
  top: 362px;
}

#motion_bg .box01cover0309 .box03 {
  left: 426px;
  top: 423px;
}

#motion_bg .box01cover0310 .box03 {
  left: 426px;
  top: 0px;
}

#motion_bg .box01cover0311 .box03 {
  left: 432px;
  top: 74px;
}

#motion_bg .box01cover0312 .box03 {
  left: 84px;
  top: 23px;
}

#motion_bg .box01cover0313 .box03 {
  left: 473px;
  top: 340px;
}

/* -----------------------------------
    #header
----------------------------------- */
#header .inner {
  /* -----------------------------------
            contents
        ----------------------------------- */
}

#header .inner .contents {
  /* -------------------------------------
               contents_1
            */
}

#header .inner .contents.contents_1 {
  display: none;
  width: 96.875%;
  height: 80vmin;
  padding: 0;
  margin: 1rem auto 0;
  box-sizing: border-box;
  overflow: auto;
}

#header .inner .contents.contents_1 .table {
  display: flex;
  flex-wrap: wrap;
}

#header .inner .contents.contents_1 .table .th,
#header .inner .contents.contents_1 .table .td {
  font-feature-settings: "pkna";
  letter-spacing: 0.125em;
  font-size: 1.0rem;
  line-height: 1.5;
  margin: 0 0 0.5rem;
  box-sizing: border-box;
}

#header .inner .contents.contents_1 .table .th {
  text-align: right;
  width: 29.03226%;
  padding-right: 1rem;
}

#header .inner .contents.contents_1 .table .td {
  text-align: left;
  width: 64.51613%;
  padding-left: 0;
}

#header .inner .contents.contents_1 .table .td.indent_list {
  text-indent: -1.0rem;
  padding-left: 1.0rem;
}

/* -----------------------------------
    responsive
----------------------------------- */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  #header .inner {
    /* -----------------------------------
                contents
            ----------------------------------- */
  }
  #header .inner .contents {
    /* -------------------------------------
                   contents_1
                */
  }
  #header .inner .contents.contents_1 {
    width: 96.875%;
    height: 30vmin;
    padding: 0;
    margin: 1rem auto 0;
  }
  #header .inner .contents.contents_1 .table .th,
  #header .inner .contents.contents_1 .table .td {
    font-size: 1.0rem;
    margin: 0 0 0.5rem;
  }
  #header .inner .contents.contents_1 .table .th {
    width: 30%;
    padding-right: 1.0rem;
  }
  #header .inner .contents.contents_1 .table .td {
    width: 68.33333%;
    padding-left: 0;
  }
}

@media screen and (min-width: 767px) {
  #header .inner .contents.contents_1 {
    width: 640px;
    height: auto;
    padding: 0 0 10px;
    margin: 40px auto 0;
  }
  #header .inner .contents.contents_1 .table .th,
  #header .inner .contents.contents_1 .table .td {
    font-size: 1.4rem;
    margin: 0 0 10px;
  }
  #header .inner .contents.contents_1 .table .th {
    width: 140px;
    padding-right: 1.5rem;
  }
  #header .inner .contents.contents_1 .table .td {
    width: 470px;
    padding-left: 0;
  }
}
