@charset "UTF-8";
/* CSS Document */
/*-------------------------------------------------
共有部分
---------------------------------------------------*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #432;
}
* {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
ul li {
  list-style: none;
}
.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
}
/*下層ページ*/
.page-title {
  text-align: center;
  margin-bottom: 50px;
}
.page-title h2 {
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Raleway", sans-serif;
  font-family: "Shadows Into Light", cursive;
  color: #432;
  margin: 10px;
  padding-bottom: 0;
}
#common-hedder {
  background-image: url("../images/news/AdobeStock_88925765.jpg");
  background-position: center center;
  background-size: cover;
  margin-bottom: 40px;
}
.map {
  width: 100% !important;
}
.map-info {
  width: 50%;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
main {
  padding-top: 0;
}
/*-------------------------------------------------
メインビジュアル
---------------------------------------------------*/
/*-------背景----*/
.big-bg {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/*#header {
  background-image: url("../images/top/AdobeStock_287888480.jpg");
  min-height: 100vh;
}*/
/*------ヘッダー部分-----*/
.logo {
  width: 300px;
  margin-top: 10px;
}
h1 a:hover {
  opacity: 0.5;
}

#header {
  position: relative;
}
/*------ここからグローバルナビ------*/
.pc-nav {
  display: flex;
  font-size: 1.25rem;
  text-transform: uppercase;
  list-style: none;
  margin-top: 15px;
}
.main-nav li {
  margin-left: 36px;
  position: relative;
}
.main-nav a {
  color: #572d15;
}
.main-nav a:hover {
  color: #01bd87;
}
.header {
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  z-index: 999;
  width: 100%;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: start;
  width: 100%;
  max-width: 1100px;

  margin: 0 auto;
}
/*アコーディオンメニュー*/
.accodion-menu {
  position: relative;
  display: block;
  cursor: pointer;
}
.sub-menu {
  position: absolute;
  top: 30px;
  left: -30px;
  display: none;
}
.sub-menu li a {
  color: #572d15;
}
.sub-menu li a:hover {
  color: #01bd87;
}
/*ここまでグローバルナビ*/

/*-------ここからヘッダーコンテンツ--------*/

.hedder-content {
  color: #fff;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*ヘッダーコンテンツ文字設定*/
.hedder-title {
  font-size: 5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Raleway", sans-serif;
  font-family: "Shadows Into Light", cursive;
  border: none;
}
.hedder-content p {
  font-size: 1.2rem;
}
.title-fix {
  z-index: 99;
  text-shadow: 1px 1px 5px #000;
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
}
/* -----スクロールアイコン--------　*/
.scrolldown2 {
  /*位置*/
  position: absolute;
  bottom: 10px;
  left: 50%;
}
/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 50px;
  background: #eee;
}
/* -----ここまでスクロールアイコン--------　*/

/*------パララックス設定-----------*/

.parallax {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 2s;
}

.bg1 {
  background-image: url("../images/top/AdobeStock_287888480.jpg");
}
.bg2 {
  background-image: url("../images/top/AdobeStock_30836038.jpg");
}
.bg3 {
  background-image: url("../images/top/AdobeStock_1417015275.jpg");
}
.bg4 {
  background-image: url("../images/top/AdobeStock_59716866.jpg");
}
.bg5 {
  background-image: url("../images/top/AdobeStock_1561460281.jpg");
}

.bg.active {
  opacity: 1;
}
#menu {
  position: relative;
}

/*-------------------------------------------------
メインコンテンツ
---------------------------------------------------*/

