@charset "utf-8";

/*==========================================
 font
===========================================*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
html {
  font-family: 'Noto Sans CJK JP', sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.2em;
}

/* link */
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
a { outline: none; text-decoration: none; }
a:link    { color: #000; text-decoration: none; }
a:visited { color: #000; text-decoration: underline; }
a:hover   { color: #000; text-decoration: underline; }
a:active  { color: #000; text-decoration: underline; }

p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0 0 15px;
}
p.center {
  width: 100%;
  text-align: center;
}

/*==========================================
 body
===========================================*/

html {
  background: #FFF;
  overflow: auto;
}
body {
  overflow: hidden;
	min-width: 1100px;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 767px) {
  body {
  	min-width: auto;
  }
}


/*==========================================
 画像切替
===========================================*/
/* PC、スマートフォン表示分岐 */
.pcView {
  display: block;
}
.spView {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pcView {
    display: none;
  }
  .spView {
    display: block;
  }
}

/*==========================================
 ヘッダーのスタイル
===========================================*/
header {
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 90px;
  background-color: #FFF;
  box-shadow: 0 0 15px -5px #777;
}
header #header {
  position: relative;
  width: 100%;
}
header #headerLogoArea {
  display: block;
  position: absolute;
  left: 22px;
  top: 27px;
}
header #headerLogoArea h1 img {
  width: 275px;
  height: auto;
}
header #headerLogoArea.typ01 {
  display: block;
}

header #headerLogoArea_Scroll {
  display: block;
  position: absolute;
  left: 22px;
  top: 19px;
}
header #headerLogoArea_Scroll h1 img {
  width: 126px;
  height: auto;
}
header #headerLogoArea_Scroll.typ01 {
  display: none;
}

header #header_SpIcon {
  display: none;
}
@media only screen and (max-width: 767px) {
  header {
    height: 60px;
  }
  header #header {
    width: 100%;
    margin: 0;
  }
  header #headerLogoArea {
    left: 15px;
    top: 15px;
  }
  header #headerLogoArea h1 img {
    width: 200px;
  }

  header #headerLogoArea_Scroll {
    left: 10px;
    top: 10px;
  }
  header #headerLogoArea_Scroll h1 img {
    width: 100px;
  }
  header #header_SpIcon {
    display: block;
    z-index: 700;
    position: absolute;
    right: 15px;
    top: 5px;
    width: 28px;
    height: 40px;
    padding: 14px 0 0;
    box-sizing: border-box;
  }
  header #header_SpIcon .menu-trigger,
  header #header_SpIcon .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  header #header_SpIcon .menu-trigger {
    position: relative;
    width: 28px;
    height: 22px;
  }
  header #header_SpIcon .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  header #header_SpIcon .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }

}


