@charset "UTF-8";

/* 2026.075.14. Sakuraguchi */

.openInfo{
  background-color: #f2f2f2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1{
  font-size: larger;
}

dl{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: #C6C6C6 1px solid;
  padding-bottom: 20px;
  width: 100%;
}

dt{
  width: 82px;
  font-size: 16px;
}

dd{
  font-size: x-large;
  margin: 0 0 0 25px;
  width: calc(100% - 107px);
}

.holidayInfo{
  display: flex;
  align-items: center;
  margin: 10px 0 0 0;
}

@media screen and (max-width: 640px) {
  dl{
    display: flex;
    flex-direction: column;
  }

  dt{
    display: flex;
    justify-content: center;
  }

  dd{
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    font-size: 16px;
    width: 100%;
  }

  .holidayInfo{
    display: flex;
    flex-direction: column;
  }
  
  .note{
    display: flex;
    justify-content: center;
    font-size: 12px;
  }
}