/****************************************

  Page Block

*****************************************/
.bl_page_heading {
  margin-bottom: 24px;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  border-bottom: 1px solid #707070;
  padding-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .bl_page_heading {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_heading {
    font-size: 3.6rem;
  }
}

/****************************************

  NewsPage Block

*****************************************/
.bl_page_news_listitem {
  margin-bottom: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 20px;
  font-family: "Noto Serif JP", serif;
  border: 1px solid #cccccc;
  position: relative;
  display: flex;
  align-items: center;
}
.bl_page_news_list_thumbnail{
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 15px;
}
.bl_page_news_listlink {
  position: relative;
  display: flex;
  flex-direction: column;
}
.bl_page_news_listdate {
  margin-bottom: 4px;
  margin-right: 24px;
  letter-spacing: 0;
}
.bl_page_news_listttl {
  margin-right: 24px;
}
.bl_page_news_listarrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 10px;
}
@media screen and (min-width: 960px) {
  .bl_page_news_list_thumbnail{
    width: 180px;
    height: 180px;
    margin-right: 50px;
  }
  .bl_page_news_listarrow{
    right: 30px;
  }
}
/****************************************

  modelPage Block

*****************************************/
#news{
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}
.bl_attribute_list{
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  padding: 25px 20%;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.el_current_term{
  border-bottom: 1px solid black;
}

.ly_model{
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}
.bl_mediaCard_wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.bl_mediaCard_item{
  position: relative;
}
.bl_mediaCard_item img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.bl_mediaCard_item__model{
  text-align: center;
}
.bl_mediaCard_item__model .hp_fc_g{
  font-size: 12px;
}
.bl_mediaCard_item__model p{
  /* overflow-wrap: break-word; */
  line-break: anywhere;
}
@media screen and (min-width: 560px) {
  .bl_mediaCard_wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }
  .bl_mediaCard_item__model .hp_fc_g{
    font-size: 14px;
  }

}
/****************************************

  FlowPage Block

*****************************************/
@media screen and (min-width: 560px) {
  .bl_page_flow_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .bl_page_flow_list {
    margin-bottom: 100px;
  }
}
.bl_page_flow_listitem {
  margin-bottom: 32px;
}
@media screen and (min-width: 560px) {
  .bl_page_flow_listitem {
    width: 46%;
  }
  .bl_page_flow_listitem:nth-of-type(2n) {
    margin-left: 8%;
  }
}
@media screen and (min-width: 768px) {
  .bl_page_flow_listitem {
    width: 30%;
  }
  .bl_page_flow_listitem:nth-of-type(2n) {
    margin-left: 0;
  }
  .bl_page_flow_listitem:not(:nth-of-type(3n)) {
    margin-right: 5%;
  }
}
.bl_page_flow_listttl {
  margin-bottom: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
}
.bl_page_flow_listttl > span {
  margin-left: 8px;
  font-size: 1rem;
}
@media screen and (min-width: 560px) {
  .bl_page_flow_listttl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .bl_page_flow_listttl {
    font-size: 2rem;
  }
  .bl_page_flow_listttl > span {
    font-size: 1.2rem;
  }
}

