@charset "utf-8";
/*------------------------------------------------------*/
.cmshtml #page-top {
  background: #005BAC;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  width: 90px;
  height: 55px;
  padding-bottom: 5px;
  position: fixed;
  bottom: 60px;
  right: 40px;
  z-index: 33;
  transition: all 0.3s;
}
.cmshtml #page-top:before {
  background: #fff;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  margin: auto;
  position: absolute;
  top: 7px;
  left: 0%;
  right: 0;
  transition: all 0.6s ease;
}
.cmshtml #page-top:hover {
  background: #0274DB;
}
@media screen and (max-width: 1000px) {
  .cmshtml #page-top {
    width: 70px;
    height: 42px;
    font-size: 10px;
    bottom: 10px;
    right: 10px;
  }
  .cmshtml #page-top:before {
    width: 15px;
    height: 10px;
  }
}
/*------------------------------------------------------*/
.cmshtml .load-fade {
  opacity: 0;
  transition: all 2s;
  overflow: hidden;
}
.cmshtml .load-fade.done {
  opacity: 1;
}
.cmshtml .to-lr {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s;
}
.cmshtml .to-rl {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s;
}
.cmshtml .to-lr.scrollin, .cmshtml .to-rl.scrollin {
  opacity: 1;
  transform: translate(0);
}
/*------------------------------------------------------*/
.cmshtml .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*------------------------------------------------------*/
.cmshtml #loading {
  background-color: #F3F0EB;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  transition: all 1s ease;
}
.cmshtml #loading .load_img {
  z-index: 10;
  transition: all 0.3s;
  animation-name: loadingAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: scale(0.5);
}
@keyframes loadingAnime {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0px);
  }
}
.cmshtml #loading.finished {
  opacity: 0;
  pointer-events: none;
}
/*------------------------------------------------------*/
.cmshtml .zoom-arrow .rdplaneimage {
    width: 100%;
    height: 290px;
    overflow: hidden;
}
.cmshtml .zoom-arrow .rdplaneimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
.cmshtml .zoom-arrow:hover .rdplaneimage img {
    transform: scale(1.05);
}
.cmshtml .zoom-arrow .textbox {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    padding: 15px 10px 0;
    position: relative;
}
.cmshtml .arrow_tit {
    font-size: 18px;
    font-weight: 600;
    padding-right: 30px;
    position: relative;
}
.cmshtml .arrow_tit a {
    color: #000;
    text-decoration: none;
}
.cmshtml .zoom-arrow:hover .arrow_tit,
.cmshtml .zoom-arrow:hover .arrow_tit * {
    color: #005BAC;
}
.cmshtml .arrow_tit:before,
.cmshtml .arrow_tit:after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: auto;
    transition: all 0.3s;
}
.cmshtml .arrow_tit:before {
    border: 1px solid #005BAC;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    right: 3px;
}
.cmshtml .arrow_tit:after {
    background-color: #005BAC;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    width: 5px;
    height: 8px;
    right: 10px;
}
.cmshtml .zoom-arrow:hover .arrow_tit:before {
    right: 0;
}
.cmshtml .zoom-arrow:hover .arrow_tit:after {
    right: 7px;
}
@media screen and (max-width: 680px) {
  .cmshtml .zoom-arrow .textbox {
    padding-top: 10px;
  }
  .cmshtml .arrow_tit {
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  .cmshtml .zoom-arrow .rdplaneimage {
    height: 140px;
  }
}
/*------------------------------------------------------*/
/* 大枠 */
.cmshtml .scnews .rdnewArticle, .cmshtml .subpage_c .rdnewArticle {
  padding: 0;
  border: none;
}
/* 項目枠 */
.cmshtml .scnews .rdnewArticle .rdnewArticle-item + .rdnewArticle-item, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-item + .rdnewArticle-item {
  border-top: none;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-item:first-child, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-item:first-child {
  border-top: 1px solid #037AE5;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-item, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-item {
  border-bottom: 1px solid #037AE5 !important;
  flex-flow: nowrap;
  align-items: center;
  padding: 30px 70px 30px 10px !important;
  position: relative;
  transition: all 0.3s;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-item:hover, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-item:hover {
  background-color: #f1f8ff;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-item:before, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-item:before {
  background-color: #8B8A8A;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  width: 7px;
  height: 13px;
  margin: auto;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  z-index: auto;
  transition: all 0.3s;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-item:hover:before, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-item:hover:before {
  background-color: #037AE5;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-item + .rdnewArticle-item, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-item + .rdnewArticle-item {
  border: none;
}
/* 左サムネイル（デフォ非表示） */
.cmshtml .scnews .rdnewArticle .rdnewArticle-thumbnail, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-thumbnail {}
/* 日付・テキスト 項目枠 */
.cmshtml .subpage_c .rdnewArticle .rdnewArticle-contWrap, .cmshtml .scnews .rdnewArticle .rdnewArticle-contWrap {
  display: flex;
  flex-flow: nowrap;
}
/* ■日付・テキスト font-size */
.cmshtml .scnews .rdnewArticle .rdnewArticle-ContDate, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-ContDate, .cmshtml .scnews .rdnewArticle-ContTitle, .cmshtml .subpage_c .rdnewArticle-ContTitle {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 1400px) {
  .cmshtml .scnews .rdnewArticle .rdnewArticle-ContDate, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-ContDate, .cmshtml .scnews .rdnewArticle-ContTitle, .cmshtml .scnews .category .rdnewArticle-ContTitle, .cmshtml .subpage_c .rdnewArticle-ContTitle, .cmshtml .subpage_c .category .rdnewArticle-ContTitle {
    font-size: 14px;
    font-weight: 500;
  }
}
@media screen and (max-width: 500px) {
  .cmshtml .scnews .rdnewArticle-ContTitle, .cmshtml .scnews .category .rdnewArticle-ContTitle, .cmshtml .subpage_c .rdnewArticle-ContTitle, .cmshtml .subpage_c .category .rdnewArticle-ContTitle {
    font-size: 12px;
  }
}
/* 日付 */
.cmshtml .scnews .rdnewArticle .rdnewArticle-ContDate, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-ContDate {
  max-width: 123px !important;
  min-width: 123px !important;
  position: relative;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-ContDate {
  margin-right: 0 !important;
}
/* テキスト */
.cmshtml .scnews .rdnewArticle-ContTitle, .cmshtml .subpage_c .rdnewArticle-ContTitle {
  margin-left: 20px;
}
.cmshtml .scnews .category .rdnewArticle-ContTitle, .cmshtml .subpage_c .category .rdnewArticle-ContTitle {
  margin-left: 215px;
}
/* テキスト リンク */
.cmshtml .scnews .rdnewArticle-ContLink, .cmshtml .subpage_c .rdnewArticle-ContLink {
  color: #30343A;
  text-decoration: none;
}
.cmshtml .scnews .rdnewArticle-ContLink:hover, .cmshtml .subpage_c .rdnewArticle-ContLink:hover {
  color: #30343A;
  text-decoration: underline;
}
.cmshtml .scnews .category .rdnewArticle-ContTitle a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  transition: all 0.3s;
}
/* カテゴリー・タグ */
.cmshtml .scnews .rdnewArticle .rdnewArticle-item .rdnewArticle-ContEx, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-item .rdnewArticle-ContEx {
  display: none;
}
.cmshtml .scnews .category .rdnewArticle .rdnewArticle-item .rdnewArticle-ContEx, .cmshtml .subpage_c .category .rdnewArticle .rdnewArticle-item .rdnewArticle-ContEx {
  display: block !important;
}
/* カテゴリーエリア */
.cmshtml .scnews .rdnewArticle .rdnewArticle-catlist, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-catlist {
  margin: auto;
  position: absolute;
  left: 165px;
  top: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
/* ■カテゴリー ボタン font-size */
.cmshtml .scnews .rdnewArticle .rdnewArticle-catlist .rdnewArticle-catitem, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-catlist .rdnewArticle-catitem {
  display: inline-block;
  margin: auto;
  font-size: 14px;
  text-align: center;
  background: #8B8A8A;
  color: #fff;
  max-width: 130px;
  min-width: 130px;
}
/* カテゴリー リンク */
.cmshtml .scnews .rdnewArticle .rdnewArticle-catlist .rdnewArticle-catlink, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-catlist .rdnewArticle-catlink {
  border-radius: 0px;
  font-size: 14px;
  padding: 0 !important;
  background: transparent;
  color: #fff;
}
/* カテゴリー 2番目以降非表示 */
.cmshtml .scnews .rdnewArticle .rdnewArticle-catlist > *:nth-child(n+2), .cmshtml .subpage_c .rdnewArticle .rdnewArticle-catlist > *:nth-child(n+2) {
  display: none !important;
}
/* タグ */
.cmshtml .scnews .rdnewArticle .rdnewArticle-taglist, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-taglist {
  display: none;
}
/*-------------------------*/
@media screen and (max-width: 1400px) {
  .cmshtml .scnews .rdnewArticle .rdnewArticle-item, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-item {
    padding: 20px 30px 20px 10px !important;
  }
  .cmshtml .scnews .rdnewArticle .rdnewArticle-ContDate, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-ContDate {
    max-width: 110px;
    min-width: 110px;
  }
  .cmshtml .scnews .rdnewArticle .rdnewArticle-catlist, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-catlist {
    left: 135px;
  }
  .cmshtml .scnews .rdnewArticle .rdnewArticle-catlist .rdnewArticle-catitem, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-catlist .rdnewArticle-catitem {
    max-width: 100px;
    min-width: 100px;
  }
  .cmshtml .scnews .rdnewArticle-ContTitle, .cmshtml .subpage_c .rdnewArticle-ContTitle {
    margin-left: 20px;
  }
  .cmshtml .scnews .category .rdnewArticle-ContTitle, .cmshtml .subpage_c .category .rdnewArticle-ContTitle {
    margin-left: 125px;
  }
}
@media screen and (max-width: 768px) {
  .cmshtml .scnews .rdnewArticle .rdnewArticle-contWrap, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-contWrap {
    display: block;
    position: relative;
  }
  .cmshtml .scnews .rdnewArticle .rdnewArticle-item, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-item {
    flex-flow: row wrap;
    padding: 15px 30px 15px 10px !important;
  }
  .cmshtml .scnews .rdnewArticle .rdnewArticle-catlist .rdnewArticle-catitem, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-catlist .rdnewArticle-catitem {
    display: block;
    font-size: 12px;
    max-width: 100px;
    min-width: 100px;
  }
  .cmshtml .scnews .category .rdnewArticle-ContTitle, .cmshtml .subpage_c .category .rdnewArticle-ContTitle {
    margin-left: 0;
  }
  .cmshtml .scnews .rdnewArticle-ContTitle, .cmshtml .subpage_c .rdnewArticle-ContTitle {
    width: 100%;
    margin-top: 5px;
  }
  .cmshtml .scnews .rdnewArticle .rdnewArticle-catlist, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-catlist {
    bottom: auto;
    height: auto;
    left: 125px;
  }
}
@media screen and (max-width: 500px) {
  .cmshtml .scnews .rdnewArticle .rdnewArticle-item:before, .cmshtml .subpage_c .rdnewArticle .rdnewArticle-item:before {
    width: 6px;
    height: 10px;
  }
}
/*------------------------------------------------------*/
.cmshtml .flow_slide {
    height: 12.4vw;
    position: relative;
}
.cmshtml .flow_slide div {
    height: 100%;
}
@media screen and (max-width: 768px) {
.cmshtml .flow_slide {
    height: 25vw;
}
}
/*------------------------------------------------------*/
/*---------------
time_line
---------------*/
.cmshtml .time_line {
  display: flex;
  margin-bottom: 60px;
}
.cmshtml .time_line > div:nth-child(1) {
  width: calc(100% - 280px);
}
.cmshtml .time_line > div:nth-child(2) {
  width: 280px;
}
.cmshtml .tl_box {
  flex-flow: nowrap;
  position: relative;
}
.cmshtml .tl_box:not(:last-child) {
  padding-bottom: 30px;
}
.cmshtml .tl_time {
  min-width: 170px;
}
.cmshtml .tl_time:after {
  background: #91bce3;
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  margin: auto;
  position: absolute;
  left: 83px;
  bottom: 0;
  z-index: 0;
}
#editView .cmshtml .tl_time:after {
  display: none;
}
.cmshtml .tl_time_tag {
  background: #91bce3;
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 5px 20px;
  position: relative;
  z-index: 1;
}
.cmshtml .tl_inwrap {
  display: flex;
}
.cmshtml .tl_textbox {
  background: #fff;
  border-radius: 11px;
  padding: 0px 25px 0px 40px;
}
.cmshtml .tl_tit {
  color: #333333;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 5px;
}
.cmshtml .tl_txt {
  color: #333333;
  font-size: 16px;
}
.cmshtml .tl_img {
  position: relative;
}
.cmshtml .tl_img + .tl_img {
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .cmshtml .time_line > div:nth-child(1) {
    width: calc(100% - 200px);
  }
  .cmshtml .time_line > div:nth-child(2) {
    width: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .cmshtml .time_line {
    display: block;
  }
  .cmshtml .time_line > div:nth-child(1), .cmshtml .time_line > div:nth-child(2) {
    width: 100%;
  }
  .cmshtml .time_line .r_box {
    display: flex;
    flex-flow: row wrap;
    margin-top: 30px;
  }
  .cmshtml .time_line .r_box > div {
    width: calc(33.3333% - 10px);
    margin: 0 5px 10px;
  }
  .cmshtml .tl_time {
    min-width: 115px;
  }
  .cmshtml .tl_time:after {
    left: 56px;
  }
  .cmshtml .tl_tit {
    font-size: 22px;
  }
  .cmshtml .tl_txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 680px) {
  .cmshtml .tl_time {
    min-width: 65px;
  }
  .cmshtml .tl_time:after {
    left: 30px;
  }
  .cmshtml .tl_time_tag {
    font-size: 16px;
    padding: 5px 10px;
  }
  .cmshtml .tl_inwrap {
    display: block;
    width: calc(100% - 65px);
  }
  .cmshtml .tl_textbox {
    padding: 0px 0 0px 30px;
  }
  .cmshtml .tl_tit {
    font-size: 18px;
  }
  .cmshtml .tl_txt {
    font-size: 14px;
  }
  .cmshtml .time_line .r_box > div {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
  }
}
/*---------------
introduction
---------------*/
.cmshtml .introduction {
  position: relative;
}
.cmshtml .introduction > div {
  width: calc(33.333% - 20px);
  margin: 0 10px 20px;
}
#editView .cmshtml .introduction > div {
  width: 33.333%;
}
.cmshtml .intro_box {
  background: #f1f8ff;
  padding: 20px;
  padding-bottom: 120px;
  position: relative;
}
.cmshtml .intro_box:before {
  background-color: #005BAC;
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: auto;
  transition: all 0.3s;
}
#editView .cmshtml.intro_box:before {
  display: none;
}
.cmshtml .intro_img {
  height: 300px;
  position: relative;
  z-index: 1;
}
.cmshtml .intro_textbox {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 4px;
  padding: 15px;
  width: calc(100% - 60px);
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 10;
}
#editView .cmshtml .intro_textbox {
  width: auto;
  margin: auto;
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
}
.cmshtml .intro_messe {
  color: #005BAC;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.cmshtml .intro_history {
  font-size: 14px;
}
.cmshtml .intro_link {
  color: #005BAC;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  margin-top: 10px;
}
.cmshtml .intro_link a {
  color: #005BAC;
  display: inline-block;
  text-decoration: none;
  padding-right: 16px;
  position: relative;
  transition: all 0.3s;
}
.cmshtml .intro_link a:hover {
  text-decoration: underline;
}
.cmshtml .intro_link a:after {
  background: #005BAC;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  margin: auto;
  width: 7px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .cmshtml .introduction > div {
    width: calc(33.333% - 10px);
    margin: 0 5px 10px;
  }
#editView .cmshtml .introduction > div {
  width: 33.333%;
}
  .cmshtml .intro_box {
    padding: 15px;
    padding-bottom: 120px;
  }
  .cmshtml .intro_img {
    height: 220px;
  }
  .cmshtml .intro_textbox {
    padding: 15px;
    width: calc(100% - 40px);
    bottom: 15px;
  }
  .cmshtml .intro_messe {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .cmshtml .intro_link {
    font-size: 14px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 1000px) {
  .cmshtml .introduction > div {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
#editView .cmshtml .introduction > div {
  width: 50%;
}
  .cmshtml .intro_img {
    height: 250px;
  }
  .cmshtml .intro_textbox {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 680px) {
  .cmshtml .introduction > div {
    width: 100%;
    margin: 0 auto 20px;
  }
#editView .cmshtml .introduction > div {
  width: 100%;
}
  .cmshtml .intro_box {
    padding: 15px;
    max-width: 410px;
  }
  .cmshtml .intro_img {
    height: 250px;
  }
  .cmshtml .intro_textbox {
    box-shadow: none;
    width: 100%;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
/*---------------
count
---------------*/
.cmshtml .count {
  position: relative;
}
.cmshtml .count_box {
  background: #f1f8ff;
  border-radius: 10px;
  padding: min(4vw, 50px);
  position: relative;
}
.cmshtml .count_inwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cmshtml .count_inwrap.ali_cnter {
  justify-content: flex-start;
}
.cmshtml .count_box + .count_box {
  margin-top: 30px;
}
.cmshtml .count_textbox {
  position: relative;
}
.cmshtml .count_tit {
  color: #005BAC;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}
.cmshtml .count_inwrap.ali_cnter .count_tit {
  margin-bottom: 0;
  margin-right: 40px;
}
.cmshtml .count_txt {
  font-size: 18px;
  font-weight: 600;
}
.cmshtml .count_wrap {
  position: relative;
}
.cmshtml .c_numbox {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.cmshtml .illust_img {
  margin-right: 20px;
  max-width: 160px;
}

.cmshtml .num_unit {
  display: flex;
  align-items: flex-end;
}
.cmshtml .count_num {
  font-weight: 700;
  font-size: min(2.7vw, 50px);
  line-height: 1;
  letter-spacing: 0.1em;
  color: #005bac;
}
.cmshtml .count_unit {
  font-weight: 700;
  font-size: min(2.5vw, 40px);
  line-height: 1;
}
.cmshtml .anno {
  color: #333333;
  font-size: 14px;
  text-align: right;
  margin-top: 10px;
}
.cmshtml .count_2box > div {
  width: 50%;
}
.cmshtml .wrap_area {
  border-top: 1px solid #ccc;
  margin-top: 20px;
  padding-top: 20px;
}
.cmshtml .count_5box > div {
  width: 20%;
}
.cmshtml .count_5box .illust_img {
  max-width: 80px;
  margin: 0 auto;
  text-align: center;
}
.cmshtml .c_box {
  position: relative;
  padding: 10px;
}
.cmshtml .flex_jc {
  justify-content: center;
}
.cmshtml .flex_je {
  justify-content: flex-end;
}
.cmshtml .flex_ac {
  align-items: center;
}
.cmshtml .c_m40 > div + div {
  margin-left: 40px;
  width: auto !important;
}

@media screen and (min-width: 681px) {
.cmshtml .count_2box > div {
    padding-right: 4%;
}
}
@media screen and (max-width: 1000px) {
  .cmshtml .count_tit {
    font-size: 30px;
  }
}
@media screen and (max-width: 680px) {
  .cmshtml .count_tit {
    font-size: 22px;
  }
  .cmshtml .sp_blk {
    display: block;
  }
  .cmshtml .count_inwrap.ali_cnter .count_tit {
    margin-bottom: 20px;
    margin-right: 0px;
  }
  .cmshtml .count_2box > div {
    width: 100%;
  }
  .cmshtml #contents .illust_img.rdblock {
    width: auto !important;
  }
  .cmshtml .count_txt {
    margin-bottom: 10px;
  }
  .cmshtml .c_box {
    padding: 10px;
  }
  .cmshtml .count_5box .illust_img {
    margin-bottom: 10px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .cmshtml .count_5box .anno, .cmshtml .count_2box .count_2box .anno {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .cmshtml .c_m40 > div + div {
    width: auto !important;
    margin-left: 10px !important;
  }
  .cmshtml .anno {
    margin-top: 10px;
  }
.cmshtml .count_num {
  font-size: 30px;
}
.cmshtml .count_unit {
  font-size: 18px;
}
}
@media screen and (max-width: 400px) {
  .cmshtml .c_box.flex.flex_je.flex_ac.c_m40 {
    display: block;
  }
  .cmshtml .c_m40 > div + div {
    margin-left: 0px !important;
    margin-top: 10px !important;
  }
  .cmshtml .c_m40 .num_unit {
    justify-content: center;
  }
  .cmshtml .c_m40 .illust_img, .cmshtml .c_m40 .anno {
    text-align: center;
  }
  .cmshtml .c_m40 .illust_img {
    margin-left: auto !important;
    margin-right: auto !important;
  }
.cmshtml .illust_img {
  max-width: 80px;
}
}
#editView .count_num edit, #editView .count_unit edit {
  min-height: 65px;
  min-width: 65px;
}
#editView .rdareaItem.added:hover:after {
  pointer-events: none;
}

/*------------------------------------------------------*/
.cmshtml .media_area {
    align-items: center;
    flex-flow: nowrap;
    justify-content: flex-start;
    position: relative;
}
.cmshtml .media_ico {

    text-align: center;
    background: #005BAC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    padding: 5px;
    width: 50px;
    height: 50px;
}
.cmshtml .media_ico a {
    color: #fff;
    text-decoration: none;
}
.cmshtml .media_txt {
    padding-left: 30px;
    position: relative;
}
@media screen and (max-width: 1000px) {
    .cmshtml .media_ico {
        font-size: 16px;
    height: 30px;
    width: 30px;
        min-height: 30px;
        min-width: 30px;
        padding: 0;
    }
.cmshtml .media_txt {
    font-size: 14px;
}
}
#editView .cmshtml .media_ico {
    display: block;
    width: auto;
    height: auto;
}
#editView .cmshtml .media_txt {
    padding: 0;
}
/*------------------------------------------------------*/
.cmshtml .acco_drop {
    margin-bottom: 60px;
    align-items: flex-start;
}
.cmshtml .acco_drop > div {
    width: calc(33.33333% - 20px);
    margin: 0 10px 20px;
}
.cmshtml .ad_box {
    cursor: pointer;
    border: 1px solid #005BAC;
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    padding: 10px;
    position: relative;
}
.cmshtml .ad_box > div:nth-child(1) {
    width: calc(100% - 100px);
}
.cmshtml .ad_box > div:nth-child(2) {
    width: 100px;
}
.cmshtml .ad_tit {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-left: 30px;
}
.cmshtml .ad_tit:before,
.cmshtml .ad_tit:after {
    background: #005BAC;
    content: "";
    display: block;
    width: 13px;
    height: 2px;
    margin: auto;
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.3s;
}
.cmshtml .ad_tit:after {
    transform: rotate(90deg);
}
.cmshtml .active .ad_tit:after {
    transform: rotate(0deg);
}
.cmshtml .ad_img {
    padding-left: 10px;
}
.cmshtml .ad_hidearea {
    border-top: 1px solid #accce9;
    margin-top: 10px;
    padding: 10px;
    display: none;
    width: 100%;
    position: relative;
}
.cmshtml .ad_txt {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    padding-left: 15px;
    position: relative;
}
.cmshtml .ad_txt:before {
    background-color: #333;
    content: "";
    display: block;
    width: 8px;
    height: 1px;
    margin: auto;
    position: absolute;
    left: 0;
    top: 11px;
    z-index: auto;
    transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
    .cmshtml .acco_drop > div {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 680px) {
    .cmshtml .acco_drop > div {
        width: 100%;
        margin: 0 auto 15px;
    }
    .cmshtml .ad_tit {
        font-size: 16px;
    }
}
@media screen and (max-width: 1000px) {
    .cmshtml .ad_txt {
        font-size: 12px;
        margin-top: 5px;
    }
}
#editView .cmshtml .acco_drop > div {
    width: 33.33333%;
}
#editView .cmshtml .ad_img {
    padding-left: 0px;
}
#editView .cmshtml .ad_hidearea {
    display: block;
}
#editView .cmshtml .ad_box > div:has(.ad_hidearea) {
    width: 100%;
}
/*------------------------------------------------------*/
.cmshtml .ex_inwrap {
  width: 100%;
  padding-bottom: 100px;
  position: relative;
  z-index: 5;
}
.cmshtml .p_title,
.cmshtml .p_title a,
.cmshtml .p_catch,
.cmshtml .p_catch a,
.cmshtml .p_message,
.cmshtml .p_message a,
.cmshtml .bg_catch,
.cmshtml .bg_catch a {
  color: #fff;
}
.cmshtml .p_title {
  font-size: 50px;
  font-weight: 600;
}
.cmshtml .p_catch {
  font-size: 28px;
  font-weight: 500;
  text-align: right;
}
.cmshtml .p_message {
  font-size: 45px;
  font-weight: 500;
  text-align: right;
  margin-top: 30px;
}
.cmshtml .ex_inwrap .link_btn {
  max-width: 1000px;
  width: 92%;
  margin: 100px auto 0;
}
.cmshtml .bg_catch {
  width: 100%;
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
  text-align: right;
  opacity: 0.5;
  position: relative;
  z-index: 2;
}
.cmshtml .bg_catch01 {
  margin-left: auto;
}
.cmshtml .bg_catch02 {
  bottom: 0;
  position: absolute;
  right: 0;
  z-index: 2;
}

@media screen and (max-width: 1360px) {
  .cmshtml .p_catch {
    font-size: 22px;
  }
  .cmshtml .p_message {
    font-size: 30px;
    margin-top: 10px;
  }
  .cmshtml .ex_inwrap .link_btn {
    margin: 50px auto 0;
  }
  .cmshtml .bg_catch {
    font-size: 70px;
  }
}
@media screen and (max-width: 1000px) {
  .cmshtml .p_title {
    font-size: 30px;
  }
  .cmshtml .p_catch {
    font-size: 18px;
  }
  .cmshtml .p_message {
    font-size: 24px;
  }
  .cmshtml .ex_inwrap .link_btn {
    margin: 30px auto 0;
  }
  .cmshtml .bg_catch {
    font-size: 50px;
  }
}
@media screen and (max-width: 680px) {
  .cmshtml .p_title,
  .cmshtml .p_catch,
  .cmshtml .p_message,
  .cmshtml .bg_catch {
    text-align: center;
  }
  .cmshtml .p_title {
    margin-bottom: 10px;
  }
  .cmshtml .p_catch {
    font-size: 14px;
  }
  .cmshtml .p_message {
    font-size: 18px;
  }
  .cmshtml .bg_catch {
    font-size: 40px;
    font-weight: 600;
  }
  .cmshtml .bg_catch01 {
    margin-bottom: 10px;
  }
  .cmshtml .ex_inwrap .link_btn {
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .cmshtml .bg_catch {
    font-size: 30px;
    line-height: 1.3;
  }
}

#editView .cmshtml .ex_inwrap {
  width: auto;
  padding-bottom: 0px;
  z-index: auto;
}
#editView .cmshtml .bg_catch {
  width: auto;
  opacity: 1;
  position: relative;
  z-index: auto;
}
/*------------------------------------------------------*/