@charset "UTF-8";
/*===============================================================

	event_list_header

===============================================================*/
.event_list_header {
  position: relative;
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 60px;
  border-top: solid 1px #ddd;
  /* SPのみ */
  /* // sp */
}
.event_list_header + .event_list {
  margin-top: 0;
}
.event_list_header .title {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  margin-right: 20px;
}
.event_list_header .btn_reset a {
  display: block;
  background: #f2f2f2;
  color: #111;
  font-size: 14px;
  line-height: 30px;
  padding: 0 10px;
  border: solid 1px #ddd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.event_list_header .btn_reset a:hover {
  background: #111;
  color: #fff;
  border: solid 1px #111;
}
@media screen and (max-width: 750px) {
  .event_list_header {
    margin-top: 30px;
    padding-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /*既存スタイル修正*/
  }
  .event_list_header + .event_list {
    margin-top: 30px;
  }
  .event_list_header .title {
    font-size: 18px;
  }
  .event_list_header .btn_reset {
    width: 50%;
    margin: 10px auto -30px auto;
    text-align: center;
  }
  .event_list_header .btn_reset a {
    display: block;
    background: #f2f2f2;
    color: #111;
    font-size: 14px;
    line-height: 30px;
    padding: 0 10px;
  }
  .event_list_header + .event_list {
    margin-top: 0;
  }
  .event_list_header .btn_reset {
    width: 50%;
    margin: 10px auto 0 auto;
    text-align: center;
  }
}

/*===============================================================

	calender

===============================================================*/
.calender_wrp {
  padding: 30px;
  background: #f2f2f2;
}

.calender_wrp *:focus {
  outline: none;
}

/* SPのみ */
@media screen and (max-width: 750px) {
  .calender_wrp {
    padding: 10px;
  }
}
/* for SP max-width: 736px */
/*-------------------------------------------------------------
	calender_header
-------------------------------------------------------------*/
.calender_header {
  position: relative;
  padding-bottom: 20px;
}

.calender_header .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.calender_header .btn {
  position: absolute;
  top: 10px;
  left: 0px;
  display: none;
}

.calender_header .next_month {
  left: auto;
  right: 0;
}

.calender_header .btn a {
  font-size: 14px;
  text-align: center;
  background: #000;
  color: #fff;
  display: block;
  padding: 5px 20px;
}

.calender_header .btn a:hover {
  text-decoration: none;
  background: #555;
}

.calender_header .btn a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  border: solid 1px #fff;
  width: 6px;
  height: 6px;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(-45deg) translate(-1px, -1px);
  transform: rotate(-45deg) translate(-1px, -1px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.calender_header .past_month a::after {
  left: 5px;
  right: auto;
  -webkit-transform: rotate(135deg) translate(-1px, -1px);
  transform: rotate(135deg) translate(-1px, -1px);
}

/* SPのみ */
@media screen and (max-width: 750px) {
  .calender_header {
    padding: 1vw 0 4vw 0;
  }
  .calender_header .btn {
    top: 1vw;
  }
  .calender_header .btn a {
    font-size: 2.5vw;
    padding: 1.5vw 4.5vw;
  }
  .calender_header .title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
}
/* for SP max-width: 736px */
/*-------------------------------------------------------------
	calender_body
-------------------------------------------------------------*/
.calender_body {
  font-size: 0;
  background: #fff;
}

.calender_body li {
  display: inline-block;
  width: 14.28%;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 50px;
  /*	line-height: 30px;*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: solid 1px #eee;
  border-right: solid 1px #eee;
  position: relative;
}

.calender_body .weeklist li {
  font-size: 20px;
  border-top: solid 1px #666;
  border-right: solid 1px #666;
  font-weight: 500;
  line-height: 40px;
  background: #111;
  color: #fff;
}

.calender_body li:nth-child(7n + 1) {
  border-left: solid 1px #eee;
}

.calender_body li.overdate {
  color: rgba(0, 0, 0, 0.2);
  background: #fff;
}

.calender li a {
  color: #000;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.calender li a:hover {
  text-decoration: none;
  background: #111;
  color: #fff;
  /*	background: rgba(0,0,0,0.05);*/
}

.calender .selected {
  background: #111;
  color: #fff;
}

.calender .sun,
.calender .sun a,
.calender .holiday,
.calender .holiday a {
  color: #fa0f0c !important;
}

.calender .sat,
.calender .sat a {
  color: #547dd1 !important;
}

.calender .sun.overdate,
.calender .sun.overdate a,
.calender .holiday.overdate,
.calender .holiday.overdate a {
  color: rgba(250, 15, 12, 0.2) !important;
}

.calender .sat.overdate,
.calender .sat.overdate a {
  color: rgba(84, 125, 209, 0.2) !important;
}

.calender .pastdate {
  opacity: 0.2;
}

.calender li.closeday a {
  pointer-events: none !important;
}

.calender_body li.outdate {
  color: rgba(0, 0, 0, 0.2);
  background: #f9f9f9;
  background-image: linear-gradient(-45deg, #fff 25%, #eee 25%, #eee 50%, #fff 50%, #fff 75%, #eee 75%, #eee);
  background-size: 4px 4px;
}

/* SPのみ */
@media screen and (max-width: 750px) {
  .calender_body li {
    font-size: 3.5vw;
    line-height: 2;
  }
  .calender_body .weeklist li {
    font-size: 3vw;
    line-height: 2;
  }
}
/* for SP max-width: 736px */
/*--------------------------------------
slick-arrow
--------------------------------------*/
.calender_wrp .slick-prev {
  top: 20px;
  left: 30px;
}

.calender_wrp .slick-next {
  top: 20px;
  right: 30px;
}

.calender_wrp .slick-prev.slick-disabled,
.calender_wrp .slick-next.slick-disabled {
  pointer-events: none;
}

.calender_wrp .slick-arrow {
  background: #fff;
}

/* SPのみ */
@media screen and (max-width: 750px) {
  .calender_wrp .slick-prev {
    top: 10px;
    left: 10px;
  }
  .calender_wrp .slick-next {
    top: 10px;
    right: 10px;
  }
}
/*--------------------------------------
event/nondate
--------------------------------------*/
.calender_body .datelist li .datetxt {
  display: block;
}

.calender_body .datelist li.event a:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #fa190e transparent transparent;
}

.calender_body .datelist li.nondate a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /*	background: #ff6d000f;*/
}

