@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&family=Montserrat:wght@500&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
/*common*/
main {
  position: relative;
}
@media screen and (min-width: 769px) {
  main {
    background: url("../img/cont_bg.jpg") center center repeat;
    background-size: 136.6rem auto;
  }
}
@media screen and (max-width: 768px) {
  main {
    background: url("../img/cont_bg.jpg") center center repeat;
    background-size: 100% auto;
  }
}

a {
  cursor: pointer;
}

#interview_main {
  position: relative;
  width: 100%;
  background-image: url(../../interview/img/kv-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 110% center;
}
@media screen and (1280) {
  #interview_main {
    background-position: right center;
  }
}
@media screen and (max-width: 768px) {
  #interview_main {
    background-image: url(../../interview/img/kv-bg-sp.png);
    background-position: center bottom;
  }
}

#interview_main .inner {
  position: relative;
}
@media screen and (min-width: 769px) {
  #interview_main .inner {
    padding: 15rem 11.5rem 6.5rem;
  }
}
@media screen and (max-width: 768px) {
  #interview_main .inner {
    padding: 8rem 0 0;
  }
}

#interview_main .h_group {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  #interview_main .h_group {
    gap: 3rem;
    margin-left: 5rem;
  }
}
@media screen and (max-width: 768px) {
  #interview_main .h_group {
    gap: 5rem;
  }
}

@media screen and (min-width: 769px) {
  #interview_main .h_group h2 {
    width: 44.4rem;
  }
}
@media screen and (max-width: 768px) {
  #interview_main .h_group h2 {
    width: 20rem;
    margin: 0 auto;
  }
}

@media screen and (min-width: 769px) {
  #interview_main .h_group h2::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #interview_main .h_group h2::before {
    content: "";
    background-image: url(../../interview/img/ttl_sp_decoration.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 12rem;
    right: -1.5rem;
    width: 6.15rem;
    height: 5.56rem;
  }
}

#interview_main .h_group p {
  position: relative;
  display: block;
  font-weight: 700;
  letter-spacing: 0em;
  color: #333;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #interview_main .h_group p {
    line-height: 1.438em;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  #interview_main .h_group p {
    line-height: 1.563em;
    font-size: 1.6rem;
    text-align: center;
  }
}

#interview_main figure {
  position: absolute;
}
@media screen and (min-width: 769px) {
  #interview_main figure {
    top: 3.5rem;
    left: 60rem;
    width: 52rem;
  }
}
@media screen and (max-width: 768px) {
  #interview_main figure {
    position: relative;
    margin-top: 0rem;
    width: 36rem;
    transform: translateX(-1.5rem);
  }
}

#local_nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
@media screen and (min-width: 769px) {
  #local_nav {
    margin-top: 4.2rem;
    width: 47rem;
    height: 9.6rem;
    border-radius: 4.8rem;
    padding: 0 4.8rem;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #local_nav {
    margin-top: 0;
    width: calc(100% + 5.5rem);
    margin-left: -2.75rem;
    border-radius: 0;
    padding: 1.7rem 2.4rem;
    gap: 1.5rem;
  }
}

#local_nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: #457cca 1px solid;
  background: #dce7f7;
  padding-left: 3rem;
}
@media screen and (min-width: 769px) {
  #local_nav a {
    width: 18.6rem;
    height: 5.6rem;
    border-radius: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  #local_nav a {
    width: 16rem;
    height: 4.8rem;
    border-radius: 2.8rem;
  }
}

#local_nav a p {
  position: relative;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0em;
  color: #457cca;
  margin-right: 1.6rem;
}
@media screen and (min-width: 769px) {
  #local_nav a p {
    line-height: 1em;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  #local_nav a p {
    line-height: 1.75em;
    font-size: 1.6rem;
  }
}

