@charset "utf-8";
html{
    background-color: #F7F3E7;
    font-family: "Shippori Mincho B1", serif;
    @media (max-width: 768px) {
      .form-group {
        flex-direction: column;
      }
      
      label {
        width: 100%;
        margin-bottom: 5px;
      }
      
      input[type="date"], input[type="number"] {
        width: 100%;
      }
    }
}

.rogo{
  width: 80px;
}
.title {
  font-size: 25px;
  color: #fff;
  z-index: 11;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  writing-mode: vertical-rl;
}
/*写真*/
.img{
  width: 100%;
  height: 530px;
  object-fit: cover;
  margin-top: 50px;
}
/*予約フォーム*/
.reservation-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-top: 100px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.reservation-container h2 {
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.form-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.input-group {
  display: flex;
  flex-direction: column;
  width: 45%;
}

label {
  margin-bottom: 5px;
}

input[type="date"], input[type="number"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #45a049;
}

button[type="submit"]:active {
  background-color: #3e8e41;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
  }
  
  .input-group {
    width: 100%;
    margin-bottom: 15px;
  }
}
/* レスポンシブデザイン */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
  }
  
  .input-group {
    width: 100%;
    margin-bottom: 15px;
  }
}
label {
  width: 100px;
  margin-right: 10px;
}

input[type="date"], input[type="number"] {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

button[type="submit"]:hover {
  background-color: #45a049;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
  }
  
  label {
    width: 100%;
    margin-bottom: 5px;
  }
  
  input[type="date"], input[type="number"] {
    width: 100%;
  }
}

button[type="submit"] {
    background-color: #073C2F;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #002200;
}

@media (max-width: 768px) {
    .form-group {
        width: 100%;
        margin: 15px 0;
    }
}
/*フォント*/
.shippori-mincho-regular {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
  }
  .mozi{
    text-align: center;
    font-size: 18px;
    line-height: 50px;
    letter-spacing: 0.1em;
    margin-top: 50px;
  }
  .mozi1{
    text-align: center;
  }
  p{
    margin-bottom: 50px;
  }
  .shippori-mincho-medium {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .shippori-mincho-semibold {
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .shippori-mincho-bold {
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .shippori-mincho-extrabold {
    font-family: "Shippori Mincho", serif;
    font-weight: 800;
    font-style: normal;
  }
  
header nav ul{
    display: flex;
    justify-content: center;
    padding: 10px 0px 10px;
}
.header-nav ul li a {
  position: relative;
  text-decoration: none;
  color: #333;
}

.header-nav ul li a::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #073C2F;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease-in-out;
}

.header-nav ul li a:hover::after {
  width: 100%;
}

/* ヘッダーの写真に架線を適用しない */
.header-nav ul li a img {
  position: relative;
  z-index: 1;
  
}
.header-nav ul li a.no-underline::after {
  display: none;
}
.header-nav ul li a img::after {
  display: none;
}
header nav ul li{
    margin: 0 20px;
}
.header-nav ul li a {
    position: relative;
  }
  .header-nav ul li a::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #073C2F;
    bottom: -8px;
    left: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .header-nav ul li a:hover::after {
    transform: scale(1, 1);
  }
  header {
    background-image: url('washi-texture.png');
    background-size: cover;
    background-position: center;
    height: 80px; /* 高さを固定 */
    padding: 0 20px; /* 左右の余白を追加 */
    box-sizing: border-box;
  .slideBox {
  height: 600px;
  overflow: hidden;
  position: relative;
  margin-top: -50px;
}
  }
  .header-nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* ヘッダー全体の高さに合わせる */
}

.header-nav ul li {
    margin-right: 30px; /* 右側のマージンを増やす */
    font-weight: bold; /* 文字を太くする */
}

.header-nav ul li:last-child {
    margin-right: 0; /* 最後の項目の右側のマージンを削除 */
}

.header-nav a {
    color: #333; /* テキストカラーを設定 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #073C2F; /* ホバーカラーを設定 */
}
.header-nav ul li a::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #073C2F;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease-in-out;
}

.header-nav ul li a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  header {
      height: auto;
      padding: 20px;
  }

  .header-nav ul {
      flex-direction: column;
  }

  .header-nav ul li {
      margin-right: 0;
      margin-bottom: 15px;
  }

  .header-nav ul li:last-child {
      margin-bottom: 0;
  }
}
.title {
  font-size: 25px;
  color: #fff;
  z-index: 11;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  writing-mode: vertical-rl;
}
/*スライド*/
.slideBox {
  height: 600px;
  overflow: hidden;
  position: relative;
}
.item2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: anime 12s 0s infinite;
}

@keyframes anime {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}
.slideBox {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.item2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.item2.active {
  opacity: 1;
}
@keyframes anime {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

.item2:nth-of-type(2) {
  animation-delay: 4s;
}

.item2:nth-of-type(3) {
  animation-delay: 8s;
}
.item2:nth-of-type(2) {
  animation-delay: 4s;
}

.item2:nth-of-type(3) {
  animation-delay: 8s;
}
  .slideBox {
  height: 600px;
  overflow: hidden;
  position: relative;
}

.title {
  font-size: 25px;
  color: #fff;
  z-index: 11;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  writing-mode: vertical-rl;
}

.item2 {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 600px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 12s 0s infinite;
  animation: anime 12s 0s infinite;
  margin-top: 20px;
}

.item2:nth-of-type(2) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.item2:nth-of-type(3) {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}

/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
/*カードレイアウト*/
.pic-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
}
.wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}

