@charset "UTF-8";


/* =============================================
- レイアウト
================================================ */

.section {
  padding-left: 10px;
  padding-right: 10px;
}

.schedule_main_contents {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-bottom: 100px;
}

.schedule_box1_outer {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 10px;
  position: relative;
  box-sizing: border-box;
}
.schedule_box1 > div {
  position: relative;
}
.schedule_box1 > div img {
  border-radius: 10px;
}

.schedule_box2 > div:first-child {
  width: 184px;
  text-align: center;
}
.schedule_box2 > div:first-child p img {
  width: 126px;
  height: 126px;
}
.schedule_box2 > div:last-child {
  background-color: #FFF;
  border-radius: 10px;
  padding: 20px 20px;
  position: relative;
}
.schedule_box2 > div:last-child:before {
  display: block;
  content: "";
  background-color: #FFF;
  position: absolute;
  z-index: 1;
}

.schedule_textbox1 {
  display: inline-block;
  width: max-content;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 27px;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0px 1.5em;
  text-align: center;
  font-weight: bold;
  background-color: #14993b;
  color: #fff;
}
.schedule_textbox1.__reset {
  display: block;
  position: initial;
  margin: -10px auto 20px;
  transform: initial;
}
.schedule_textbox1.__line {
  position: absolute;
  bottom: 60px;
  left: -5em;
  top: initial;
  transform: initial;
  z-index: 10;
}
.schedule_textbox1.__line::before {
  position: absolute;
  content: "";
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  width: 25px;
  height: 2px;
  background-color: #726e4b;
  z-index: 1;
}
.schedule_textbox1.__line::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: #726e4b;
  z-index: 1;
}

.__bg_gray {
  background-color: #726e4b;
}
.__bg_orange {
  background-color: #e38535;
}
.__bg_2tone {
  background: linear-gradient(135deg, #14993b 50%, #e38535 50%);
}

.schedule_textbox2 {
  display: inline-block;
  background-color: #fff;
  color: #14993b;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.schedule_timebox {
  max-width: 130px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

div.inner:has(.schedule_notes){
}
.schedule_notes {
  width: 60%;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  color: #726e4b;
  border: 1px solid #726e4b;
  padding: 10px 10px 10px 50px;
  display: flex;
}
.schedule_notes > p {
  position: relative;
  font-weight: bold;
}
.schedule_notes > p::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}
.schedule_notes > p:first-child::before {
  background-color: #14993b;
}
.schedule_notes > p:last-child::before {
  background-color: #e38535;
}


@media screen and (max-width: 640px) {
  .schedule_box1.__2row > div:first-child {
    margin-bottom: 50px;
  }
  .schedule_box2 > div:first-child {
    margin: 0 auto 30px;
  }
  .schedule_box2 > div:last-child::before {
    width: 20px;
    height: 20px; /* 吹き出しサイズ */
    top: -10px;
    left: 50%; /* 位置 */
    transform: translateX(-50%) rotate(45deg) skew(10deg, 10deg); /* 傾斜角(skew) */
  }

  .schedule_textbox {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 6em;
  }

  .schedule_notes {
    flex-direction: column;
    row-gap: 10px;
  }
}

@media screen and (min-width: 641px) {
  .section {
  }
  .schedule_main_contents {
    padding-bottom: 150px;
  }
  .section .inner {
    max-width: 980px;
    margin: 0 auto;
  }

  .schedule_box1_outer {
    padding: 40px 3%;
  }
  .schedule_box1 {
    display: flex;
    justify-content: center;
    align-items: top;
  }
  .schedule_box1.__2row {
    justify-content: space-between;
  }
  .schedule_box1 > div:first-child ,
  .schedule_box1 > div:last-child {
    width: 47.73%;
    max-width: 420px;
  }

  .schedule_box2 {
    display: flex;
    justify-content: space-between;
  }
  .schedule_box2 > div:last-child {
    flex: 1;
    margin-left: 40px;
    padding: 25px 30px;
    margin-top: 76px;
  }
  .schedule_box2 > div:last-child:before {
    width: 30px;
    height: 30px; /* 吹き出しサイズ */
    left: -10px;
    top: 20%; /* 位置 */
    transform: rotate(45deg) skew(-20deg, -20deg); /* 傾斜角(skew) */
  }
  .schedule_notes {
    width: 90%;
    justify-content: space-between;
    column-gap: 10px;
    padding: 20px 20px 20px 50px;
  }
  .schedule_notes > p::before {
    left: -35px;
    width: 23px;
    height: 23px;
  }
}

@media screen and (min-width: 980px) {
  .schedule_box1_outer {
    padding: 50px 50px;
  }
}