#local_nav a > span {
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-40%);
}
@media screen and (min-width: 769px) {
  #local_nav a > span {
    right: 2rem;
    width: 1.2rem;
    height: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  #local_nav a > span {
    transform: translateY(-50%);
    right: 2rem;
    width: 1.2rem;
    height: 0.9rem;
  }
}
#local_nav a > span {
  margin: 0;
  transition: 0.4s ease-in-out;
}

@media screen and (min-width: 769px) {
  #local_nav a:hover > span {
    transform: translateY(-10%);
  }
}

.day_set {
  position: relative;
}

.day_set::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff8fbc;
  opacity: 0.25;
}

.day_set#day1_afternoon::before {
  background: #ffe65a;
}

.day_set .bg_dot {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../interview/img/dot.png") 0 0 repeat;
  opacity: 0.8;
}
@media screen and (min-width: 769px) {
  .day_set .bg_dot {
    background-size: 1.2rem auto;
    height: 28.5rem;
  }
}
@media screen and (max-width: 768px) {
  .day_set .bg_dot {
    background-size: 1.2rem auto;
    height: 28.5rem;
  }
}

.day_set#day1_afternoon .bg_dot {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .day_set#day1_afternoon .bg_dot {
    background-size: 1.2rem auto;
    height: 19.5rem;
  }
}
@media screen and (max-width: 768px) {
  .day_set#day1_afternoon .bg_dot {
    background-size: 1.2rem auto;
    height: 28.5rem;
  }
}

.day_set .inner {
  position: relative;
}
@media screen and (min-width: 769px) {
  .day_set .inner {
    padding: 7rem 0 7rem;
  }
}
@media screen and (max-width: 768px) {
  .day_set .inner {
    padding: 6rem 0 6rem;
    margin-left: 0;
    margin-right: 0;
    width: 37.5rem;
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }
}

@media screen and (min-width: 769px) {
  .day_set#day1_afternoon .inner {
    padding: 7rem 0 10rem;
  }
}
@media screen and (max-width: 768px) {
  .day_set#day1_afternoon .inner {
    padding: 6rem 2.75rem 8rem;
  }
}

.day_set .h_group {
  position: relative;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .day_set .h_group {
    margin: 0 auto;
    background: url("../../interview/img/h3_bg_morning.svg") center center no-repeat;
    width: 77.4rem;
    height: 4.4rem;
  }
}
@media screen and (max-width: 768px) {
  .day_set .h_group {
    margin: 0 auto;
    background: url("../../interview/img/h3_bg_sp.svg") center center no-repeat;
    width: 23.4rem;
    height: 5rem;
  }
}

@media screen and (min-width: 769px) {
  .day_set#day1_afternoon .h_group {
    background: url("../../interview/img/h3_bg_afternoon.svg") center center no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .day_set#day1_afternoon .h_group {
    background: url("../../interview/img/h3_bg_sp_orange.svg") center center no-repeat;
  }
}

.day_set .h_group h3 {
  position: relative;
  display: block;
  font-weight: 600;
  letter-spacing: 0em;
  color: #ff8fbc;
  margin: 0;
  overflow: visible;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .day_set .h_group h3 {
    line-height: 1em;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 768px) {
  .day_set .h_group h3 {
    line-height: 1em;
    font-size: 1.5rem;
  }
}

.day_set#day1_afternoon .h_group h3 {
  color: #fdaa36;
}

.day_set .h_group h3 .day_count {
  position: absolute;
  display: inline-block;
  background-position: center center;
  background-size: 100%;
  color: white;
}
@media screen and (min-width: 769px) {
  .day_set .h_group h3 .day_count {
    background-image: url(../../interview/img/h3_bg_flag.png);
    width: 8.2rem;
    height: 6.95rem;
    top: -1rem;
    left: 3.6rem;
    line-height: 1.2em;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .day_set .h_group h3 .day_count {
    top: 1.6rem;
    width: 11rem;
    line-height: 1.429em;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
  }
}

@media screen and (min-width: 769px) {
  .day_set#day1_afternoon .h_group h3 .day_count {
    background-image: url(../../interview/img/h3_bg_flag_orange.png);
  }
}

