@charset "UTF-8";

/*共通*/
html {
  font-size: 100%;
}

body {
  font-family: "Hina-Mincho" "Hiragino Kaku Gothic Pron", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  line-height: 1.7;
  color: rgb(54, 54, 54);
}

.wrapper {
  max-width: 768px;
}

.title-box {
  text-align: center;
  margin: 40px 0 80px;
  background-color: #CBBAA4;
  padding: 20px 0;
  width: 100%;
}

.text-large {
  font-size: 4rem;
  padding: 15px 0;
  color: #fff;
}

/* 見出し本体はインラインブロック＋相対位置に */
.title-box .text-large{
 position: relative;
 display: block;  /* ← inline-block から block に変更！ */
 width: 100%;   /* ← 親（.title-box）の幅いっぱいにする */
 padding: 15px 0;
 color: #fff;
 font-size: 4rem;
}

.title-box .text-large::before,
.title-box .text-large::after {
 content: "";
 display: block;
 width: 100%;
 height: var(--dash-line-height, 3px); /* 線の太さ */
 margin: 12px auto;          /* 見出しの中央に配置 */
 background-image: repeating-linear-gradient(90deg,
  var(--dash-color, #fff) 0 var(--dash-length, 20px),  /* 破線の長さ */
  transparent var(--dash-length, 20px) calc(var(--dash-length, 20px) + var(--dash-gap, 12px)) /* 隙間 */);
}

h2 {
  font-size: 1.7rem;
  font-family: Hina Mincho, sans-serif;
  text-align: center;
  letter-spacing: 1.5px;
  font-weight: normal;
}

p {
  font-family: Hina Mincho, sans-serif;
  width: 90%;
  display: block;
  margin: 0 auto;
  padding: 0 0 20px;
}

.btn {
  display: block;
  padding: 10px 0;
  background-color: #EBE3D9;
  color: #333;
  text-decoration: none;
  text-align: center;
  width: 80%;
  margin: 30px auto 150px;
  border-radius: 5px;
}

.btn:hover {
  background-color: #b3a08b;
  transition: 0.35s ease-in-out;
  scale: 0.95;
  color: #fff;
}

/*字体*/
.font-english {
    font-family: Kaisei Decol, "sans-serif";
}

.font-english > li {
  position: relative;
}

.font-english > li > a {
  display: block;
  text-decoration: none;
  color: #333;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 160px;
  border: 1px solid #ddd;
  display: none; /* ← 初期は非表示 */
  z-index: 20;
}

/* ドロップダウン項目 */
.dropdown-menu li a {
  display: block;
  padding: 0.8em 0;
  text-decoration: none;
  color: #333;
  font-size: .9em;
  margin: 0;
}

.dropdown-menu li a:hover {
  color: #E8D1B4;
}

/* hoverで表示 */
.dropdown:hover .dropdown-menu {
  display: block;
}

/*header*/
header {
    width: 100%;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 30px;
}

.logo img {
    width: 220px;
}

/* 全体のラッパー */
.menu-wrapper {
    position: relative;
}

/* ハンバーガーアイコン */
.menu-icon {
   width: 40px;
   height: 30px;
   position: fixed;
   top: 35px;
   right: 30px;
   cursor: pointer;
   z-index: 20;
}

.menu-icon span {
   display: block;
   height: 4px;
   margin: 6px 0;
   background: #333;
   border-radius: 2px;
   transition: transform 0.5s, opacity 0.4s;
}

/* アイコンが「×」に変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
   transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
   opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
   transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

#menu-toggle:checked ~ .overlay {
   opacity: 1;
   pointer-events: auto;
}

/* メニュー本体 */
.menu {
   position: fixed;
   top: 0;
   right: -250px; /* 初期位置 */
   width: 250px;
   height: 100%;
   background: #fff;
   box-shadow: rgba(0,0,0,0.2) 2px 0px 8px;
   transition: right .4s ease-in-out;
   z-index: 11;
}

#menu-toggle:checked ~ .menu {
   right: 0; /* メニュー表示 */
}

.menu ul {
   list-style-type: none;
   padding: 20px;
}

.menu li {
    margin: 25px 0; 
}

.menu li a {
   text-decoration: none;
   color: #333;
   padding-bottom: 6px;
}

.menu li a:hover {
    color: #E8D1B4;
    transition: 0.5s;
    border-bottom: #E8D1B4 1px solid;
}

.dropdown-menu.dropdown-items {
  flex-direction: column;
}



