@charset "utf-8";
html{
    background-color: #F7F3E7;
    font-family: "Shippori Mincho B1", serif;
    
    @media (max-width: 768px) {
        .form-group {
          flex-direction: column;
        }
        
        .input-group {
          width: 100%;
          margin-bottom: 15px;
        }
      }
      @media (max-width: 768px) {
        .form-group {
            width: 100%;
            margin: 15px 0;
        }
    }
    @media (max-width: 768px) {
      /* 小さい画面用のスタイル */
    }
    @media (min-width: 769px) {
      /* 大きい画面用のスタイル */
    }
}
.container {
  display: flex;
  flex-wrap: wrap;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.col-6 { grid-column: span 6; }
.item {
  flex: 1 0 300px;
}
.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;
}
.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.2s 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.1s 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;
  }
}
.img{
    width: 100%;
}
h1{
  font-size: 30px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
}
.slide-container {
  width: 100%;
  margin: 50px auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide-wrapper {
display: flex;
animation: slide-flow 20s infinite linear 1s both;
}
.slide{
width: 300px;
object-fit:cover;
border: 1px solid #ddd;
}
@keyframes slide-flow {
   0% {transform: translateX(0);}
100% {transform: translateX(-100%);}
}
.aaa1{
  font-size: 22px;
  margin-bottom: 100px;
  margin-top: 30px;
  margin-left: 40px;
}
.sss{
  width: 600px;
  margin-top: -40px;
}
h3{
  margin-left: 30px;
  font-size: 23px;
  margin-bottom: 20px;
}
.ul {
  display: flex;
  justify-content: center;
}

li {
  list-style: none;
}

.sss{
  margin-left: 115px;
}
.contact-form-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 0;
  border: 1px solid #cccccc;
}
.form-item:first-child {
  margin-top: 0;
}
.form-item {
  width: 70%;
  margin: 30px auto 0;
}

.form-item label{
  display: block;
  font-size: 16px;
  color: #333333;
}
.form-item > input{
  width: 100%;
  height: 50px;
  border-radius: 20px;
  border: 1px solid #cccccc;
  margin-top: 10px;
}
.form-item input::placeholder,
.form-item textarea::placeholder {
  padding-left:15px;
}
.form-flex {
  display: flex;
  flex-direction: column;
}
.form-flex input {
  height: 50px;
  border-radius: 20px;
  border: 1px solid #cccccc;
  margin-top: 10px;
}
.form-flex input.your-add-1 {
  width: 40%;
}
.form-flex input.your-add-2 {
  width: 100%;
}
.form-hissu {
  color: #ffffff;
  font-size: 13px;
  margin-left: 15px;
  padding: 3px 5px;
  background-color: red;
}
.form-free {
  color: #ffffff;
  font-size: 13px;
  margin-left: 15px;
  padding: 3px 5px;
  background-color: #8DC39F;
}
.form-item textarea{
  height: auto;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #cccccc;
  margin-top: 10px;
}
.last-check {
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.last-check > input {
  width: auto;
  height: auto;
  margin: 0 10px 0 0;
}
.last-check a {
  text-decoration: none;
}
.form-item.send-btn{
  max-width: 200px;
  margin: 40px auto 0;
  margin-bottom: 50px;
}
.form-item.send-btn input{
  background-color: #073C2F;
  color: #ffffff;
  border-radius: 0px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}
.form-item.send-btn input:hover {
  background-color: #F7F3E7;
  color: #073C2F;
  border: 1px solid #073C2F;
  transition: all .3s;
}
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #fff;
	background-color: #073C2F;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}
.bbb{
  font-size: 13px;
}



.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; */
}
.button a {
  background: #073C2F;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 250px;
  padding: 10px 25px;
  font-family: "Noto Sans Japanese";
  color: #fff;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 50px;
}
.button a:hover {
  background: #36453e;
  color: #FFF;
}
.button a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button a:hover:after {
  border-color: #FFF;
}
body{
  vertical-align:middle; 
}
footer{
  text-align: left;
}
.abc{
  text-align: center;
}