@charset "UTF-8";
/*======================================
共通・パーツ
======================================*/
main {
  width: calc(100% - 250px);
}

/* ボタン */
.top-link-btnbox {
  margin: 0 10px;
}

.top-link-btn {
  display: inline-block;
  width: 100%;
  min-width: 230px;
  height: 64px;
  background: #1c7fc4;
  border: 1px solid #fff;
  text-align: center;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s;
  position: relative;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-link-btn:before {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  position: absolute;
  right: 7%;
  top: 48%;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}
.top-link-btn:hover {
  background: #0c4f8a;
}

/* セクションタイトル */
/*☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
共通レスポンシブ
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (max-width: 1000px) {
  main {
    width: 100%;
  }
}
/*======================================
トップ
======================================*/
/* MV */
.top-MV img {
  display: block;
}
.top-MV .sp {
  display: none;
}
.top-MV p {
  text-align: right;
  padding-right: 1%;
}

/* linkボタンエリア */
.top-linkarea {
  background: #f1f1f1;
  padding: 50px 0;
}
.top-linkarea .flexbox {
  display: flex;
  justify-content: center;
}

/* newsエリア */
.topnews-inner {
  padding: 30px;
  max-height: 200px;
  overflow-y: auto;
  border: 2px solid #1c7fc4;
  border-radius: 6px;
}

/*☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
トップレスポンシブ
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (max-width: 700px) {
  /* MV */
  .top-MV .pc {
    display: none;
  }
  .top-MV .sp {
    display: block;
  }
}
/*======================================
下層共通
======================================*/
/* MV */
.lower-MV {
  background: url(../img/common/lowerMV.jpg) no-repeat center center/cover;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lower-MV h1 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-size: 30px;
  color: #fff;
  background: rgba(12, 79, 138, 0.7882352941);
  padding: 10px 35px;
  letter-spacing: 0.1em;
}

/* パンくず */
.breadcrumb {
  background: #f1f1f1;
  padding: 6px 0;
  font-size: 13px;
}
.breadcrumb ul {
  display: flex;
}
.breadcrumb ul li a {
  transition: all 0.3s;
  padding: 0 7px 0 0;
}
.breadcrumb ul li a:hover {
  color: #a9a6a6;
}
.breadcrumb ul li:not(:first-of-type):before {
  content: "＞";
  color: #0c4f8a;
}

/*☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
下層共通レスポンシブ
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (max-width: 765px) {
  /* MV */
  .lower-MV {
    background: url(../img/common/lowerMV.jpg) no-repeat center center/cover;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .lower-MV h1 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 20px;
  }
}
/*======================================
会長挨拶
======================================*/
.greeting-profile {
  margin: 0 0 40px;
}
.greeting-profile .flexbox {
  display: flex;
  align-items: flex-end;
}
.greeting-profile img {
  max-width: 250px;
  margin: 0 20px 0 0;
}
.greeting-profile .textbox {
  font-weight: normal;
}
.greeting-profile .textbox p {
  line-height: 1.8;
}
.greeting-profile .textbox .name {
  font-size: 1.2em;
}

/*☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
レスポンシブ
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (max-width: 765px) {
  .greeting-profile {
    margin: 0 0 30px;
  }
  .greeting-profile .flexbox {
    display: block;
    text-align: center;
  }
  .greeting-profile img {
    max-width: 300px;
    margin: 0 auto;
  }
  .greeting-profile .textbox {
    text-align: center;
  }
}
/*======================================
開催概要
======================================*/
/* ボタン */
.outline .btn-box {
  display: block;
  margin: 10px 0 0;
}

/*☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
レスポンシブ
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
/*======================================
プログラム
======================================*/
/* プログラム */
/*☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
レスポンシブ
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
/*======================================
各種ご案内
======================================*/
/* ボタン */
.guide-link-btnbox {
  margin: 15px 0;
}

.guide-link-btn {
  display: inline-block;
  width: 100%;
  min-width: 230px;
  height: 64px;
  background: #1c7fc4;
  border: 1px solid #fff;
  text-align: center;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s;
  position: relative;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.guide-link-btn:hover {
  background: #0c4f8a;
}

/*☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
レスポンシブ
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/