/* CSS Document */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  line-height: 1.8em;
  font-family: 'Noto Sans JP', sans-serif;
  color: #595656;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: 1000px;
  padding: 100px 0;
  margin: 0 auto;
}

.telnum:hover {
  opacity: .7;
  transition: .3s ease;
}


/* メインビジュアル --------------------------------------------------- */
#mainVisual {
  width: 100%;
  height: 600px;
  background-image: url(../img/main_visual_2.webp);
  background-position: top right;
  background-size:cover;
  background-repeat: no-repeat;
}
/* メインビジュアル ---------------------------------------------------- */

/* スライドショー ------------------------------------------------------------------- */
#shop p {
  margin-bottom: 50px;
  font-family: 'KosugiMaru', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
#shop .slider .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 次へ＆戻るの矢印 */
#shop .slider .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #00643D;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
#shop .slider .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}
#shop .slider .slick-next {
  right: 0;
}
#shop .slider .slick-prev {
  left: 0;
}
#shop .slider .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}
#shop .slider .slick-next::before {
  left: 20px;
}
#shop .slick-initialized .slick-slide{
  display: block;
}
#shop .slider .slick-slide {
  width: 600px;
  height: 500px;
  margin: 0 40px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
#shop .slider .slick-arrow {
  top: 180px;
}
/* スライドショー ------------------------------------------------------------------- */


/* 店舗情報 ------------------------------------------------------------------- */
#detail h1 {
  font-family: 'KosugiMaru', sans-serif;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
#detail h1::after {
  content: " ";
  margin-left: 20px;
  flex-grow: 1;
  height: 1px;
  background-color: #595656;
}
#detail .container {
  font-family: 'KosugiMaru', sans-serif;
}
#detail .detail-content {
  display: flex;
  justify-content: space-between;
}
#detail .info,
#detail .access {
  width: 45%;
}
#detail .info h2 {
  border-top: 1px solid #595656;
  border-bottom: 1px solid #595656;
  padding: 3px 10px;
  margin-bottom: 10px;
  font-weight: normal;
  font-size: 1.6rem;
}
#detail .info h2 span {
  font-size: 2.5rem;
}
#detail .info h2 {
  margin-bottom: 10px;
}
#detail .info dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#detail .info dt {
  width: 30%;
  font-weight: normal;
  margin-bottom: 5px;
}
#detail .info dt span {
  border: 1px solid #595656;
  border-radius: 6px;
  padding: 2px 10px;
}
#detail .info dd {
  width: 70%;
}
#detail .access h2 {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: normal;
  border: 1px solid #595656;
  border-radius: 6px;
  padding: 0 10px;
}
#detail .access ul:nth-of-type(1) {
  margin: 10px 0 20px;
}
#detail .access a {
  text-decoration: underline;
}
#detail .access .telnum {
  color: #00643D;
  font-size: 1.8rem;
  text-decoration: underline;
}
/* 店舗情報 ------------------------------------------------------------------- */


/* メニュー ------------------------------------------------------------------- */
#menu h1 {
  font-family: 'KosugiMaru', sans-serif;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
#menu h1::after {
  content: " ";
  margin-left: 20px;
  flex-grow: 1;
  height: 1px;
  background-color: #595656;
}
#menu .tabList{
  display: flex;
  margin-bottom: 30px;
  border-left: 1px solid #00643D;
}
/* tabItem */
#menu .tabItem {
  border-top: 1px solid #00643D;
  border-bottom: 1px solid #00643D;
  border-right: 1px solid #00643D;
  cursor: pointer;
  padding: 5px 35px;
}
#menu .panelItem {
  display: none;
  position: relative;
}
#menu .prevPage {
  display: block;
}
#menu .nextPage {
  display: none;
}
#menu .slide-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #00643D;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 500px;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  cursor: pointer;
}
#menu .slide-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}
#menu .prev {
  left: 0;
  display: none;
}
#menu .next {
  right: 0;
}
#menu .prev::before {
  transform: rotate(-135deg);
  right: 22px;
}
#menu .next::before {
  left: 20px;
}
/* 選択されたtabItemにつくクラス */
.active {
  background: #00643D;
  color: white;
  transition: all .5s ease;
}
/* 選択されたpanelItemにつくクラス */
#menu .show {
  display: block;
}
/* メニュー ------------------------------------------------------------------- */


