@charset 'UTF-8';
/*
VARIABLES
================================================ */ :root {
  --light-green: #d5edeb;
  --green: #63dbd0;
  --brown: #403632;
  --light-grey: #eee;
  --white: #fff;
  --Yusei-font: "Yusei Magic", serif;
}
/*
GENERAL STYLING
================================================ */
body {
  color: var(--brown);
  background: url('../images/bg-shadow.jpg') no-repeat right bottom / cover fixed;
  text-align: center;
}
/*
COMMON
================================================ */
p {
  line-height: 1.7;
}
img {
  max-width: 100%;
}
.title {
  font-family: var(--Yusei-font);
  font-size: min(5vw, 2rem);
  margin-bottom: 2rem;
  font-weight: 400;
  font-style: normal;
}
.btn {
  color: var(--white);
  background: var(--brown);
  border: 1px solid var(--brown);
  text-decoration: none;
  padding: 1rem;
  display: inline-block;
  margin: 2rem 0;
  transition: .4s;
}
.align-center {
  text-align: center;
}
.logo {
  width: 280px;
  margin-top: 10px;

}
.logo_top{
    width: 54px;
    margin-top: 5px;
    position: fixed; /* 画面上に固定する */
    top: 10px; /* 上からの位置を指定 */
    left: 10px; /* 右からの位置を指定 */
    padding: 0;
}
/*
LAYOUT
================================================ */
.wrapper {
  max-width: 38rem;
  margin: auto;
  padding: 0 1rem;
}
.wrapper_main {
  max-width: 1120px;
  margin: auto;
  padding: 0px 1.5rem;
  padding-top: 3rem;
}
/*
LOADING
================================================ */
#loading {
  background-color: var(--light-grey);
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}
#loading-screen {
  background-color: var(--light-green);
  position: fixed;
  inset: 0;
  z-index: 9998;
  translate: 0 100vh;
}
#loading p {
  font-size: 2rem;
  font-family: var(--Yusei-font);
}
/*
SLIDE MENU
================================================ */
/* ----- ↓↓ 追加 ↓↓ ----- */
/* 開閉ボタン */
.btn-menu {
  position: fixed;
  right: 1rem;
  top: 1rem;
  z-index: 4;
  padding: .5rem 1rem;
  border: 1px solid var(--brown);
  border-radius: 50%;
  height: 4rem;
  width: 4rem;
  transition: .4s;
}
.btn-menu svg {
  fill: var(--brown);
  margin-top: .25rem;
  height: 2rem;
  width: 2rem;
}
/* 閉じるボタン */
#menu-close {
  border: 1px solid var(--light-green);
}
#menu-close svg {
  fill: var(--light-green);
}
/* スライドメニューパネル */
#menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
  padding: 8rem 2rem 2rem;
  width: max(32vw, 20rem);
  height: 100vh;
  background-color: var(--brown);
  box-shadow: 0 0 2rem var(--brown);
  font-family: var(--Yusei-font);
  translate: 100vw;
}
.menu-list {
  list-style: none;
}
.menu-list li {
  margin: 1.5rem 0;
  opacity: 0;
}
.menu-list a {
  color: var(--light-green);
  text-decoration: none;
  font-size: 2rem;
}
/* ----- ↑↑ 追加 ↑↑ ----- */
/*
HERO
================================================ */
.hero {
  /*height: 50vh;*/
  position: relative;
}
.hero::after {
  content: '';
  width: 50%;
  /*height: 50vh;*/
  /*background: url('../images/bg-hero.png') no-repeat center / cover;*/
/*    background: url('../video/01.mp4');*/
  position: absolute;
  inset: 0;
}
.hero .title {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  width: 100%;
  font-size: max(6vw, 2rem);
  line-height: 1.2;
  filter: drop-shadow(1px 1px 0px #FFF);
}
/*
CONCEPT
================================================ */
.concept, .concept1 {
  margin: 3rem 0;
  background-image: linear-gradient(to right, transparent 0%, transparent 20%, var(--light-grey) 20%, var(--light-grey) 100%);
}
.concept p {
  text-align: left;
  margin-bottom: 2rem;
}

/*
GALLERY
================================================ */
.gallery {
  display: flex;
  flex-direction: column-reverse;
}
.gallery-image {
  width: min(100%, calc(38rem - 2rem));
  margin: auto;
  position: relative;
}
.gallery-image::after {
  display: block;
  content: '';
  width: calc(100% - 2rem);
  height: calc(100% - 2.5rem);
  z-index: 3;
  border: 3px solid var(--white);
  top: 1rem;
  left: 1rem;
  position: absolute;
}
.gallery-image img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.gallery-thumbnails {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 1rem 0;
}
.gallery-thumbnails img {
  aspect-ratio: 3/4;
  object-fit: cover;
  cursor: pointer;
}
/*
PLACE INFO
================================================ */
.place {
  background: url('../images/bg-place.png') no-repeat center top / cover;
  margin-top: 16rem;
  position: relative;
  height: 40rem;
}
.place-content {
  background: var(--white);
  padding: 3rem;
  position: absolute;
  top: -8rem;
  width: 90vw;
  left: 0;
  right: 0;
}
.place h3 {
  margin: 1rem 0;
  padding-top: 2rem;
  font-weight: normal;
  border-top: 1px solid var(--light-grey);
}
.info {
  width: 100%;
  max-width: 544px;
  margin: auto;
  padding: 0 1.5rem;
  border-spacing: 0;
}
.info th, .info td {
  border-bottom: 1px solid #c9c2bc;
}
.info th {
  text-align: left;
  font-weight: normal;
  padding: 1rem;
  vertical-align: bottom;
}
.info td {
  padding: 1rem 0;
}
/* main */
.grid_main {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  text-align: center
}
.item img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
}
.item p {
  font-size: 0.875rem;
}  div.exp {
    font-size: 0.875rem;

    margin: 0 auto;
    padding: 20px 1.5rem;
    text-align: justify;
  }
  .exp h2 {
    font-size: 1.2rem;
    text-align: center;
    padding: 10px 0;
  }