/*グローバルナビゲーション ////////////////////////////////// */
header #headerGlobalArea {
  position: absolute;
  right: 0;
  top: 27px;
}
header #headerGlobalArea ul {
  display: flex;
  justify-content: flex-end;
  width: 900px;
}
header #headerGlobalArea li {
  height: 36px;
  margin: 9px 0 0 40px;
}
header #headerGlobalArea li a {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 300;
  color: #1A1A1A;
}
header #headerGlobalArea li.gr_o:nth-child(4){
  margin: 7px 0 0 40px;
}
header #headerGlobalArea li.gr_o:nth-child(5) {
  margin: 7px 20px 0 15px;
}
header #headerGlobalArea li.gr_o a {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFF;
  margin: 4px 0 0 0;
}
header #headerGlobalArea li.gr_o a span {
  background: #000;
  padding: 10px 30px 12px 20px;
  border-radius: 4px;
  position: relative;
}
header #headerGlobalArea li.gr_o a span::after {
  content: url('../img/link_icon_g.svg');
  display: inline-block;
  position: absolute;
  right: 16px;
  top: 12px;
  width: 9px;
  height: 9px;
}
header #headerGlobalArea li a:hover,
header #headerGlobalArea li.active a {
  text-decoration: none;
  opacity: 0.7;
}
header #headerGlobalArea li a:hover::before,
header #headerGlobalArea li.active a::before {
  display: none;
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 90%;
  height: 3px;
  margin: 0 0 0 -45%;
  background-color: #B41E1E;
  content: "";
}
header #overay,
header #headerNavi_Sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  header #headerGlobalArea {
    display: none;
  }

  header #overay {
    position: fixed;
    display: none;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
  }
  header #headerNavi_Sp {
    position: absolute;
    right: -100vw;
    top: 0;
    display: block;
    width: 60%;
    padding: 10px 0 0;
    background-color: #FFF;
  }
  header #headerNavi_Sp ul {
    width: 100%;
    padding: 0 0 30px;
  }
  header #headerNavi_Sp ul li {
    width: 100%;
  }
  header #headerNavi_Sp ul li a {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px 15px 35px;
    display: block;
    font-size: 1.4rem;
    border-bottom: solid 1px #DADADA;
    position: relative;
  }
  header #headerNavi_Sp ul li a::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 15px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header #headerNavi_Sp ul li.gr_s a {
    border: none;
    padding: 20px 20px 0;
    color: #FFF;
  }
  header #headerNavi_Sp ul li.gr_s a::after {
    display: none;
  }
  header #headerNavi_Sp ul li.gr_s a span {
    width: 100%;
    box-sizing: border-box;
    display: block;
    font-size: 1.4rem;
    position: relative;
    background: #000;
    border-radius: 4px;
    padding: 12px;
    position: relative;
    text-align: center;
  }
  header #headerNavi_Sp ul li.gr_s a span::after {
    content: url('../img/link_icon_g.svg');
    display: inline-block;
    position: absolute;
    right: 39px;
    top: 11px;
    width: 9px;
    height: 9px;
  }
}

/*==========================================
 フッターのスタイル
===========================================*/
#footer_guide_btn {
  display: none;
}
@media only screen and (max-width: 767px) {
  #footer_guide_btn {
    position: fixed;
    z-index: 100;
    left: 0;
    bottom: -100px;
    display: block;
    width: 100%;
    height: 72px;
    padding: 5px;
    box-sizing: border-box;
    background-color: #FFF;
    box-shadow: 0 0 15px -5px #777;
    transition: all 0.5s ease;
  }
  #footer_guide_btn.view {
    bottom: 0;
  }
  #footer_guide_btn a {
    position: relative;
    width: 100%;
    height: 62px;
    background: #000;
    border-radius: 4px;
    display: block;
    color: #FFF;
    font-size: 1.7rem;
    padding: 12px 0 0;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.4;
    margin: 0 0 20px;
  }
  #footer_guide_btn a span {
    display: block;
    padding: 3px 0 0;
    font-size: 1.1rem;
  }
  #footer_guide_btn a:hover {
    text-decoration: none;
  }
  #footer_guide_btn a::after {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 11px;
    margin: -12px 0 0 101px;
    background-image: url('../img/link_icon.svg');
    background-size: cover;
    content: "";
  }
}



footer {
  width: 100%;
  background-color: #000;
}
footer #footerBody {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding: 50px 0 40px;
}
footer #footerBody h1 {
  margin: 0 0 35px;
}
footer #footerBody h1 a {
  width: 300px;
  display: block;
}
footer #footerBody h1 a img {
  width: 100%;
}
footer #footerBody h1 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
footer #footerBody small {
  display: block;
  padding: 30px 0 0;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: #FFF;
}
footer #footerBody .footerLink {
}
footer #footerBody .footerLink ul {
  list-style-type: none;
}
footer #footerBody .footerLink ul li {
  margin: 0 30px 0 0;
  display: inline-block;
}
footer #footerBody .footerLink ul li span {
  position: relative;
}
footer #footerBody .footerLink ul li span::after {
  content: url('../img/link_icon.svg');
  display: inline-block;
  position: absolute;
  right: -16px;
  top: 2px;
  width: 9px;
  height: 9px;
}
footer #footerBody .footerLink ul li a {
  font-size: 1.4rem;
  color: #FFF;
}
footer #footerBody .footerLink ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  footer {
    margin: 0;
  }
  footer #footerBody {
    width: 85%;
    height: auto;
    padding: 20px 0 100px;
    position: relative;
  }
  footer #footerBody h1 {
    margin: 0 0 20px;
  }
  footer #footerBody h1 a {
    font-size: 1.6rem;
    width: 220px;
  }
  footer #footerBody small {
    padding: 20px 0 0;
    font-size: 1.0rem;
  }
  footer #footerBody .footerLink {
    position: static;
    padding: 30px 0 0;
  }
  footer #footerBody .footerLink ul li {
    margin: 0 20px 15px 0;
    display: block;
  }
  footer #footerBody .footerLink ul li a {
    font-size: 1.2rem;
  }
  footer #footerBody .footerLink ul li a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}


