@charset "UTF-8";
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: rgb(51, 51, 51);
}
@media screen and (max-width: 900px) {
  body {
    padding: 0 0;
  }
}

div {
  box-sizing: border-box;
}

p {
  margin: 0;
  padding: 0;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-20 {
  margin-bottom: 20px;
}

@media screen and (max-width: 900px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 900px) {
  .sp-only {
    display: none !important;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 40px;
  text-decoration: none;
  color: #ffffff;
  background-color: rgb(198, 198, 200);
  border: 1px solid rgb(51, 51, 51);
  border-radius: 5px;
}
.btn.btn-yellow {
  background-color: rgb(232, 185, 49);
}
.btn:hover {
  opacity: 0.7;
}

input[type=radio] {
  margin: 0 12px 0 0;
  padding: 0;
  width: 20px;
  height: 20px;
}

input {
  box-sizing: border-box;
  padding: 10px 12px;
  width: 100%;
  height: 40px;
  outline: none;
  border: 2px solid rgb(236, 236, 236);
  border-radius: 5px;
  font-size: 16px;
}
input.text-right {
  text-align: right;
}

.date-input {
  box-sizing: border-box;
  padding: 10px 12px;
  width: 100%;
  height: 40px;
  outline: none;
  border: 2px solid rgb(236, 236, 236);
  border-radius: 5px;
  position: relative;
}
.date-input.text-right {
  text-align: right;
}

textarea {
  box-sizing: border-box;
  padding: 10px 12px;
  width: 100%;
  height: 80px;
  outline: none;
  border: 2px solid rgb(236, 236, 236);
  border-radius: 5px;
  resize: none;
  font-size: 16px;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.content {
  box-sizing: border-box;
  max-width: 1200px;
  width: 90%;
}
@media screen and (max-width: 900px) {
  .content {
    width: 100%;
  }
}

.content-stretch {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .content-stretch {
    width: 100%;
  }
}

header .header-content {
  width: 100%;
  max-width: 1200px;
}
header .ad {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
header .ad img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .ad:hover {
  opacity: 0.7;
}
@media screen and (max-width: 900px) {
  header .ad {
    height: 30px;
  }
}
header .header-content-area {
  margin-top: 40px;
  margin-bottom: 6px;
  padding: 0 16px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  header .header-content-area {
    flex-direction: column;
    margin-top: 10px;
  }
}
header .header-content-area::before {
  content: "";
  width: 100%;
  height: 10px;
  background-color: rgb(67, 112, 178);
  position: absolute;
  top: -20px;
  left: 0;
}
@media screen and (max-width: 900px) {
  header .header-content-area::before {
    display: none;
  }
}
header .header-content-area .header-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
header .header-content-area .logo-area {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  header .header-content-area .logo-area {
    width: 100%;
    justify-content: space-between;
  }
}
header .header-content-area .logo-area .btn-img {
  width: 35px;
  height: auto;
  display: flex;
  align-items: center;
}
header .header-content-area .logo-area .btn-img img {
  width: 35px;
  height: auto;
}
header .header-content-area .logo-area .logo {
  width: 250px;
  height: auto;
}
@media screen and (max-width: 900px) {
  header .header-content-area .logo-area .logo {
    width: 180px;
  }
}
header .header-content-area .logo-area .logo img {
  width: 250px;
  height: auto;
}
@media screen and (max-width: 900px) {
  header .header-content-area .logo-area .logo img {
    width: 180px;
  }
}
header .header-content-area .logo-area .date {
  margin-left: 50px;
}
@media screen and (max-width: 900px) {
  header .header-content-area .logo-area .date {
    margin-left: 0;
    font-size: 10px;
  }
}
header .header-content-area .btn-group-area {
  display: flex;
}
@media screen and (max-width: 900px) {
  header .header-content-area .btn-group-area {
    margin-top: 20px;
    width: 100%;
    justify-content: space-between;
    position: relative;
  }
  header .header-content-area .btn-group-area::before {
    content: "";
    width: calc(100% + 40px);
    height: 2px;
    background-color: rgb(67, 112, 178);
    position: absolute;
    top: -20px;
    left: -20px;
  }
}
header .header-content-area .btn-group-area .btn-group {
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  font-weight: 800;
}
@media screen and (max-width: 900px) {
  header .header-content-area .btn-group-area .btn-group {
    flex-direction: column;
    font-size: 12px;
  }
}
header .header-content-area .btn-group-area .btn-group:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: rgb(128, 126, 125);
  border-radius: 30px;
}
@media screen and (max-width: 900px) {
  header .header-content-area .btn-group-area .btn-group:not(:last-child)::after {
    display: none;
  }
}
header .header-content-area .btn-group-area .btn-group:hover {
  opacity: 0.7;
}
header .header-content-area .btn-group-area .btn-group img {
  margin-right: 6px;
  width: auto;
  height: 35px;
}
@media screen and (max-width: 900px) {
  header .header-content-area .btn-group-area .btn-group img {
    height: 25px;
  }
}
header .header_menu {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
header .header_menu .menu {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 900px) {
  header .header_menu .menu {
    padding: 0 8px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  header .header_menu .menu::-webkit-scrollbar {
    height: 0;
  }
}
@media screen and (min-width: 900px) {
  header .header_menu .menu::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: rgb(67, 112, 178);
    position: absolute;
    bottom: 0;
    left: calc(-100% - 4px);
  }
  header .header_menu .menu::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: rgb(67, 112, 178);
    position: absolute;
    bottom: 0;
    left: calc(100% + 4px);
  }
}
header .header_menu .menu .menu-item {
  width: 14%;
  border-bottom: 2px solid rgb(67, 112, 178);
  text-align: center;
}
header .header_menu .menu .menu-item a {
  padding-top: 4px;
  width: 100%;
  height: 100%;
  display: block;
  color: rgb(51, 51, 51);
  text-decoration: none;
}
header .header_menu .menu .menu-item:hover {
  background-color: rgb(214, 228, 237);
}
header .header_menu .menu .menu-item.active {
  background-color: rgb(214, 228, 237);
}
@media screen and (max-width: 900px) {
  header .header_menu .menu .menu-item {
    font-size: 12px;
    white-space: nowrap;
    min-width: 140px;
  }
  header .header_menu .menu .menu-item:not(:first-child) {
    margin-left: 8px;
  }
}

.center-area {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .center-area {
    flex-direction: column;
  }
}
.center-area .center-left-area {
  width: calc(75% - 40px);
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area {
    width: 100%;
    padding: 0 16px;
  }
}
.center-area .center-left-area .tool-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.center-area .center-left-area .tool-area .tool-left-area {
  display: flex;
  align-items: center;
}
.center-area .center-left-area .tool-area .tool-left-area .tool-btn-area {
  margin-left: 16px;
  display: flex;
}
.center-area .center-left-area .tool-area .tool-left-area .tool-btn-area .tool-btn {
  margin: 0 6px;
  padding: 6px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.center-area .center-left-area .tool-area .tool-left-area .tool-btn-area .tool-btn:hover {
  color: #ffffff;
}
.center-area .center-left-area .tool-area .tool-left-area .tool-btn-area .tool-btn:hover::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(67, 112, 179, 0.3);
  z-index: -1;
}
.center-area .center-left-area .tool-area .tool-left-area .tool-btn-area .tool-btn.active {
  color: #ffffff;
}
.center-area .center-left-area .tool-area .tool-left-area .tool-btn-area .tool-btn.active::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgb(67, 112, 179);
  z-index: -1;
}
.center-area .center-left-area .tool-area .tool-right-area {
  display: flex;
}
.center-area .center-left-area .tool-area .tool-right-area .share-btn {
  padding: 2px 12px;
  display: flex;
  cursor: pointer;
  color: #ffffff;
  font-size: 12px;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.center-area .center-left-area .tool-area .tool-right-area .share-btn img {
  width: 16px;
  margin-right: 4px;
}
.center-area .center-left-area .tool-area .tool-right-area .share-btn:not(:first-child) {
  margin-left: 6px;
}
.center-area .center-left-area .tool-area .tool-right-area .share-btn:hover {
  opacity: 0.7;
}
.center-area .center-left-area .tool-area .tool-right-area .x-share-btn {
  background-color: #000000;
  border-radius: 30px;
}
.center-area .center-left-area .tool-area .tool-right-area .f-share-btn {
  background-color: rgb(58, 97, 169);
  border-radius: 4px;
}
.center-area .center-left-area .news-area {
  margin-top: 16px;
}
.center-area .center-left-area .news-area .title {
  font-size: 26px;
  font-weight: 800;
}
.center-area .center-left-area .news-area .news-detail {
  margin-top: 16px;
}
.center-area .center-left-area .news-area .news-detail .news-img-area {
  margin-right: 20px;
  margin-bottom: 8px;
  max-width: 200px;
  float: left;
}
.center-area .center-left-area .news-area .news-detail .news-img-area .img-area {
  width: 100%;
  padding-top: 66.67%;
  position: relative;
}
.center-area .center-left-area .news-area .news-detail .news-img-area .img-area img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.center-area .center-left-area .news-area .news-detail .news-img-area p {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .news-area .news-detail .news-img-area {
    margin: 24px 0;
    padding: 0 24px;
    float: unset;
    margin-right: unset;
    max-width: unset;
  }
}
.center-area .center-left-area .news-area .news-detail .news-detail-content {
  line-height: 1.8;
  letter-spacing: 2px;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .news-area .news-detail .news-detail-content {
    text-indent: 20px;
  }
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .news-area .date {
    text-align: right;
  }
  .center-area .center-left-area .news-area .tool-area {
    margin: 16px 0;
    justify-content: flex-end;
  }
}
.center-area .center-left-area .news-area.large .title {
  font-size: 40px;
}
.center-area .center-left-area .news-area.large .news-detail p {
  font-size: 20px;
}
.center-area .center-left-area .news-area.large .news-detail .news-detail-content {
  font-size: 24px;
}
.center-area .center-left-area .news-area.small .title {
  font-size: 24px;
}
.center-area .center-left-area .news-area.small .news-detail p {
  font-size: 10px;
}
.center-area .center-left-area .news-area.small .news-detail .news-detail-content {
  font-size: 14px;
}
.center-area .center-left-area .link-area {
  margin-top: 64px;
}
.center-area .center-left-area .link-area a {
  display: block;
  color: rgb(51, 51, 51);
  text-decoration: none;
  position: relative;
  padding-left: 30px;
  letter-spacing: 2px;
}
.center-area .center-left-area .link-area a::after {
  content: ">>";
  position: absolute;
  top: 0;
  left: 0;
}
.center-area .center-left-area .link-area a:hover {
  opacity: 0.7;
}
.center-area .center-left-area .latest-news-area {
  margin-top: 64px;
}
.center-area .center-left-area .latest-news-area .title {
  font-size: 18px;
  font-weight: 800;
  color: rgb(67, 112, 178);
}
.center-area .center-left-area .latest-news-area a {
  text-decoration: none;
  color: rgb(51, 51, 51);
  letter-spacing: 2px;
  display: block;
  position: relative;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .latest-news-area a .latest-news-content {
    display: inline;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    line-height: 1.5;
    text-overflow: ellipsis;
  }
  .center-area .center-left-area .latest-news-area a .latest-news-content.clamped {
    display: -webkit-box;
  }
}
.center-area .center-left-area .latest-news-area a .latest-news-date {
  margin-left: 24px;
  font-size: 12px;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .latest-news-area a .latest-news-date.clamped {
    margin-left: unset;
    position: absolute;
    bottom: 2px;
    right: 0;
    background-color: #ffffff;
    padding-left: 10px;
  }
  .center-area .center-left-area .latest-news-area a .latest-news-date.clamped::before {
    content: "...";
    position: absolute;
    bottom: 0;
    left: -10px;
    background-color: #ffffff;
  }
}
.center-area .center-left-area .latest-news-area a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .latest-news-area a {
    margin: 12px 0;
  }
}
.center-area .center-left-area .guide-btn-area {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .guide-btn-area {
    flex-direction: column;
  }
}
.center-area .center-left-area .guide-btn-area .guide-btn {
  width: 200px;
  height: auto;
}
.center-area .center-left-area .guide-btn-area .guide-btn:not(:first-child) {
  margin-left: 32px;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .guide-btn-area .guide-btn:not(:first-child) {
    margin-left: unset;
    margin-top: 16px;
  }
}
.center-area .center-left-area .guide-btn-area .guide-btn:hover {
  opacity: 0.7;
}
.center-area .center-left-area .guide-btn-area .guide-btn img {
  width: 200px;
  height: auto;
}
.center-area .center-left-area .ad-area {
  margin-top: 16px;
}
.center-area .center-left-area .ad-area .ad-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.center-area .center-left-area .ad-area .ad-row .ad-item {
  width: 45%;
  max-width: 360px;
  /* padding-top: 30%; */
  /* max-height: 240.012px; */
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .ad-area .ad-row .ad-item {
    margin-bottom: 32px;
    padding: 0 8px;
    width: 100%;
    max-width: unset;
    /* padding-top: 66.67%; */
    max-height: unset;
  }
}
.center-area .center-left-area .ad-area .ad-row .ad-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.center-area .center-left-area .ad-area .ad-row .ad-item:hover {
  opacity: 0.7;
}
.center-area .center-left-area .top-news {
  display: flex;
  text-decoration: none;
  color: rgb(51, 51, 51);
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .top-news {
    margin: 0 auto;
    flex-direction: column;
  }
}
.center-area .center-left-area .top-news:hover {
  opacity: 0.7;
}
.center-area .center-left-area .top-news .top-news-img {
  width: 50%;
  padding-top: 33.33%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .top-news .top-news-img {
    width: 100%;
    padding-top: 66.67%;
  }
}
.center-area .center-left-area .top-news .top-news-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.center-area .center-left-area .top-news .top-news-info {
  padding: 8px 12px;
  width: 50%;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .top-news .top-news-info {
    width: 100%;
  }
}
.center-area .center-left-area .top-news .top-news-info .title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .top-news .top-news-info .title {
    font-size: 20px;
  }
}
.center-area .center-left-area .top-news .top-news-info .date {
  padding: 12px 16px;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .top-news .top-news-info .date {
    padding: 8px 0;
    font-size: 12px;
  }
}
.center-area .center-left-area .top-news .top-news-info .news-detail {
  padding: 0 16px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .top-news .top-news-info .news-detail {
    padding: 0 0;
    font-size: 12px;
  }
}
.center-area .center-left-area .news-list {
  margin: 16px 0 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.center-area .center-left-area .news-list .news-list-item {
  margin-top: 32px;
  width: 32%;
  text-decoration: none;
  color: rgb(51, 51, 51);
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .news-list .news-list-item {
    width: 48%;
  }
}
.center-area .center-left-area .news-list .news-list-item:hover {
  opacity: 0.7;
}
.center-area .center-left-area .news-list .news-list-item .news-list-item-img {
  width: 100%;
  padding-top: 66.67%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.center-area .center-left-area .news-list .news-list-item .news-list-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.center-area .center-left-area .news-list .news-list-item .title {
  margin: 8px 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .news-list .news-list-item .title {
    font-size: 14px;
  }
}
.center-area .center-left-area .news-list .news-list-item .date {
  margin: 0 12px;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .news-list .news-list-item .date {
    font-size: 12px;
  }
}
.center-area .center-left-area .large-ad {
  margin: 24px 0;
  width: 100%;
  height: 60px;
  display: block;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .large-ad {
    padding-top: 66.67%;
    position: relative;
  }
}
.center-area .center-left-area .large-ad:hover {
  opacity: 0.7;
}
.center-area .center-left-area .large-ad img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .large-ad img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.center-area .center-left-area .notice {
  margin: 32px 0;
  width: 100%;
  border: 2px solid rgb(67, 112, 179);
  position: relative;
}
.center-area .center-left-area .notice .notice-title {
  width: 140px;
  height: 36px;
  position: relative;
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.center-area .center-left-area .notice .notice-title::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(67, 112, 179);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.center-area .center-left-area .notice .notice-title::after {
  content: "";
  width: 36px;
  height: 36px;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%);
  background-color: rgb(67, 112, 179);
  position: absolute;
  top: 0;
  right: -36px;
  z-index: -1;
}
.center-area .center-left-area .notice .title {
  position: absolute;
  top: 4px;
  left: 200px;
  font-size: 20px;
  font-weight: 800;
  color: rgb(67, 112, 179);
  text-decoration: none;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.center-area .center-left-area .notice .title:hover {
  opacity: 0.7;
}
.center-area .center-left-area .notice .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 98%;
  height: 1px;
  background-color: rgb(67, 112, 179);
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .notice .title {
    top: 40px;
    left: 16px;
  }
}
.center-area .center-left-area .notice .notice-detail {
  padding: 16px 64px 8px;
  line-height: 1.5;
  letter-spacing: 2px;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .notice .notice-detail {
    padding: 48px 16px 8px;
  }
}
.center-area .center-left-area .category-news-area {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.center-area .center-left-area .category-news-area .category-news-detail {
  margin-top: 32px;
  width: 48%;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .category-news-area .category-news-detail {
    margin: 32px auto 0;
    width: 100%;
  }
}
.center-area .center-left-area .category-news-area .category-news-detail .title {
  font-size: 20px;
  font-weight: 800;
  color: rgb(67, 112, 178);
  position: relative;
}
.center-area .center-left-area .category-news-area .category-news-detail .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(67, 112, 179);
}
.center-area .center-left-area .category-news-area .category-news-detail .category-news-list {
  display: flex;
  flex-direction: column;
}
.center-area .center-left-area .category-news-area .category-news-detail .category-news-list .category-news {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: rgb(51, 51, 51);
}
.center-area .center-left-area .category-news-area .category-news-detail .category-news-list .category-news:hover {
  opacity: 0.7;
}
.center-area .center-left-area .category-news-area .category-news-detail .category-news-list .category-news .category-news-info {
  display: flex;
  flex-direction: column;
}
.center-area .center-left-area .category-news-area .category-news-detail .category-news-list .category-news .category-news-info .category-news-title {
  font-weight: 800;
}
.center-area .center-left-area .category-news-area .category-news-detail .category-news-list .category-news .category-news-info .date {
  margin-top: 6px;
  font-size: 12px;
}
.center-area .center-left-area .category-news-area .category-news-detail .category-news-list .category-news .category-news-img {
  margin-left: 16px;
  width: 150px;
  min-width: 150px;
  height: 100px;
  overflow: hidden;
}
.center-area .center-left-area .category-news-area .category-news-detail .category-news-list .category-news .category-news-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .category-news-area .category-news-detail .category-news-list .category-news .category-news-img {
    width: 120px;
    min-width: 120px;
    height: 80px;
  }
}
.center-area .center-left-area .category-page .category-page-news-area {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.center-area .center-left-area .category-page .category-page-news-area .category-news-detail {
  width: 100%;
}
.center-area .center-left-area .category-page .category-page-news-area .category-news-detail .title {
  font-size: 28px;
  font-weight: 800;
  color: rgb(67, 112, 178);
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .category-page .category-page-news-area .category-news-detail .title {
    font-size: 20px;
  }
}
.center-area .center-left-area .category-page .category-page-news-area .category-news-detail .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(67, 112, 179);
}
.center-area .center-left-area .category-page .category-page-news-area .category-news-detail .category-news-list {
  display: flex;
  flex-direction: column;
}
.center-area .center-left-area .category-page .category-page-news-area .category-news-detail .category-news-list .category-news {
  margin-top: 32px;
  display: flex;
  text-decoration: none;
  color: rgb(51, 51, 51);
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .category-page .category-page-news-area .category-news-detail .category-news-list .category-news {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
.center-area .center-left-area .category-page .category-page-news-area .category-news-detail .category-news-list .category-news:hover {
  opacity: 0.7;
}
.center-area .center-left-area .category-page .category-page-news-area .category-news-detail .category-news-list .category-news .category-news-info {
  display: flex;
  flex-direction: column;
}
.center-area .center-left-area .category-page .category-page-news-area .category-news-detail .category-news-list .category-news .category-news-info .category-news-title {
  font-weight: 800;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 20px;
}
.center-area .center-left-area .category-page .category-page-news-area .category-news-detail .category-news-list .category-news .category-news-info .category-news-title span {
  margin-left: 24px;
}
.center-area .center-left-area .category-page .category-page-news-area .category-news-detail .category-news-list .category-news .category-news-info .date {
  margin-top: 12px;
  font-size: 12px;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .category-page .category-page-news-area .category-news-detail .category-news-list .category-news .category-news-info .date {
    margin-top: 6px;
  }
}
.center-area .center-left-area .category-page .category-page-news-area .category-news-detail .category-news-list .category-news .category-news-info .category-news-content {
  margin-top: 12px;
  text-indent: 20px;
  line-height: 1.5;
}
.center-area .center-left-area .category-page .category-page-news-area .category-news-detail .category-news-list .category-news .category-news-img {
  margin-left: 16px;
  width: 180px;
  min-width: 180px;
  height: 120px;
  overflow: hidden;
  align-self: center;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .category-page .category-page-news-area .category-news-detail .category-news-list .category-news .category-news-img {
    margin-left: unset;
    margin-right: 16px;
    width: 120px;
    min-width: 120px;
    height: 80px;
  }
}
.center-area .center-left-area .category-page .category-page-news-area .category-news-detail .category-news-list .category-news .category-news-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.center-area .center-left-area .page-counts {
  margin: 30px 0;
  font-size: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.center-area .center-left-area .page-counts .data-counts {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .center-area .center-left-area .page-counts {
    font-size: 14px;
  }
}
.center-area .center-right-area {
  width: 25%;
}
@media screen and (max-width: 900px) {
  .center-area .center-right-area {
    padding: 0 24px;
    width: 100%;
  }
}
.center-area .center-right-area .center-right-ad {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 66.67%;
  position: relative;
}
.center-area .center-right-area .center-right-ad:not(:first-child) {
  margin-top: 32px;
}
.center-area .center-right-area .center-right-ad img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.center-area .center-right-area .center-right-ad:hover {
  opacity: 0.7;
}
.center-area .subscription-apply-page {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .center-area .subscription-apply-page {
    padding: 0 16px;
  }
}
.center-area .subscription-apply-page fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.center-area .subscription-apply-page .subscription-apply-title {
  font-size: 28px;
  font-weight: 800;
}
.center-area .subscription-apply-page .note {
  font-size: 14px;
}
.center-area .subscription-apply-page .notice-red {
  font-size: 14px;
  color: rgb(250, 14, 14);
  font-weight: 800;
}
.center-area .subscription-apply-page .notice-grey {
  font-size: 14px;
  color: rgb(160, 160, 160);
  font-weight: 800;
}
.center-area .subscription-apply-page .subscription-apply-item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.center-area .subscription-apply-page .subscription-apply-item .item-two {
  width: 45%;
}
.center-area .subscription-apply-page .subscription-apply-item .item-two:not(:last-child) {
  margin-right: 100px;
}
.center-area .subscription-apply-page .subscription-apply-item .item-two.middle {
  max-width: 300px;
}
.center-area .subscription-apply-page .subscription-apply-item .item-two.small {
  max-width: 250px;
}
@media screen and (max-width: 900px) {
  .center-area .subscription-apply-page .subscription-apply-item .item-two {
    margin-right: unset !important;
    width: 100%;
    max-width: unset !important;
  }
}
.center-area .subscription-apply-page .item-detail {
  margin-top: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.center-area .subscription-apply-page .item-detail .item-title {
  font-size: 20px;
}
.center-area .subscription-apply-page .item-detail .item-title .mark {
  margin-left: 6px;
  font-size: 14px;
  color: rgb(250, 14, 14);
  font-weight: 800;
}
.center-area .subscription-apply-page .item-detail .item-content {
  margin: 12px 0;
  display: flex;
  align-items: center;
}
.center-area .subscription-apply-page .item-detail .item-content .input-group {
  width: 100%;
  display: flex;
  align-items: center;
}
.center-area .subscription-apply-page .item-detail .item-content .input-group .input-span {
  display: block;
  width: 100%;
}
.center-area .subscription-apply-page .item-detail .item-content .input-group .word-span {
  margin-left: 12px;
}
.center-area .subscription-apply-page .item-detail .item-content .agreement {
  padding-left: 24px;
  width: 100%;
  height: 300px;
  max-height: 300px;
  overflow: auto;
}
.center-area .subscription-apply-page .item-detail .item-content .radio-label {
  margin-right: 36px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .center-area .subscription-apply-page .item-detail .item-content .radio-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .center-area .subscription-apply-page .item-detail .item-content .radio-area label {
    margin-top: 4px;
  }
}
.center-area .subscription-apply-page .item-detail .item-content.btn-area {
  justify-content: center;
}
.center-area .subscription-apply-page .item-detail .item-content.btn-area > p {
  display: flex;
}
.center-area .subscription-apply-page .item-detail .item-content .btn:not(:first-child) {
  margin-left: 16px;
}
.center-area .subscription-apply-page .item-detail .item-content.sentence {
  flex-direction: column;
  align-items: flex-start;
}
.center-area .subscription-apply-page .item-detail .item-content.sentence .line {
  margin: 12px 0;
  width: 100%;
  height: 1px;
  background-color: rgb(51, 51, 51);
}

footer {
  margin-top: 120px;
  width: 100%;
}
footer .footer-top-area {
  width: 100%;
  background-color: rgb(67, 112, 178);
  display: flex;
  justify-content: center;
}
footer .footer-bottom-area {
  width: 100%;
  background-color: rgb(227, 226, 227);
  display: flex;
  justify-content: center;
}
footer .footer-content {
  padding: 16px 8px;
  width: 90%;
  max-width: 1200px;
  display: flex;
}
@media screen and (max-width: 900px) {
  footer .footer-content {
    flex-direction: column;
    align-items: center;
  }
}
footer .footer-content .footer-item {
  width: 25%;
}
@media screen and (max-width: 900px) {
  footer .footer-content .footer-item {
    margin-top: 16px;
    width: 256px;
  }
}
footer .footer-content .footer-item .group-name {
  padding: 4px 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}
@media screen and (max-width: 900px) {
  footer .footer-content .footer-item .group-name {
    margin-top: 6px;
  }
}
footer .footer-content .footer-item .link {
  padding-left: 36px;
  display: flex;
  flex-direction: column;
}
footer .footer-content .footer-item .link ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-content .footer-item .link a {
  padding: 8px 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.1;
  text-decoration: none;
  display: block;
}
footer .footer-content .footer-item .link a:hover {
  opacity: 0.7;
}
footer .footer-info {
  padding: 8px 16px;
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer-info p:nth-child(1) {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}
footer .footer-info p:nth-child(2) {
  font-size: 18px;
  text-align: center;
}
footer .footer-info p:nth-child(3) {
  margin-top: 16px;
  font-size: 20px;
  color: rgb(128, 126, 125);
}

.sp-menu {
  display: none;
  box-sizing: border-box;
  width: auto;
  max-width: 400px;
  height: auto;
  max-height: 700px;
  position: fixed;
  top: 50px;
  left: 16px;
  z-index: 999;
  color: #ffffff;
  background-color: rgb(67, 112, 179);
  overflow-y: auto;
}
.sp-menu .sp-menu-close {
  width: 24px;
  height: auto;
  position: absolute;
  top: 8px;
  left: 8px;
}
.sp-menu .sp-menu-close img {
  width: 24px;
  height: auto;
}
.sp-menu .sp-menu-content {
  margin-top: 36px;
  width: 100%;
}
.sp-menu .sp-menu-content .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sp-menu .sp-menu-content a {
  padding: 6px 8px;
  display: flex;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}
.sp-menu .sp-menu-content .line {
  margin: 12px 0;
  width: 100%;
  height: 1px;
  background-color: rgb(150, 175, 194);
}

/*-- scrollbar --*/
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgb(139, 139, 139);
}

::-webkit-scrollbar-track {
  background-color: transparent;
}/*# sourceMappingURL=style.css.map */