@charset "utf-8";
*, ::before, ::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
body {
  font-size: 1.6rem;
  font-family: sans-serif;
  color: #504946;
  line-height: 1.7;
}
.bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}
.container {
  margin: 0 auto 0 0;
  max-width: 900px;
  background-color: rgba(255,255,255,0.60);
}
header {
  width: calc(100% - 900px);
  position: fixed;
  padding-top: 20px;
  right: 0px;
  background-image: url(img/nav-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: auto;
}
nav ul {
  list-style-type: none;
  display: inline-block;
  height: 100%;
  padding-top: 10px;
}
nav a {
  display: block;
  color: #504946;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: normal;
  padding: 10px 10px;
  text-decoration: none;
}
nav a:hover {
  color: #e5a323;
}
nav li:last-child {
  display: inline-block;
  background-color: #504946;
  color: #fff;
  margin-top: 30px;
  border: 2px solid #fff;
}
nav li:last-child a {
  padding: 15px;
  color: #fff;
}
nav li:last-child a:hover {
  color: #e5a323;
}
.mv{
  position: relative;
	z-index: 0;
  margin-bottom: 100px;
}
.slide {
	margin-left: -30px;
	margin-right: -30px;
}
.mv-catch{
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%)
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}
h3 {
  padding-bottom: 10px;
  margin-top: 20px;
}
h4 {
  padding: 10px 0;
  text-align: center;
}
.gotop {
  display: none;
  position: fixed;
  width: 45px;
  height: 45px;
  right: 10px;
  bottom: 10px;
  opacity: 0.8;
}
.gotop:hover {
  opacity: 1;
}
main {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}
#about_us p {
  text-align: center;
}
section {
  margin-bottom: 100px;
}
.news {
  display: block;
  align-items: center;
}
.news table {
  justify-content: center;
  display: flex;
  border-collapse: collapse;
}
.news table th {
  padding-right: 30px;
  text-align: left;
}
.inner {
  display: block;
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
}
.news dt {
  float: none;
  text-align: left;
  margin-right: 30px;
  width: 80px;
  list-style-type: disc;
  list-style-position: outside;
  font-size: 1rem;
}
.news-box {
  margin: 0 auto;
  width: 400px;
}
#news dt::before {
  content: "■";
}
.news dd {
  margin-bottom: 20px;
  border-bottom: 1px solid #2e2e2e;
}
.pw-plan {
  display: flex;
  justify-content: space-between;
}
.pw-plan figure{
	width: calc(50% - 15px);
	height: auto;
	overflow: hidden;
}
.pw-plan img{
	transition: 0.3s;
}
.pw-plan img:hover{
	transform: scale(1.1)
}
.box-ga {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.box-ga p {
  width: calc(30% - 10px);
	margin-bottom: 30px;
}
.box {
  width: 400px;
  flex-wrap: wrap;
}
.inner-2 {
  display: flex;
  gap:3%;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.inner-2:nth-child(2) {
  flex-direction: row-reverse;
}
.people {
  text-align: center;
  max-width: 240px;
  margin-bottom: 30px;
}
.people-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
/*POPUPの仕様*/
#inline-wrap1, #inline-wrap2, #inline-wrap3, #inline-wrap4, #inline-wrap5, #inline-wrap6{
    width: 80%;
    height: 80%;
    margin: 0 auto;
    padding: 50px;
    background-color: #fff;
    text-align: center;
  }
.popup-text{
  margin: 20px 0;
}

/*閉じるボタンのデザイン*/
a.close{
  width: 100px;
  padding: 10px;
  display: inline-block;
  color: #fff;
  background-color: #504946;
  text-decoration: none;
}
a.close:hover{
  color: #e5a323;
}
/*画像のhover設定*/
.popup,.view-more{
 display:block; 
 position:relative;
 text-decoration:none;
}
.popup img,.view-more img{
  display:block;
  width:100%;
}
.popup:before{
  content:"";
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  z-index:2;
  background:#000;/*好みの色に変えてください。*/
  border-radius: 50%;
  opacity:0;
  transition:0.3s;
}
.view-more:before{
  content:"";
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  z-index:2;
  background:#000;/*好みの色に変えてください。*/
  opacity:0;
  transition:0.3s;
}
.popup:after,.view-more:after{
  content:"VIEW MORE";/*好みの文章に変更してください。*/
  display:block;
  color:#fff;
  line-height:48px;
  width:180px;
  text-align:center;
  position:absolute;
  top:50%;
  left:50%;
  transform: translateY(-30%);
  margin-top:-1em;
  margin-left:-90px;
  opacity:0;
  z-index:3;
  transition:0.3s;
  font-weight:bold;
  letter-spacing:0.2em;
}
.popup:hover:before,.view-more:hover:before{
  opacity:0.5;
}
.popup:hover:after,.view-more:hover:after{
  opacity:1;
  margin-top:-0.5em;
}
.info-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.button a {
  display: block;
  color: #fff;
  padding: 5px 0;
  background-color: #504946;
  width: 140px;
  text-align: center;
  margin-right: 0px;
  margin-left: auto;
  margin-top: 30px;
  font-weight: bold;
  text-decoration: none;
}
.button a:hover {
  color: #e5a323;
}
.photographer p {
  margin-bottom: 30px;
}
.banner {
  text-align: center;
  margin-bottom: 80px;
}
footer {
  background-color: rgba(218,218,218,0.80);
  text-align: center;
  height: 300px;
}
footer p {
  padding-top: 30px;
}
footer ul{
  padding: 30px 0;
}
footer ul li{
  list-style: none;
}
footer ul a{
  text-decoration: none;
  color: #2d2d2d;
}
footer ul a:hover{
  color: #e5a323;
}

@media (min-width:1500px) {
header {
  width: calc((100% - 900px) / 2);
  }
.container {
  margin: 0 auto;
  }
}

@media (max-width:1200px) {
  header {
    width: 100%;
		max-width: 900px;
    position: fixed;
    top: 0;
		left: auto;
    right: auto;
    background-image: none;
    z-index: 1;
    padding: 5px 30px;
    margin: 0 auto;
    /*background-color: pink;*/
    min-height: 50px;
  }
	.head-top{
		display: flex;
		justify-content: space-between;
	}
  header h1 {
    width: 100px;
    height: auto;
  }
  
  header nav {
  width: 60%;
  height: 90%;
  position: fixed;
  top: 0;
  right: -120%;
  padding-top: 50px;
  box-shadow: 1px 1px 30px 20px rgba(231,218,211,0.70);
  background-color: rgba(255,255,255,0.80);
  border-bottom-left-radius: 30px;
  transition: 0.5s;
  }
  .menu-open nav{
    right: 0%;
  }
  .container {
    margin: 0 auto;
    max-width: 900px;
  }
  .nav-button {
    width: 40px;
    height: 40px;
    position: relative;
    top: 10px;
    background-color: rgba(255, 255, 255, 0.50);
    z-index: 1;
  }
  .nav-button span {
    width: 20px;
    height: 2px;
    background-color: #504946;
    position: absolute;
    left: 5px;
    transition: 0.5s;
  }
  .nav-button span:nth-child(1) {
    top: 11px;
    width: 30px;
  }
  .nav-button span:nth-child(2) {
    top: 19px;
  }
  .nav-button span:nth-child(3) {
    top: 27px;
    width: 10px;
  }
   .menu-open .nav-button span:nth-child(1) {
    top: 19px;
    width: 30px;
    transform: rotate(315deg);
  }
  .menu-open .nav-button span:nth-child(2) {
    width: 0px;
    right: 50%;
  }
  .menu-open .nav-button span:nth-child(3) {
    top: 19px;
    width: 30px;
    transform: rotate(-315deg);
  }
}
@media (max-width:900px) {
  .inner-2 {
    justify-content: center;
  }
  .info-box {
    justify-content: center;
  }
}
@media (max-width:600px) {
  html {
    font-size: calc(100vw * (10 / 640));
  }
  header nav {
  width: 80%;
  height: 70%;
  }
  .news-box {
  width: 100%;
}
	.pw-plan{
		flex-wrap: wrap;
		text-align: center;
	}
	.pw-plan figure{
    width: 100%;
  }
  .pw-plan figure:first-child {
    margin-bottom: 30px;
  }
	.box-ga p {
  width: calc(50% - 10px);
}
  .info-box iframe{
    margin-top: 20px;
  }
  footer{
    height: 200px;
  }
}