.day_set .h_group h3 .day_count .day_count_text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.day_set .h_group h3 .ampm {
  display: block;
  background-position: center center;
  background-size: 100%;
  color: #ff8fbc;
}
@media screen and (min-width: 769px) {
  .day_set .h_group h3 .ampm {
    position: absolute;
    width: 8.2rem;
    height: 4.2rem;
    top: 0.2rem;
    left: 13.5rem;
    line-height: 1em;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 768px) {
  .day_set .h_group h3 .ampm {
    position: absolute;
    line-height: 1.313em;
    font-size: 2rem;
    width: 8.2rem;
    height: 4.2rem;
    top: 0.6rem;
    left: 10.5rem;
  }
}

.day_set#day1_afternoon .h_group h3 .ampm {
  color: #fdaa36;
}

.day_set .h_group h3 .ampm .ampm_text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tree {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .tree {
    margin-top: 3.5rem;
    gap: 2.5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .tree {
    margin-top: 3.5rem;
    gap: 2rem;
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 769px) {
  .tree.continue {
    margin-top: 0;
    padding-top: 3.5rem;
    gap: 2.5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .tree.continue {
    margin-top: 0;
    padding-top: 7rem;
    gap: 2.5rem;
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 769px) {
  .tree.no-branch {
    margin-top: 0;
    padding-top: 2.5rem;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .tree.no-branch {
    margin-top: 0;
    padding-top: 3.5rem;
    gap: 2.5rem;
    padding-bottom: 10rem;
  }
}

@media screen and (min-width: 769px) {
  .tree.last {
    margin-top: 0;
    padding-top: 3.5rem;
    gap: 2.5rem;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .tree.last {
    margin-top: 0;
    padding-top: 9.5rem;
    gap: 2.5rem;
  }
}

.tree::before {
  position: absolute;
  content: "";
  left: 48%;
  transform: translateX(-50%);
  width: 0.3rem;
  height: 100%;
  background: #457cca;
}
@media screen and (min-width: 769px) {
  .tree::before {
    top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .tree::before {
    top: 1rem;
  }
}

@media screen and (min-width: 769px) {
  #day1_afternoon .tree::before {
    top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #day1_afternoon .tree::before {
    top: 1rem;
  }
}

@media screen and (min-width: 769px) {
  #day1_afternoon .tree.no-branch::before {
    top: 0rem;
  }
}
@media screen and (max-width: 768px) {
  #day1_afternoon .tree.no-branch::before {
    top: 1rem;
  }
}

.tree.last::before {
  top: -2rem;
}
@media screen and (max-width: 768px) {
  .tree.last::before {
    top: -7rem;
  }
}

@media screen and (min-width: 769px) {
  #day1_afternoon .tree.last {
    margin-top: 0;
    padding-top: 3.5rem;
    gap: 2.5rem;
    padding-bottom: 0;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  #day1_afternoon .tree.last {
    margin-top: 0;
    padding-top: 9.5rem;
    gap: 2.5rem;
  }
}

#day1_afternoon .tree.last::before {
  top: -2rem;
}
@media screen and (max-width: 768px) {
  #day1_afternoon .tree.last::before {
    top: -7rem;
  }
}

.tree.no-branch::before,
.tree.continue::before,
#day1_afternoon .tree.continue::before {
  top: 0;
}