/* レンタルギャラリー ----------------------------------------------------------- */
#about {
  text-align: center;
  position: relative;
  font-family: 'KosugiMaru', sans-serif;
}
#about .logo {
  width: 200px;
}
#about h1 {
  font-size: 10rem;
  font-family: 'Notera', sans-serif;
  font-weight: normal;
  color: #c7dcd1;
  position: absolute;
  top: 35%;
  left: 43%;
  transform: rotate(-15deg) translate(-35%, -43%);
  z-index: -1;
}
#about .textBox {
  width: 450px;
  margin: 30px auto 50px;
  font-size: 1.8rem;
  line-height: 2;
  text-align: left;
}
#about .textBox span {
  color: #ea5404;
}
#about .write {
  font-family: 'Asobi', sans-serif;
  font-size: 2rem;
  font-weight: bold;
}
#about ul {
  margin: 30px 0 50px;
  display: flex;
  justify-content: space-between;
}
#about li {
  width: 16%;
}
#about li span {
  display: inline-block;
  font-family: 'Notera', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #ea5404;
  transform: rotate(-5deg);
}
#about .pics {
  width: 142px;
  height: 142px;
  margin: 0 auto;
}
#about .pics img {
  width: 100%;
  height: 100%;
}
#about h2 {
  padding-left: 15px;
  font-size: 1.6rem;
  font-weight: normal;
  text-align: left;
}
#about .telnum {
  color: #00643D;
  font-family: 'IowanOldStyle', sans-serif;
  font-size: 2.5rem;
}
#about .telnum span {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 4px;
}

/*読み込み時に順番にふわっと現れるアニメーション*/
.delay {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1.0s;
}
.fadeUp {
  opacity: 1;
  transform: translateY(0);
}

.fadeUp .delay:nth-of-type(1) {
  transition-delay: 0s;
}
.fadeUp .delay:nth-of-type(2) {
  transition-delay: 1s;
}
.fadeUp .delay:nth-of-type(3) {
  transition-delay: 2s;
}
/* レンタルギャラリー ----------------------------------------------------------- */



/* 店内レイアウト・レンタルギャラリー使用規定 --------------------------------------- */
#layout img {
  margin-bottom: 80px;
}
#layout h1 {
  font-family: 'KosugiMaru', sans-serif;
  display: flex;
  align-items: center;
}
#layout h1::after {
  content: " ";
  margin-left: 20px;
  flex-grow: 1;
  height: 1px;
  background-color: #595656;
}
#layout dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
#layout dt, #layout dd {
  border-bottom: 2px dotted #c7dcd1;
  padding: 10px;
}
#layout dt:last-of-type, 
#layout dd:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
#layout dt {
  width: 20%;
  font-weight: normal;
}
#layout dd {
  width: 80%;
}
/* 店内レイアウト・レンタルギャラリー使用規定 --------------------------------------- */


/* フッター コピーライトだけ --------------------------------------- */
footer .copyright {
  padding: 20px 0 50px;
  text-align: center;
  font-size: 1.2rem;
}
/* フッター コピーライトだけ --------------------------------------- */




@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 90%;
  }
  /* メインビジュアル ---------------------------------- */
  #mainVisual {
    height: 500px;
  }
  /* メインビジュアル -----------------------------------*/
  /* スライドショー ----------------------------------- */
  #shop .slider .slick-arrow {
    width: 40px;
    height: 40px;
    top: 120px;
  }
  #shop .slider .slick-arrow::before {
    top: 12px;
  }
  #shop .slider .slick-next::before {
    left: 12px;
  }
  #shop .slider .slick-prev::before {
    right: 12px;
  }
  #shop .slider .slick-slide {
    width: 400px;
    height: 266px;
    margin: 0 20px;
  }
  /* スライドショー ----------------------------------- */

  /* 店舗情報 ---------------------------------------- */
  #detail .info,
  #detail .access {
    width: 47%;
  }
  /* 店舗情報 ---------------------------------------- */

  /* メニュー ---------------------------------------- */
  #menu .slide-arrow {
    width: 40px;
    height: 40px;
  }
  #menu .slide-arrow::before {
    top: 12px;
  }
  #menu .prev::before {
    right: 12px;
  }
  #menu .next::before {
    left: 12px;
  }
  /* メニュー ---------------------------------------- */

  /* レンタルギャラリー ------------------------------- */
  #about h1 {
    font-size: 15rem;
    line-height: 1;
  }
  #about .logo {
    width: 150px;
  }
  #about ul {
    width: 90%;
    margin: 30px auto 50px;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  #about li {
    width: 200px;
  }
  #about li h2 {
    padding-left: 40px;
  }
  /* レンタルギャラリー ------------------------------- */
  
  /* 店内レイアウト・使用規定 ------------------------------- */
  #layout dt {
    width: 30%;
  }
  #layout dd {
    width: 70%;
  }
  /* 店内レイアウト・使用規定 ------------------------------- */
}