/* フッター */
.page-footer{
    padding-top: 3rem;
}
.copyright{
    background-color: #C3C3C3;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    color: #000000;
}
#video{
    width: 100%;
}
/* video */
/*/.sp-video {
  display: block;
}

.pc-video {
  display: none;
}*/
/*
DESKTOP SIZE
================================================ */
@media(min-width: 800px) {
  /* COMMON */
  .title {
    margin-bottom: 3rem;
  }
  .btn:hover {
    color: var(--brown);
    background: var(--light-green);
  }
  /* SLIDE MENU */
  .btn-menu:hover {
    background-color: var(--light-green);
  }
  #menu-close:hover svg {
    fill: var(--brown);
  }
  .menu-list a:hover {
    transition: .4s;
    color: var(--green);
  }

  /* CONCEPT*/
  .concept {
    display: flex;
    margin: 16rem 0;
  }
  .concept p {
    text-align-last: left;
  }
  .concept img {
    margin: -6rem 0;
    max-width: 38rem;
  }
  /* GALLERY */
  .gallery {
    flex-direction: row;
  }
  .gallery-image {
    width: 50vw;
    margin: 0;
  }
  .gallery-image img {
    height: 100vh;
  }
  .gallery-content {
    width: 30vw;
  }
  .gallery-thumbnails {
    gap: 2vw;
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-thumbnails img:hover {
    box-shadow: 0 0 1rem rgba(0, 0, 0, .4);
    transition: .4s;
  }
  /* PLACE */
  .place {
    margin-top: 20rem;
    height: 50rem;
  }
  .grid_main {
    gap: 3rem 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .item img {
    margin-bottom: 1rem;
  }
  .item p {
    font-size: 1rem;
  }
  .item-big {
    grid-column: 1/3;
    grid-row: 1/3;
  }
  .item-big img, .item-big2 img {
    height: 94.5%;
    width: 75%;
  }
  .item-big2 {
    grid-row: 3/5;
    grid-column: 2/4;
  }
  div.exp {
    font-size: 0.875rem;
    width: 800px;
    margin: 0 auto;
    padding: 20px 0px;
    text-align: justify;
  }
  .exp h2 {
    font-size: 1.2rem;
    text-align: center;
    padding: 10px 0;
  }
}