/* SPのみ */
/*--------------------------------------
calendar_cap
--------------------------------------*/
.calendar_cap {
  width: 100%;
  text-align: right;
}

.calendar_cap .item {
  position: relative;
  display: inline-block;
}

.calendar_cap .item p {
  font-size: 11px;
  font-weight: normal;
  line-height: 1;
}

.calendar_cap .item.icon_triangle p:before {
  content: '';
  position: absolute;
  top: 1px;
  left: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #fa190e transparent transparent;
}

/* SPのみ */
/*----------------------------------------------------------
oc lower
----------------------------------------------------------*/
body.page_oc.parents .lower {
  height: 200px;
}
@media screen and (max-width: 750px) {
  body.page_oc.parents .lower {
    height: 30vw;
  }
}
body.page_oc.parents .lower_wrap {
  background-image: url(../images/oc/oc_header.jpg);
}
body.page_oc.parents .lower_wrap::before {
  opacity: 0.5;
  background-color: #080c46;
}
@media screen and (max-width: 750px) {
  body.page_oc.parents .lower_title {
    font-size: 6.5vw;
    line-height: 1;
  }
}
@media screen and (max-width: 750px) {
  body.page_oc.parents .lower_title_jp {
    font-size: 2.5vw;
  }
}

body.page_oc.archive .lower_wrap {
  background-color: #f5f5f5;
  background-image: url(../images/oc/oc_program_sp.jpg);
}
@media screen and (min-width: 751px) {
  body.page_oc.archive .lower_wrap {
    background-image: url(../images/oc/oc_program_pc.jpg);
  }
}

body.page_oc.archive.game .lower_wrap {
  background-color: #f5f5f5;
  background-image: url(../images/course/game/mv_sp.jpg);
}
@media screen and (min-width: 751px) {
  body.page_oc.archive.game .lower_wrap {
    background-image: url(../images/course/game/mv_pc.jpg);
  }
}

body.page_oc.archive.esports .lower_wrap {
  background-color: #f5f5f5;
  background-image: url(../images/course/esports/mv_sp.jpg);
}
@media screen and (min-width: 751px) {
  body.page_oc.archive.esports .lower_wrap {
    background-image: url(../images/course/esports/mv_pc.jpg);
  }
}

body.page_oc.archive.ai-robot .lower_wrap {
  background-color: #f5f5f5;
  background-image: url(../images/course/aiit/mv_sp.jpg);
}
@media screen and (min-width: 751px) {
  body.page_oc.archive.ai-robot .lower_wrap {
    background-image: url(../images/course/aiit/mv_pc.jpg);
  }
}

body.page_oc.archive.web .lower_wrap {
  background-color: #f5f5f5;
  background-image: url(../images/course/media/mv_sp.jpg);
}
@media screen and (min-width: 751px) {
  body.page_oc.archive.web .lower_wrap {
    background-image: url(../images/course/media/mv_pc.jpg);
  }
}
body.page_oc.archive.web .lower_title {
  line-height: 1.2;
}
@media screen and (max-width: 750px) {
  body.page_oc.archive.web .lower_title {
    margin: 0 0 10px 0;
  }
}

body.page_oc.archive.school-briefing .lower_title {
  line-height: 1.2;
}
@media screen and (max-width: 750px) {
  body.page_oc.archive.school-briefing .lower_title {
    margin: 0 0 10px 0;
  }
}