/*==========================================
 ページアップ
===========================================*/
#pageup {
  display: none;
}
#pageup a {
  display: block;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 767px) {
  #pageup {
    top : 15px;
    right : 0;
  }
}


/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  min-height: 500px;
  padding: 90px 0 0 0;
}
#mainContents img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#mainContents h2 {
  font-size: 3.6rem;
  font-weight: normal;
  text-align: center;
  position: relative;
}
#mainContents h2.typ01 {
  margin: 0 0 70px;
}
#mainContents h2.h2_white {
  color: #FFF;
}
#mainContents h2::after {
  content: "";
  left: 50%;
  bottom: -25px;
  width: 80px;
  height: 2px;
  margin: 0 0 0 -40px;
  background-color: #000;
  position: absolute;
}
#mainContents h2.h2_white::after {
  background-color: #FFF;
}
#mainContents h2.o_type {
  font-size: 2.8rem;
  line-height: 2;
  margin: 0 0 60px;
}
#mainContents h2.o_type::after {
  display: none;
}
#mainContents h2.o_type span {
  font-size: 1.4rem;
  display: block;
  padding: 10px 0 0;
}
section.w_1000 {
  width: 1000px;
  margin: 0 auto;
  padding: 85px 0;
}
#mainContents a:hover {
  opacity: 0.8;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #mainContents {
    min-height: 1500px;
    padding: 60px 0 0 0;
  }
  #mainContents h2 {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  #mainContents h2::after {
    bottom: -20px;
  }
  #mainContents h2.o_type {
    margin: 0 0 30px;
    font-size: 2.4rem;
  }
  #mainContents h2.o_type span {
    font-size: 1.2rem;
    padding: 0;
  }
  section.w_1000 {
    width: 90%;
    padding: 50px 0 0;
  }
}


/*==========================================
 ページネーションのスタイル
===========================================*/
#mainContents #pagination {
  margin: 50px 0 0;
}
#mainContents #pagination ul {
  text-align: center;
}
#mainContents #pagination ul li {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  vertical-align: middle;
  display: inline-block;
}
#mainContents #pagination ul li a,
#mainContents #pagination ul li span {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 5px 0 0;
  box-sizing: border-box;
  font-size: 1.8rem;
  text-align: center;
  display: block;
  text-decoration: none;
}
#mainContents #pagination ul li span {
  color: #B41E1E;
}
#mainContents #pagination ul li span::before {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 32px;
  height: 3px;
  margin: 0 0 0 -16px;
  background-color: #B41E1E;
  content: "";
}
#mainContents #pagination ul li a:hover {
  opacity: 0.7;
}
#mainContents #pagination ul li a.prev:hover,
#mainContents #pagination ul li a.next:hover {
  opacity: 0.7;
}
#mainContents #pagination ul li a.prev:before {
  content: '';
  height: 10px;
  width: 10px;
  display: block;
  border: 2px solid #B41E1E;
  border-left-width: 0;
  border-top-width: 0;
  position: absolute;
  top: 50%;
  left: 14px;
  margin: -6px 0 0 0;
  transform: rotate(-225deg);
}
#mainContents #pagination ul li a.next:after {
  position: absolute;
  top: 50%;
  left: 7px;
  height: 10px;
  width: 10px;
  display: block;
  border: 2px solid #B41E1E;
  border-left-width: 0;
  border-top-width: 0;
  margin: -6px 0 0 0;
  transform: rotate(-45deg);
  content: "";
}


