ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: inline-block;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  color: #333;
  line-height: 1.6;
}

body.is-fixed {
  overflow: hidden;
}

.button {
  padding: 1em 2em;
  border-radius: 3px;
  background-color: #f77;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: normal;
  color: #333;
  line-height: 1;
  transition: all 0.3s ease 0s;
  text-align: center;
}

.button:hover {
  opacity: 0.7;
}


.button-drawer {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0);
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../estate.img/icons8/icons8-ハンバーガーボタン-32.png);
}

.button-drawer.is-checked{
  background-image: url(../estate.img/icons8/icons8-cancel-32\ \(4\).png);
}


.button-form {
  height: 100%;
  padding: 0.75em 1em;
  border-radius: 3px;
  background-color: #f77;
  font-size: 18px;
  letter-spacing: normal;
  color: #333;
  line-height: 1;
  transition: all 0.3s ease 0s;
  text-align: center;
}

.button-form:hover {
  opacity: 0.7;
}

.header {
  height: 80px;
  background-color: #b55233;
  color:wheat;
  border-bottom: 1px solid wheat;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

.header__logo {
  font-size: 25px;
  padding-left: 37px;
  position: relative;
}

.header__logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-image: url(../estate.img/logo.png);
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.header__button {
  margin-left: auto;
}


.drawer {
  top: 80px;
  width: 100%;
  padding: 0 80px;
  height: calc(100% - 80px);
  background-color: #b55233;
  overflow-y: auto;
  z-index: 10;
  display: none;
}
.main {
  width: 80%;
  margin: 0 auto;
}

#estate{
  text-align: center;
}

section{
  margin: 20px 0;
}

.title{
  text-align: center;
  margin-bottom: 10px;
}

table {
 border-collapse: collapse;
 table-layout: fixed;
 width: 100%;
}

th, td {
 border: 1px solid black;
 padding: 8px; /* セルの内側の余白 */
 text-align: center;
}
.container{
}

.contents-up{
 display: flex;
 gap: 20px;
 border: 1px solid;
 padding: 15px;
}

.contents-up-title{
  white-space: nowrap;
  text-align: center;
  margin-bottom: 5px;
}

.contents-up-item{
 height: 100%;
}

img {
  width: 100%;
  height: 100%;
  /*画像がボックスに収まるように拡大または縮小され、アスペクト比を維持します。ボックスの中央に配置されます。*/
  object-fit: contain;
}



.drawer__menu {
  text-align: center;
  color:  wheat;
  border-bottom: 1px solid  wheat;
  padding: 25px 0;
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

.drawer__menu:hover {
  opacity: 0.7;
}

.footer-text{
  clear: both;
  padding: 5px 0;
  font-style: normal;
  text-align: center;
  border-top: 1px solid #333;
  background: wheat;
  font-size: 10px;
}

.top{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: rgba(0,0,0,0);
  border: none;
  display: none;
 }

 .overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.enlarged-image{
  display: none;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  z-index: 10000;
  height: 100%;
  text-align: center;
}

.enlarged-image-contents{
  display: flex;
  justify-content: center; 
  align-items: center;
  height: 100%;
}

.arrow-button{
  height: 64px;
  width: 64px;
  margin: 0 15px;
}

.close{
  text-decoration: underline;
 color: #fff;
}

@media (max-width: 834px) {
  .header__logo {
    font-size: 20px;
  }

  .contents-up{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  }

 
}







