@charset "utf-8";
/* CSS Document */
article {
  font-family: 'Noto Sans JP', sans-serif;
  color: #383e45;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.075rem;
}
article img {
  max-width: 100%;
}
.wrapper {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 15px;
}
h2.sec-title {
  font-size: 2.5rem;
  text-align: center;
  position: relative;
  padding: 1rem;
  margin-bottom: 50px;
  font-weight: 100;
}
h2.sec-title:before {
  position: absolute;
  content: '';
  background: #008080;
  bottom: 0;
  left: calc(50% - 20px);
  width: 40px;
  height: 3px;
}
h3.text {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 100;
}
h1.title {
  max-width: 960px;
  margin: 0 auto;
  height: 250px;
}
h1.title img {
  padding-block-start: 150px;
  padding-inline-start: 10px;
  display: flex;
  justify-content: space-between;
}
/*-------------------------------------------
Mainvisual
-------------------------------------------*/
#mainvisual {
  margin-bottom: 80px;
}
#mainvisual img {
  width: 100%;
  max-width: 1920px;
  height: 420px;
  object-fit: cover;
}
/*-------------------------------------------
About
-------------------------------------------*/
#about, #concept {
  margin: 0 auto;
  max-width: 640px;
  margin-block-end: 120px;
}
#about p.txt, #concept p.txt {
  text-align: justify;
  font-size: 1.65rem;
  line-height: 1.6;
  margin-block-end: 15px;
  font-feature-settings: "palt";
}
#about p.reno {
  text-align: right;
}
/*-------------------------------------------
photo
-------------------------------------------*/
section#photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1px;
  margin-block-end: 160px;
  font-size: 1.6rem;
  letter-spacing: 0.075rem;
}
section#photo div {
  width: calc(18% - 14px); /* gap padding分を引く */
  padding: 3px;
}
section#photo div .fancybox img {
  transition: .3s;
  vertical-align: bottom;
}
section#photo div .fancybox img:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  /* photo */
  section#photo {
    margin-inline-start: 1%;
    margin-inline-end: 1%;
  }
  section#photo div {
    padding: 3px 6px;
    width: 32%;
  }
  section#photo div:not(:nth-child(3n+3)) {
    margin-block-end: 1%;
  }
}
/*page
--------------------------------------------------*/
section#page {
  font-weight: bold;
  font-size: 1.75rem;
  margin-block-start: -60px;
  margin-block-end: 60px;
}
.container {
  display: flex;
  justify-content: space-between;
  margin: 15px;
  padding: 15px;
}
.container .item {
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  text-align: center;
  background-color: #3d3c3c; /*ボタン色*/
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 200;
}
.item a {
  color: #ffffff;
}
.item:hover {
  background-color: #008080; /*ボタン色*/
}