@charset "UTF-8";

@font-face {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
 }
html{
    font-size: 62.5%;
}
body{   
  color:#333333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 1.5rem;
  line-height: 1;
}
a{
  color: #333;
  text-decoration: none;
  transition: all .2s;    
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
}
a:hover{
  opacity:0.75;
}
img{
  max-width:100%;
  height:auto;
}
input,textarea{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  outline:none;
  color:#333333;
  font-size: 1.6rem;
}
p {
  font-size: 1.5rem;
  line-height: 1.75;
}
.notosandjp {  font-family: 'Noto Sans JP', sans-serif;}
notoserifjp {  font-family: 'Noto Serif JP', serif;}
.longcang {  font-family: 'Long Cang', cursive;}
.rubik {  font-family: 'Rubik', sans-serif;}
.anton {  font-family: 'Anton', sans-serif;}


/*--------------------------------------------------
    layout parts
--------------------------------------------------*/

h1 img {
  display: block;
  margin: 0 auto;
  padding: 0;
}
.inner{
  max-width: 1200px;
  margin:0 auto;
  padding: 0;
}

.header{
  height: 90px;
  padding: 0;
  background: rgba(0,0,0,0.9);
  color: #fff;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s; 
  z-index: 20;
}
.footer{
  height: auto;
  padding: 50px 0;
  background: #000;
  color: #fff;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s; 
}
footer .siteID img {
}
.home .header{
  position: absolute;
  width: 100%;
}
nav a {
  color: #fff;
}
.header.fix{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  animation:fadedown 0.5s;
/*
  opacity: 1;
  transition: .7s;
*/
}
.herofix {
  background: url("../img/herofix.jpg") center center no-repeat;
  background-size: auto;
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.hero h2 { -webkit-animation: move_fadeIn 2s cubic-bezier(0.39, 0.575, 0.565, 1) forwards; animation: move_fadeIn 2s cubic-bezier(0.39, 0.575, 0.565, 1) forwards; }
.hero.move .herofix { -webkit-animation: move_fadeIn 2s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s forwards; animation: move_fadeIn 2s cubic-bezier(0.39, 0.575, 0.565, 1) 2s forwards; }
/*
.hero.move ul { -webkit-animation: move_blink 3s cubic-bezier(0.39, 0.575, 0.565, 1) 3s forwards; animation: move_fadeIn 3s cubic-bezier(0.39, 0.575, 0.565, 1) 4s forwards; }

.hero ul {opacity: 0;}
*/


@keyframes fadedown {
  0%{
      margin-top:-100px;
  }
  100%{
      margin-top:0;
  }
}

/* **********************************************************
	move from bottom
********************************************************** */
@-webkit-keyframes move_slide {
	0% { -webkit-transform: translate(0,15px); opacity: 0; }
	100% { -webkit-transform: translate(0,0); opacity: 1; }
}
@keyframes move_slide {
	0% { transform: translate(0,15px); opacity: 0; }
	100% { transform: translate(0,0); opacity: 1; }
}
@-webkit-keyframes move_slide_img {
	0% { -webkit-transform: translate(0,70px); opacity: 0; }
	100% { -webkit-transform: translate(0,0); opacity: 1; }
}
@keyframes move_slide_img {
	0% { transform: translate(0,70px); opacity: 0; }
	100% { transform: translate(0,0); opacity: 1; }
}

/* **********************************************************
	move fadeIn
********************************************************** */
@-webkit-keyframes move_fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes move_fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

/* **********************************************************
	move blink
********************************************************** */
@-webkit-keyframes move_blink {
	0% { opacity: 0; }
	15% { opacity: 1; }
	30% { opacity: 0; }
	45% { opacity: 1; }
	60% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes move_blink {
	0% { opacity: 0; }
	15% { opacity: 1; }
	30% { opacity: 0; }
	45% { opacity: 1; }
	60% { opacity: 0; }
	100% { opacity: 1; }
}
/*end*/

.header-inner{
  display: flex;
  -webkit-display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 10px;
  position: relative;
}
.footer-inner{
  display: flex;
  -webkit-display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 10px;
  position: relative;
  align-items: center;
}
.siteID{
  position: static;
  box-sizing: border-box;
  padding: 15px 0;
}
.siteID span {
  font-size: 0.85rem;
  display: block;
  position: absolute;
  top: 45%;
  left: 265px;
}
/* navigation */
.btn-trigger{
  display: none;
  position: static;
}
.header-nav{
  display: block;
  position: static;
  height: auto;
  width:auto;
  padding: 0;
}
.navigation{
  -webkit-display: flex;
  display: flex;
}
.nav-list{
  -webkit-display: flex;
  display: flex;
  justify-content: center;
  margin: 0 0 0 38px;
}


.header .nav-list:last-of-type{
  margin:0 0 0 38px;
} 
.nav-item{
  margin: 0 0 0 30px;
  font-size: 1.6rem;
}
.header .nav-item>a{
  display: block;
  box-sizing:border-box;
  height: 90px;        
  line-height: 90px;
}
.nav-item.current>a{
  color:#c00;
  border-bottom:solid 2px #c00;
}
.nav-item:first-child{
  margin-left: 0;
}
.nav-item__sns{
  margin-left: 24px;
}
.sns{
  font-size: 1.8rem;
}

/*hero*/
.herobglogo {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 0.5;
  width: 5%;
}
.herounder {
  position: absolute;
  bottom: -3px;
/*    transform: translateY(-50%) translateX(-50%);*/
  opacity: 1;
  width: 100%;
}
.herounder img{
    width: 100%;
}
.hero {
  position: relative;
  min-height: 800px;
  background: #000;
}
.small {
  font-size: 2rem !important;
  font-weight: bold;
  letter-spacing: 1.5rem !important;
  padding-bottom: 1.5rem;
}
ul.slider.slick-initialized.slick-slider {
  max-height: 700px;
}
.topMain {
  height: 100vh;
  background: #000;
  position: relative;
}
h2.toptitle {
  color: #fff;
  font-size: 8rem;
  letter-spacing: 1.5rem;
  text-shadow: black 0 0 5px;
}
p.subcopy {
}
.heroinner {
/*  font-family: 'arial';*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%); 
  text-align: center;
  width: 100%;
  overflow: hidden;
/*  width: 1080px;*/
}
.maincopy {
  /* font-family: 'arial'; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-8%) translateX(-50%);
  text-align: center;
  width: 100%;
  background: radial-gradient(black, transparent);
  padding: 25px 0;
  z-index: 2000;
}
.heroinner p.subcopy {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
/*  font-family: 'Noto Serif JP', serif;*/
  font-weight: 500;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto 10px;
}
.heroinner p.subcopyX {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.5;
  max-width: 800px;
  margin: 20px auto;
}

/*
.move{
	opacity: 0;
	transform: translate(0,60px); 
	-webkit-transform: translate(0,60px); 
}
*/
.moveon{
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
  transition: .8s;
}

/*fade-----------------------------*/

.fadeup{
	opacity: 0;
	transform: translate(0,60px); 
	-webkit-transform: translate(0,60px); 
}
.fadeupon{
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
  transition: .8s;
}

.fadeupon:nth-of-type(2) {
    -moz-transition-delay:100ms;
    -webkit-transition-delay:100ms;
    -o-transition-delay:100ms;
    -ms-transition-delay:100ms;
    }
.fadeupon:nth-of-type(3) {
    -moz-transition-delay:200ms;
    -webkit-transition-delay:200ms;
    -o-transition-delay:200ms;
    -ms-transition-delay:200ms;
    }
.fadeupon:nth-of-type(4){
    -moz-transition-delay:300ms;
    -webkit-transition-delay:300ms;
    -o-transition-delay:300ms;
    -ms-transition-delay:300ms;
    }
.fadeupon:nth-of-type(5) {
    -moz-transition-delay:400ms;
    -webkit-transition-delay:400ms;
    -o-transition-delay:400ms;
    -ms-transition-delay:400ms;
    }
.fadeupon:nth-of-type(6) {
    -moz-transition-delay:500ms;
    -webkit-transition-delay:500ms;
    -o-transition-delay:500ms;
    -ms-transition-delay:500ms;
    }
.fadeupon:nth-of-type(7) {
    -moz-transition-delay:600ms;
    -webkit-transition-delay:600ms;
    -o-transition-delay:600ms;
    -ms-transition-delay:600ms;
    }
.fadeupon:nth-of-type(8) {
    -moz-transition-delay:700ms;
    -webkit-transition-delay:700ms;
    -o-transition-delay:700ms;
    -ms-transition-delay:700ms;
    }

/*
.d0 {animation-delay:0s;}
.d1 {animation-delay:0.2s;}
.d2 {animation-delay:0.4s;}
.d3 {animation-delay:0.6s;}
.d4 {animation-delay:0.8s;}
.d5 {animation-delay:1.2s;}
.d6 {animation-delay:1.4s;}
.d7 {animation-delay:1.6s;}
.d8 {animation-delay:1.8s;}
*/
.d0, .d1, .d2, .d3, .d4, .d5, .d6, .d7, .d8 {opacity: 0;}
.photo_num_0, .photo_num_1, .photo_num_2, .photo_num_3, .photo_num_4,
.photo_num_5, .photo_num_6, .photo_num_7, .photo_num_8 {opacity: 0;}

.photo_num_0, img.d0 {-webkit-animation: timelag; animation: timelag 2s forwards; animation-delay:3s;}
.photo_num_1, img.d1 {-webkit-animation: timelag; animation: timelag 2s forwards; animation-delay:3.2s;}
.photo_num_2, img.d2 {-webkit-animation: timelag; animation: timelag 2s forwards; animation-delay:3.4s;}
.photo_num_3, img.d3 {-webkit-animation: timelag; animation: timelag 2s forwards; animation-delay:3.6s;}
.photo_num_4, img.d4 {-webkit-animation: timelag; animation: timelag 2s forwards; animation-delay:3.8s;}
.photo_num_5, img.d5 {-webkit-animation: timelag; animation: timelag 2s forwards; animation-delay:4.2s;}
.photo_num_6, img.d6 {-webkit-animation: timelag; animation: timelag 2s forwards; animation-delay:4.4s;}
.photo_num_7, img.d7 {-webkit-animation: timelag; animation: timelag 2s forwards; animation-delay:4.6s;}
.photo_num_8, img.d8 {-webkit-animation: timelag; animation: timelag 2s forwards; animation-delay:4.8s;}

@keyframes timelag {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}
@-webkit-keyframes timelag {
     0% {opacity: 0}
     100% {opacity: 1}
}

/*polaroids------------------------*/
/*---------------------------------*/
ul.polaroids img {
    display: block;
    width: 190px;
    margin-bottom: 12px;
}
ul.polaroids a {
    background: #fff;
    display: inline;
    float: left;
/*    margin: 0 0 27px 30px;*/
    width: auto;
    padding: 10px 10px 15px;
    text-align: center;
    font-family: "Marker Felt", sans-serif;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.25);
    -moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
    -webkit-transform: rotate(-2deg);
    -webkit-transition: -webkit-transform .15s linear;
    -moz-transform: rotate(-2deg);
}

ul.polaroids{
/*
-webkit-transform:rotate(-2deg);
-moz-transform:rotate(-2deg);
*/
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
}

/*Rotateallevenimagesdegrees*/
ul.polaroids li:nth-child(even) a{
-webkit-transform:rotate(3deg);
-moz-transform:rotate(3deg);
}

/*Don'trotateeverythirdimage,butoffsetitsposition*/
ul.polaroids li:nth-child(3n) a{
-webkit-transform:none;
-moz-transform:none;
position:relative;
top:-5px;
}

/*Rotateeveryfifthimageby5degreesandoffsetit*/
ul.polaroids li:nth-child(5n) a{
-webkit-transform:rotate(5deg);
-moz-transform:rotate(5deg);
position:relative;
right:5px;
}

/*Keepdefaultrotateforeveryeighth,butoffsetit*/
ul.polaroids li:nth-child(8n) a{
position:relative;
top:8px;
right:5px;
}

/*Keepdefaultrotateforeveryeleventh,butoffsetit*/
ul.polaroids li:nth-child(n) a{
position:relative;
top:3px;
left:-5px;
}

ul.polaroids li a:hover {
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.5);
  -moz-box-shadow: 0 3px 6px rgba(0,0,0,.5);
  position: relative;
  z-index: 5;
  opacity: 1;
}

