@charset "utf-8";
/* ------------------------------------------------------------------
life
------------------------------------------------------------------ */
/* common
-------------------------------------------------------------- */
#oneday .btn a span,
#appearance .btn a span {
  color: var(--red);
}
.styleh3 {
  background: var(--red);
  font-weight: 700;
}
/* oneday
-------------------------------------------------------------- */
#oneday {
  overflow: hidden;
}
#oneday .message {
  position: relative;
  padding: 50px 80px;
  border: 2px solid var(--navy);
  border-radius: 20px;
}
#oneday .message h3 {
  padding-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
}
#oneday ul {
  padding: 80px 0;
  gap: 100px;
}
#oneday .btn {
  width: calc((100% - 100px) / 2);
}
@media (max-width:767px) {
  #oneday .message {
    padding: 20px 30px;
    border-radius: 10px;
  }
  #oneday .message h3 {
    padding-bottom: 10px;
    font-size: 1.8rem;
  }
  #oneday ul {
    padding: 40px 0 60px;
    gap: 20px;
  }
  #oneday .btn {
    width: 100%;
  }
}
/* day
-------------------------------------------------------------- */
#day {
  position: relative;
  padding: 100px 80px;
  border: 2px solid var(--red);
  border-radius: 20px;
}
#day .headArea {
  padding-bottom: 60px;
  justify-content: space-between;
}
#day .txtArea {
  width: 50%;
}
#day figure {
  width: 42%;
}
#day figure img {
  border-radius: 30px;
  width: 100%;
}
#day h4 {
  padding-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
}
.yellowBox {
  margin-bottom: 60px;
  padding: 50px;
  background: var(--l-yellow);
  border-radius: 20px;
}
.yellowBox dt {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
}
.yellowBox dt strong {
  font-size: 2.4rem;
  font-weight: 900;
}
#day .yellowBox dt {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
}
#day .timeSchedule h4 {
  padding-bottom: 50px;
  font-size: 2.1rem;
  color: var(--navy);
}
#day .timeSchedule .tsBox {
  padding: 80px 50px 50px;
  border: 2px solid var(--gray);
  border-radius: 20px;
  color: var(--navy);
}
#day .timeSchedule .tsBox dl {
  position: relative;
}
#day .timeSchedule dl::after {
  position: absolute;
  top: 0;
  left: 27.5%;
  width: 4px;
  height: 100%;
  background: url(../img/life/time_line.png) repeat-y top center / 100%;
  content: "";
}
#day .timeSchedule dt {
  position: relative;
  padding: 20px 10px;
  width: 40%;
  font-size: 3rem;
  font-weight: 900;
  z-index: 10;
}
#day .timeSchedule dt::before {
  position: absolute;
  top: 25px;
  right: 25%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  z-index: 2;
}
#day .timeSchedule dt.first::after {
  position: absolute;
  top: -10%;
  right: 0;
  width: 50%;
  height: 50%;
  background: var(--white);
  content: "";
  z-index: 1;
}
#day .timeSchedule dt.last::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: var(--white);
  content: "";
  z-index: 1;
}
#day .timeSchedule dd {
  padding: 20px 10px;
  width: 60%;
  font-size: 2.4rem;
  font-weight: 900;
}
#day .timeSchedule dd small {
  display: block;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: var(--black);
  font-size: 1.6rem;
}
@media (max-width:1200px) {
  #day .timeSchedule dl::after {
    left: 33%;
  }
  #day .timeSchedule dt::before {
    right: 9%;
  }
  #day .timeSchedule dt.first::after {
    width: 30%;
  }
  #day .timeSchedule dt.last::after {
    width: 30%;
  }
}
@media (max-width:767px) {
  #day {
    padding: 40px 20px;
    border-radius: 10px;
  }
  #day .headArea {
    padding-bottom: 30px;
  }
  #day .txtArea {
    width: 100%;
  }
  #day figure {
    padding-top: 20px;
    width: 100%;
  }
  #day figure img {
    border-radius: 15px;
    width: 100%;
  }
  #day h4 {
    padding-bottom: 10px;
    font-size: 1.5rem;
  }
  .yellowBox {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
  }
  .yellowBox dt {
    font-size: 1.5rem;
  }
  .yellowBox dt strong {
    font-size: 1.8rem;
  }
  #day .timeSchedule h4 {
    padding-bottom: 30px;
    font-size: 1.8rem;
  }
  #day .timeSchedule .tsBox {
    padding: 20px;
    border-radius: 10px;
  }
  #day .timeSchedule dl::after {
    top: 40px;
    left: 1.2%;
    height: calc(100% - 40px);
  }
  #day .timeSchedule dt {
    position: relative;
    padding: 10px 0 0 30px;
    width: 100%;
    font-size: 2rem;
  }
  #day .timeSchedule dt::before {
    top: 20px;
    right: 94%;
    width: 20px;
    height: 20px;
  }
  #day .timeSchedule dt.first::after {
    content: none;
  }
  #day .timeSchedule dd.last::after {
    position: absolute;
    top: 0;
    right: auto;
    left: 0;
    width: 10%;
    height: 100%;
    background: var(--white);
    content:
    "";
    z-index: 1;
  }
  #day .timeSchedule dd {
    position: relative;
    padding: 0 0 10px 30px;
    width: 100%;
    font-size: 1.8rem;
  }
  #day .timeSchedule dd small {
    font-size: 1.3rem;
  }
}

/* appearance
-------------------------------------------------------------- */
#appearance {
  margin-top: 200px;
}
#appearance h2 {
  font-size: 4rem;
  font-weight: 900;
  color: var(--navy);
}
#appearance ul {
  padding: 80px 0;
  gap: 50px;
}
#appearance .btn {
  width: calc((100% - 100px) / 3);
}
#appearance .appearanceWrap {
  position: relative;
  padding: 250px 0;
  background: var(--l-blue);
}
#appearance .apBox {
  position: relative;
  margin-bottom: 200px;
  margin-left: calc((100% - 1100px) / 2);
  padding: 150px 10% 150px 80px;
  background: var(--white);
  border-radius: 30px 0 0 30px;
}
#appearance .apBox:last-of-type {
  margin-bottom: 0;
}
#appearance .apBox .headArea {
  padding-bottom: 60px;
  justify-content: space-between;
}
#appearance .apBox .txtArea {
  width: 50%;
}
#appearance .apBox figure {
  width: 42%;
}
#appearance .apBox figure img {
  border-radius: 30px;
  width: 100%;
}
#appearance .apBox h4 {
  padding-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
}
#appearance .apBox .photo img {
  width: 100%;
}
@media (max-width:767px) {
  #appearance {
    margin-top: 100px;
  } 
  #appearance .appearanceWrap {
    padding: 100px 0;
  }
  #appearance h2 {
    font-size: 2.2rem;
  }
  #appearance ul {
    padding: 40px 0;
    gap: 20px;
  }
  #appearance .btn {
    width: 100%;
  }
  #appearance .apBox {
    margin: 0 0 60px 5%;
    padding: 40px 20px;
    border-radius: 10px;
  }
  #appearance .apBox .headArea {
    padding-bottom: 30px;
  }
  #appearance .apBox .txtArea {
    width: 100%;
  }
  #appearance .apBox figure {
    padding-top: 20px;
    width: 100%;
  }
  #appearance .apBox figure img {
    border-radius: 15px;
    width: 100%;
  }
  #appearance .apBox h4 {
    padding-bottom: 10px;
    font-size: 1.5rem;
  }
}