/* スライドショーのコンテナ */
.slideshow-container {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* スライドのラッパー */
.slides-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  animation: slideshow 51s infinite; /* 17枚 × 3秒 = 51秒 */
}

/* wrapperクラスの幅制限を解除 */
.slideshow-container.wrapper {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* 各スライド */
.slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 横スライドアニメーション */
@keyframes slideshow {
  0% { transform: translateX(0); }
  5.88% { transform: translateX(-100%); }
  11.76% { transform: translateX(-200%); }
  17.65% { transform: translateX(-300%); }
  23.53% { transform: translateX(-400%); }
  29.41% { transform: translateX(-500%); }
  35.29% { transform: translateX(-600%); }
  41.18% { transform: translateX(-700%); }
  47.06% { transform: translateX(-800%); }
  52.94% { transform: translateX(-900%); }
  58.82% { transform: translateX(-1000%); }
  64.71% { transform: translateX(-1100%); }
  70.59% { transform: translateX(-1200%); }
  76.47% { transform: translateX(-1300%); }
  82.35% { transform: translateX(-1400%); }
  88.24% { transform: translateX(-1500%); }
  94.44% { transform: translateX(-1600%); } 
  100%   { transform: translateX(-1700%); }
}

/*セクション別大画像*/
.concept-img {
  width: 90%;
  display: flex;
  margin: 20px auto;
}

/*表*/
.normal-plan {
  width: 90%;
  margin: 0 auto;
  border-collapse: collapse;
  border: #b3a08b 1px solid;
}

.first,
.second,
.third {
  border-left: #C1B5A8 1px solid;
}

.first {
  width: 40%;
}

.second {
  width: 30%;
}

.third {
  width: 30%;
}

.normal-plan th, 
.normal-plan td {
  border-top: #CBBAA4 1px dashed;
  font-family: Hina Mincho, sans-serif;
  text-align: center;
  height: 70px;
  font-size: 1rem;
}

.normal-plan th {
  background-color: #EBE3D9;
  border-bottom: #C1B5A8 1px solid;
}

.plan-notice {
  font-size: .9rem;
}

.location {
  width: 90%;
  margin: 0 auto 150px;
}

.location-map {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* アスペクト比16:9 → (9 ÷ 16) × 100 = 56.25% */
  height: 0;
  overflow: hidden;
}

.location-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-info tr {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.location-info th,
.location-info td {
  font-family: Hina Mincho, sans-serif;
  font-size: 1.2rem;
}

.location-info th {
  text-align: left;
  padding-left: 2%;
  letter-spacing: 0.3rem;
}

.location-info td {
  padding-left: 40px;
  border-bottom: #EBE3D9 1px solid;
}

.news-list {
  width: 90%;
  margin: 0 auto 50px;
  list-style: none;
  font-family: Hina Mincho, sans-serif;
}

.news-list li {
  border-bottom: #EBE3D9 1px solid;
  padding-top: 20px;
}

.news-item {
  font-size: 1.2rem;
}

.news-item .news-date {
  margin-right: 100%;
  font-size: 0.85rem;
  color: #626262;
}

footer {
  width: 100%;
  height: 100px;
  border-top: #b3a08b 1px solid;
}

.footer-menu {
  border-bottom: #EBE3D9 1px solid;
  height: 50px;
  text-align: center;
  align-items: center;
}

.footer-menu ul {
  border-collapse: collapse;
  display: flex;
  justify-content: center;
  list-style: none;
}

.footer-menu li {
  padding: 10px 0;

}

.footer-menu li a {
  text-decoration: none;
  color: #333;
  padding: 0 15px;
  border-left: #EBE3D9 1px solid;
  border-right: #EBE3D9 1px solid;
}

.footer-menu li a:hover {
  color: #E8D1B4;
  transition: 0.5s;
}

.copyright {
  margin-top: 10%;
  text-align: center;
  font-size: small;
}

/*about-section*/
.main-title {
  text-align: center;
  line-height: 2rem;
}

.about-title {
  font-weight: 600;
  font-size: 2.5rem;
}

.sub-title {
  font-size: 2.5rem;
}

.main-about .text {
  width: 90%;
  margin: 30px auto 100px;
  font-size: 1rem;
}

.service-one,
.service-two {
  width: 90%;
  margin: 0 auto;
}

.service-name {
  display: flex;
}

.number,
.name {
  font-weight: 600;
}

.number {
  margin-right: 5%;
}

.service-info .text {
  width: 90%;
  margin: 20px auto;
}

.service-img-one,
.service-img-two {
  width: 90%;
}

.sub-text {
  font-size: .85rem;
  margin: 100px auto 0;
  text-align: left;
}

.about-grid {
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 auto 50px;
}

.about-grid img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.about-grid a {
  font-size: .8rem;
  text-align: center;
  font-family: Hina Mincho, sans-serif;
  margin-bottom: 30px;
}

.service-two {
  margin-top: 100px;
}

.cats {
  margin-top: 150px;
}

.cats-items,
.hidden-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
  text-align: center;
}

.cats-items img,
.hidden-items img {
  object-fit: cover;
  width: 100%;
  padding: 10px 10px 0;
  border-radius: 5px;
}

.cats-items a,
.hidden-items a {
  font-family: Hina Mincho, sans-serif;
  margin-bottom: 20px;
}

/* 最初は非表示 */
.hidden-items {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(1fr, 1fr));
  gap: 10px;
}

