@charset "utf-8";
html{
    background-color: #F7F3E7;
    font-family: "Shippori Mincho B1", serif;
    .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;
      }
}
h2{
    font-size: 30px;
    margin-top: 90px;
    text-align: center;
    letter-spacing: 2px;
}
h3{
    font-size: 17px;
    text-align: center;
    margin-top: 1opx;
}
.aaa{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    line-height: 50px;
}
.map{
    width: 100%;
}
h5{
    text-align: center;
    margin-top: 50px;
    margin-bottom:60px;
    font-size: 25px;
}
h6{
    font-size: 20px;
    text-align: center;
    margin-top: 50px;
    
}
.mozi{
    font-size: 18px;
}
h7{
    font-size: 20px;
    font-weight: bold;
}
.kaka{
  width: 80%;
  margin: auto;
}
.image{
    width: 1000px;
  display: block;
  margin: auto;
}
.rogo{
  width: 80px;
}
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;
  }
}
.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;
  }
  
  .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; */
  }
  .flex {
    display: flex; /*横並び*/
  }
  .flex .image {
    width: 640px; /*画像サイズ指定*/
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
  }

  .flex .title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 50px;
  }
  .flex .text {
    padding: 0;
    margin-bottom: 120px;
    margin-left: -100px;
  }
  .offer-wrapper{
    height:500px;
    text-align:center;
    margin-top: 30px;
  }
  
  .offers{
    display: flex;
    flex-direction: row;
    justify-content: center;
  }