@charset "utf-8";

body{
  font-family: "Noto Sans JP", sans-serif;
  
}
 
/* body設定 */

.qu_container {
  max-width: 1040px;
  margin: 0 auto;
}

/* container設定 */


.qu_top_img{
  height: 300px;
  text-align: center;
}
.qu_header_img_pic{
  height: 300px;
}
/* ↑top設定 */

.qu_content{
  max-width: 1040px;
  margin-top: 60px;
  margin-bottom: 48px;
}
/* content設定 */


.qu_content_q {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 195px;
  margin-bottom: 12px;
  padding: 0 3rem;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: hsla(24, 39%, 79%, 0.3);
  z-index: 0;
}

.qu_content_q_text {
  margin-bottom: 0.2rem;
  font-size: 28px;
  line-height: 1.5;
  font-weight   : bold;
  text-align: center;
  color: #c1ab9c;
}

.qu_content_q_text::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-60%);
  color: rgba(222, 197, 180, 0.5);
  font-size: 160px;
  text-transform: uppercase;
  content: 'q';
  z-index: -1;
}

/* Q設定 */


.qu_content_a {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 4/1;
  padding: 0 1rem;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: rgba(179, 218, 170, 0.3);
  z-index: 0;
}

.qu_content_a_text {
  margin-bottom: 0.2rem;
  font-weight   : bold;
  font-size: 16px;
  line-height: 1.5;
  color: #92b38a;
}

.qu_content_a_text::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: rgba(179, 217, 169, 0.5);
  font-size: 160px;
  text-transform: uppercase;
  content: 'a';
  z-index: -1;
}

/* A設定 */


@media (max-width:768px){

  .qu_content{
    margin-top: 48px;
    margin-right: 20px;
    margin-left: 20px;
  }
/* content */

.qu_header_img_pic{
  width: 100%;
}

  .qu_content_q{
    width: 100%;
    height: 175px;
  }

  .qu_content_q_bgt{
    font-size: 140px;
  }

  .qu_content_q_text{
    font-size: 22px;
  }
/* Q */

  .qu_content_a{
    aspect-ratio: 2/1;
  }

  .qu_content_a_bgt{
    font-size: 140px;
  }

  .qu_content_a_text{
    font-size: 14px;
    padding: 1rem;
  }
/* A */


}