@media only screen and (max-width: 767px) {
  #mainContents #pagination {
    padding: 0 0 30px;
  }
  #mainContents #pagination ul li {
    width: 40px;
    height: 40px;
    margin: 0 2px;
  }
  #mainContents #pagination ul li a,
  #mainContents #pagination ul li span {
    width: 40px;
    height: 40px;
    padding: 12px 0 5px 0;
    font-size: 1.6rem;
  }
  #mainContents #pagination ul li a.prev:before {
    height: 12px;
    width: 12px;
    left: 15px;
    margin: -7px 0 0 0;
  }
  #mainContents #pagination ul li a.next:after {
    height: 12px;
    width: 12px;
    left: 10px;
    margin: -7px 0 0 0;
  }
}

/*==========================================
 トップページのスタイル
===========================================*/
#top_main {
  position: relative;
  opacity: 0;
  width: 100%;
}
#top_main img {
  width: 100%;
  height: auto;
}
#top_main .bx-wrapper {
  max-width: 100% !important;
  margin: 0 !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}
#top_main .top_text {
  position: absolute;
  left: 60px;
  top: 50%;
  width: 770px;
  height: 150px;
  margin: -75px 0 0 0;
}
#top_main .top_text img {
  width: 100%!important;
  height: 100%!important;
}
@media only screen and (max-width: 767px) {
  #top_main img {
    width: 600px!important;
    height: 225px!important;
  }
  #top_main .top_text {
    left: 25px;
    width: 320px;
    height: 63px;
    margin: -31px 0 0 0;
  }
}


#top_about {
  text-align: center;
}
#top_about p {
  padding: 70px 0 0;
  font-size: 2.0rem;
  line-height: 2.2;
}

@media only screen and (max-width: 767px) {
  #top_about {
    padding: 0 0 45px;
  }
  #top_about p {
    padding: 40px 0 0;
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.8;
  }
}

#top_program {
  width: 100%;
  height: 537px;
  position: relative;
  background-image: url(../img/program_bk.jpg);
  background-size: cover;
  background-position: center;
}
#top_program_bk {
  top: 0;
  left: 0;
  position: absolute;
}
#top_program_con {
  width: 100%;
  top: 70px;
  left: 0;
  position: absolute;
}
.program_icon {
  width: 198px;
  margin: 0 auto;
}
#top_program_2wrap {
  width: 540px;
  padding: 60px 0 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#top_program_2wrap section {
  width: 220px;
  text-align: center;
}
#top_program_2wrap img {
  margin: 0 0 10px;
}
#top_program_2wrap p {
  color: #FFF;
  font-size: 2.0rem;
  font-weight: 300;
  text-align: center;
  line-height: 2;
}
#top_program_2wrap p span {
  padding: 0;
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  #top_program {
    width: 100%;
    height: 862px;
    position: relative;
    background-image: url(../img/program_bk_sp.jpg);
    background-size: cover;
    background-position: center;
  }
  #top_program_2wrap section {
    width: 200px;
    text-align: center;
  }
  #top_program_2wrap {
    width: 200px;
    padding: 50px 0;
    margin: 0 auto;
    display: block;
  }
  #top_program_con {
    width: 100%;
    top: 50px;
    left: 0;
    position: absolute;
  }
  #top_program_2wrap section:first-of-type {
    margin: 0 0 50px;
  }
}
div#top_navigator {
  width: 900px;
  margin: 0 auto;
  padding: 90px 0 0;
}
section.top_navigator_2wrap {
  margin: 0 0 70px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.top_navigator_2wrap:last-of-type {
  margin: 0;
}
div.top_navigator_img {
  width: 200px;
}
div.top_navigator_con {
  width: 663px;
}
div.top_navigator_con p {
  font-weight: 300;
}
div.top_navigator_con p.navigator_name {
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0 0 20px;
  line-height: 1;
}
div.top_navigator_con a {
  display: block;
  font-size: 1.4rem;
  line-height: 2;
}
div.top_navigator_con a span {
  position: relative;
  text-decoration: underline;
}
div.top_navigator_con a:hover span {
  text-decoration: none;
}
div.top_navigator_con a span::after {
  content: url('../img/link_icon_g.svg');
  display: inline-block;
  position: absolute;
  right: -12px;
  top: -5px;
  width: 8px;
  height: 8px;
}
@media only screen and (max-width: 767px) {
  div#top_navigator {
    width: 100%;
    padding: 60px 0 40px;
  }
  section.top_navigator_2wrap {
    display: block;
    margin: 0 0 50px;
  }
  div.top_navigator_con {
    width: 100%;
  }
  div.top_navigator_con p.navigator_name {
    font-size: 2.0rem;
    margin: 0 0 10px;
  }
  div.top_navigator_con p {
    font-size: 1.4rem;
  }
  div.top_navigator_img {
    width: 260px;
    margin: 0 auto 10px;
  }
}