.tree dl {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0em;
  color: #457cca;
  margin: 0;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .tree dl {
    line-height: 1.667em;
    font-size: 1.8rem;
    min-height: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .tree dl {
    line-height: 1.445em;
    font-size: 1.8rem;
    width: 32rem;
    min-height: 4.3rem;
    align-items: flex-start;
  }
}

.tree dl {
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
  transform: translateX(0) scale(1);
}
.tree dl::before, .tree dl::after {
  position: absolute;
  content: "";
  top: 0;
  left: -1.98%;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 769px) {
  .tree dl::before, .tree dl::after {
    background-size: 2rem auto;
  }
}
@media screen and (max-width: 768px) {
  .tree dl::before, .tree dl::after {
    top: 0rem;
    height: 2.7rem;
    background-size: 2rem auto;
  }
}
.tree dl::before {
  background-image: url("../../interview/img/point.svg");
  opacity: 1;
  z-index: 1;
}
.tree dl::after {
  background-image: url("../../interview/img/star.svg");
  opacity: 0;
  z-index: 2;
  background-size: 2.7rem auto;
}
.tree dl.is-active {
  color: #ff73ab;
}
@media screen and (min-width: 769px) {
  .tree dl.is-active {
    transform: translateX(0.3%) scale(1.2);
  }
}
.tree dl.is-active::before {
  opacity: 0;
}
.tree dl.is-active::after {
  opacity: 1;
}

#day1_afternoon .tree dl::after {
  background-image: url("../../interview/img/star2.svg");
}
#day1_afternoon .tree dl.is-active {
  color: #fdaa36;
}

@media screen and (max-width: 768px) {
  #day1_afternoon .tree dl::before {
    top: 0rem;
  }
}

.tree dl dt {
  position: relative;
  width: 47%;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .tree dl dt {
    transform: translateY(0.1rem);
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .tree dl dt {
    padding-right: 3.5rem;
  }
}

.tree dl dd {
  position: relative;
  width: 50%;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .tree dl dd {
    transform: translateY(0.1rem);
    padding-left: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .tree dl dd {
    padding-left: 2.5rem;
  }
}

#day1_morning .inner {
  position: relative;
}
@media screen and (min-width: 769px) {
  #day1_morning .inner {
    background: url(../../interview/img/day_1_bg.png) 7rem 14rem no-repeat;
    background-size: 94% auto;
  }
}
@media screen and (max-width: 768px) {
  #day1_morning .inner {
    background: url("../../interview/img/day_1_bg_sp.png") center 10rem no-repeat;
    background-size: 120% auto;
  }
}

#day1_afternoon .inner {
  position: relative;
}
@media screen and (min-width: 769px) {
  #day1_afternoon .inner {
    background: url(../../interview/img/day_1_afternoon_bg.png) 10.6rem 26.7rem no-repeat;
    background-size: 82% auto;
  }
}
@media screen and (max-width: 768px) {
  #day1_afternoon .inner {
    background: url("../../interview/img/day_1_afternoon_bg_sp.png") center 3rem no-repeat;
    background-size: 121.3333333333% auto;
  }
}