/* ボタン装飾（任意） */
#show-more-btn {
  display: block;
  width: 350px;
  margin: 20px auto 50px;
  padding: 10px 20px;
  background-color: #C3B39E;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#show-more-btn:hover {
  background-color: #555;
}

/*plan-section*/
/*表*/
.plan-section {
  width: 90%;
  margin: 0 auto 150px;
}

.plan-table {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
  border-collapse: collapse;
  border: #b3a08b 1px solid;
}

.first,
.second,
.third {
  border-left: #C1B5A8 1px solid;
}

.first {
  width: 40%;
}

.second {
  width: 30%;
}

.third {
  width: 30%;
}

.plan-table th, 
.plan-table td {
  border-top: #CBBAA4 1px dashed;
  font-family: Hina Mincho, sans-serif;
  text-align: center;
  height: 70px;
  font-size: 1rem;
}

.plan-table th {
  background-color: #EBE3D9;
  border-bottom: #C1B5A8 1px solid;
  font-size: 1rem;
}

.freespace-title {
  text-align: left;
  margin-bottom: 20px;
  font-size: 1.5rem;
  width: 100%;
  border-bottom: #C1B5A8 1px solid;
}

.plan-menu .freespace-title {
  margin: 0 0 20px;
  width: 100%;
}

.plan-menu {
  width: 90%;
  margin: 0 auto;
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.menu-item img {
  object-fit: cover;
  width: 100%;
}

.menu-info {
  text-align: center;
}

.menu-name {
  font-size: 0.9rem;
  height: 50px;
  padding-top: 10px;
}

.juice {
  padding: 0;
}

.menu-price p {
  font-family: Kaisei Decol, "sans-serif";
  height: 30px;
  margin-bottom: 10px;
}

.menu-price {
  margin-bottom: 50px;
}

.menu-price .s-size {
  background-color: #FDF6ED;
}

.menu-price .m-size,
.menu-btn {
  background-color: #EBE3D9;
}

.menu-price .l-size {
  background-color: #CBBAA4;
}

.menu-btn {
  font-family: Hina Mincho, sans-serif;
  height: 30px;
  width: 90%;
  margin-bottom: 50px;
}

.menu-btn:hover {
  background-color: #CBBAA4;
  color: #ffffff;
  transition: .3s ease-in-out;
  scale: 93%;
}

/*news*/
.main-article,
.sub-article,
.category-list {
  width: 90%;
  margin: 0 auto;
}

.news-part {
  display: flex;
  justify-content: space-between;
  height: 250px;
  border-top: #f1f1f1 1px solid;
  border-bottom: #f1f1f1 1px solid;
  padding: 20px 0;
  gap: 20px;
}

.news-img img {
  width: 170px;
  height: 100px;
  border: #d1d1d1 1px solid;
  object-fit: cover;
}

.base-info {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.news-excerpt {
  font-size: small;
  text-align: left;
  margin: 0;
  color: #6c6c6c;
}

.news-title {
  font-family: Hina Mincho, sans-serif;
}

.category {
  font-family: Kaisei Decol, "sans-serif";
  font-weight: 400;
  color: #6c6c6c;
  font-size: small;
  background-color: #EBE3D9;
  padding: 2px 10px;
  border-radius: 50px;
  height: 25px;
}

.base-info .news-date {
  font-size: small;
}

.news-content {
  margin: 0;
  font-size: small;
  color: #6c6c6c;
  width: 100%;
}

.sub-article {
  margin-top: 120px;
  width: 100%;
}

.sub-article a {
  text-decoration: none;
}

.subarticle-title,
.category-title,
.calendar-title {
  font-family: Hina Mincho, sans-serif;
  font-size: 1.3rem;
  border-bottom: #C1B5A8 1px solid;
  margin-bottom: 10px;
}

.sub-article .news-part {
  height: 150px;
  padding-bottom: 50px;
}

.sub-article .news-title {
  font-size: medium;
}

.news-btn  {
  font-family: Hina Mincho, sans-serif;
  background-color: #CBBAA4;
  font-size: .9rem;
  color: white;
  align-self: flex-end;
  width: 40%;
  padding: 5px 0;
  border: #9c9c9c 1px solid;
  margin-bottom: 10px;
}

.news-btn a {
  color: #fff;
  text-decoration: none;
}

.news-btn:hover {
  background-color: #EBE3D9;
  border: #EBE3D9 1px solid;
  scale: .95;
  transition: .5s;
}

.news-part .news-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
}

.sub-article .news-date {
  text-align: left;
  margin: 0;
  font-size: small;
}

.category-list {
  margin: 120px auto 50px;
  width: 100%;
}

.category-title {
  margin-bottom: 0;
}

.category-item {
  display: flex;
  flex-direction: column;
}

.category-item li {
  display: flex;
  align-items: center;
  border-bottom: #e8e8e8 0.5px solid;
  height: 40px; 
  padding-left: 3%;
  font-family: Kaisei Decol, sans-serif;
  font-size: small;
}

.category-item a {
  text-decoration: none;
  color: #333;
}

.category-item a:hover {
  color: #CBBAA4;
  transition: .3s;
}

/*information*/
.news-menu {
  width: 90%;
  margin: 0 auto;
}

.rule-title,
.campaign-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.pre-info {
  border-bottom: #e0e0e0 1px solid;
  padding-bottom: 50px;
  width: 80%;
  margin: 0 auto 50px;
}

.pre-info p {
  font-size: 1rem;
  width: 100%;
}

.info-notice h4,
.last-info {
  font-size: .93rem;
  width: 100%;
}

.main-info {
  margin-bottom: 50px;
}

.subtitle {
  font-family: Hina Mincho, sans-serif;
  margin-bottom: 20px;
}

.rule-notice {
  font-size: .8rem;
  margin-left: 2%;
  line-height: 1.2;
}

.info-notice {
  margin-bottom: 10px;
  padding-bottom: 20px;
}

.info-notice h4 {
  font-family: Hina Mincho, sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
}

.last-info {
  margin-bottom: 20px;
  border-top: #e0e0e0 1px solid;
  padding-top: 10px;
}

.news-category {
  display: flex;
  gap: 20px;
}

.news-category .category {
  border-radius: 5px;
  width: 100px;
  text-align: center;
  padding: 2PX 8px;
}

.news-category .category-name {
  font-size: 1rem;
  font-weight: 400;
}

.comment {
  margin: 50px 0 80px;
}

.comment-title {
  font-family: Hina Mincho, sans-serif;
  font-size: 1.3rem;
  border-bottom: #C1B5A8 1px solid;
  margin-bottom: 20px;
}

.comment-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.comment-group textarea {
  padding-bottom: 100px;
  border: #d1d1d1 0.5px solid;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  color: #9c9c9c;
}

.comment-group textarea:focus {
  border: #C1B5A8 1px solid;
  box-shadow: 0 0 5px rgba(195, 169, 139, 0.3);
  outline: none;
}

.pre-article,
.next-article {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}

.pre-article img,
.next-article img {
  object-fit: cover;
  width: 100%;
  height: 200px;
}

.pre-article .overlay,
.pre-article .overlay-info,
.next-article .overlay,
.next-article .overlay-info {
  opacity: 1;
  transition: none;
  display: block;
  position: absolute;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  font-family: Hina Mincho, sans-serif;
}

.pre-article .overlay {
  padding: 8px 16px;
  width: 100px;
  height: 50px;
  background-color: #CBBAA4;
  top: 0;
  left: 0;
}

.pre-article .overlay-info {
  background-color: rgba(61, 61, 61, 0.8);
  bottom: 0;
  width: 100%;
  height: 50px;
  text-align: center;
  padding: 10px 0;
}

.next-article .overlay {
  padding: 8px 16px;
  width: 100px;
  height: 50px;
  background-color: #CBBAA4;
  top: 0;
  right: 0;
}

.next-article .overlay-info {
  background-color: rgba(61, 61, 61, 0.8);
  bottom: 0;
  width: 100%;
  height: 50px;
  text-align: center;
  padding: 10px 0;
}

/* campaign */
.campaign .title-box {
  margin-bottom: 0;
}

.campaign-item {
  width: 100%;
  border-top: #e0e0e0 1px solid;
  padding: 30px 0 80px;
  margin: 10px 0;
} 

.campaign-menu {
  width: 90%;
  margin: 0 auto;
}

.campaign-name {
  display: flex;
  width: 100%;
  border-bottom: #C1B5A8 2px solid;  
  height: 35px;
}

.campaign-name .subtitle {
  width: 100%;
}

.campaign-name p {
  width: 10%;
  font-weight: 700;
  text-align: right;
  color: red;
}

.campaign-info p {
  width: 100%;  
}

.campaign-detail {
  margin: 20px 0;
}

.campaign-detail,
.detail,
.campaign-detail .notice {
  width: 100%;
  line-height: 1.9;
}

.campaign-detail .notice {
  font-size: .8rem;
  line-height: 1.2;
}

.campaign-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/*calender*/
.calendars {
  width: 100%;
  margin: 0 auto;
}

.august {
  margin-bottom: 100px;
}

.event-calendar {
  width: 100%;
  margin: 20px auto;
  border: #B2A89B 2px solid;
  font-family: Hina Mincho, sans-serif;
  border-collapse: collapse;
}

.event-calendar th,
.event-calendar td {
  border: #B2A89B 1px solid;
}

.event-calendar td {
  position: relative;
  padding: 4px;
  height: 70px;
  font-size: .8rem;
}

.event-calendar th {
  height: 30px;
  background-color: #EBE3D9;  
}

.event-calendar td span {
  position: absolute;
  top: 4px;
  left: 4px;
}

.event::after,
.day-off::after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 17px;
  padding-left: 5px;
  line-height: 17px;
  white-space: nowrap;
}