/*slick setting*/
.slick-prev, .slick-next {
  top: 52%;
}
.slick-next {
  right: 50%;
  margin: -24px -593px 0 0;
  z-index: 1
}
.slick-prev {
  left: 50%;
  margin: -24px 0 0 -600px;
  z-index: 1
}
.slick-prev::before {
  position: relative;
  content: "\f0d9";
  font-family: FontAwesome;
  background: rgba(0,0,0,0.3);
  padding: 10px;
  opacity: 0.5;
}
.slick-next::before {
  position: relative;
  content: "\f0da";
  font-family: FontAwesome;
  background: rgba(0,0,0,0.3);
  padding: 10px;
  opacity: 0.5;
}

.flexNW {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.flexNWA {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
}
.relative {
  position: relative;
}
.inlinelist h5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%); 
  text-align: center;
}
.normal {
  padding: 90px 0;
  text-align: center;
}
.unnormal {
  padding: 90px 70px;
  text-align: center;
  max-width: 1060px;
}
.bgblack {
  background: #000 !important;
  color: #eee;
}
.vpoint {
  position: relative
}
.vpoint:before {
    content: "";
    display: block;
    width: 1px;
    height: 70px;
    margin: -30px auto 0 auto;
    position: absolute;
    background: #c00;
    z-index: 2;
  left: 50%;
}
/*2column*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
figcaption.offset {
  text-align: center;
  background: #fff;
  max-width: 1060px;
  margin: -100px auto 0 auto;
  padding: 70px 70px;
  position: relative;
  z-index: 1;
}
article.col2 {
  max-width: 48%;
  position: relative;
  margin-bottom: 20px;
}
article.col2 h3 {
  position: absolute;
  top: 235px;
  background: rgba(0,0,0,0.5);
  width: 100%;
  padding: 13px 0 13px;
  color: #fff;
}

/*4column*/
.flex-nw {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.flatline {
  padding: 30px;
  background: #f5f5f5;
  margin-bottom: 50px;
}
.flatline h3 {
    text-align: center;
    font-size: 2.0rem;
    margin: 0 0 2rem;
    background: #666;
    color: #fff;
    padding: 1.6rem;
}

h2.title {
  font-size: 3.4rem;
  margin-bottom: 2rem;
}
h4.subtitle {
  font-size: 1.6rem;
  margin-bottom: 5rem;
line-height: 1.5;
}
article.col2 p, .flatline p {
  text-align: left;
  text-align: justify;
  margin-top: 1rem;
  padding: 0.5rem;
}
.supportlist h3 {
  padding: 2rem;
}
.supportlist ul li {
  padding: 2rem;
  border-top: 1px solid #333;
}
.marker {
  background: linear-gradient(transparent 50%, #c00 );
/*  font-weight: bold;*/
}
.half {
  max-width: 50%;
  align-self: center
}
.textframe {
  background: #fff;
  padding: 4rem 3rem;
  text-align: left;
  color: #666;
  position: absolute;
  max-width: 570PX;
  left: 48%;
  text-align: justify;
}
.textwhite {
  color: #fff;
  background: rgba(0,0,0,0.35);
  padding: 1rem 2rem;
  border-radius: 20px;
}

img.artist {
  position: absolute;
  z-index: 5;
  left: 125px;
}
.more {
  margin-top: 30px;
  width: 180px;
  border: 1px solid #666;
  color: #666;
  padding: 10px;
  text-align: center;
}
.more2 {
  margin: 20px auto 0;
  width: 180px;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px;
  text-align: center
}
ul.links {
  text-align: left;
  margin-top: 5rem;
  flex: 1;
}
ul.links li {
  padding: 1rem;
  border-bottom: 1px dotted #ddd;
  list-style-type: square;
  margin-left: 60px;
}
ul.links li span {
}
.detail {
  font-size: 1.4rem;
  background: #000;
  padding: 60px 10px;
  text-align: center;
  color: #fff;
}
.copyright {
  text-align: center;
  font-size: 1rem;
  background: #333;
  padding: 10px 0;
}
footer h6 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
footer address {
  font-size: 0.8rem;
  line-height: 1.5;
}
footer address a {
  color: #fff;
}
.middle {
  align-self: center;
  margin-left: 50px;
}
footer tel {
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.onSP {
  display: none;
}
.text-center {
  text-align: center;
}

.contact-btn img {
  width: 230px;
}
.contact-btn h3 {
  font-size: 2rem;
  margin: 2rem 1rem 1rem;
}
.contact-btn h4 {
  font-size: 2rem;
}

/*obout definitionList----------------*/

.definitionList {
  margin-top: 4rem;
}

.definitionList > dl:nth-child(1) > dt:nth-child(1), 
.definitionList > dl:nth-child(1) > dd:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.definitionList dl {
  display: table;
  width: 90%;
  border-spacing: 30px 0;
margin: 0 auto;
}
.definitionList dt {
  display: table-cell;
  vertical-align: middle;
  width: 200px;
  padding: 20px;
  font-size: 1.3rem;
  line-height: 1.75;
  text-align: left;
  border-bottom: 1px solid rgba(155, 155, 155, 0.5);
}
.definitionList dd {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 20px;
  font-size: 1.3rem;
  text-align: left;
  border-bottom: 1px solid rgba(155, 155, 155, 0.5);
  line-height: 1.5;
}

/*google Map----------------------*/
.maps-outer {
  position: relative;
  padding-top: 35%;
}
iframe.maps {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.maps-outer iframe {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

/*--------------------------------------------------
    forSP
--------------------------------------------------*/

@media screen and (max-width:960px){
  
body {
  font-size: 1.4rem;
  line-height: 1.5;
}
.header{
  position: fixed;
  top:0;
  left:0;
  z-index: 100;
  box-sizing: border-box;
  width: 100%;
  height: 70px;
  padding: 12px;
  border-top: 1px solid #e2dede;
  border-bottom: 1px solid #e2dede;
  background-color: #fff;
}
.header-inner{
    padding: 0;
}
.navigation {
  -webkit-display: block;
  display: block;
}
.nav-list {
  -webkit-display: block;
  display: block;
  justify-content: center;
  margin: 0 0 55px;
}
.header-nav{
  display: none;
  position: fixed;
  top:0;
  left:0;
  z-index: 50;  
  box-sizing: border-box; 
  width:100%;
  height: 120%;
  padding: 120px 0 0;
  background-color: rgba(255,255,255,0.97);
}
.siteID{
  max-width:150px;
  padding: 0;
}
.siteID span {
  display: none;
}
.normal p {
  padding: 0 15px;
  font-size: 1.4rem;
}
 
/* nav */
.btn-trigger{
  display: block;
  position: static;
  appearance:none;
  -webkit-appearance:none;
  overflow: hidden;
  position: absolute;
  top:12px;
  right:12px;
  z-index: 100;
  width: 40px;
  padding: 0;
  border:none;
  background-color: #fff;
  white-space: nowrap;    
}
use{
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  transition: 0.5s all;
}
.btn-trigger.active use:nth-of-type(1) {
  -webkit-transform: translateY(30px) rotate(-45deg);
  transform: translateY(30px) rotate(-45deg);
}

.btn-trigger.active use:nth-of-type(2) {
  opacity: 0;
}
.btn-trigger.active use:nth-of-type(3) {
  -webkit-transform: translateX(35px) translateY(-15px) rotate(45deg);
  transform: translateX(35px) translateY(-15px) rotate(45deg);
}

.header .nav-list{
  margin:0 0 55px;
}
.header .nav-list:last-of-type{
  margin:0 0 75px;
} 
.nav-item{
  margin:0 0 55px;
}
.header .nav-item>a {
  line-height: inherit;
  display: inline;
}
.nav-item>a{
  color:#626262;
  font-size:1.4rem;
  text-transform: uppercase;
}
.sns{
  font-size:3.0rem;
  color:#777;
}
  
/*
.hero .slider img {
    max-width: 100vw;
  }
*/
.hero {
  position: relative;
/*  min-height: 350px;*/
  min-height: 450px;
}
.hero .slider img {
  max-width: 1000px;
/*  min-height: 350px;*/
}
h2.toptitle {
  color: #fff;
  font-size: 3.6rem;
  letter-spacing: 0;
}
.maincopy {
  /* font-family: 'arial'; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-25%) translateX(-50%);
  text-align: center;
  width: 90%;
  padding: 20px;
}
.heroinner p.subcopy {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.3rem;
  margin: 0 auto;
}
.small {
  font-size: 1.5rem !important;
  letter-spacing: 0rem !important;
  font-weight: normal;
}
  
.slick-next, .slick-prev {
  display: none  !important;
}
.slick-next::before, .slick-prev::before {
  display: none;
}
	
figcaption.offset {
	margin: 0;
	padding: 30px 15px;
}
h2.title {
  font-size: 3.4rem;
  margin-bottom: 0.5rem;
}
.inlinelist h5 {
  position: relative;
  top: 0;
  left: 0;
  transform: inherit;
  text-align: center;
  margin-top: -6px;
  border-radius: 0;
  background: #000;
  padding-bottom: 30px;
  padding-top: 30px;
}
.detail {
  font-size: 1.2rem;
  background: #c00;
  padding: 30px;
  text-align: left;
  color: #fff;
}
.detail p {
  font-size: 1.2rem;
}
h4.subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  padding: 0 15px;
}
.inner.normal.supportlist.relative {
  padding: 30px;
}
.supportlist h3 {
  padding: 2rem;
  font-size: 1.3rem;
  text-align: left;
}
.supportlist ul li {
  padding: 2rem 1rem;
  border-top: 1px solid #333;
  font-size: 1.2rem;
  text-align: left;
}
ul.links {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}
.normal {
  padding: 40px 0;
  text-align: center;
}
img.artist {
  display: none;
}
.flexNW, .flex, .flexNWA {
  display: block;
}
.textframe {
  position: relative;
  /* max-width: 570PX; */
  left: 0;
}
.half {
  max-width: 100%;
}
ul.links li {
  padding: 1.2rem;
  border-bottom: 1px dotted #ddd;
  list-style-type: none;
  margin-left: 0px;
}
ul.links li span{
  font-size: 0.9rem;
/*  white-space: nowrap;*/
}
.spflex {
  display: flex;
}
article.col2 h3 {
  position: relative;
  top: 0;
  background: rgba(0,0,0,0.9);
  width: 100%;
  padding: 10px 0 10px;
  color: #fff;
  font-size: 1.4rem;
}
article.col2 p {
  text-align: left;
  text-align: justify;
  margin-top: 1rem;
  padding: 0.5rem;
  font-size: 1.4rem;
}
.footer {
  padding: 30px 0;
}
.footer-inner {
  display: block;
  -webkit-display: block;
  text-align: center;
}
footer h5.siteID {
  max-width: 80px;
  padding: 0;
  margin: 0 auto;
}
footer .middle {
  align-self: center;
  margin-left: 0;
}
.copyright {
  margin-top: 20px;
}
  
.heroinner {
/*  font-family: 'arial';*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
/*  width: 90%;*/
}
/*
.heroinner p.subcopy {
  display: none;
}
*/
.herounder {
  bottom: -7px;
}
.onPC {
  display: none;
}
.onSP {
  display: block;
}
/*obout definitionList----------------*/
  
.definitionList dl {
  display: table;
  width: 100%;
  border-spacing: 10px 0;
  margin: 0 auto;
}
.definitionList dt {
  display: table-cell;
  vertical-align: middle;
  width: 60px;
  padding: 0;
  font-size: 1.3rem;
  line-height: 1.75;
  text-align: left;
  border-bottom: 1px solid rgba(155, 155, 155, 0.5);
}
.definitionList dd {
  display: table-cell;
  vertical-align: middle;
  padding: 10px 0;
  font-size: 1.3rem;
  text-align: left;
  border-bottom: 1px solid rgba(155, 155, 155, 0.5);
  line-height: 1.5;
}
  
ul.polaroids a {
  padding: 5px 5px 10px;
}
ul.polaroids {
  margin-bottom: 20px;
}
.unnormal {
  padding: 15px;
}
.contact-btn img {
  width: 200px;
}
  
}

/*for tel lik------------------*/
@media (min-width: 961px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}

/*for PRINT CSS----------------*/

@media print{
img {
  opacity: 1;
}
.fadeup {
  opacity: 1;
  transform: inherit;
}
header {
  display: none !important;
}
  
}