.crm {
  position: relative;
}
@media screen and (min-width: 769px) {
  .crm {
    margin: 0 auto;
    width: 77.4rem;
    border: #457cca 0.3rem solid;
    border-radius: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .crm {
    margin: 0 auto;
    width: 32rem;
    border: #457cca 0.3rem solid;
    border-radius: 1.5rem;
  }
}

.crm::before {
  position: absolute;
  content: "";
  top: 1rem;
  left: 1rem;
  width: 100%;
  height: 100%;
  background: #457cca;
  opacity: 0.5;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .crm::before {
    border-radius: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .crm::before {
    border-radius: 1.5rem;
  }
}

.crm .inner_box {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  /* ベースの白背景 + 格子状のグラデーション指定 */
  background-color: #fff;
  background-image: linear-gradient(#e6f0fa 1px, transparent 1px), linear-gradient(90deg, #e6f0fa 1px, transparent 1px);
}
@media screen and (min-width: 769px) {
  .crm .inner_box {
    justify-content: space-between;
    align-items: center;
    border: rgba(206, 228, 255, 0.5333333333) 0.8rem solid;
    border-radius: 1.5rem;
    padding: 4.5rem 33rem 4rem 4rem;
    /* PC用の格子のサイズ（縦横20px間隔） */
    background-size: 2rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .crm .inner_box {
    justify-content: space-between;
    align-items: center;
    border: #cee4ff 0.8rem solid;
    border-radius: 1.5rem;
    padding: 4rem 2.4rem 14rem;
    /* SP用の格子のサイズ（縦横15px間隔） */
    background-size: 1.5rem 1.5rem;
  }
  .crm .inner_box.battle {
    padding: 4rem 2.4rem 13rem;
  }
}

/* 全体枠（ドロップシャドウ・位置判定の基準） */
.to-reader {
  position: relative;
  margin: 0 auto;
  width: 77.4rem;
  box-sizing: border-box;
  filter: drop-shadow(6px 6px 0px rgba(67, 199, 215, 0.35));
}
@media screen and (max-width: 768px) {
  .to-reader {
    margin: 0 auto;
    width: 32rem;
    filter: drop-shadow(4px 4px 0px rgba(67, 199, 215, 0.35));
  }
}

/* 1. 吹き出しグループ（clip-pathの外にあるため見切れない） */
.to-reader .h4_group {
  position: absolute;
  z-index: 10;
  /* 背景画像を吹き出し全体に綺麗にフィットさせる */
  background: url("../../interview/img/speech-balloon.svg") center center/contain no-repeat;
  /* 内部の h4 文字を中央に揃える */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .to-reader .h4_group {
    top: -1rem;
    left: 18.5rem;
    width: 18.3rem;
    height: 4.2rem;
  }
}
@media screen and (max-width: 768px) {
  .to-reader .h4_group {
    top: -1.2rem;
    left: 6.8rem;
    width: 18.3rem;
    height: 4.2rem;
  }
}
.to-reader .h4_group {
  /* 2. 吹き出し内の文字 (h4) の設定 */
}
.to-reader .h4_group h4 {
  margin: 0;
  padding: 0 0 0.8rem 0;
  /* 吹き出しの尻尾分、少し上に文字を寄せる調整 */
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  /* デザインに合わせた文字色（白など）に変更してください */
  text-align: center;
  line-height: 1.2;
  font-family: "Zen Maru Gothic";
  font-weight: Black;
}

/* 3. メインのカード本体 */
.to-reader__content {
  position: relative;
  background-color: #ffffff;
  border: 6px solid #43c7d7;
  padding: 4.5rem 3.5rem 3.5rem 17.5rem;
}
@media screen and (max-width: 768px) {
  .to-reader__content {
    padding: 3rem 1.5rem 2rem 9rem;
  }
}
.to-reader__content {
  box-sizing: border-box;
  width: 100%;
  letter-spacing: 0.02rem;
  /* 外枠の切り欠き */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 38px) 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .to-reader__content {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
  }
}

/* 内側の細い線枠 */
.to-reader__content::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 12px;
  right: 12px;
  bottom: 6px;
  border: 1px solid #43c7d7;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .to-reader__content::before {
    left: 6px;
    right: 6px;
  }
}
.to-reader__content::before {
  /* 本体に合わせて右下角を斜めに切り落とす */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.to-reader__content .to-reader-text {
  color: #40bdc9;
  font-weight: 600;
}

/* 右下の「めくれ（折り返し）」部分 */
.to-reader::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38px;
  height: 30px;
  background-color: #43c7d7;
  /* 折れ返しの表面（水色） */
  /* 三角形にカット */
  clip-path: polygon(0 0, 0 100%, 100% 0);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .to-reader::after {
    width: 26px;
    height: 26px;
  }
}

.to-reader-chara {
  position: absolute;
  bottom: 0;
  left: -2rem;
  width: 20.2rem;
}
@media screen and (max-width: 768px) {
  .to-reader-chara {
    left: -7.5rem;
    width: 19.6rem;
  }
}

.crm .h4_group {
  position: absolute;
  left: 0;
  width: 100%;
  background: url("../../interview/img/crm_ttl.png") 1rem 0 no-repeat;
  z-index: 5;
}
@media screen and (min-width: 769px) {
  .crm .h4_group {
    background-size: 22.7rem auto;
    top: -2.2rem;
    height: 5.9rem;
  }
}
@media screen and (max-width: 768px) {
  .crm .h4_group {
    background-size: 22.7rem auto;
    top: -2.5rem;
    height: 5.9rem;
    left: 3.2rem;
  }
}

.crm .h4_group h4 {
  position: relative;
  display: flex;
  font-weight: 700;
  letter-spacing: 0em;
  color: #fff;
  margin-top: 2.1rem;
  width: 22.7rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  transform: translateY(0.2rem) rotate(-6deg);
  font-family: "Zen Maru Gothic";
}
@media screen and (min-width: 769px) {
  .crm .h4_group h4 {
    line-height: 1em;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .crm .h4_group h4 {
    margin-top: 2.1rem;
    margin-left: 0.7rem;
    line-height: 1em;
    font-size: 1.8rem;
  }
}

.crm .h4_group h4 span {
  position: relative;
  display: inline-block;
  font-family: "Zen Maru Gothic";
}
@media screen and (min-width: 769px) {
  .crm .h4_group h4 span {
    line-height: 1.5em;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .crm .h4_group h4 span {
    line-height: 1em;
    font-size: 1.3rem;
  }
}

.crm .inner_box p {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #457cca;
  margin: 0;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .crm .inner_box p {
    width: 48.5rem;
    line-height: 1.75em;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .crm .inner_box p {
    width: 48.5rem;
    line-height: 1.75em;
    font-size: 1.6rem;
  }
}

.to-reader .to-reader-text p {
  width: 100%;
  line-height: 1.75em;
  font-size: 1.6rem;
}

.crm .inner_box a {
  position: absolute;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .crm .inner_box a {
    width: 33rem;
    right: -3rem;
    transform: translateY(-50%);
    top: 45%;
  }
}
@media screen and (max-width: 768px) {
  .crm .inner_box a {
    width: 29.8rem;
    right: 0rem;
    top: initial;
    bottom: -8.5rem;
  }
}

@media screen and (max-width: 768px) {
  .crm .inner_box.battle a {
    bottom: -10.5rem;
  }
}

.crm .inner_box a .zoom-up {
  position: absolute;
  bottom: 0rem;
  left: -2rem;
  width: 8rem;
}
@media screen and (max-width: 768px) {
  .crm .inner_box a .zoom-up {
    left: initial;
    right: -3rem;
  }
}

.crm .inner_box a figure {
  width: 100%;
}

.float-area {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  max-width: 160rem;
}
@media screen and (max-width: 768px) {
  .float-area {
    max-width: 32rem;
  }
}
.float-area {
  z-index: 100;
  pointer-events: none;
}

.float-chara {
  position: absolute;
  background-image: url(../../interview/img/float-chara.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 36.8rem;
  height: 15rem;
  bottom: 4rem;
  left: 3.2rem;
  box-sizing: border-box;
  font-weight: 700;
  padding: 1.5rem 1.8rem 1.8rem 13rem;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .float-chara {
    background-image: url(../../interview/img/float-chara-sp.png);
    padding: 1.2rem 2.1rem 1.6rem 12rem;
    width: 33.8rem;
    height: 11.3rem;
    bottom: 6rem;
    left: 0rem;
  }
}

.float-chara .time {
  position: absolute;
  display: flex;
  left: 2.2rem;
  top: 3.8rem;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .float-chara .time {
    left: 1.5rem;
    top: 0.5rem;
  }
}
.float-chara .time {
  line-height: 1.25em;
  font-size: 1.6rem;
  width: 10rem;
}
.float-chara .time .time-icon {
  width: 2.5rem;
}
.float-chara .time .time-icon img {
  width: 20%;
}
.float-chara .time .time-text {
  width: 8rem;
  flex-shrink: 0;
  /* 幅の縮小を防ぐ */
  text-align: left;
  /* または start */
}
.float-chara .time .time-text .time-item {
  margin-left: 0.5rem;
}

/* 1. 出現用のアニメーション定義 */
.pop_in_float {
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .pop_in_float {
    transform: translateY(5rem);
  }
}
@media screen and (max-width: 768px) {
  .pop_in_float {
    transform: translateY(4rem);
  }
}

/* 1. ベース定義（非表示状態） */
.float-chara {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* 消える（.activeが外れる）時のアニメーションを設定 */
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
@media screen and (min-width: 769px) {
  .float-chara {
    transform: translateY(5rem);
  }
}
@media screen and (max-width: 768px) {
  .float-chara {
    transform: translateY(4rem);
  }
}

/* 1. ベース定義（非表示時のデフォルト位置） */
.float-chara {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* 通常の消去時（.activeが外れたとき）のフェード＆スライド設定 */
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
@media screen and (min-width: 769px) {
  .float-chara {
    transform: translateY(5rem);
  }
}
@media screen and (max-width: 768px) {
  .float-chara {
    transform: translateY(4rem);
  }
}

/* 2. 出現時 (.active) */
.float-chara.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  /* 出現時のみバウンス＋遅延(0.3s) */
  transition: all 400ms cubic-bezier(0.28, 0.85, 0.655, 1.585);
  transition-delay: 0.3s;
}

/* 3. registration到達時 (.is-hidden) */
.float-chara.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  /* .active の遅延(0.3s)を打ち消してすぐ消去アニメーションを開始 */
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease !important;
  transition-delay: 0s !important;
  /* 元の位置（下方向）へスライドしながら消す */
}
@media screen and (min-width: 769px) {
  .float-chara.is-hidden {
    transform: translateY(5rem) !important;
  }
}
@media screen and (max-width: 768px) {
  .float-chara.is-hidden {
    transform: translateY(4rem) !important;
  }
}

.float-chara-text {
  margin: 0;
  width: 100%;
  height: 100%;
  color: #40bdc9;
  position: relative;
}
@media screen and (min-width: 769px) {
  .float-chara-text {
    line-height: 1.5em;
    font-size: 1.6rem;
    min-height: 3rem;
  }
}
.float-chara-text {
  /* ↓ SP用のフォントサイズ・行高指定を追加 */
}
@media screen and (max-width: 768px) {
  .float-chara-text {
    line-height: 1.5em;
    font-size: 1.2rem;
    min-height: 2rem;
  }
}
.float-chara-text .text-item {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(-50% + 15px));
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
}
.float-chara-text .text-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s;
}

/* #local_nav のアニメーション定義 */
#local_nav.pop_in {
  /* SP時のみ：親要素のアニメーションを無効化し、内のボタンにアニメーションを適用 */
}
@media screen and (max-width: 768px) {
  #local_nav.pop_in {
    opacity: 1 !important;
    transform: none !important;
    /* ボタン初期状態（非表示・下ズレ） */
  }
  #local_nav.pop_in a.btn {
    opacity: 0;
    transform: translateY(4rem);
    transition: all 400ms cubic-bezier(0.28, 0.85, 0.655, 1.585);
  }
}
#local_nav.pop_in {
  /* active クラスが付与された時 */
}
@media screen and (max-width: 768px) {
  #local_nav.pop_in.active a.btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }
}

