@charset "utf-8";

/*--------------------------------------------------------------
  タイトル
--------------------------------------------------------------*/
#d-pro-titlearea {
  margin: 0;
  padding: 0;

  width: 100dvw;
  height: 100dvh;
}

#d-pro-titlearea .titlearea {
  width: 80%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  border-radius: 3rem;
  margin: 0;
  padding: 0;
  margin-top: 120px;

  background-position: center 50%;
}

#d-pro-titlearea .titlearea h4,
#d-pro-titlearea .titlearea h4>* {
  margin: 0;
  padding: 0.2rem 0 0.2rem 0;
  font-size: clamp(1.5rem, 3vw, 2.0rem);
}

#d-pro-titlearea .d-pro-ronri-logo img {
  margin: 0;
  padding: 0;
  height: 4vw;
}

#d-pro-titlearea .d-pro-logo {
  display: flex;
  justify-content: start;
  align-items: start;
}


#d-pro-titlearea .d-pro-logo img {
  margin: 0;
  padding: 0;
  height: 5vw;
}

.sticky-note {
  margin: 0 0 1rem 0;
}

.sticky-note span {
  margin: 0 0.8rem 0.8rem 0;
  padding: 0.1rem 0.5rem 0.2rem 0.5rem;
  background-color: rgb(17, 120, 211);
  color: #fff;

  line-height: 1;

  border-radius: 0.2rem;
}

@media (max-width: 767.98px) {

  /* sm 以下の画面サイズの場合のスタイル */

  #d-pro-titlearea {
    padding: 0;
    background-position: 65% 50%;
  }

  #d-pro-titlearea .container-max {
    margin: 0;
    padding: 0;

    width: 100%;
    height: stretch;
    display: flex;
    justify-content: start;
    align-items: start;
  }

  #d-pro-titlearea .titlearea {
    position: relative;
    margin: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: end !important;
    align-items: start;

    width: 100%;
    min-height: 100vh;
    height: stretch;
    border-radius: 0;
  }

  .sticky-note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }

  #d-pro-titlearea .d-pro-logo {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  #d-pro-titlearea .d-pro-ronri-logo img {
    margin: 0;
    padding: 0;
    height: 8vw;
  }

  #d-pro-titlearea .d-pro-logo img {
    margin: 0;
    padding: 0;
    height: 12vw;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  /* md の画面サイズの場合のスタイル */
  #d-pro-titlearea {
    padding: 0;
  }

  #d-pro-titlearea .container-max {
    margin: 0;
    padding: 0;

    width: 100%;
    height: stretch;
    display: flex;
    justify-content: start;
    align-items: start;
  }

  #d-pro-titlearea .titlearea {
    position: relative;
    margin: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: end !important;
    align-items: start;

    width: 100%;
    min-height: 100vh;
    height: stretch;
    border-radius: 0;
  }

  .sticky-note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }

  #d-pro-titlearea .d-pro-ronri-logo img {
    margin: 0;
    padding: 0;
    height: 8vw;
  }

  #d-pro-titlearea .d-pro-logo {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  #d-pro-titlearea .d-pro-logo img {
    margin: 0;
    padding: 0;
    height: 12vw;
  }
}

@media (min-width: 992px) {
  /* lg 以上の画面サイズの場合のスタイル */
}

/*--------------------------------------------------------------
  d-pro-content
--------------------------------------------------------------*/

#d-pro-content {
  margin: 0;
  padding: 0;
  width: 100%;
}


#d-pro-content .d-pro-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 2rem;
  row-gap: 2rem;
}

#d-pro-content .d-pro-content-grid>div:first-child {
  margin: 0;
  padding: 0;

  height: stretch;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

  font-size: 1.2rem;
}

#d-pro-content .d-pro-content-grid>div:last-child {
  margin: 0;
  padding: 1rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;

  background-color: #f0f0aa;
}

#d-pro-content .d-pro-time-grid {
  display: grid !important;
  grid-template-columns: 4rem 1fr;
  column-gap: 1rem;
  row-gap: 1rem;
}

#d-pro-content .d-pro-time-grid>:nth-child(2n+1) {
  text-align-last: justify;
  font-weight: 600;
}

#d-pro-content .d-pro-online {
  display: inline-block;
  margin: 0 0 0.5rem 0;
  padding: 0.2rem 0.5rem 0.3rem 0.5rem;
  line-height: 1;
  background-color: #f00;
  color: #fff;
}

@media (max-width: 767.98px) {

  /* sm 以下の画面サイズの場合のスタイル */
  #d-pro-content .d-pro-content-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  /* md の画面サイズの場合のスタイル */
  #d-pro-content .d-pro-content-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  /* lg 以上の画面サイズの場合のスタイル */
}

/*--------------------------------------------------------------
  d-pro-profile
--------------------------------------------------------------*/

#d-pro-profile {
  margin: 0;
  padding: 0;
  width: 100%;

  background-color: #ddd7af;
}

#d-pro-profile .container-just>div {
  display: grid !important;
  grid-template-columns: 1fr 2fr !important;
  column-gap: 2rem;
}

#d-pro-profile .container-just>div img {
  margin: 0;
  padding: 0 1rem 1rem 0;
  width: 100%;
}

#d-pro-profile .container-just>div {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
}

#d-pro-profile .container-just>div h4 {
  margin: 0 0 1rem 0;
}

#d-pro-profile .container-just>div h5 {
  margin: 1rem 0 0 0;
}


@media (max-width: 767.98px) {

  /* sm 以下の画面サイズの場合のスタイル */
  #d-pro-profile .container-just>div {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  /* md の画面サイズの場合のスタイル */
  #d-pro-profile .container-just>div {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 992px) {
  /* lg 以上の画面サイズの場合のスタイル */
}



#d-pro-contact {
  margin: 0;
  padding: 0;
  width: 100%;

  background-color: #f6f6de;
}


/*--------------------------------------------------------------
  d-pro-movie
--------------------------------------------------------------*/

#d-pro-movie {
  margin: 0;
  padding: 0;
  width: 100%;
}

#d-pro-movie article {
  width: 100%;
  margin: 0;
  padding: 0;
}

#d-pro-movie .video-container,
#d-pro-movie iframe {
  width: 100%;
  margin: 0;
  padding: 0;
  aspect-ratio: 16/9;
  border: 0;
}