/****************************************

  FAQPage Block

*****************************************/
@media screen and (min-width: 768px) {
  .bl_page_faq_list {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_faq_list {
    margin-bottom: 150px;
  }
}
.bl_page_faq_listitem {
  position: relative;
  margin-bottom: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 6%;
  padding-right: 40px;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .bl_page_faq_listitem {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 40px;
    padding-right: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_faq_listitem {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.bl_page_faq_icon {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}
.bl_page_faq_icon > span {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #707070;
  transition: all 0.4s ease-in-out;
}
.bl_page_faq_icon > span:nth-of-type(2) {
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .bl_page_faq_icon {
    right: -40px;
  }
}
.bl_page_faq_question {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  line-height: 1.6;
}
.bl_page_faq_question:before {
  content: "Q.";
  margin-right: 4px;
}
@media screen and (min-width: 1024px) {
  .bl_page_faq_question {
    font-size: 1.5rem;
  }
}
.bl_page_faq_answer {
  display: none;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  line-height: 1.6;
}
.bl_page_faq_answer:before {
  content: "A.";
  margin-right: 4px;
}
@media screen and (min-width: 1024px) {
  .bl_page_faq_answer {
    font-size: 1.5rem;
  }
}

.bl_faq_check:checked ~ .bl_page_faq_question .bl_page_faq_icon {
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.bl_faq_check:checked ~ .bl_page_faq_question .bl_page_faq_icon > span:nth-of-type(2) {
  -webkit-animation: voice-icon 0.4s ease-in-out 0s forwards;
          animation: voice-icon 0.4s ease-in-out 0s forwards;
}
.bl_faq_check:checked ~ .bl_page_faq_question {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #707070;
}
.bl_faq_check:checked ~ .bl_page_faq_answer {
  display: flex;
}

/****************************************

  VoicePage Block

*****************************************/
@media screen and (min-width: 768px) {
  .bl_page_voice_list {
    margin-bottom: 100px;
  }
}
.bl_page_voice_listitem {
  position: relative;
  margin-bottom: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 6%;
  padding-right: 6%;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .bl_page_voice_listitem {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_voice_listitem {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.bl_page_voice_icon {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}
.bl_page_voice_icon > span {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #707070;
  transition: all 0.4s ease-in-out;
}
.bl_page_voice_icon > span:nth-of-type(2) {
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .bl_page_voice_icon {
    right: -40px;
  }
}
.bl_page_voice_ttl {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  line-height: 1.6;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 1024px) {
  .bl_page_voice_ttl {
    font-size: 1.5rem;
  }
}
.bl_page_voice_txt {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .bl_page_voice_txt {
    font-size: 1.5rem;
  }
}

.bl_voice_check:checked ~ .bl_page_voice_ttl .bl_page_voice_icon {
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.bl_voice_check:checked ~ .bl_page_voice_ttl .bl_page_voice_icon > span:nth-of-type(2) {
  -webkit-animation: voice-icon 0.4s ease-in-out 0s forwards;
          animation: voice-icon 0.4s ease-in-out 0s forwards;
}
.bl_voice_check:checked ~ .bl_page_voice_ttl {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #707070;
}
.bl_voice_check:checked ~ .bl_page_voice_txt {
  display: block;
}

@-webkit-keyframes voice-icon {
  0% {
    opacity: 1;
  }
  100% {
    transform: rotate(0);
    opacity: 0;
  }
}

@keyframes voice-icon {
  0% {
    opacity: 1;
  }
  100% {
    transform: rotate(0);
    opacity: 0;
  }
}
/****************************************

  AboutPage Block

*****************************************/

.bl_table{
  width: 100%;
  text-align: left;
  margin-bottom: 50px;
}
.bl_table table{
  width: 100%;
}
.bl_table  th,
.bl_table  td{
  width: 100%;
  padding-left: 0;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  font-weight: normal;
  display: block;
}
.bl_table  td{
  margin-bottom: 20px;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 1024px) {
  .bl_table{
    margin-top: 100px;
    margin-bottom: 150px;
  }
  .bl_table table{
    /*セル同士の間に隙間を空けない*/
    border-collapse:collapse;		
  }
  .bl_table  th,
  .bl_table  td{
    display: table-cell;
    width: 80%;
    padding: 20px;
  }
  .bl_table  th{
    width: 20%;
    border-bottom: 1px solid #707070;
  }
}

@media screen and (min-width: 1024px) {
  .bl_page_about_flex {
    /* display: flex; */
    justify-content: space-between;
    align-items: flex-start;
  }
}
.bl_page_about_box {
  margin-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  .bl_page_about_box {
    margin-bottom: 64px;
    /* width: 46%; */
  }
}
.bl_page_about_txt {
  font-family: "Noto Serif JP", serif;
  line-height: 2;
}
.bl_page_about_txt:not(:last-of-type) {
  margin-bottom: 16px;
}
.bl_page_about_map {
  margin-bottom: 50px;
}
.bl_page_about_map iframe,
.bl_page_about_map object,
.bl_page_about_map embed {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: .3s;
}
.bl_page_about_map iframe:hover,
.bl_page_about_map object:hover,
.bl_page_about_map embed:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}
@media screen and (min-width: 768px) {
  .bl_page_about_map {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_about_map {
    margin-bottom: 150px;
  }
}

/****************************************

  ServicePage Block

*****************************************/
.bl_page_service_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 6%;
  padding-right: 6%;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .bl_page_service_box {
    flex-direction: row;
    justify-content: space-around;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_service_box {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.bl_page_service_box_inner {
  font-family: "Noto Serif JP", serif;
}
.bl_page_service_box_inner:not(:last-of-type) {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .bl_page_service_box_inner:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.bl_page_service_box_name {
  margin-bottom: 4px;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_page_service_box_name {
    text-align: left;
  }
}
.bl_page_service_box_price {
  font-size: 2rem;
  text-align: center;
}
.bl_page_service_box_price > span {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .bl_page_service_box_price {
    text-align: left;
  }
}
.bl_page_service_box_cp {
  font-size: 2.4rem;
  text-align: center;
}
.bl_page_service_box_cp > span {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .bl_page_service_box_cp {
    text-align: left;
  }
}
.bl_page_service_arrow {
  margin-bottom: 24px;
  width: 12px;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .bl_page_service_arrow {
    margin-bottom: 0;
    width: 64px;
    transform: none;
  }
}
.bl_page_service_boxarrow {
  margin-bottom: 8px;
  width: 12px;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .bl_page_service_boxarrow {
    margin-bottom: 0;
    width: 64px;
    transform: none;
  }
}

.bl_page_service_list {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .bl_page_service_list {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_service_list {
    margin-bottom: 150px;
  }
}
.bl_page_service_listitem {
  border: 1px solid #cccccc;
}
.bl_page_service_listitem:not(:last-of-type) {
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .bl_page_service_listitem {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.bl_page_service_listttl {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 6%;
  padding-right: 6%;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 1024px) {
  .bl_page_service_listttl {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
    width: 24%;
    border-bottom: none;
    border-right: 1px solid #707070;
  }
}
.bl_page_service_list_boxwrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 6%;
  padding-right: 6%;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .bl_page_service_list_boxwrap {
    flex-direction: row;
    justify-content: space-around;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_service_list_boxwrap {
    padding-top: 32px;
    padding-bottom: 32px;
    width: 76%;
  }
}
.bl_page_service_list_boxttl {
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .bl_page_service_list_boxttl {
    text-align: left;
  }
}
.bl_page_service_list_boxprice {
  margin-bottom: 8px;
  text-align: center;
  font-size: 2rem;
}
.bl_page_service_list_boxprice > span {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .bl_page_service_list_boxprice {
    margin-bottom: 0;
    text-align: left;
  }
}
.bl_page_service_list_boxcp {
  text-align: center;
  font-size: 2.4rem;
}
.bl_page_service_list_boxcp > span {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .bl_page_service_list_boxcp {
    text-align: left;
  }
}
.bl_page_service_list_note {
  margin-top: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .bl_page_service_list_note {
    font-size: 1.4rem;
  }
}

/****************************************

 Audition

*****************************************/
.bl_audition_flow{
  margin-top: 100px;
}
.bl_audition_flow_item{
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px solid black;
}
.bl_audition_flow_item p{
  display: flex;
  align-items: center;
}
.bl_audition_flow_ttl{
  margin-bottom: 15px;
}
.bl_audition_flow_num{
  margin-right: 30px;
  padding: 25px;
  color: white;
  font-size: 20px;
  background-color: black;
}
@media screen and (min-width: 1200px) {
  .bl_audition_flow_item{
    display: flex;
    align-items: stretch;
  }
  .bl_audition_flow_ttl{
    margin-right: 100px;
    margin-bottom: 0px;
  }
}

/****************************************

  Helper

*****************************************/
.hp_fc_g{
  color: #CCCCCC;
}

/*# sourceMappingURL=page.css.map */