.time {
  position: relative;
  /* 親要素のサイズ確保（アイコンやテキストの高さに合わせて調整） */
  width: 100%;
  min-height: 3rem;
  /* アイコンとテキストの共通アニメーション設定 */
}
.time .icon-item,
.time .time-item {
  position: absolute;
  top: 50%;
  left: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(-50% + 15px));
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
}
.time .icon-item.active,
.time .time-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s;
}
.time {
  /* アイコンとテキストの表示位置を分ける場合 */
}
.time .icon-item {
  left: -1rem;
  width: 1.5rem;
  border-radius: 50%;
  /* アイコンの表示位置 */
}
.time .time-item {
  left: 1rem;
  color: #56cbd6;
  -webkit-text-stroke: 4px #fff;
  /* 線の太さと色 */
  paint-order: stroke fill;
  /* アイコンの右側にずらす位置 */
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

/**/
#interview_modal {
  position: fixed;
  /*z-index:8900;*/
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  pointer-events: none;
  overflow: hidden;
  background: url("../../character/img/school/bg_modal.png") 0 0 repeat;
  background-size: 100%;
}
@media screen and (min-width: 769px) {
  #interview_modal {
    padding: 0rem 0;
    z-index: 9900;
  }
}
@media screen and (max-width: 768px) {
  #interview_modal {
    z-index: 8990;
    padding: 0rem;
  }
}
#interview_modal {
  transition: all 300ms cubic-bezier(0.74, 0.255, 0.19, 0.955);
  transition-timing-function: cubic-bezier(0.74, 0.255, 0.19, 0.955);
  opacity: 0;
}