/*----------------------------------------------------------
  calendar arrow
----------------------------------------------------------*/
.calender_wrp .slick-arrow {
  position: absolute;
  display: block;
  top: inherit;
  top: 12px;
  left: inherit;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  z-index: 1;
}
@media screen and (min-width: 751px) {
  .calender_wrp .slick-arrow {
    top: 25px;
    width: 50px;
    height: 50px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .calender_wrp .slick-arrow:hover {
    background-color: #fa0f0c;
  }
  .calender_wrp .slick-arrow:hover::before {
    background-color: #f7f7f7;
  }
  .calender_wrp .slick-arrow:hover::after {
    border-color: #f7f7f7;
  }
}
.calender_wrp .slick-arrow::before,
.calender_wrp .slick-arrow::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.calender_wrp .slick-arrow::before {
  width: 15px;
  height: 1px;
  background-color: #fa0f0c;
}
.calender_wrp .slick-arrow::after {
  width: 6px;
  height: 6px;
  border-top: 1px solid #fa0f0c;
  border-right: 1px solid #fa0f0c;
}

.calender_wrp .slick-prev {
  left: 30px;
}
@media screen and (max-width: 750px) {
  .calender_wrp .slick-prev {
    left: 10px;
  }
}
.calender_wrp .slick-prev::after {
  left: -6px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.calender_wrp .slick-next {
  right: 30px;
}
@media screen and (max-width: 750px) {
  .calender_wrp .slick-next {
    right: 10px;
  }
}
.calender_wrp .slick-next::after {
  left: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.calender_wrp .slick-prev.slick-disabled,
.calender_wrp .slick-next.slick-disabled {
  opacity: 0.3;
}

.calender_wrp .slick-prev.slick-disabled:before,
.calender_wrp .slick-next.slick-disabled:before {
  opacity: 1;
}

/*----------------------------------------------------------
sec
----------------------------------------------------------*/
.sec_first {
  margin: 40px 0 0 0;
}
@media screen and (min-width: 751px) {
  .sec_first {
    margin: 80px 0 0 0;
  }
}
.sec_first .sec_title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media screen and (min-width: 751px) {
  .sec_first .sec_title {
    font-size: 32px;
  }
}
.sec_first .sec_text {
  letter-spacing: 0.04em;
  line-height: 1.78;
  margin: 34px 0 0 0;
}
@media screen and (min-width: 751px) {
  .sec_first .sec_text {
    line-height: 1.81;
    margin: 39px 0 0 0;
  }
}
.sec_first_myschool {
  position: relative;
  padding: 0 0 27px 0;
  margin: 60px 0 0 0;
}
@media screen and (min-width: 751px) {
  .sec_first_myschool {
    padding: 0 0 64px 0;
    margin: 100px 0 0 0;
  }
}
.sec_first_myschool::before {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 154px;
  background-color: #f2f2f2;
}
@media screen and (min-width: 751px) {
  .sec_first_myschool::before {
    height: 164px;
  }
}
.sec_first_myschool .flex {
  position: relative;
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #707070;
}
@media screen and (min-width: 751px) {
  .sec_first_myschool .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .sec_first_myschool .flex:hover .img {
    opacity: 0.8;
  }
  .sec_first_myschool .flex:hover .btn_icon::before {
    -webkit-transform: translate3d(0, 0, 0) scale(1) rotate(45deg);
    transform: translate3d(0, 0, 0) scale(1) rotate(45deg);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  .sec_first_myschool .flex:hover .btn_icon::after {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    transition:
      transform 0.5s 0s cubic-bezier(0.43, 0.05, 0.17, 1),
      -webkit-transform 0.5s 0s cubic-bezier(0.43, 0.05, 0.17, 1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
}
@media screen and (min-width: 751px) {
  .sec_first_myschool .flex .img {
    width: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.sec_first_myschool .flex .textwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 751px) {
  .sec_first_myschool .flex .textwrap {
    width: 50%;
    padding: 0 25px;
  }
}
@media screen and (min-width: 1001px) {
  .sec_first_myschool .flex .textwrap {
    padding: 0 40px;
  }
}
.sec_first_myschool .flex .fukidashi span {
  position: relative;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #fff;
  background-color: #fa0f0c;
  padding: 0 10px 3px 7px;
  border-radius: 18px;
}
@media screen and (min-width: 751px) {
  .sec_first_myschool .flex .fukidashi span {
    font-size: 14px;
    padding: 2px 12px 4px 9px;
  }
}
.sec_first_myschool .flex .fukidashi span::after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -8px;
  left: 40px;
  border: 4px solid transparent;
  border-left: 15px solid #fa0f0c;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.sec_first_myschool .flex .title {
  font-size: 39px;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: #fa0f0c;
  margin: 8px 0 0 0;
}
@media screen and (min-width: 751px) {
  .sec_first_myschool .flex .title {
    font-size: 45px;
    margin: 11px 0 0 0;
  }
}
@media screen and (min-width: 1001px) {
  .sec_first_myschool .flex .title {
    font-size: 54px;
  }
}
.sec_first_myschool .flex .furigana {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  .sec_first_myschool .flex .furigana {
    font-size: 16px;
  }
}
@media screen and (min-width: 1001px) {
  .sec_first_myschool .flex .furigana {
    font-size: 20px;
  }
}
.sec_genre {
  padding: 40px 0 0 0;
  margin: 40px 0 0 0;
}
@media screen and (min-width: 751px) {
  .sec_genre {
    padding: 80px 0 0 0;
    margin: 80px 0 0 0;
  }
}
.sec_genre .sec_title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .sec_genre .sec_title {
    font-size: 24px;
  }
}
.sec_genre_list {
  margin: 29px 0 0 0;
}
@media screen and (min-width: 751px) {
  .sec_genre_list {
    margin: 39px 0 0 0;
  }
}
@media screen and (min-width: 751px) {
  .sec_genre_list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.sec_genre_list ul li {
  margin: 0 0 5px 0;
  height: 55px;
}
@media screen and (min-width: 751px) {
  .sec_genre_list ul li {
    margin-right: 1%;
    margin-bottom: 1%;
  }
  .sec_genre_list ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .sec_genre_list .sp_column2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .sec_genre_list .sp_column2 li {
    width: calc(50% - 2.5px);
    height: 55px;
  }
  .sec_genre_list .sp_column2 li:first-of-type {
    width: 100%;
  }
  .sec_genre_list .sp_column2 li a {
    height: 100%;
  }
  .sec_genre_list .sp_column2 li a img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
  }
  .sec_genre_list .sp_column2 .area {
    padding: 0 40px 0 10px;
  }
  .sec_genre_list .sp_column2 .area .cap {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  .sec_genre_list .sp_column2 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .sec_genre_list .sp_column2 li {
    height: auto;
  }
  .sec_genre_list .sp_column2 .area {
    padding: 0 10px 0 20px;
  }
  .sec_genre_list .sp_column2 .area .cap {
    display: block;
  }
}
@media screen and (min-width: 751px) {
  .sec_genre_list ul.column3 li {
    width: 32.65%;
  }
}
@media screen and (min-width: 751px) {
  .sec_genre_list ul.column4 li {
    width: 24%;
  }
}
.sec_genre_list ul li a {
  position: relative;
  display: block;
}
@media screen and (min-width: 751px) {
  .sec_genre_list ul li a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .sec_genre_list ul li a:hover .btn_icon::before {
    -webkit-transform: translate3d(0, 0, 0) scale(1) rotate(45deg);
    transform: translate3d(0, 0, 0) scale(1) rotate(45deg);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  .sec_genre_list ul li a:hover .btn_icon::after {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    transition:
      transform 0.5s 0s cubic-bezier(0.43, 0.05, 0.17, 1),
      -webkit-transform 0.5s 0s cubic-bezier(0.43, 0.05, 0.17, 1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
}
.sec_genre_list ul li a::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.15;
}
.sec_genre_list ul li a.no_fillter::before {
  display: none;
}
.sec_genre_list ul li a.game::before {
  background-color: #f52d56;
  opacity: 0.6;
}
.sec_genre_list ul li a.esports::before {
  background-color: #32a254;
  opacity: 0.6;
}
.sec_genre_list ul li a.aiit::before {
  background-color: #226e94;
  opacity: 0.6;
}
.sec_genre_list ul li a.media::before {
  background-color: #884091;
  opacity: 0.6;
}
.sec_genre_list ul li a.design::before {
  background-color: #fe6f06;
  opacity: 0.6;
}
.sec_genre_list ul li a p {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0 10px 0 20px;
}
@media screen and (min-width: 751px) {
  .sec_genre_list ul li .btn_icon {
    background-color: transparent;
  }
}
@media screen and (min-width: 751px) {
  .sec_genre_list ul li .btn_icon::before {
    border-color: #fa0f0c;
  }
}
@media screen and (min-width: 751px) {
  .sec_genre_list ul li .btn_icon::after {
    background-color: #ffffff;
  }
}
.sec_genre_list ul li .btn_icon.game::before {
  border-color: #f52d56;
}
.sec_genre_list ul li .btn_icon.esports::before {
  border-color: #32a254;
}
.sec_genre_list ul li .btn_icon.aiit::before {
  border-color: #226e94;
}
.sec_genre_list ul li .btn_icon.media::before {
  border-color: #fe6f06;
}
.sec_genre_list .area {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0 10px 0 20px;
}
.sec_genre_list .area.bg_mask {
  background: rgba(0, 0, 0, 0.4);
}
.sec_genre_list .area .head {
  display: block;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .sec_genre_list .area .head {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 750px) {
  .sec_genre_list .area .head {
    font-size: 3.6vw;
  }
}
.sec_genre_list .area .cap {
  font-size: 10px;
  display: block;
  line-height: 1.4;
  font-weight: normal;
  margin-top: 5px;
}
@media screen and (max-width: 1200px) {
  .sec_genre_list .area .cap {
    font-size: 0.8vw;
  }
}
@media screen and (max-width: 750px) {
  .sec_genre_list .area .cap {
    font-size: 2.3vw;
    margin-top: 3px;
  }
}
.sec_genre_list ul li .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 0;
  top: 0;
  margin: auto;
  height: 30px;
}
.sec_date {
  margin: 40px 0 0 0;
}
@media screen and (min-width: 751px) {
  .sec_date {
    margin: 80px 0 0 0;
  }
}
.sec_date .sec_title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .sec_date .sec_title {
    font-size: 24px;
  }
}
.sec_date_wrap {
  position: relative;
  margin: 30px 0 0 0;
}
@media screen and (min-width: 751px) {
  .sec_date_wrap {
    margin: 40px 0 0 0;
  }
}
.sec_date .event_menu {
  width: 75.386%;
  margin: 0 auto;
  height: 61px;
}
@media screen and (min-width: 751px) {
  .sec_date .event_menu {
    width: 85%;
    max-width: 970px;
    height: 96px;
  }
}
.sec_date .event_menu li {
  display: block;
  max-width: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  border-right: none;
}
@media screen and (min-width: 471px) {
  .sec_date .event_menu li {
    max-width: 80px;
  }
}
@media screen and (min-width: 531px) {
  .sec_date .event_menu li {
    max-width: 90px;
  }
}
@media screen and (min-width: 581px) {
  .sec_date .event_menu li {
    max-width: 100px;
  }
}
@media screen and (min-width: 631px) {
  .sec_date .event_menu li {
    max-width: 110px;
  }
}
@media screen and (min-width: 691px) {
  .sec_date .event_menu li {
    max-width: 120px;
  }
}
@media screen and (min-width: 741px) {
  .sec_date .event_menu li {
    max-width: 130px;
  }
}
@media screen and (min-width: 751px) {
  .sec_date .event_menu li {
    max-width: 75px;
  }
}
@media screen and (min-width: 1091px) {
  .sec_date .event_menu li {
    max-width: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .sec_date .event_menu li {
    max-width: 121px;
  }
}
.sec_date .event_menu li:last-child {
  border-right: 1px solid #e5e5e5;
}
.sec_date .event_menu a {
  position: relative;
  display: block;
  text-align: center;
  padding: 10px 0 5px 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 751px) {
  .sec_date .event_menu a {
    padding: 20px 0 18px 0;
  }
  .sec_date .event_menu a:hover {
    opacity: 0.5;
  }
}
.sec_date .event_menu a::before,
.sec_date .event_menu a::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
}
.sec_date .event_menu a::before {
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #575757;
  z-index: 1;
}
@media screen and (min-width: 751px) {
  .sec_date .event_menu a::before {
    height: 10px;
  }
}
.sec_date .event_menu a::after {
  top: 0;
  left: 0;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid #fa0f0c;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 2;
}
.sec_date .event_menu a.selected::after {
  opacity: 1;
}
.sec_date .event_menu a.saturday::before {
  background-color: #547dd1;
}
.sec_date .event_menu a.saturday span:not(.sn_500) {
  color: #547dd1;
}
.sec_date .event_menu a.sunday::before {
  background-color: #de5e5d;
}
.sec_date .event_menu a.sunday span:not(.sn_500) {
  color: #de5e5d;
}
.sec_date .event_menu a span.sn_500 {
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .sec_date .event_menu a span.sn_500 {
    font-size: 22px;
  }
}
.sec_date .event_menu a span:not(.sn_500) {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 751px) {
  .sec_date .event_menu a span:not(.sn_500) {
    font-size: 11px;
  }
}
.sec_date .slick-arrow {
  position: absolute;
  display: block;
  top: inherit;
  top: 12px;
  left: inherit;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  z-index: 1;
}
@media screen and (min-width: 751px) {
  .sec_date .slick-arrow {
    top: 25px;
    width: 50px;
    height: 50px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .sec_date .slick-arrow:hover {
    background-color: #fa0f0c;
  }
  .sec_date .slick-arrow:hover::before {
    background-color: #f7f7f7;
  }
  .sec_date .slick-arrow:hover::after {
    border-color: #f7f7f7;
  }
}
.sec_date .slick-arrow::before,
.sec_date .slick-arrow::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sec_date .slick-arrow::before {
  width: 15px;
  height: 1px;
  background-color: #fa0f0c;
}
.sec_date .slick-arrow::after {
  width: 6px;
  height: 6px;
  border-top: 1px solid #fa0f0c;
  border-right: 1px solid #fa0f0c;
}
.sec_date .slick-prev {
  left: -50px;
}
@media screen and (min-width: 751px) {
  .sec_date .slick-prev {
    left: -70px;
  }
}
@media screen and (min-width: 1251px) {
  .sec_date .slick-prev {
    left: -90px;
  }
}
.sec_date .slick-prev::after {
  left: -6px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.sec_date .slick-next {
  right: -50px;
}
@media screen and (min-width: 751px) {
  .sec_date .slick-next {
    right: -70px;
  }
}
@media screen and (min-width: 1251px) {
  .sec_date .slick-next {
    right: -90px;
  }
}
.sec_date .slick-next::after {
  left: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sec_date .slick-prev.slick-disabled,
.sec_date .slick-next.slick-disabled {
  opacity: 0.3;
}
.sec_date .slick-prev.slick-disabled:before,
.sec_date .slick-next.slick-disabled:before {
  opacity: 1;
}
.sec_date {
  margin: 40px 0 20px 0;
}
@media screen and (min-width: 751px) {
  .sec_date {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 80px 0 90px 0;
  }
}
.sec_event_list {
  margin: 30px 0 0 0;
}
@media screen and (min-width: 751px) {
  .sec_event_list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 60px 0 0 0;
  }
}
.sec_event_item {
  margin: 0 0 40px 0;
}
@media screen and (min-width: 751px) {
  .sec_event_item {
    width: 28.07%;
    margin: 0 30px 60px 30px;
  }
}

body.page_oc.parents .sec_event_item {
  display: none;
}
body.page_oc.parents .sec_event_item.is_active {
  display: block;
}

/*----------------------------------------------------------
single
----------------------------------------------------------*/
.single {
  margin: 0 0 60px 0;
}
@media screen and (min-width: 751px) {
  .single {
    margin: 0 0 80px 0;
  }
}
@media screen and (min-width: 751px) {
  .single_head .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f2f2f2;
  }
}
@media screen and (min-width: 751px) {
  .single_head .img {
    width: 65%;
    max-width: 1000px;
  }
}
.single_head .textwrap {
  text-align: center;
  background-color: #f2f2f2;
  padding: 20px 25px 30px 25px;
}
@media screen and (min-width: 751px) {
  .single_head .textwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 35%;
    width: calc(100% - 1000px);
    padding: 25px;
  }
}
.single_head .textwrap .box {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .single_head .textwrap .box {
    max-width: 600px;
    margin: 0 auto;
  }
}
.single_head .textwrap .fukidashi span {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #fff;
  background-color: #111111;
  padding: 4px 26px;
  border-radius: 18px;
}
@media screen and (min-width: 751px) {
  .single_head .textwrap .fukidashi span {
    font-size: 14px;
    padding: 5px 18px;
  }
}
.single_head .textwrap .fukidashi span::after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -8px;
  left: 43%;
  border: 4px solid transparent;
  border-left: 15px solid #111111;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.single_head .textwrap .title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #e5e5e5;
  margin: 16px 0 0 0;
}
@media screen and (min-width: 751px) {
  .single_head .textwrap .title {
    font-size: 24px;
    padding: 0 0 20px 0;
  }
}
.single_head .textwrap .text {
  font-size: 14px;
  letter-spacing: 0.04em;
  margin: 20px 0 0 0;
}
.single_head .textwrap .select_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 25px;
  margin: 15px 0 0 0;
}
.single_head .textwrap .select_wrap::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 47.5%;
  right: 20px;
  border: 4px solid transparent;
  border-left: 6px solid #fa0f0c;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  z-index: 10;
}
@media screen and (min-width: 751px) {
  .single_head .textwrap .select_wrap {
    height: 50px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.single_head .textwrap .label {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  letter-spacing: 0.04em;
  z-index: 1;
}
.single_head .textwrap .label::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 47.5%;
  right: 20px;
  border: 4px solid transparent;
  border-left: 6px solid #fa0f0c;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (min-width: 751px) {
  .single_head .textwrap .label::before {
    right: 25px;
    border: 6px solid transparent;
    border-left: 8px solid #fa0f0c;
  }
}
.single_head .line_txt {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}
@media screen and (min-width: 751px) {
  .single_head .line_txt {
    margin-top: 15px;
    text-align: center;
  }
}
.single_head .select {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  /* border: none; */
  padding: 10px;
  border-radius: 25px;
  /* opacity: 0; */
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 2;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .single_head .select {
    padding: 13px 0;
  }
}
.single_head .select::-ms-expand {
  display: none;
}
/* .single_head .select:focus {
  opacity: 1;
  z-index: -1;
} */
.single_head .textwrap .js_btn a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background-color: #fa0f0c;
  padding: 13px 0;
  margin: 15px 0 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 751px) {
  .single_head .textwrap .js_btn a {
    margin: 20px 0 0 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .single_head .textwrap .js_btn a:hover {
    opacity: 0.8;
  }
}
.single_covid19 {
  margin: 0;
}
.single_covid19 .text {
  letter-spacing: 0.04em;
  color: #202123;
  margin: 40px 0 0 0;
}
@media screen and (min-width: 751px) {
  .single_covid19 .text {
    margin: 60px 0 0 0;
  }
}
.single_covid19 .text_list {
  margin: 30px 0 0 0;
}
@media screen and (min-width: 751px) {
  .single_covid19 .text_list {
    margin: 40px 0 0 0;
  }
}
.single_covid19 .text_list li {
  position: relative;
  letter-spacing: 0.04em;
  color: #202123;
  padding: 0 0 0 12px;
  margin: 0 0 10px 0;
}
@media screen and (min-width: 751px) {
  .single_covid19 .text_list li {
    padding: 0 0 0 17px;
    margin: 0 0 15px 0;
  }
}
.single_covid19 .text_list li::before {
  content: '';
  position: absolute;
  display: block;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #fa0f0c;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .single_covid19 .text_list li::before {
    top: 12px;
  }
}
.single_covid19 .text_list li:last-child {
  margin: 0;
}
.single_covid19 .img_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px 0 0 0;
}
@media screen and (min-width: 751px) {
  .single_covid19 .img_list {
    margin: 52px 0 0 0;
  }
}
.single_covid19 .img_list li {
  width: 48.7%;
  margin: 0 0 15px 0;
}
@media screen and (min-width: 751px) {
  .single_covid19 .img_list li {
    margin: 0 0 30px 0;
  }
}
.single_osusume {
  padding: 40px 0 0 0;
  border-top: 1px solid #e5e5e5;
  margin: 45px 0 20px 0;
}
@media screen and (min-width: 751px) {
  .single_osusume {
    padding: 95px 0 0 0;
    margin: 90px 0;
  }
}
.single_osusume .single_title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .single_osusume .single_title {
    font-size: 24px;
  }
}
.single_osusume .sec_event_list {
  margin: 30px 0 0 0;
}
@media screen and (min-width: 751px) {
  .single_osusume .sec_event_list {
    margin: 60px 0 0 0;
  }
}

/*----------------------------------------------------------
article
----------------------------------------------------------*/
.article {
  margin: 40px 0 0 0;
}
@media screen and (min-width: 751px) {
  .article {
    margin: 80px 0 0 0;
  }
}
.article_head .titlewrap {
  border-bottom: 1px solid #e5e5e5;
  margin: 0 0 40px 0;
}
@media screen and (min-width: 751px) {
  .article_head .titlewrap {
    margin: 0 0 60px 0;
  }
}
.article_head .title {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0 0 20px 0;
}
@media screen and (min-width: 751px) {
  .article_head .title {
    font-size: 32px;
    padding: 0 0 40px 0;
  }
}
.article_head .title::before {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #fa0f0c;
}
@media screen and (min-width: 751px) {
  .article_head .title::before {
    width: 80px;
    height: 5px;
  }
}
.article_head p {
  letter-spacing: 0.04em;
  color: #202123;
  margin: 0 0 25px 0;
}
@media screen and (min-width: 751px) {
  .article_head p {
    margin: 0 0 30px 0;
  }
}
.article_date {
  padding: 0 0 0 0;
}
@media screen and (min-width: 751px) {
  .article_date {
    padding: 0 0 0 0;
  }
}
.article_date_wrap {
  background-color: #f2f2f2;
  padding: 10px;
  margin: 30px 0 0 0;
}
@media screen and (min-width: 751px) {
  .article_date_wrap {
    padding: 20px;
    margin: 40px 0 0 0;
  }
}
.article_date_wrap ul {
  margin: 0 auto;
}
.article_date_wrap li {
  background-color: #fff;
  padding: 20px 20px 15px 20px;
  border-bottom: 1px solid #f2f2f2;
}
@media screen and (min-width: 751px) {
  .article_date_wrap li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 20px;
  }
}
.article_date_wrap li:last-child {
  border: none;
}
.article_date_wrap li .textwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .article_date_wrap li .textwrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.article_date_wrap li .day,
.article_date_wrap li .time {
  font-size: 20px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .article_date_wrap li .day,
  .article_date_wrap li .time {
    font-size: 22px;
    line-height: 1.4;
  }
}
.article_date_wrap li .time {
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .article_date_wrap li .time {
    font-size: 18px;
  }
}
.article_date_wrap li .yobi {
  font-weight: 500;
  line-height: 1.5;
  padding: 0 1em 0 0.5em;
}
.article_date_wrap li .small {
  font-size: 12px;
}
@media screen and (min-width: 751px) {
  .article_date_wrap li .small {
    font-size: 16px;
  }
}
.article_date_wrap li .btn {
  display: block;
  width: 100%;
  margin: 10px 0 0 0;
}
@media screen and (min-width: 751px) {
  .article_date_wrap li .btn {
    max-width: 170px;
    margin: 0;
  }
}
.article_date_wrap li .btn a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
  background-color: #fa0f0c;
  padding: 10px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 751px) {
  .article_date_wrap li .btn a:hover {
    opacity: 0.8;
  }
}
.article_date .btn_line {
  margin: 30px 0 0 auto;
}
.article_point {
  margin: 40px 0 0 0;
}
@media screen and (min-width: 751px) {
  .article_point {
    margin: 60px 0 0 0;
  }
}
.article_point ul {
  margin: 30px 0 0 0;
}
@media screen and (min-width: 751px) {
  .article_point ul {
    margin: 40px 0 0 0;
  }
}
.article_point li {
  margin: 0 0 40px 0;
}
@media screen and (min-width: 751px) {
  .article_point li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 60px 0;
  }
}
@media screen and (min-width: 751px) {
  .article_point li:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.article_point li:last-child {
  margin: 0;
}
@media screen and (min-width: 751px) {
  .article_point li .img,
  .article_point li .textwrap {
    width: 47.4%;
  }
}
@media screen and (max-width: 750px) {
  .article_point li .textwrap {
    margin: 20px 0 0 0;
  }
}
.article_point li .textwrap .lead {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 10px 0 0 0;
}
@media screen and (min-width: 751px) {
  .article_point li .textwrap .lead {
    font-size: 24px;
    margin: 4px 0 0 0;
  }
}
.article_point li .textwrap p.text {
  letter-spacing: 0.04em;
  color: #202123;
  margin: 20px 0 0 0;
}
@media screen and (min-width: 751px) {
  .article_point li .textwrap p.text {
    margin: 30px 0 0 0;
  }
}
.article_ts {
  margin: 40px 0 0 0;
}
@media screen and (min-width: 751px) {
  .article_ts {
    margin: 100px 0 0 0;
  }
}
.article_ts_wrap {
  margin: 40px 0 0 0;
}
@media screen and (min-width: 751px) {
  .article_ts_wrap {
    margin: 60px auto 0 auto;
  }
}
.article_ts .sec_schedule_title {
  max-width: 1190px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0 25px;
  margin: 0 auto 15px auto;
}
@media screen and (min-width: 751px) {
  .article_ts .sec_schedule_title {
    font-size: 24px;
    margin: 0 auto 20px auto;
  }
}

/*----------------------------------------------------------
archive
----------------------------------------------------------*/
body.page_oc.archive .sec_event_list {
  margin: 60px 0;
}
@media screen and (min-width: 751px) {
  body.page_oc.archive .sec_event_list {
    margin: 80px 0 60px 0;
  }
}

/*===============================================================

	sec_event_list

===============================================================*/
.sec_event_list .btn_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sec_event_list .btn_wrp .btn {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 31.3333%;
  flex-basis: 31.3333%;
  width: auto;
  margin-top: 15px;
}

.sec_event_list .btn_wrp .btn a {
  display: block;
  width: 100%;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 7px 0;
  text-align: center;
  min-height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sec_event_list .btn_wrp .btn a:hover {
  opacity: 0.8;
}

.sec_event_list .btn_wrp .more_btn a {
  background: #000;
}

.sec_event_list .btn_wrp .entry_btn a {
  background: #fa0f0c;
}

.sec_event_list .btn_wrp .line_btn a {
  background: #06c755;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
/* for SP max-width: 800px */
/*===============================================================

	line_entry_description

===============================================================*/
.line_entry_description {
  margin-top: 50px;
  text-align: center;
}

.line_entry_description p {
  font-size: 14px;
  line-height: 1.5;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  .line_entry_description {
    margin-top: 30px;
    text-align: left;
  }
  .line_entry_description p {
    font-size: 12px;
    line-height: 1.5;
  }
} /* for SP max-width: 800px */
/*===============================================================

	調整

===============================================================*/
.single_oc .article_date + .section_wrp .section:last-child .section_inner {
  padding-bottom: 0;
}

/*===============================================================

	oc_section

===============================================================*/
.oc_section + .oc_section {
  border-top: 1px solid #e5e5e5;
}
/*===============================================================

	oc_content

===============================================================*/
.oc_content {
  padding: 80px 0;
}
.oc_content + .oc_content {
  border-top: 1px solid #e5e5e5;
}
.oc_content .content_headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.oc_content .content_headline .locallink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.oc_content .content_headline .locallink p + p {
  margin-left: 10px;
}
.oc_content .content_headline .locallink a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 5px 18px 5px 20px;
  border-radius: 18px;
  background: #fa0f0c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.oc_content .content_headline .locallink a + a {
  padding-left: 20px;
}
.oc_content .content_headline .locallink a:hover {
  opacity: 0.8;
}
.oc_content .content_headline .title {
  font-size: 35px;
}
.oc_content .content_headline .title.ja {
  font-size: 30px;
  letter-spacing: inherit;
}
.oc_content .top_locallink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 50px;
}
.oc_content .top_locallink p + p {
  margin-left: 10px;
}
.oc_content .top_locallink a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  display: block;
  width: 200px;
  text-align: center;
  padding: 5px 35px;
  background: #fa0f0c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.oc_content .top_locallink a + a {
  padding-left: 20px;
}
.oc_content .top_locallink a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .oc_content {
    padding: 40px 0;
  }
  .oc_content .content_headline .locallink p + p {
    margin-left: 1vw;
  }
  .oc_content .content_headline .locallink a {
    font-size: 2.6vw;
    font-weight: 600;
    padding: 1vw 2vw;
  }
  .oc_content .content_headline .title {
    font-size: 5vw;
  }
  .oc_content .content_headline .title.ja {
    font-size: 5vw;
  }
  .oc_content .top_locallink {
    margin-bottom: 30px;
    width: 100%;
  }
  .oc_content .top_locallink p {
    width: 48.5%;
  }
  .oc_content .top_locallink p + p {
    margin-left: 3%;
  }
  .oc_content .top_locallink a {
    font-size: 3.3vw;
    width: 100%;
    padding: 5px 0;
  }
}