.content-bg {
  /*background-image: url("../images/AdobeStock_265008235.jpeg");
  background-size: cover;*/
}
.about {
  display: flex;
  justify-content: space-around;
  margin-bottom: 100px;
  align-items: center;
}
.menu-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  background-color: rgba(255, 255, 255, 0.7);
}
.about_content {
  width: 100%;
  text-align: center;
}
h2 {
  margin-bottom: 50px;
  border-bottom: 4px dotted #443322;
  display: inline-block;
}
.about_content p {
  margin-bottom: 50px;
  text-align: left;
}
.about_image {
  width: 80%;
  margin-left: 20px;
}
.cta-btn {
  text-align: center;
  padding: 25px 30px;
  background-color: #ffa650;
  width: 50%;
  margin: 0 auto;
  border-radius: 50vh;
  overflow: hidden;
  position: relative;
  transition-duration: 0.4s;
  z-index: 2;
}
.cta-btn::after {
  background: #01bd87;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.cta-btn a {
  color: #fff;
  font-size: 1.2rem;
}
.cta-btn:hover::after {
  transform: scale(1, 1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}
.image_area {
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
}
.img__video {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; の省略 */
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像のときの cover と同じノリでOK */
  object-position: center; /* 見せたい位置の調整 */
}
.kv__overlay {
  /* 読みやすさ向上の半透明レイヤー（任意） */
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.image_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center; /* 切り取り位置も指定可能 */
}
.kv__text {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
  font-weight: 700;
}

/* モーション弱め希望のユーザーには動画を止めてポスター画像を表示 */
@media (prefers-reduced-motion: reduce) {
  .kv__video {
    display: none;
  }
  .kv {
    background: url(../images/top/AdobeStock_688899225.jpeg) center/cover
      no-repeat;
  }
}
/*.text_box {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  color: #443322;
  text-align: center;
  font-size: 2em;
}*/

.content_wrapper {
  width: 100%;
  background-color: #ddd;
  padding: 100px 0;
}
.top_menu {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /*background-image: url(../images/top/AdobeStock_769303308.png);
  background-size: cover;*/
}

.top_menu p {
  font-size: 1.2rem;
}
.top-menu-content {
  position: relative;
}
.illust_1 {
  position: absolute;
  width: 15%;
  top: -50px;
  right: 0;
}
.illust_2 {
  position: absolute;
  width: 15%;
  top: -50px;
  left: 10%;
}
.illust_3 {
  position: absolute;
  width: 30%;
  bottom: -100px;
  left: 5%;
}
.illust_4 {
  position: absolute;
  width: 20%;
  bottom: -100px;
  right: 5%;
}
.menu-go {
  display: flex;
  justify-content: center;
}
.image_area .menu-content aside {
  margin-top: 80px;
}
.menu-img {
  width: 60%;
}
.menu-btn {
  padding: 20px 50px;
  background-color: #01bd87;
  margin: 20px;
  border-radius: 10px;
}
.menu-btn:hover {
  background-color: #ffa650;
}
.menu-btn a {
  color: #fff;
}
.menu-title {
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Raleway", sans-serif;
  font-family: "Shadows Into Light", cursive;
  text-align: center;
  width: 100%;
  margin-top: 50px;
}
.top-menu-content {
  width: 100%;
  text-align: center;
}
#address-map {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.access-content {
  width: 50%;
  padding: 50px;
  text-align: center;
}
.access-btn {
  margin-top: 50px;
  width: 60%;
}
.menu-cat-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  background-color: #01bd87;
  color: #fff;
}
.menu-cat {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}
.menu-cat table {
  border-collapse: collapse;
  margin-bottom: 50px;
}
.menu-cat table td {
  border-bottom: 2px solid #ddd;
  padding: 10px;
  white-space: nowrap;
}
.menu-cat table th {
  color: #01bd87;
}
.menu-cat table tr td:nth-child(1) {
  padding-right: 20%;
}
.material-icons {
  color: #432;
}
.table-cap {
  margin-bottom: 10px;
  border-bottom: 1px dashed #01bd87;
}
table tr th {
  text-align: left;
  padding: 20px;
}
/*サイドバー*/
.map {
  position: relative;
  width: 50%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
  margin-top: 10px;
}

/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-------------------------------------------------
トップに戻るボタン
---------------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 40px;
  right: 20px;
  font-size: 1rem;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: rgb(255 166 80);
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  width: 60px;
  height: 60px;
  text-align: center;
  display: block;
  border-radius: 50px;
  opacity: 0.9;
  transition: all 0.3s ease;
  line-height: 20px;
}
#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}
/*-------------------------------------------------
フッター
---------------------------------------------------*/
footer {
  background: #432;
  text-align: center;
  padding: 26px 0;
}
footer p {
  color: #fff;
  font-size: 0.875rem;
}

/*-------------------------------------------------
Newsページ
---------------------------------------------------*/

