@charset "utf-8";

/*--------------------------------------------------------------------------
□TOPページ home
---------------------------------------------------------------------------*/
/*Main
---------------------------------------------------------------------------*/
.homeGalleryWrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
}
.homeGallery {
  overflow:hidden;
  position:relative;
  user-select: none;
}
.homeGallery a{
  display: block;
}
.homeGallery a:hover{
  opacity: 1;
}
.homeGallery img{
  width: 100%;
}
.hg_caption {
  width:100%;
  height:100%;
  visibility:hidden;
  color:#fff;
  top:0;
  left:0;
  position:absolute;
  text-align:center;
  -webkit-transition: all 0.3s step-end;
  transition:   all 0.3s step-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.homeGallery:hover .hg_caption {
  visibility:visible;
}
.hg_caption p {
  opacity:0;
  font-size: clamp(1.6rem,2.08vw,2rem);
}
.homeGallery:hover .hg_caption p {
  opacity:1;
}
.hg_mask1,
.hg_mask2 {
  width:100%;
  height:50%;
  position:absolute;
  left:0;
  background-color: rgba(0,0,0,0.4);
  -webkit-transition: all 0.3s ease;
  transition:all 0.3s ease;
}
.hg_mask1 {
  top:-50%;
}
.homeGallery:hover .hg_mask1 {
  top:0;
}
.hg_mask2 {
  bottom:-50%;
}
.homeGallery:hover .hg_mask2 {
  bottom:0;
}
/*--------------------------------------------------------------------------
□下層ページ
---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
■Gallery
---------------------------------------------------------------------------*/
/*Main
---------------------------------------------------------------------------*/
.portGalleryWrap{
  background-color: #1A1A1A;
}
.portGallSlider{
  width: 100%;
  height: calc(100vh - 11.458333vw);
}
.portGallThumb{
  width: 100%;
  height: 11.458333vw;
  padding: 30px 0;
}
/*Slide
--------------------------------------*/
.portGallSlider .slick-list{
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0 0;
  height: 100%;
}
.portGallSlider .slick-track{
  height: 100%;
}
.portGall_img{
  display: flex;
  justify-content:center;
  align-items: center;
  height: 100%;
}
.portGall_img img{
  width: auto;
  max-height: 100%;
}
.portGallThumb .slick-current {
  opacity: 1;
  cursor: auto;
}
.pgThumb_img {
  opacity: .5;
  transition: opacity .3s linear;
  cursor: pointer;
  margin: 0 .5rem;
  position: relative;
}
.pgThumb_img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.pgThumb_img:hover{
  opacity: 1;
}
.pgThumb_img img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
/*button
----------------------*/
.slick-prev {
  height: 100%;
  width: 50%;
  left: 0;
}
.slick-prev:before {
  position: absolute;
  left: 2rem;
  content: '◀︎';
}
.slick-next {
  height: 100%;
  width: 50%;
  right: 0;
}
.slick-next:before {
  position: absolute;
  right: 2rem;
  content: '▶︎';
}
/*--------------------------------------------------------------------------
■About
---------------------------------------------------------------------------*/
/*Main
---------------------------------------------------------------------------*/
.about_content-en{
  margin-top: 10rem;
}
.about_name{
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
.about_desc1{
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.about_table{
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.about_table th{
  font-weight: 400;
  text-align: left;
  vertical-align: top;
  padding: .3rem 0;
}
.about_content-ja th{
  width: 9.4rem;
}
.about_content-en th{
  width: 9rem;
}
.about_table td{
  vertical-align: top;
  padding: .3rem 0;
}