@charset "utf-8";
html{
    background-color: #F7F3E7;
    font-family: "Shippori Mincho B1", serif;
}
.rogo{
  width: 80px;
}
.shippori-mincho-regular {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .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;
  }
}
.iii{
    font-size: 30px;
    text-align: center;
    color: #770000;
}
#table01{
  width: 100%;
  max-width: 1220px;
  padding: 0 40px;
  margin: 0 auto;
  padding-bottom: 200px;
}
#table01 tr {
  border-bottom: 1px solid #b5b1b1;
}

#table01 th,
#table01 td {
  padding: 24px 0;
  border: none;
}

#table01 th {
  width: 30%;
}

/* sp */
@media only screen and (max-width: 480px) {
  #table01 th,
  #table01 td {
    width: 100%;
    display: block;
  }

  #table01 th {
    width: 100%;
  }

  #table01 td {
    padding-top: 0;
  }
}
.aaa{
  margin-top: 100px;
}
.gaiyou{
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 100px;
  color: #660000	;
}
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;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.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;
}
.purai{
  margin-top: 300px;
  margin-bottom: 40px;
  text-align: center;
  font-size: 40px;
  color: #770000;
}
.pori{
  margin-top: 40px;

}
address {
  font-style: normal;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.toi{
  margin-bottom: 150px;
}
.awa{
  text-align: center;
  font-size: 40px;
  color: #770000;
  margin-top: 300px;
}
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #b8b3b3;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #b8b3b3;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
.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; */
  }