.august .event-start::after {
  content: "夏休み料金・夏限定メニュー";
  position: absolute;
  display: block;
  color: #fff;
  font-size: .6rem; 
  z-index: 5;
}

.september .event-start::after {
  content: "秋限定メニュー";
  position: absolute;
  display: block;
  color: #fff;
  font-size: .6rem; 
  z-index: 5;
}

.event-mid::after,
.event-end::after {
  content: "";   
}


.august .event::after {
  background-color: orange;
}

.september .event::after {
  background-color: rgb(97, 37, 9);
}

.day-off::after {
  content: "定休日";
  text-align: center;
  font-size: .6rem;
}

/*summer-menu*/
.limited-time {
  text-align: end;
  width: 100%;
}

.menu-text {
  padding-top: 5px;
  width: 100%;
  font-size: .75rem;
  text-align: center;
}

/*summer-price*/
.summer-freespace {
  margin-bottom: 70px;
}

.price-title {
  width: 90%;
  margin: 0 auto 10px;
}

/*category-page*/
.category-name {
  text-align: start;
  width: 90%;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 700;
  font-family: Kaisei Decol, sans-serif;
}

.category-part,
.seasonal-part {
  height: 230px;
}

/*faq*/
.faq {
  width: 90%;
  margin: 0 auto;
}