section.bc_gray {
  padding: 50px 0;
  background: #E6E6E6;
}
div#top_live_area {
  width: 1000px;
  margin: 0 auto;
  padding: 52px 55px;
  background: #FFF;
  box-sizing: border-box;
  border-radius: 10px;
}
#mainContents div#top_live_area h2 {
  font-size: 2.8rem;
  line-height: 2;
  margin: 0 0 60px;
}
#mainContents div#top_live_area h2::after {
  display: none;
}
#mainContents div#top_live_area h2 span {
  font-size: 1.4rem;
  font-weight: 300;
  display: block;
}
div#br_live_area {
  width: 1000px;
  margin: 0 auto;
  padding: 90px 55px 50px;
  background: #FFF;
  box-sizing: border-box;
}
#mainContents div#br_live_area h2 {
  font-size: 2.8rem;
  line-height: 2;
  margin: 0 0 60px;
}
#mainContents div#br_live_area h2::after {
  display: none;
}
#mainContents div#br_live_area h2 span {
  font-size: 1.4rem;
  font-weight: 300;
  display: block;
  padding: 10px 0 0;
}
section.top_live_2wrap {
  margin: 0 0 45px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
div.top_live_img {
  width: 266px;
}
div.top_live_con {
  width: 590px;
}
div.top_live_con p.live_date span {
  padding: 5px 10px 6px;
  color: #FFF;
  font-size: 1.4rem;
  background: #000;
  border-radius: 4px;
  line-height: 1;
}
div.top_live_con p.live_txt {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 2.2rem;
}
div.top_live_con p.live_sub {
  font-size: 1.8rem;
  font-weight: bold;
}
div.top_live_con p.live_sub {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: bold;
}
div.top_live_con p.live_sub02 {
  margin: 0 0 5px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  section.bc_gray {
    padding: 50px 0 30px;
  }
  div#top_live_area {
    width: 90%;
    padding: 20px;
  }
  div#br_live_area {
    width: 90%;
    padding: 50px 20px 0;
  }
  #mainContents div#br_live_area h2 {
    font-size: 2.8rem;
    line-height: 2;
    margin: 0 0 30px;
  }
  #mainContents div#top_live_area h2 span,
  #mainContents div#br_live_area h2 span {
    font-size: 1.2rem;
    font-weight: 300;
    display: block;
    padding: 0;
  }
  section.top_live_2wrap {
    margin: 0 0 50px;
    display: block;
  }
  div.top_live_img {
    width: 100%;
    margin: 0 auto 10px;
  }
  div.top_live_con {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
  }
  div.top_live_con p.live_txt {
    font-size: 1.8rem;
  }
  div.top_live_con p.live_sub {
    font-size: 1.6rem;
  }
  div.top_live_con p.live_sub02 {
    font-size: 1.4rem;
  }
  #mainContents div#top_live_area h2 {
    font-size: 2.4rem;
    margin: 0 0 30px;
  }
}