#interview_modal.open {
  opacity: 1;
  pointer-events: auto !important;
}

#interview_modal .inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #interview_modal .inner {
    width: 100%;
    height: 100%;
    padding: 6rem;
  }
}
@media screen and (max-width: 768px) {
  #interview_modal .inner {
    width: 100%;
    padding: 0 3rem;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
#interview_modal .inner {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

#interview_modal .inner > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  min-height: 100%;
}
@media screen and (min-width: 769px) {
  #interview_modal .inner > div {
    gap: 0rem 0;
  }
}
@media screen and (max-width: 768px) {
  #interview_modal .inner > div {
    gap: 0rem 0;
  }
}

#interview_modal .inner #patrol_picture,
#interview_modal .inner #battle_picture,
#interview_modal .inner #laundry_picture {
  margin: 0 auto;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  #interview_modal .inner #patrol_picture,
  #interview_modal .inner #battle_picture,
  #interview_modal .inner #laundry_picture {
    width: 75rem;
  }
}
@media screen and (max-width: 768px) {
  #interview_modal .inner #patrol_picture,
  #interview_modal .inner #battle_picture,
  #interview_modal .inner #laundry_picture {
    width: 100%;
  }
}

#interview_modal .inner #patrol_picture.open,
#interview_modal .inner #battle_picture.open,
#interview_modal .inner #laundry_picture.open {
  height: auto;
  overflow: visible;
  opacity: 1;
}

.close_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: #aaa 1px solid;
  background: #fff;
  margin: 3rem auto 0;
}
@media screen and (min-width: 769px) {
  .close_btn {
    width: 33.6rem;
    height: 7.6rem;
    border-radius: 3.8rem;
  }
}
@media screen and (max-width: 768px) {
  .close_btn {
    position: relative;
    width: 28rem;
    height: 6rem;
    gap: 1rem;
    border-radius: 3.4rem;
  }
}

.close_btn p {
  position: relative;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0em;
  color: #333;
}
@media screen and (min-width: 769px) {
  .close_btn p {
    line-height: 1em;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .close_btn p {
    line-height: 1em;
    font-size: 1.4rem;
  }
}

.close_btn > span {
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .close_btn > span {
    right: 4rem;
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .close_btn > span {
    right: 4rem;
    width: 1.2rem;
    height: 1.2rem;
  }
}
.close_btn > span {
  margin: 0;
  transition: 0.4s ease-in-out;
}

.close_btn {
  transition: ease-in-out 0.4s all;
}

@media screen and (min-width: 769px) {
  .close_btn:hover {
    opacity: 0.7;
  }
}/*# sourceMappingURL=style_interview.css.map */