@charset "UTF-8";
:root {
  --yaleColor: #4d3b38;
  --hirochikaColor: rgb(101, 179, 75);
  --kawaberiColor: #4b4cb3;
  --pc_m: 1440px;
}

* {
  box-sizing: border-box;
  line-height: 1;
  font-family: "noto sans jp";
  font-feature-settings: "palt" 1;
}
/*----- schedule -------*/
#HIROCHIKA_SCHEDULE {
    padding-top: 150px;
    margin-top: -150px;
    position: relative;
  }
  @media screen and (max-width: 600px) {
    #HIROCHIKA_SCHEDULE {
      padding-top: 100px;
      margin-top: -100px;
    }
  }
  
  .CHANGE_MONTH {
    width: 216px;
    margin-top: 104px;
    display: grid;
    place-content: center;
    text-align: center;
    background: rgba(101, 179, 75, 0.2);
    background-blend-mode: multiply;
    padding: 28px 14px;
    font-family: "Share Tech";
    position: relative;
  }
  @media screen and (max-width: 1280px) {
    .CHANGE_MONTH {
      margin-top: 64px;
      width: 100%;
      padding: 20px 0 0 0;
    }
  }
  @media screen and (max-width: 600px) {
    .CHANGE_MONTH {
      padding: 14px 0;
    }
  }
  @media screen and (max-width: 435px) {
    .CHANGE_MONTH {
      padding: 10px 0;
    }
  }
  
  .CHANGE1 {
    display: grid;
    background: rgba(101, 179, 75, 0.2);
  }
  @media screen and (max-width: 1280px) {
    .CHANGE1 {
      display: none;
    }
  }
  
  .CHANGE2 {
    display: none;
  }
  @media screen and (max-width: 1280px) {
    .CHANGE2 {
      display: grid;
      margin-top: 0;
      background: none;
    }
  }
  
  .CHANGE_MONTH::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
  }
  
  .YEAR {
    font-size: 36px;
    font-family: "Share Tech";
  }
  @media screen and (max-width: 725px) {
    .YEAR {
      font-size: 24px;
    }
  }
  @media screen and (max-width: 500px) {
    .YEAR {
      font-size: 18px;
    }
  }
  
  .NUM_MONTH {
    font-size: 112px;
    font-family: "Share Tech";
  }
  @media screen and (max-width: 1280px) {
    .NUM_MONTH {
      font-size: 72px;
    }
  }
  @media screen and (max-width: 725px) {
    .NUM_MONTH {
      font-size: 48px;
    }
  }
  @media screen and (max-width: 500px) {
    .NUM_MONTH {
      font-size: 40px;
    }
  }
  
  .CHAR_MONTH {
    font-size: 36px;
    font-family: "Share Tech";
  }
  @media screen and (max-width: 1280px) {
    .CHAR_MONTH {
      display: none;
    }
  }
  
  .YEAR_PREV_NEXT {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  
  .YEAR_PREV_BTN {
    cursor: pointer;
  }
  @media screen and (max-width: 1280px) {
    .YEAR_PREV_BTN {
      position: absolute;
      left: 50%;
      bottom: 20px;
      transform: translate(calc(-50% - 120px), -50%);
      display: grid;
      place-items: center;
      width: 28px;
      height: 28px;
      background-color: #fff;
      border-radius: 3px;
      transition: all 0.3s;
    }
  }
  @media screen and (max-width: 725px) {
    .YEAR_PREV_BTN {
      bottom: 16px;
    }
  }
  @media screen and (max-width: 394px) {
    .YEAR_PREV_BTN {
      transform: translate(calc(-50% - 100px), -50%);
    }
  }
  
  @media screen and (max-width: 1280px) {
    .YEAR_PREV_BTN:hover {
      background: #000;
      color: #fff;
    }
  }
  
  @media screen and (max-width: 1280px) {
    .YEAR_PREV_BTN::before {
      content: "前年";
      position: absolute;
      white-space: nowrap;
      bottom: -80%;
      font-size: 14px;
      color: #000;
    }
  }
  
  .YEAR_NEXT_BTN {
    cursor: pointer;
  }
  @media screen and (max-width: 1280px) {
    .YEAR_NEXT_BTN {
      position: absolute;
      left: 50%;
      bottom: 20px;
      transform: translate(calc(-50% + 120px), -50%);
      display: grid;
      place-items: center;
      width: 28px;
      height: 28px;
      background-color: #fff;
      border-radius: 3px;
      transition: all 0.3s;
    }
  }
  @media screen and (max-width: 725px) {
    .YEAR_NEXT_BTN {
      bottom: 16px;
    }
  }
  @media screen and (max-width: 394px) {
    .YEAR_NEXT_BTN {
      transform: translate(calc(-50% + 100px), -50%);
    }
  }
  
  @media screen and (max-width: 1280px) {
    .YEAR_NEXT_BTN:hover {
      background: #000;
      color: #fff;
    }
  }
  
  @media screen and (max-width: 1280px) {
    .YEAR_NEXT_BTN::before {
      content: "翌年";
      position: absolute;
      white-space: nowrap;
      bottom: -80%;
      font-size: 14px;
      color: #000;
    }
  }
  
  .YEAR_PREV_NEXT ion-icon {
    font-size: 20px;
    padding: 0;
    margin: 0;
  }
  
  .PREV_NEXT {
    margin-top: 24px;
    display: flex;
    width: 136px;
    justify-content: space-between;
  }
  @media screen and (max-width: 1280px) {
    .PREV_NEXT {
      width: 160px;
      position: absolute;
      left: 50%;
      transform: translate(-50%, -50%);
      bottom: 20px;
      margin: auto;
      align-items: flex-end;
      height: -moz-fit-content;
      height: fit-content;
    }
  }
  @media screen and (max-width: 725px) {
    .PREV_NEXT {
      bottom: 16px;
    }
  }
  @media screen and (max-width: 394px) {
    .PREV_NEXT {
      width: 140px;
    }
  }
  
  .PREV a,
  .NEXT a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 3px;
    transition: all 0.3s;
  }
  
  .PREV a {
    background: url(../images/black-arrow-left.svg) no-repeat center;
  }
  
  .PREV a:hover {
    background: url(../images/white-arrow-left.svg) no-repeat center, #000;
  }
  
  .NEXT a {
    background: url(../images/black-arrow-right.svg) no-repeat center;
  }
  
  .NEXT a:hover {
    background: url(../images/white-arrow-right.svg) no-repeat center, #000;
  }
  
  .PREV_NEXT ion-icon {
    font-size: 20px;
    padding: 0;
    margin: 0;
  }
  
  .PREV_BTN {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
  }
  
  @media screen and (max-width: 1280px) {
    .PREV_BTN::before {
      content: "前月";
      position: absolute;
      white-space: nowrap;
      bottom: -80%;
      font-size: 14px;
      color: #000;
    }
  }
  
  .NEXT_BTN {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
  }
  
  @media screen and (max-width: 1280px) {
    .NEXT_BTN::before {
      content: "翌月";
      position: absolute;
      white-space: nowrap;
      bottom: -80%;
      font-size: 14px;
      color: #000;
    }
  }
  
  .PREV_BTN:hover {
    background-color: #000;
    color: #fff;
  }
  
  .NEXT_BTN:hover {
    background-color: #000;
    color: #fff;
  }
  
  /*calender*/
  .CALENDER_WRAPPER {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  @media screen and (max-width: 1280px) {
    .CALENDER_WRAPPER {
      background: rgba(101, 179, 75, 0.2);
      padding: 0 28px 28px;
      margin-top: 48px;
      position: relative;
    }
  }
  @media screen and (max-width: 870px) {
    .CALENDER_WRAPPER {
      padding: 0 28px 28px;
    }
  }
  @media screen and (max-width: 600px) {
    .CALENDER_WRAPPER {
      padding: 0 10px 0;
      height: calc(100vh - 83px);
    }
  }
  @media screen and (max-width: 394px) {
    .CALENDER_WRAPPER {
      padding: 0 10px 0;
    }
  }
  
  .CALENDER {
    width: 100%;
  }
  @media screen and (max-width: 1280px) {
    .CALENDER {
      background: rgba(101, 179, 75, 0.2);
      padding: 28px;
    }
  }
  @media screen and (max-width: 600px) {
    .CALENDER {
      width: calc(100% - 16px);
      margin: 0 auto;
    }
  }
  
  .DAY {
    font-family: "Share Tech";
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 20px;
    padding-bottom: 16px;
    position: relative;
  }
  @media screen and (max-width: 600px) {
    .DAY {
      font-size: 16px;
    }
  }
  @media screen and (max-width: 500px) {
    .DAY {
      font-size: 14px;
      padding-bottom: 8px;
    }
  }
  
  .DATE_WRAPPER {
    background-color: #fff;
  }
  
  .DAY:first-of-type {
    color: #e60012;
  }
  
  .DAY:last-of-type {
    color: #0068b7;
  }
  
  .DATE:first-of-type .CALENDER_DATE {
    color: #e60012;
  }
  
  .DATE:last-of-type .CALENDER_DATE {
    color: #0068b7;
  }
  
  .DATE.TODAY {
    background-color: rgba(101, 179, 75, 0.1);
  }
  
  .DATE a {
    pointer-events: none;
    display: block;
    width: 100%;
    height: 100%;
  }
  
  .CALENDER_DATE {
    display: block;
    padding: 12px 0 0 16px;
    font-size: 18px;
  }
  @media screen and (max-width: 1080px) {
    .CALENDER_DATE {
      padding: 8px 0 4px 8px;
    }
  }
  @media screen and (max-width: 870px) {
    .CALENDER_DATE {
      padding: 8px 0 0 4px;
      font-size: 16px;
    }
  }
  @media screen and (max-width: 600px) {
    .CALENDER_DATE {
      font-size: 14px;
      padding: 6px 0 0 2px;
    }
  }
  @media screen and (max-width: 500px) {
    .CALENDER_DATE {
      font-size: 12px;
    }
  }
  
  .CALENDER_CATEGORY {
    display: none;
  }
  
  .CALENDER_EVENT_NAME {
    display: block;
    width: 100%;
    height: calc(100% - 24px);
    position: relative;
    padding: 12px;
  }
  @media screen and (max-width: 1080px) {
    .CALENDER_EVENT_NAME {
      padding: 8px;
      font-size: 15px;
    }
  }
  @media screen and (max-width: 998px) {
    .CALENDER_EVENT_NAME {
      font-size: 14px;
      padding: 4px;
    }
  }
  @media screen and (max-width: 870px) {
    .CALENDER_EVENT_NAME {
      padding: 2px 0 2px 4px;
    }
  }
  @media screen and (max-width: 800px) {
    .CALENDER_EVENT_NAME {
      font-size: 12px;
    }
  }
  @media screen and (max-width: 600px) {
    .CALENDER_EVENT_NAME {
      font-size: 10px;
    }
  }
  
  .CALENDER_EVENT_NAME img {
    position: absolute;
    right: 0;
    bottom: 10px;
    right: 12px;
    display: none;
    width: 15px;
  }
  @media screen and (max-width: 800px) {
    .CALENDER_EVENT_NAME img {
      bottom: 4px;
      right: 4px;
      width: 12px;
    }
  }
  @media screen and (max-width: 600px) {
    .CALENDER_EVENT_NAME img {
      bottom: -2px;
    }
  }
  @media screen and (max-width: 500px) {
    .CALENDER_EVENT_NAME img {
      opacity: 0;
    }
  }
  
  .DATE_WRAPPER {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  
  .DAY_WRAPPER {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #fff;
    padding-top: 10px;
  }
  
  .DATE {
    position: relative;
    border-left: 2px solid #a7aaa9;
    overflow: hidden;
    display: block;
  }
  
  .DATE:last-child {
    border-right: 2px solid #a7aaa9;
  }
  
  .DATE_WRAPPER:last-of-type td::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 85%;
    background-color: #a7aaa9;
    bottom: 0;
    left: 7.5%;
  }
  
  td::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 85%;
    background-color: #a7aaa9;
    top: 0;
    left: 7.5%;
  }
  
  td.LIVE::after {
    height: 8px;
    background-color: #005EAD !important;
    position: absolute;
    content: "";
    width: 85%;
    top: -1px;
    left: 7.5%;
  }
  @media screen and (max-width: 500px) {
    td.LIVE::after {
      height: 4px;
    }
  }
  
  td.ENTAME::after {
    height: 8px;
    background-color: #F0831E !important;
    position: absolute;
    content: "";
    width: 85%;
    top: -1px;
    left: 7.5%;
  }
  @media screen and (max-width: 500px) {
    td.ENTAME::after {
      height: 4px;
    }
  }
  
  td.SHOPPING::after {
    height: 8px;
    background-color: #7E318E !important;
    position: absolute;
    content: "";
    width: 85%;
    top: -1px;
    left: 7.5%;
  }
  @media screen and (max-width: 500px) {
    td.SHOPPING::after {
      height: 4px;
    }
  }
  
  td.OTHERS::after {
    height: 8px;
    background-color: #E8374A !important;
    position: absolute;
    content: "";
    width: 85%;
    top: -1px;
    left: 7.5%;
  }
  @media screen and (max-width: 500px) {
    td.OTHERS::after {
      height: 4px;
    }
  }
  
  .EVENT_CATEGORY_LIST {
    margin-bottom: 48px;
    display: flex;
    justify-content: space-between;
  }
  @media screen and (max-width: 600px) {
    .EVENT_CATEGORY_LIST {
      margin-bottom: 16px;
      padding-left: 10px;
      padding-right: 10px;
    }
  }
  
  .EVENT_CATEGORY_ITEM {
    height: 56px;
    display: grid;
    place-items: center;
    font-size: 18px;
    width: 14.8%;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-family: "noto sans jp";
    position: relative;
    text-align: center;
  }
  @media screen and (max-width: 800px) {
    .EVENT_CATEGORY_ITEM {
      font-size: 16px;
    }
  }
  @media screen and (max-width: 725px) {
    .EVENT_CATEGORY_ITEM {
      font-size: 14px;
    }
  }
  @media screen and (max-width: 600px) {
    .EVENT_CATEGORY_ITEM {
      width: 18%;
      font-size: 14px;
      height: 48px;
    }
  }
  @media screen and (max-width: 500px) {
    .EVENT_CATEGORY_ITEM {
      width: 19%;
      font-size: 13px;
      letter-spacing: -0.1em;
    }
  }
  @media screen and (max-width: 394px) {
    .EVENT_CATEGORY_ITEM {
      font-size: 11px;
    }
  }
  
  .EVENT_CATEGORY_ITEM br {
    display: none;
  }
  @media screen and (max-width: 1440px) {
    .EVENT_CATEGORY_ITEM br {
      display: block;
    }
  }
  
  .EVENT_CATEGORY_ITEM::before {
    width: 16px;
    height: 16px;
    z-index: 0;
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: rotate(-45deg) translateX(-50%);
  }
  @media screen and (max-width: 600px) {
    .EVENT_CATEGORY_ITEM::before {
      display: none;
    }
  }
  
  .EVENT_CATEGORY_ITEM:nth-child(1):before {
    background-color: var(--hirochikaColor);
  }
  
  .EVENT_CATEGORY_ITEM:nth-child(2):before {
    background-color: #005EAD;
  }
  
  .EVENT_CATEGORY_ITEM:nth-child(3):before {
    background-color: #F0831E;
  }
  
  .EVENT_CATEGORY_ITEM:nth-child(4):before {
    background-color: #7E318E;
  }
  
  .EVENT_CATEGORY_ITEM:nth-child(5):before {
    background-color: #E8374A;
  }
  
  .EVENT_CATEGORY_ITEM:nth-child(1) {
    background-color: var(--hirochikaColor);
  }
  
  .EVENT_CATEGORY_ITEM:nth-child(2) {
    background-color: #005EAD;
  }
  
  .EVENT_CATEGORY_ITEM:nth-child(3) {
    background-color: #F0831E;
  }
  
  .EVENT_CATEGORY_ITEM:nth-child(4) {
    background-color: #7E318E;
  }
  
  .EVENT_CATEGORY_ITEM:nth-child(5) {
    background-color: #E8374A;
  }
  
  .PRE_RESERVE {
    display: grid;
    place-items: center;
    padding-bottom: 36px;
    color: var(--hirochikaColor);
  }
  @media screen and (max-width: 500px) {
    .PRE_RESERVE {
      font-size: 10px;
      position: relative;
      top: 3px;
    }
  }
  
  .SP_ONLY_EVENT_LIST {
    display: none;
  }
  @media screen and (max-width: 600px) {
    .SP_ONLY_EVENT_LIST {
      display: block;
      /* flex-grow: 1; */
      height: auto;
      overflow-y: scroll;
      margin-top: 16px;
      background-color: #fff;
      z-index: 10;
    }
  }
  
  .SP_ONLY_EVENT_ITEM {
    display: flex;
    height: 56px;
    width: 100%;
    align-items: center;
    padding: 0 20px;
    -moz-column-gap: 14px;
         column-gap: 14px;
    position: relative;
    cursor: pointer;
  }
  
  .SP_ONLY_EVENT_ITEM:nth-child(even) {
    background-color: #f8f8f8;
  }
  
  .SP_ONLY_EVENT_ITEM span {
    display: inline-block;
  }
  @media screen and (max-width: 500px) {
    .SP_ONLY_EVENT_ITEM span {
      font-size: 14px;
    }
  }
  @media screen and (max-width: 435px) {
    .SP_ONLY_EVENT_ITEM span {
      font-size: 13px;
    }
  }
  @media screen and (max-width: 394px) {
    .SP_ONLY_EVENT_ITEM span {
      font-size: 12px;
    }
  }
  
  .SP_ONLY_EVENT_ITEM a {
    display: inline-block;
    position: relative;
    background-color: #fff;
    color: var(--hirochikaColor);
    font-weight: 500;
    padding: 5px 20px 5px 10px;
    border: var(--hirochikaColor) 1px solid;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
  }
  @media screen and (max-width: 394px) {
    .SP_ONLY_EVENT_ITEM a {
      font-size: 12px;
    }
  }
  
  .SP_ONLY_EVENT_ITEM a::after {
    content: "";
    width: 10px;
    height: 30px;
    background: url(../images/green-arrow.svg) no-repeat center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    display: block;
    transition: 0.3s all;
  }
  @media screen and (max-width: 600px) {
    .SP_ONLY_EVENT_ITEM a::after {
      right: 5px;
    }
  }
  @media screen and (max-width: 500px) {
    .SP_ONLY_EVENT_ITEM a::after {
      right: 5px;
    }
  }
  
  .SP_ONLY_EVENT_DATE {
    width: 16px;
  }
  
  .SP_ONLY_EVENT_NAME {
    width: 65%;
  }
  
  .SP_ONLY_EVENT_TIME {
    width: 68px;
  }
  
  .SP_ONLY_CALENDER_CATEGORY {
    display: none !important;
  }
  