@charset "UTF-8";

@import url(//fonts.googleapis.com/earlyaccess/notosansjp.css);


/* =================================================
   RESET
================================================= */

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: 0px;
    padding: 0px;
    border: 0px;
    outline:0;
    font-size: 100%;
    font-style: normal;
    font-variant: normal;
    font-weight: inherit;
    vertical-align: baseline;
    background:transparent;
}
body {
    line-height: 1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary {
    display: block;
}

table {
    border-collapse: collapse; border-spacing: 0;
}
caption,th,td {
    text-align: left; font-weight: 400; vertical-align: middle;
}
q,blockquote{
    quotes:none;
}
q::before,q::after,
blockquote::before,blockquote::after{
    content: '';
    content: none;
}
fieldset,img{ border:0; }
input,textarea,select{ font-family:inherit;font-size:inherit;font-weight:inherit; font-size:100%; }
input, select{ vertical-align:middle; }



/* -------------------------------------
   font
------------------------------------- */

html,
body{
    
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN","游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, sans-serif;
    font-weight: bold;
    font-weight: 400;
    
    line-height: 1.5;
}
/* 320 : iPhone , 360 : Android , 375 : iPhone6 , 414 : iPhone6 Plus */
@media screen and (min-width: 0px) and (max-width: 374px) {
    html,
    body{
        font-size: 62.5%; /* 10px */
        /*font-size: calc(100vw / 32);*/ /* 10px:320 */
        font-size: calc(100vw / 37.5); /* 10px:375 */
    }
}
@media screen and (min-width: 375px) and (max-width: 767px) {
    html,
    body{
        font-size: 62.5%; /* 10px */
        font-size: calc(100vw / 37.5); /* 10px:375 */
    }
}
@media screen and (min-width:768px){
    html,
    body{ 
        font-size: 62.5%; /* 10px */
        line-height: 1.75;
    }
}



/* =================================================
   COMMON
================================================= */

html{
  min-width:100%;
}
body {
  text-align:left;
  padding:0;
  margin:0;
  background: #1E1E1E;
}

/* -------------------------------------
   container
------------------------------------- */

#container{
  width: 100%;
}
#container .inner{
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
small{
    font-feature-settings : "pkna";
    
    letter-spacing: 0.025em;
    padding: 0;
    margin: 0 0 1rem;
}
.h1{
    font-size: 2.4rem;
}
.h2{
    font-size: 2.1rem;
}
.h3{
    font-size: 1.8rem;
}
.h4{
    font-size: 1.6rem;
}
.h5{
    font-size: 1.4rem;
}
.h6{
    font-size: 1.2rem;
}
p{
    font-size: 1rem;
}
small{
    display: block;
    font-size: 0.9rem;
}
figure{
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
img {
  display: block;
  width: 100%;
  height: auto;
}

/* -------------------------------------
   SP
*/

.pc {
  display:none !important;
}

/* -------------------------------------
   PC
*/

@media screen and (min-width:767px){

html{
  min-width:1100px;
}

/* -------------------------------------
   container
*/

#container{
  width: 100%;
}
#container .inner{
  position: relative;
}

/* -------------------------------------
   header
*/

header{
  display: flex;
  width: 100vw;
  max-width: 1920px;
  justify-content: space-between;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
header img{
  width: auto;
  height: 80px;
}
header img:nth-of-type(1){
}
header img:nth-of-type(2){
}
header img.top{
  height: 160px;
}

/* -------------------------------------
   section
*/

#container .inner section.inside{
  width:1920px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.pc {
  display:block !important;
}
.sp {
  display:none !important;
}


}