@media screen and (max-width: 767px) {
  .container {
    width: 90%;
    padding: 50px 0;
  }
  /* メインビジュアル ---------------------------------- */
  #mainVisual {
    height: 300px;
  }
  /* メインビジュアル -----------------------------------*/
  /* スライドショー ------------------------------------ */
  #shop .slider .slick-arrow {
    width: 40px;
    height: 40px;
    top: 80px;
  }
  #shop .slider .slick-arrow::before {
    top: 14px;
  }
  #shop .slider .slick-next::before {
    left: 12px;
  }
  #shop .slider .slick-prev::before {
    right: 12px;
  }
  #shop .slider .slick-slide {
    width: 350px;
    height: 200px;
    margin: 0 20px;
  }
  #shop .slider .slick-arrow {
    top: 80px;
  }
  /* スライドショー ------------------------------------ */

  /* 店舗情報 ----------------------------------------- */
  #detail .detail-content {
    flex-direction: column;
    gap: 40px;
  }
  #detail .info, 
  #detail .access {
    width: 100%;
  }
  /* 店舗情報 ----------------------------------------- */

  /* メニュー一覧 ----------------------------------------- */
  #menu .tabList{
    display: flex;
    margin-bottom: 30px;
  }
  /* tabItem */
  #menu .tabItem {
    padding: 2px 15px
  }
  #menu .slide-arrow {
    width: 30px;
    height: 30px;
    top: 200px;
  }
  #menu .slide-arrow::before {
    width: 8px;
    height: 8px;
    top: 10px;
  }
  #menu .prev::before {
    right: 10px;
  }
  #menu .next::before {
    left: 10px;
  }
  /* メニュー一覧 ----------------------------------------- */
  
  /* レンタルギャラリー ------------------------------------- */
  #about .logo {
    width: 100px;
  }
  #about h1 {
    top: 20%;
    left: 28%;
    transform: rotate(-15deg) translate(-20%, -28%);
    line-height: 1;
  }
  #about .textBox {
    width: 80%;
    font-size: 1.4rem;
    line-height: 1.8em;
  }
  #about .write {
    text-align: left;
  }
  #about ul {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  #about li {
    width: 50%;
  }
  #about h2 {
    padding-left: 0;
    text-align: center;
  }
  #about .telnum {
    font-size: 2rem;
  }
  #about .telnum span {
    font-size: 3rem;
    letter-spacing: 1.5;
  }
  /* レンタルギャラリー ------------------------------------- */

  /* 店内レイアウト・使用規定 ------------------------------------- */
  #layout img {
    margin-bottom: 40px;
  }
  #layout h1 {
    border-bottom: 1px solid #595656;
    padding-bottom: 5px;
  }
  #layout h1::after {
    display: none;
  }
  #layout dl {
    flex-direction: column;
  }
  #layout dt, #layout dd {
    width: 100%;
  }
  #layout dt {
    border-bottom: none;
    padding-bottom: 0;
  }
  #layout dd {
    border-top: none;
  }
  #layout dd:last-of-type {
    margin-bottom: 0;
  }
  /* 店内レイアウト・使用規定 ------------------------------------- */
}

@media screen and (min-width: 1025px) {
  .onlyPC {
    display: none;
  }
} 


@media screen and (min-width: 768px) {
  .telnum {
    pointer-events: none;
  }
  .onlySP {
    display: none;
  }
}