@charset "UTF-8";
/* フォント */
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 900

.noto-serif-jp-<uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
/* 共通部分 */
:root{
  --black:#242424;
  --white:#fff;
  --gray:#b3b3b3;
  --textcolor:#333333;
}
*,::before,::after{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family:"Noto Serif JP", serif;
  line-height:1.7;
  color: var(--textcolor);
  background:url("../image/background2.jpg");
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  background-color:rgba(244, 245, 255, 0.3);
  background-blend-mode:lighten;
}
img {
  max-width:100%;
  height: auto;
}
a {
  color: var(--graycolor);
  text-decoration-line: none;
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}
/* 下線デコ */
/* letter-spacing: .1em;
text-decoration: underline; 
text-decoration-thickness: 0.5em; 
text-decoration-color: #b3b3b371; 
text-underline-offset: -0.2em; 
text-decoration-skip-ink: none;  */

.top_button>li:nth-child(7){
  background-color: var(--black);
  color: var(--white);
  /* transform: translateY(1.5px);
  box-shadow: none; */
}
.top_button > li:nth-child(7):before{
  border-left: 1.5em solid var(--white);
}
/* インタビュー_個人ページ */
h3{
  display: flex;
  align-items: center;
  width: 100%;
  margin: 4.5% 0 3% 0;
  font-size: clamp(14px,2.25vw,28px);
  font-weight: 800;
}
h3::after{
  content: "";
  display: block;
  background: var(--black);
  width: 20%;
  height: 1px;
  flex-grow: 1;
  margin-left: 1em;
}
.kojin{
  display: flex;
}
.kojin_image{
  width: 40%;
  max-width: 350px;
  display: flex;
  align-items: flex-end;
}
.kojin_text{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 0 0 5%;
}
.kojin_text>h4{
  padding-top: 20%;
  padding-bottom: 10%;
  letter-spacing: .15em;
  text-decoration: underline; 
  text-decoration-thickness: 0.5em; 
  text-decoration-color: #b3b3b371; 
  text-underline-offset: -0.2em; 
  text-decoration-skip-ink: none; 
  line-height: 2.2;
  font-weight: 800;
  font-size: clamp(12px,2.5vw,28px);
}
.kojin_profile{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 8px solid #b3b3b371;
  padding-left: .5em;
}
.kojin_profile>p{
  font-size: clamp(10.5px,1.8vw,20px);
}
.kojin_profile>h5{
  font-size: clamp(14px,2.25vw,24px);
}
.setsumei{
  margin-top: 5%;
  font-size: clamp(10.5px,1.5vw,18px);
}
.question_wrap{
  margin: 5% 0;
}
.question_wrap>h4{
  letter-spacing: .1em;
  text-decoration: underline; 
  text-decoration-thickness: 0.5em; 
  text-decoration-color: #b3b3b371; 
  text-underline-offset: -0.2em; 
  text-decoration-skip-ink: none; 
  font-size: clamp(11px,1.75vw,24px);
}
.question_wrap>p,
.question_image>p{
  padding-top: .5em;
  font-size: clamp(10.5px,1.5vw,18px);
}
.question_image>p{
  padding-right: 1em;
}
.question_image{
  display: flex;
}
.question_image>div{
  width: 60%;
}


.time_schedule>li{
  list-style: none;
}
.day_wrap{
  display: flex;
}
.day_text_image{
  display: inline-block;
  width: 60%;
  vertical-align: top;
}
.day_image{
  display: inline-block;
  width: 30%;
  vertical-align: bottom;
  margin-left: 5%;
}
.time_schedule {
  list-style: none;
  margin: 0 auto 0 4em;
  padding-left: 20px;
  border-left: 6px solid var(--gray);
  box-sizing: border-box;
}

.time_schedule li {
  width: 100%;
  margin: 0 0;
  padding: 5px 0;
  position: relative;
}

.time_schedule span.time {
  width: 5em;
  display: inline-block;
  margin-left: -8em;
  padding: 0 0 5px;
  margin-top: 10px;
  vertical-align: top;
  position: relative;
  text-align: right;
  box-sizing: border-box;
  font-weight: 700;
}

.time_schedule span.time::after {
  content: "";
  position: absolute;
  right: -35px;
  top: 4px;
  background: var(--gray);
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.time_schedule .day_wrap {
  display: inline-block;
  width: 100%;
  margin-left: 40px;
  padding: 15px 10px 15px 10px;
  vertical-align: middle;
  background: var(--white);
  border: 1px solid #333;
  box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.time_schedule .day_title {
  font-size: clamp(12px,1.75vw,24px);
  font-weight: 700;
}

.time_schedule .day_nakami {
  font-size: clamp(10.5px,1.5vw,18px);
  font-weight: normal;
}

#message>p{
  font-size: clamp(12px,1.5vw,18px);
  padding: 0 0 5% 0;
}
#staff_all{
  display: flex;
}
/* #staff_all>div{
  width: 80%;
  margin: 0 auto;
}
.staff_title{
  background-color: var(--black);
  color: var(--white);
  font-weight: 800;
  text-align: center;
  padding: 2%;
  font-size: clamp(18px,2.5vw,32px);
  letter-spacing: .25em;
}
.shinsotsu_ichiran,
.senpai_ichiran{
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-column-gap: 2.5%;
  grid-row-gap: 2%;
}
.shinsotsu_staff p,
.senpai_staff p{
  text-align: start;
  font-size: clamp(8px,1.25vw,14px);
} */
.all_button{
  background: var(--black);
  color: var(--white);
  border-radius: 50px;
  padding: 1em;
  cursor: pointer;
  margin: 2em auto;
  font-size: clamp(10.5px, 1.75vw, 18px);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.25);
  transition: .2s;
}
.all_button:hover{
  transform: translateY(1.5px);
  box-shadow: none;
}
/* タブレット・モバイル */
@media(max-width:600px){
  .kojin_text>h4{
    padding-top: 1em;
  }
  .kojin_text{
    justify-content: space-around;
  }
  .question_image>div{
    width: 115%;
  }
  .day_wrap {
    display: flex;
    flex-direction: column; /* 縦並びにする */
  }

  .day_text_image, .day_image {
    width: 100%; /* 幅を100%にする */
    margin-left: 0; /* マージンをリセット */
  }

  .day_image {
    margin-top: 10px; /* 画像の上にマージンを追加 */
  }
  #message{
    margin-top: 15%;
  }
}