.question,
.answer {
  display: flex;
  gap: 20px;
}

.question {
  margin-bottom: 15px;
  border-bottom: #dddddd 1px dotted;
}

.answer {
  margin-bottom: 60px;
  border-bottom: #d1d1d1 1px solid;
}

.question-icon,
.answer-icon {  
  margin: 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: Kaisei Decol, sans-serif;
  padding: 0 7px;
  height: 33px; 
  line-height: 1.25;
}

.question-icon {
  border: #E50100 1px solid;
  color: #E50100;
}

.answer-icon {
  border: #337AB8 1px solid;
  color: #337AB8;
}

.question-text,
.answer-text {
  width: 100%;
  padding: 0 0 10px;
}

.question-text {
  font-weight: 600;
  font-size: 1.2rem;
}

.answer-item .notice {
  font-size: .8rem;
  text-align: left;
  width: 100%;
}

.answer-item img {
  width: 100%;
}

/*contact*/
.contact {
  width: 90%;
  margin: 0 auto;
  font-family: Hina Mincho, sans-serif;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

.required {
  color: red;
  font-size: 12px;
  margin-left: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 30px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border: #CBBAA4 1.5px solid;
}

.submit-btn {
  margin: 0 auto 150px;
  width: 60%;
}

@media (min-width: 768px) {
  .wrapper {
    max-width: 100%;
  }

  .container {
    max-width: 1200px;
    margin: 20px auto;
  }

  .menu {
    position: static;
    width: auto;
    height: auto;
    box-shadow: none;
    background: none;
    transition: none;
    right: 0;
  }

  .menu ul {
    display: flex;
  }

  .menu li {
    margin: 0 0 0 35px;
  }

  .menu-icon {
    display: none;
  }

  .font-english > li {
   position: relative;
  }

 .dropdown-menu {
   display: none;
   position: absolute;
   background: #fff;
   list-style: none;
   left: -120px;
   width: 300px;
   border: 1px solid #ddd;
   z-index: 5;
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: all 0.3s ease;
   box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

 /* ドロップダウン項目 */
 .dropdown-menu li a {
   display: flex;
   width: 100%;
   margin: 0;
   padding: 12px 0;
   text-decoration: none;
   color: #333;
   font-size: .9em;
  } 

 /* hoverで表示 */
 .dropdown:hover .dropdown-menu {
   display: block;
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
  } 

  .slideshow-container {
    width: 100%;
    height: 80vh;
  }

  h2 {
    font-size: 2.5rem;
  }

  p {
    font-size: 1.4rem;
  }

  .title-box {
    margin: 0 0 100px;
  }

  .concept-title {
    margin-top: 50px;
  }

  .main-concept {
    width: 90%;
    margin: 20px auto 200px;
  }

  .concept-img {
    object-fit: cover;
  }

  .btn {
    font-size: 1.4rem;
  }

  .normal-plan th,
  .normal-plan td {
    font-size: 1.4rem;
  }

  .plan-notice .notice {
    font-size: 1rem;
  }

  .location {
    width: 90%;
    display: flex;
    margin: 0 auto 150px;
  }

  .location-map {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    padding-bottom: 80%; 
    height: 0;
    overflow: hidden;
  }

  .location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 85%;
    border: 0;
  }

  .location-info {
    margin-left: -50%;
  }

  .location-info td {
    font-size: 1rem;
  }

  .main-service {
    display: flex;
    width: 90%;
    margin: 0 auto;
  }

  .service-img-one,
  .service-img-two {
    width: 30%;
    height: 70%;
    object-fit: cover;
  }

  .number,
  .name {
    font-size: 2rem;
  }

  .service-info .text {
    margin: 20px 0 0 0px;
    text-align: left;
    font-size: 1rem;
  }

  .sub-text {
    margin-top: 20px;
  }

  .about-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-grid a {
    font-size: 1.1vw;
  }

  .cats-grid {
    width: 90%;
    margin: 0 auto;
  }

  /*plan*/
  .plan-table th, 
  .plan-table td {
  border-top: #CBBAA4 1px dashed;
  font-family: Hina Mincho, sans-serif;
  text-align: center;
  height: 70px;
  font-size: 1.2rem;
  }

  /*drink&food*/
  .menu-name {
   font-size: 1.2rem;
   height: 80px;
   padding-top: 10px;
  }

 .menu-price p {
   font-family: Kaisei Decol, "sans-serif";
   height: 35px;
   margin-bottom: 10px;
   font-size: 1.2rem;
  }

  .juice {
   padding: 0;
  }

 .menu-price {
   margin-bottom: 50px;
  }

 .menu-price .s-size {
    background-color: #FDF6ED;
  }

 .menu-price .m-size,
 .menu-btn {
   background-color: #EBE3D9;
  }

 .menu-price .l-size {
   background-color: #CBBAA4;
  }

 .menu-btn {
   font-family: Hina Mincho, sans-serif;
   height: 35px;
   width: 90%;
   margin-bottom: 50px;
  }

 .menu-btn:hover {
   background-color: #CBBAA4;
   color: #ffffff;
   transition: .3s ease-in-out;
   scale: 93%;
  }

  /*news*/
  .main-article,
  .sub-article,
  .category-list {
    width: 80%;
    margin: 0 auto;
  }

  .news-part {
    height: 300px;
  }

  .news-img img {
    width: 220px;
    height: 150px;
  }

  .news-title {
  font-family: Hina Mincho, sans-serif;
  font-size: 1.1rem;
  }

  .sub-article {
    margin-top: 150px;
    width: 100%;
  }

  .subarticle-title,
  .category-title {
    font-family: Hina Mincho, sans-serif;
    font-size: 1.5rem;
    border-bottom: #C1B5A8 1px solid;
    margin-bottom: 10px;
  }

  .category-list {
    width: 100%;
    margin: 50px 0;
  }

  .sub-article .news-part {
    height: 200px;
    padding-bottom: 50px;
  }

  /*各記事*/
  .rule-title,
  .campaign-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
  } 

  .pre-info {
    font-size: 1.3rem;
    margin-bottom: 50px;
    border-bottom: #e0e0e0 1px solid;
    padding-bottom: 50px;
  }

  .campaign-info {
    margin-bottom: 50px;
  }

  .campaign-info p {
    font-size: 1.2rem;
  }

  .campaign-name .subtitle {
    width: 100%;
    font-size: 1.5rem;
  }

  .campaign-item {
    width: 100%;
    padding-bottom: 100px;
    margin: 30px 0 10px;
  } 

  .campaign-name {
    display: flex;
    width: 100%;
    border-bottom: #C1B5A8 2px solid;  
    height: 50px;
  }

  .campaign-detail,
  .campaign-detail .detail {
    font-size: 1.2rem;
  }

  .campaign-detail .notice {
    font-size: 1rem;
    line-height: 1.5;
  }

  .article-reserve {
    display: flex;
    gap: 20px;
  }
  
  .article-reserve a {
    width: 50%;
  }

  .next-article .overlay {
  padding: 8px 16px;
  width: 100px;
  height: 50px;
  background-color: #CBBAA4;
  top: 0;
  right: 0;
  }

  .event::after,
  .day-off::after {
   height: 20px;
   line-height: 20px;
  }

 .august .event-start::after,
 .september .event-start::after,
 .day-off::after {
   font-size: .7rem; 
  }

  /*faq*/
  .question-text {
    font-size: 1.3rem;
  }
  .answer-text {
    font-size: 1.1rem;
  }

  .answer-item .notice {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .main-concept {
    display: flex;
    gap: 20px;
  }

  .section-wrapper {
    width: 60%;
    margin: 0 auto;
  }

  .btn-set .btn {
    margin-bottom: 0;
  }

  .concept-img {
    width: 40%;
    height: 450px;
    margin-top: 0;
  }

  .location {
    margin-bottom: 100px;
    gap: 50px;
  }

  .location-map {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    overflow: hidden;
  }

  .location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    border: 0;
  }

  .location-info {
    padding: 0;
    margin-bottom: 50px;
  }

  .location-info th,
  .location-info td {
    font-size: 1.1rem;
  }

  .main-about .text {
    width: 80%;
    font-size: 1.3rem;
    margin-bottom: 150px;
  }

  .service-img-one,
  .service-img-two {
    width: 25%;
    height: 50%;
    object-fit: cover;
  }

  .number,
  .name {
    font-size: 2.6rem;
  }

  .service-info .text {
    margin: 20px 0 0 0px;
    text-align: left;
    font-size: 1.3rem;
  }

  .sub-text {
    margin-top: 50px;
    font-size: 1rem;
  }

  .about-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-grid a {
    font-size: 1rem;
  }

  .cats-grid {
    width: 100%;
    margin: 0 auto;
  }

  .service-two {
    margin: 200px auto 250px;
  }

 .cats-items,
 .hidden-items {
  grid-template-columns: repeat(3,1fr);
 }
 
 /*plan*/
  .plan-table th, 
  .plan-table td {
    border-top: #CBBAA4 1px dashed;
    font-family: Hina Mincho, sans-serif;
    text-align: center;
    height: 70px;
    font-size: 1.3rem;
  }

  /*drink&food*/
  .plan-section {
    margin-bottom: 100px;
    width: 100%;
  }

  .plan-menu {
    width: 100%;
    margin-top: 150px;
  }

  .menu-name {
   font-size: 1.2rem;
   height: 80px;
   padding-top: 10px;
  }

  .menu-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
  }

 .menu-price p {
   font-family: Kaisei Decol, "sans-serif";
   height: 35px;
   margin-bottom: 10px;
   font-size: 1.2rem;
  }

  .juice {
   padding: 0;
  }

 .menu-price {
   margin-bottom: 50px;
  }

 .menu-price .s-size {
    background-color: #FDF6ED;
  }

 .menu-price .m-size,
 .menu-btn {
   background-color: #EBE3D9;
  }

 .menu-price .l-size {
   background-color: #CBBAA4;
  }

 .menu-btn {
   font-family: Hina Mincho, sans-serif;
   height: 35px;
   width: 90%;
   margin-bottom: 50px;
  }

  /*news*/
  .news-wrapper {
    width: 80%;
  }

 .news-menu {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto 150px;
    gap: 50px;
  }

  .news-part {
    height: 300px;
    padding-top: 30px;
  }

  .main-article {
    width: 60%;
  }

  .news-sub-menu {
    width: 40%;
  }

  .main-article .news-img img {
    width: 300px;
    height: 200px;
  }

  .sub-article .news-img img {
    width: 150px;
    height: 100px;
  }

  .news-title {
  font-family: Hina Mincho, sans-serif;
  font-size: 1.3rem;
  }

  .news-excerpt {
    font-size: medium;
  }

  .subarticle-title,
  .category-title {
    font-family: Hina Mincho, sans-serif;
    font-size: 1.5rem;
    border-bottom: #C1B5A8 1px solid;
    margin-bottom: 10px;
  }
  
  .sub-article {
    margin: 0 auto;
    width: 100%;
  }

  .sub-article .news-part {
    height: 130px;
    padding: 15px 0 0;
    width: 100%;
  }

  .sub-article .news-title {
    font-size: .8rem;
  }

  .category,
  .base-info .news-date {
    font-size: medium;
  }

  .category {
    height: 30px;
    padding: 2px 20px;
  }

  .sub-article .category {
    padding: 2px 10px;
    font-size: small;
  }

  .category-list {
    margin-top: 100px;
  }

  .main-info {
    width: 100%;
  }

  /*information*/
  .pre-info {
    margin-bottom: 50px;
    border-bottom: #e0e0e0 1px solid;
    padding-bottom: 10px;
  }

  /*campain*/
  .campaign-menu {
    width: 80%;
    margin: 0 auto;
  }

  .campaign-title {
    margin-bottom: 40px;
  }

  .campaigns {
    display: flex;
    justify-content: space-between;
    gap: 50px;
  }

  .campaign-item {
    margin-top: 0px;
    padding-bottom: 100px;
    padding-top: 30px;
  }

  .campaign-item img {
    width: 45%;
    height: 100%;
    margin: 0;
  }

  .first-item {
    border: #333 0 solid;
  }

  .campaign-flex {
    display: flex;
    margin-top: 20px;
    gap: 20px;
  }

  .campaign-name {
    height: 40px;
    align-items: center;
    width: 100%;
  }

  .campaign-name .subtitle {
    font-size: 20px;
  }

  .campaign-name p {
    font-size: 0.9rem;
    width: 10%;
  }

  .campaign-detail,
  .campaign-detail .detail,
  .campaign-info p {
    font-size: 16px;
    width: 100%;
  }

  .campaign-info {
    border-bottom: #dddddd 1px solid;
  }

  .campaign-detail,
  .campaign-detail .detail {
    padding: 0;
    margin: 0;
  }

  .campaign-detail .notice {
    font-size: 0.9vw;
    margin-top: 10px;
  }

  .news-category {
    margin-bottom: 100px;
    gap: 5px;
  }

  .news-category .category {
    font-size: small;
  }

  /*次・前の記事*/
  .article-reserve {
    gap: 20px;
  }
 
  .pre-article,
  .next-article {
    margin: 0 auto 50px;
  }

  .pre-article img,
  .next-article img {
    height: 200px;
  }

  .pre-article .overlay-info,
  .next-article .overlay-info {
    font-size: 1vw;
  }

  /*side-news*/
  .news-side-menu {
    width: 40%;
    margin: 0;
  }

  /*calendar*/
  .calendar {
    width: 80%;
  }

  .august {
    margin-bottom: 100px;
  }

  .event-calendar td {
    height: 90px;
  }

  /*summer-menu*/ 
  .summer-menu {
    width: 80%;
  }

  .menu-text {
    font-size: .92rem;
  }

  .summer-text{
    font-size: 1rem;
  }
  
  .limited-time {
    text-align: start;
  }

  .main-summerprice {
    width: 80%;
  }

  .summer-plan th {
    font-size: 1.2rem;
  }

  .category-part,
  .category-name {
    width: 80%;
  }

 /*faq*/
  .question {
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .question-text {
    font-size: 1.4rem;
    padding: 0;
  }

  .answer {
    padding-bottom: 10px;
  }

  .answer-text {
    font-size: 1.2rem;
  }

  .answer-item .notice {
    font-size: 1.1rem;
  }
}