.card {
  display: flex;
  flex-direction: column;
  flex-basis: 30%;
  word-wrap: break-word;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: #333;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
}
.card-title{
  margin-top: 0px;
}
.card{
  width: 288px;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,.2)
}
.card__imgframe{
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  background: #bbb;
  box-sizing: border-box;
}
.card__textbox{
  width: 100%;
  height: auto;
  padding: 20px 18px;
  box-sizing: border-box;
}
.card__textbox > * + *{
  margin-top: 10px;
}
.card__titletext{
  font-size: 20px;
  font-weight: bold;
  line-height: 125%;
}
.card__overviewtext{
  font-size: 12px;
  line-height: 150%;
}
/* レスポンシブデザイン */
@media (max-width: 768px) {
  main {
    padding: 20px 0;
  }

  .card-container {
    flex-direction: column;
  }

  .card {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
.card-image-box {
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


.card-box {
  padding: 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.card-description {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

h2{
  font-size: 30px;
  margin-top: 90px;
  text-align: center;
  letter-spacing: 2px;
}
h3{
  font-size: 17px;
  text-align: center;
  margin-top: 10px;
}
.miryoku{
  margin-top: 100px;
  letter-spacing: 2px;
}
.button_line006 a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 220px;
  padding: 20px 30px;
  color: black;
  transition: 0.3s ease-in-out;
  font-weight: 600;
}
.button_line006 a:before,
.button_line006 a:after {
position: absolute;
width: 100%;
height: 2px;
content: '';
-webkit-transition: all .3s;
transition: all .3s;
background: #073C2F;
}

.button_line006 a:before {
top: 0;
left: 0;
}

.button_line006 a:after {
right: 0;
bottom: 0;
}

.button_line006 a:hover:before,
.button_line006 a:hover:after {
width: 0
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.news {
padding: 50px 0;
}


.inner {
width: 80%;
margin: 0 auto;
padding: 65px 0 100px;
}


.sub_ttl {
font-size: 30px;
text-align: center;
margin-bottom: 40px;
}

/* ここからがニュース記事のCSS */

.news_list {
margin: 0 5%;
}

.news_list_item {
padding: 25px 0;
border-bottom: 1px solid #E6E6E6;
}

.news_list_item:first-child {
border-top: 1px solid #E6E6E6;
}
.news_list_item a {
position: relative;
display: flex;
padding-right: 30px;
}

.news_list_date {
font-size: 15px;
display: flex;
margin-right: 15px;
align-items: center;
}

.news_item {
background: #073C2F;
border-radius: 14px;
color: #fff;
width: 6em;
/* 親要素の文字サイズを基準 */
text-align: center;
margin-left: 20px;
}

.arrow {
width: 25px;
height: 1px;
position: absolute;
top: 50%;
right: 0;
}

.arrow::after {
content: "";
display: block;
width: 6px;
height: 1px;
transform: rotate(45deg);
position: absolute;
right: 0px;
bottom: 2px;
}


@media screen and (max-width: 1024px) {
  .news_list_item a {
      display: block;
  }
}

@media screen and (max-width: 769px) {
  .news_list_item a  {
      font-size: 14px;
  }


}
@media screen and (max-width: 480px) {
  .arrow {
      display: none;
  }
  .news_list_item a {
      padding-right: 0;
  }
}
.g-map{
  text-align: center;
  margin-top: 30px;
}
.footer {
    padding: 2rem;
    font-size: 15px;
    color: #fff;
    background: #002200;
  }
  
  .footer__navi-heading {
    font-weight: 600;
  }
  
  .footer__logo {
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  
  .footer__navi li {
    margin-bottom: 0.75rem;
  }
  
  .footer__address {
    margin-bottom: 2rem;
  }
  
  .footer__address a {
    text-decoration: underline;
  }
  
  @media (min-width: 768px) {
    .md-flex {
      display: flex;
    }
  
    .md-justify-between {
      justify-content: space-between;
    }
  
    .grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .footer__address a {
      text-decoration: none;
      pointer-events: none;
    }
  }
  
  @media (min-width: 1024px) {
    .lg-flex {
      display: flex;
    }
  }ul {
    padding: 0;
    list-style: none;
  }
  
  a {
    text-decoration: none;
  }
  
  a:hover {
    color: #EEEEEE;
  }
  
  hr {
    height: 1px;
    border: 0;
    border-top: 1px solid #fff;
  }
  address {
    font-style: normal;
  }
  
  .toho{
    font-size: 20px;
    color: black;
    margin-top: 20px;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
    margin-bottom: 1.5rem;
  }
  .g-map {
    text-align: center;
    margin-top: 30px;
    width: 100%;
    max-width: 800px; /* 地図の最大幅を設定 */
    margin-left: auto;
    margin-right: auto;
  }
  
  .g-map iframe {
    width: 100%;
    height: 500px; /* 地図の高さを調整 */
    border: none;
  }
  .footer {
    padding: 2rem;
    font-size: 15px;
    color: #fff;
    background: #002200;
  }
  
  .footer__navi-heading {
    font-weight: 600;
  }
  
  .footer__logo {
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  
  .footer__navi li {
    margin-bottom: 0.75rem;
  }
  
  .footer__address {
    margin-bottom: 2rem;
  }
  
  .footer__address a {
    text-decoration: underline;
  }
  
  @media (min-width: 768px) {
    .md-flex {
      display: flex;
    }
  
    .md-justify-between {
      justify-content: space-between;
    }
  
    .grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .footer__address a {
      text-decoration: none;
      pointer-events: none;
    }
  }
  
  @media (min-width: 1024px) {
    .lg-flex {
      display: flex;
    }
  }
  .footer {
    padding: 2rem;
    font-size: 15px;
    color: #fff;
    background: #002200;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  .footer {
    position: relative; /* または position: static; */
  }