/*記事部分*/
article {
  width: 74%;
}
.news-content section {
  border-bottom: 1px solid #01bd87;
  padding-bottom: 20px;
}
.news-content section:last-child {
  border: none;
}
aside {
  width: 22%;
}
.news-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.news-subtitle {
  font-size: 1.2em;
  color: #ffa650;
}
.post-info {
  position: relative;
  padding-top: 4px;
  margin-bottom: 40px;
}
.post-date {
  background: #01bd87;
  border-radius: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  font-size: 1.625rem;
  text-align: center;
  position: absolute;
  top: 0;
  padding-top: 10px;
}
.post-date span {
  font-size: 1rem;
  border-top: 1px rgba(255, 255, 255, 0.5) solid;
  padding-top: 6px;
  display: block;
  width: 60%;
  margin: 0 auto;
}
.post-title {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-size: 2rem;
  font-weight: normal;
}
.post-title,
.post-cat {
  margin-left: 120px;
}
.news-content P {
  margin-bottom: 10px;
}
.news-content section {
  margin-top: 3%;
}
.news-content section a {
  color: #e0803a;
}
.news-content section a:hover {
  text-decoration: underline;
}
.attend {
  border: 3px solid #01bd87;
  padding: 10px;
  width: 50%;
  margin: 20px auto;
}
.attend h4 {
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #01bd87;
}
/*サイドバー*/
.sub-title {
  font-size: 1.375rem;
  padding: 0 8px 8px;
  border-bottom: 2px solid #01bd87;
  font-weight: normal;
}
aside p {
  padding: 12px 10px;
}
.side-menu {
  margin-bottom: 60px;
  list-style: none;
}
.side-menu li {
  border-bottom: 1px #ddd solid;
}
.side-menu a {
  color: #432;
  padding: 10px;
  display: block;
}
.side-menu a:hover {
  color: #01bd87;
}
/*-------------------------------------------------
Galleryページ
---------------------------------------------------*/
.grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-top: 3%;
  margin-bottom: 50px;
}
.grid {
  width: 74%;
}
aside {
  width: 22%;
}
.gallery-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.grid-item {
  transition: 0.3s;
}
.grid-item:hover {
  transform: scale(1.2);
  position: relative;
}

/*-------------------------------------------------
Contactページ
---------------------------------------------------*/
#contact {
  background-image: url("../images/AdobeStock_170018701.jpg");
  min-height: 100vh;
}
.contact-page {
  text-align: center;
  padding-bottom: 100px;
  padding-top: 20vh;
}
#contact h2 {
  margin-top: 0;
  color: #fff;
}
/*フォーム*/
form {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  padding: 50px;
}
form div {
  margin-bottom: 14px;
  text-align: left;
  margin-left: 50px;
}
label {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
  font-weight: 700;
}
input[type="text"],
input[type="email"],
textarea {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
}
input[type="text"],
input[type="email"] {
  width: 100%;
  max-width: 240px;
}
input:focus,
textarea:focus {
  outline: 2px solid #ffa650; /* 好みの色 */
}

textarea {
  width: 100%;
  max-width: 480px;
  height: 6rem;
}
input[type="submit"] {
  border: none;
  cursor: pointer;
  line-height: 1;
}
.button {
  font-size: 1.4rem;
  background: rgb(255 166 80);
  color: #fff;
  border-radius: 5px;
  padding: 18px 32px;
  margin-top: 30px;
}
.button:hover {
  background: #01bd87;
}
/*お店の情報*/
#location {
  padding: 4% 0;
}
#location .wrapper {
  display: flex;
  justify-content: space-between;
}
.location-info {
  width: 22%;
}
.location-info h3 {
  border-bottom: 3px solid #01bd87;
}
.location-info p {
  padding: 12px 10px;
}
.location-map {
  width: 74%;
}
iframe {
  width: 100%;
}

