@charset "UTF-8";
/* CSS Document */

main a{
    text-decoration: underline;
}
/*================================
 ホバーしたら薄くなる
=================================*/
.description__a, .design-image__back:hover{
    opacity: .5;
}

/*=======================
 description
=======================*/
.description {
  padding: 50px 0 0;
}
.description .h2, .design-image .h2 {
  text-align: left;
  margin: 0;
  font-weight: 300;
  color: inherit;
}
.h2-sub {
  padding: 0 0 0 5px;
  font-size: 0.75em;
}
.description__a {
  text-decoration: underline;
}
.description__table {
  margin: 40px 0 0;
  line-height: 1.5;
}
.description__table tr {
  border-bottom: 1px solid #b5b1b1;
}
.description__table th, .description__table td {
  padding: 10px 0;
  border: none;
}
.description__table th {
  width: 30%;
}
.design-image__back {
  text-align: center;
  display: block;
  margin: 40px 0;
}
/* sp */
@media only screen and (max-width: 480px) {
  .description__table th, .description__table td {
    width: 100%;
    display: block;
  }
  .description__table th {
    width: 100%;
    color: #8c8c8c;
    font-weight: 600;
  }
  .description__table td {
    padding-top: 0;
  }
}
/*=======================
 design-image
=======================*/
.design-image__pc {
  width: 80%;
}
.design-image__sp {
  width: 20%;
}
.design-image__pc, .design-image__sp {
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
}
.design-image__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 2vw;
}
/*pc*/
@media (min-width : 768px) {
  .design-image__pc {
    width: 60%;
  }
  .design-image__sp {
    width: 20%;
  }
}
/*=======================
 banner-image
=======================*/
/*pc*/
@media (min-width : 768px) {
  .banner-image__wrapper {
    display: flex;
    gap: 2vw;
  }
  .banner-image {
    width: 32%;
  }
}

/*=======================
 gallery
=======================*/
/*------------------------------------------------
 type-btn 
------------------------------------------------*/
.type-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 0 50px;
}
.type-btn li {
  background: #fff;
/*  margin: 0 10px;*/
  padding: 0 10px;
  cursor: pointer;
  border-radius: 2px;
}
.type-btn li.active {
  background: #D7C4A5;
  color: #fff;
}
@media only screen and (max-width: 400px) {
/*
  .type-btn {
    justify-content: space-between;
      
  }
*/
  .type-btn li {
    width: 48%;
    text-align: center;
    margin: 0 0 10px 0;
  }
}
/*------------------------------------------------
 grid 
------------------------------------------------*/
.grid {
  position: relative;
}
.grid .item {
  display: block;
  position: absolute;
  width: 33%;
  z-index: 1;
}
.grid .item .item-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.grid .item .item-content img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media only screen and (max-width: 768px) {
  .grid .item {
    width: 49.5%;
  }
}
/*------------------------------------------------
fancybox
------------------------------------------------*/
.fancybox-thumbs {
  background: transparent !important;
}
.fancybox-thumbs__list a:before {
  border: 6px solid #FA999B;
}
/*------------------------------------------------
WORKSのデザイン調整用
------------------------------------------------*/
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*=======================
 photographのh2_sub
=======================*/
.gallery h2{
    margin-bottom: 0;
}
.gallery__h2_sub{
  display: block;
  text-align: center;
  font-size: 10px;
  color: #8c8c8c;
  padding-bottom: clamp(10px, 5%, 20px);
}