/*===============================================================

	oc_headline

===============================================================*/
.oc_headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.oc_headline + * {
  margin-top: 40px;
}
.oc_headline .title {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  margin-right: 20px;
}
.oc_headline .subtitle {
  width: 100%;
}
.oc_headline .btn_reset a {
  display: block;
  background: #f2f2f2;
  color: #111;
  font-size: 14px;
  line-height: 30px;
  padding: 0 10px;
  border: solid 1px #ddd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .oc_headline .btn_reset a:hover {
    background: #111;
    color: #fff;
    border: solid 1px #111;
  }
}
@media screen and (max-width: 750px) {
  .oc_headline {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .oc_headline + * {
    margin-top: 30px;
  }
  .oc_headline .title {
    font-size: 18px;
  }
  .oc_headline .btn_reset {
    width: 50%;
    margin: 20px auto 0 auto;
    text-align: center;
  }
  .oc_headline .btn_reset a {
    display: block;
    background: #f2f2f2;
    color: #111;
    font-size: 14px;
    line-height: 30px;
    padding: 0 10px;
  }
}

/*===============================================================

	event_list

===============================================================*/
.event_list {
  margin-top: 0;
}

/*===============================================================

	oc_pickup

===============================================================*/
.oc_pickup {
  padding-top: 0 !important;
}

/*===============================================================

	oc_bnr

===============================================================*/
.oc_bnr {
  padding-top: 0;
  border: 0 !important;
}
.oc_bnr > * + * {
  margin-top: 40px;
}
.oc_bnr_item a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.oc_bnr_item_small {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
@media (hover: hover) {
  .oc_bnr_item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 750px) {
  .oc_bnr > * + * {
    margin-top: 10px;
  }
  .oc_bnr_item_small {
    width: 100%;
    max-width: inherit;
  }
}

.oc_bdt {
  border-top: solid 1px #ddd;
}
/*# sourceMappingURL=oc.css.map */