div#top_event_wrap {
  margin: 0 0 45px;
  display: flex;
  flex-wrap: wrap;
}
div#top_event_wrap section {
  position: relative;
  width: 310px;
  margin: 0 35px 40px 0;
}
div#top_event_wrap section:nth-child(3n) {
  width: 310px;
  margin: 0 0 40px;
}
div#top_event_wrap section a {
  transition: all 0.3s ease;
}
div#top_event_wrap section a:hover {
  color: #777;
}
div#top_event_wrap section p.event_status {
  position: absolute;
  left: 0;
  top: 10px;
  padding: 3px 10px;
  background-color: #777;
  font-size: 1.4rem;
  color: #FFF;
}
div#top_event_wrap section p.event_status.status01 {
  background-color: #E89C1D;
}
div#top_event_wrap section p.event_status.status02 {
  background-color: #EE3832;
}
div#top_event_wrap section p.event_status.status03 {
  background-color: #C5BB89;
}
div#top_event_wrap section p.event_status.status04 {
  background-color: #E8858C;
}
div#top_event_wrap section p.event_status.status05 {
  background-color: #85B284;
}
div#top_event_wrap section p.event_status.status06 {
  background-color: #B7B7B7;
}
div#top_event_wrap section p.event_status.status00 {
  display: none;
}
div#top_event_wrap .event_btn {
  width: 200px;
  margin: 0 auto;
  padding: 10px 0 0;
}
div#top_event_wrap .event_btn a {
  width: 200px;
  border-radius: 20px;
  background: #333;
  display: inline-block;
  color: #FFF;
  font-size: 1.4rem;
  padding: 10px 0;
  text-align: center;
  margin: 0 0 20px;
}
div#top_event_wrap .event_btn a span {
  position: relative;
}
div#top_event_wrap .event_btn a span::after {
  content: url('../img/link_icon.svg');
  display: inline-block;
  position: absolute;
  right: -15px;
  top: 2px;
  width: 9px;
  height: 9px;
}
div#top_event_wrap p {
  line-height: 1.6;
}
div#top_event_wrap p.center {
  width: 100%;
  text-align: center;
}
div#top_event_wrap h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 6px;
}
div#top_event_wrap section a:hover h4 {
  /* text-decoration: underline; */
}

div#top_event_wrap p.event_date {
  margin: 5px 0 0;
  font-size: 1.4rem;
  font-weight: 700;
}
div#top_event_wrap p.event_place {
  padding: 5px 0 0;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 8px;
}
div#top_event_wrap p.event_txt {
  font-size: 1.2rem;
  margin: 0 0 8px;
}
div#top_event_wrap p.event_guide {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 10px;
}
@media only screen and (max-width: 767px) {
  div#top_event_wrap {
    display: block;
  }
  div#top_event_wrap section,
  div#top_event_wrap section:nth-child(3n) {
    width: 100%;
  }
  div#top_event_wrap img {
    margin: 0 0 8px;
  }
}