/*-------------------------------------------------
SPサイト
---------------------------------------------------*/
@media (max-width: 767px) {
  .hedder-title {
    font-size: 2.5rem;
  }

  /*header

  .main-nav {
    font-size: 1rem;
    position: absolute;
    top: 60%;
  }
  .main-nav li {
    margin: 0 20px;
  }
  .page-header {
    flex-direction: column;
    align-items: center;
  }

  .hedder-title {
    line-height: 3rem;
    margin-bottom: 20px;
    margin-top: 20%;
  }
  .title-fix {
    left: 0;
    padding: 15px;
  }

  .big-bg {
    background-size: cover;
    background-position: center center;
  }
  /*アコーディオンメニュー
  .sub-menu li {
    left: 25%;
  }*/

  /*Menu*/
  .menu-content {
    flex-direction: column;
  }
  .menu-cat {
    flex-direction: column;
  }
  /*メニュー背景*/
  .content-bg {
    background-color: #fff;
  }

  /*NEWS*/
  .news-content {
    flex-direction: column;
  }
  article,
  aside {
    width: 100%;
  }

  /*Gallery*/
  .gallery-content {
    flex-direction: column;
  }
  .grid {
    width: 100%;
  }

  /*下層ページ共通部分*/
  .page-title {
    position: absolute;
    top: 70%;
    left: 40%;
    font-size: 2.2rem;
  }
  #common-hedder header .logo {
    margin-top: -30px;
    padding-top: 0;
  }
  #common-hedder header .main-nav {
    margin-top: 70px;
    padding-top: 0;
  }
  /*.sub-menu a{
		background-color: rgba(255,255,255,.5);
	}*/
  aside {
    margin-top: 60px;
  }
  .post-date {
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }
  .post-date span {
    font-size: 0.875rem;
    padding-top: 2px;
  }
  .post-title {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  .post-cat {
    font-size: 0.8rem;
  }
  .post-title,
  .post-cat {
    margin-left: 80px;
  }
  /*contact*/
  #location .wrapper {
    flex-direction: column;
  }
  .location-info,
  .location-map {
    width: 100%;
  }
}
/*@media only screen and (-webkit-min-device-pixel-ratio: 3) {

  .main-nav {
    font-size: 1rem;
    position: absolute;
    top: 60%;
  }
  .main-nav li {
    margin: 0 20px;
  }
  .page-header {
    flex-direction: column;
    align-items: center;
  }
  .hedder-content {
    margin-top: 10px;
  }
  .hedder-title {
    line-height: 3rem;
    margin-bottom: 20px;
    margin-top: 20%;
  }
  .title-fix {
    left: 0;
    padding: 15px;
  }
  .big-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  #header {
    background-image: url("../images/top/AdobeStock_287888480.jpg");
    min-height: 100vh;
  }*/
/*アコーディオンメニュー
  .sub-menu li {
    left: 25%;
  }
}*/

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /*=============
ハンバーガーメニュー
==============*/
  /*============
nav
=============*/
  .sp_nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 0.5s;
    z-index: 3;
    opacity: 0;
  }
  .open nav {
    left: 0;
    opacity: 1;
  }
  nav .inner {
    padding: 25px;
  }
  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #333;
  }
  nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  nav .inner ul li a:hover {
    background: #e4e4e4;
  }
  .sub-menu {
    display: block;
    position: static;
  }
  .sub-menu li {
    border-bottom: none !important;
    text-indent: 1em;
  }

  /*============
.toggle_btn
=============*/
  .toggle_btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    transition: all 0.5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background-color: #fff;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }
  /*============
#mask
=============*/
  #mask {
    display: none;
    transition: all 0.5s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
  }
  /*ここまでハンバーガーメニュー*/

  .logo {
    width: 300px;
    /* margin-top: 10px; */
    padding-top: 10px;
    margin-left: 10px;
  }
  .page-header {
    padding-top: 50px;
    margin-bottom: 15vh;
    position: relative;
  }
  .page-title {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  #menu {
    padding-top: 0;
  }
  .news-subtitle {
    font-size: 0.5em;
  }
  .about {
    display: block;
  }
  #about {
    padding-top: 50px;
  }
  .cta-btn {
    width: 100%;
    margin-bottom: 50px;
  }
  .about_image {
    width: 100%;
    margin-left: 0px;
  }
  .kv__text {
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    width: 100%;
  }
  .top_menu {
    display: block;
  }
  .menu-go {
    display: block;
  }
  #address-map {
    display: block;
  }
  .access-content {
    width: 100%;
  }
  .map-info {
    width: 100%;
  }
}
