@charset "utf-8";

/*----------------------------------------------- */
/* モーダルウィンドウ
----------------------------------------------- */
.modal-wrap{
  /*position: absolute;*/
  top: 0; left: 0; right: 0; bottom: 0;
  text-align: left;
}
.modal-wrap input{
  display: none;
}
.modal-overlay{
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  z-index: 100;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}
.modal-trigger{
    position: absolute;
    width: 100%; height: 100%;
}
.modal-content-jp{
  align-self: center;
  width: 60%; height: 80%;
  max-width: 800px;
  padding: 30px 40px;
  box-sizing: border-box;
  background: #ffffff;
  line-height: 1.5;
  transform: scale(1.2);
  transition: 0.5s;
  z-index: 100;
  overflow-y: scroll;
}
@media screen and (max-width: 800px){
  .modal-content-jp{
    width: 90%; height: 90%;
    max-width: 100%;
    padding: 20px 20px;
  }
}

.modal-close-button{
  position: absolute;
  top: 6px; right: 10px;
  font-size: 24px;
  cursor: pointer;
}
@media screen and (max-width: 800px){
  .modal-close-button{
    top: 0px; right: 4px;
  }
}

.modal-wrap input:checked ~ .modal-overlay{
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}
.modal-wrap input:checked ~ .modal-overlay .modal-content-jp{
  transform: scale(1);
}

/* .modal-open-button img:hover{
    opacity: 0.7;
    cursor: pointer;
} */
.modal-open-button .modalhover{
  text-align: center;
}

.modal-open-button .modalhover:hover{
  opacity: 0.7;
  cursor: pointer;
}

.modaldate {
  position:absolute;
  font-weight: bold;
  font-family: 'Noto Serif TC', serif,'Source Sans Pro', sans-serif;
  color: #FF8F47;
  transform: translate(-50%, -50%);
  top: 70%;
  left: 50%;
  font-size: 4.3rem;
  letter-spacing: 2px;
}

@media screen and (max-width: 1500px) {
  .modaldate {
    font-size: 3.3rem;
  }
}

@media screen and (max-width: 1200px) {
  .modaldate {
      font-size: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .modaldate {
      font-size: 2.5rem;
  }
}

@media screen and (max-width: 950px) {
  .modaldate {
    font-size: 2rem;
  }
}

.modaldate_m{
  position:absolute;
  font-weight: bold;
  font-family: 'Noto Serif TC', serif,'Source Sans Pro', sans-serif;
  color: #FF8F47;
  transform: translate(-50%, -50%);
  left: 50%;
  letter-spacing: 2px;
  width: 100%;
  font-size: 4.5rem;
  top: 49%;
}

@media screen and (max-width: 600px) {
  .modaldate_m {
      font-size: 2.5rem;
  }
}

@media screen and (max-width: 500px) {
  .modaldate_m {
      font-size: 2rem;
  }
}

.PC .modal-open-button {
  display: block;
  margin: 0 auto;
}
/*----------------------------------------------- */
/* 定期コースについて
----------------------------------------------- */
.regularly__block dl{
  font-family: "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 20px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  line-height: 1.6;
  color: #555555;
}
@media screen and (max-width: 800px){
  .regularly__block dl{
    padding: 15px 10px;
  }
}

.regularly__block dt{
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 1.5rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 800px){
  .regularly__block dt{
    margin-bottom: 8px;
    font-size: 1.2rem;
  }
}

.regularly__block dd{
  padding: 10px;
  font-size: 1.2rem;
  line-height: 1.8;
}
@media screen and (max-width: 800px){
  .regularly__block dd{
    font-size: 1rem;
  }
}