div.con_btn {
  width: 300px;
  margin: 0 auto;
}
div.con_btn a {
  width: 100%;
  font-size: 1.8rem;
  padding: 20px 0;
  display: block;
  text-align: center;
  background: #FFF;
  border: 1px solid #000;
  border-radius: 4px;
  color: #000;
  box-sizing: border-box;
  position: relative;
}
div.con_btn a::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 20px;
	width: 10px;
	height: 10px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
  div.con_btn {
    margin: 0 auto 50px;
  }
}
div#top_guide_area {
  width: 1000px;
  margin: 0 auto;
  padding: 52px 150px;
  background: #FFF;
  box-sizing: border-box;
  box-shadow: 0 0 15px -5px #777;
  border-radius: 10px;
}
#mainContents div#top_guide_area h2 {
  font-size: 2.8rem;
  line-height: 2;
  margin: 0 0 60px;
}
#mainContents div#top_guide_area h2::after {
  display: none;
}
#mainContents div#top_guide_area h2 span {
  font-size: 1.4rem;
  display: block;
}
#mainContents dl {
	width: 100%;
	display: table;
  /* border-top: 1px solid #9B9B9B; */
}
#mainContents dl:first-of-type {
  border-top: 1px solid #9B9B9B;
}
#mainContents dl:last-of-type {
  /* border: none; */
  margin: 0 0 50px;
}
#mainContents dt {
  width: 160px;
  padding: 15px 10px 5px;
  font-size: 1.8rem;
  font-weight: bold;
  display: table-cell;
  border-bottom: 1px solid #9B9B9B;
}
#mainContents dd {
  padding: 15px 10px 5px;
	border-bottom: 1px solid #9B9B9B;
  display: table-cell;
}
#mainContents dd p span {
  font-size: 1.8rem;
  font-weight: 500;
  font-weight: bold;
  display: block;
}
#mainContents dd p a {
  text-decoration: underline;
}
div#top_guide_btn {
  width: 500px;
  margin: 0 auto;
  text-align: center;
}
div#top_guide_btn a.linkTyp01 {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 4px;
  display: block;
  color: #FFF;
  font-size: 2.4rem;
  padding: 30px 0;
  text-align: center;
  line-height: 1.4;
  margin: 0 0 20px;
}
div#top_guide_btn a.linkTyp01 span {
  display: block;
  padding: 5px 0 0;
  font-size: 1.6rem;
}
div#top_guide_btn a.linkTyp01::after {
  display: block;
  position: absolute;
  right: 100px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin: -19px 0 0;
  background-image: url('../img/link_icon.svg');
  background-size: cover;
  content: "";
}
div#top_guide_btn p {
  font-size: 15px;
}
#mainContents div#top_guide_btn p a {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  div#top_guide_area {
    width: 90%;
    margin: 0 auto;
    padding: 30px 5%;
    background: #FFF;
    box-sizing: border-box;
  }
  #mainContents div#top_guide_area h2 {
    font-size: 2.4rem;
    margin: 0 0 30px;
  }
  #mainContents dl {
  	width: 100%;
  	display: block;
    border-top: 1px solid #9B9B9B;
  }
  #mainContents dl:last-of-type {
    border: none;
    margin: 0 0 30px;
  }
  #mainContents dt {
    width: 160px;
    padding: 15px 0 0;
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
    border-bottom: none;
  }
  #mainContents dd {
    padding: 20px 0 10px;
    display: block;
  }
  #mainContents dd p {
    font-size: 1.4rem;
  }
  #mainContents dd p span {
    font-size: 1.6rem;
    display: block;
  }
  div#top_guide_btn {
    width: 100%;
  }
  div#top_guide_btn a {
    font-size: 1.8rem;
    margin: 0 0 20px;
  }
  div#top_guide_btn a span {
    position: relative;
  }
  div#top_guide_btn a span::after {
  }
  div#top_guide_btn a.linkTyp01 {
    font-size: 2.0rem;
  }
  div#top_guide_btn a.linkTyp01 span {
    font-size: 1.4rem;
  }
  div#top_guide_btn a.linkTyp01::after {
    right: 22px;
    margin: -16px 0 0;
  }
  div#top_guide_btn p {
    font-size: 1.2rem;
  }
  #mainContents div#top_guide_btn p a {
    font-size: 1.2rem;
  }
}


#bana_area {
  width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}
#bana_area ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}
#bana_area ul li {
  width: 300px;
}
#bana_area ul li a {
  width: 100%;
  padding: 30px 0;
  font-size: 1.8rem;
  color: #FFF;
  display: block;
  text-align: center;
  list-style: none;
}
#bana_area ul li#bana_01 a { background: #CA2B45; }
#bana_area ul li#bana_02 a { background: #00578C; }
#bana_area ul li#bana_03 a { background: rgb(230, 230, 0); color: rgb(60, 60, 60); }

@media only screen and (max-width: 767px) {
  #bana_area {
    width: 80%;
    padding: 30px 0;
  }
  #bana_area ul {
    display: block;
  }
  #bana_area ul li {
    width: 100%;
    margin: 0 0 30px;
  }
  #bana_area ul li a {
    width: 100%;
    padding: 30px 0;
    font-size: 1.8rem;
    color: #FFF;
    display: block;
    text-align: center;
    list-style: none;
  }
  #bana_area ul li#bana_03 {
    margin: 0;
  }
}



#mainContents .top_member {
  width: 700px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .top_member .column {
  width: 100%;
  padding: 0 0 30px;
}
#mainContents .top_member .column h3 {
  padding: 0 0 10px;
  font-size: 1.8rem;
  font-weight: bold;
}
#mainContents .top_member img {
  padding: 20px 0 0;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_member {
    width: 100%;
    padding: 20px 0 50px;
  }
  #mainContents .top_member .column {
    padding: 0 0 20px;
  }
  #mainContents .top_member .column h3 {
    padding: 0 0 10px;
    font-size: 1.6rem;
  }
  #mainContents .top_member img {
    padding: 10px 0 0;
  }
}


/*==========================================
 共通ページのスタイル
===========================================*/
#br_main {
  width: 100%;
}
#br_main img {
  width: 100%;
  height: auto;
}
