@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
}

.w_base {
  margin: 0 auto;
  max-width: 1800px;
  width: 90vw;
}

a {
  text-decoration: none;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  display: flex;
  align-items: center;
  width: 100%;
  height: 140px;
  transition: all 0.5s ease;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.hd_bg .hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd_bg .hd .hd_logo a {
  color: #000;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a .hd_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Niveau Grotesk", sans-serif;
  font-size: min(57px, 3vw);
  letter-spacing: 0.15em;
}
.hd_bg .hd .hd_logo a .hd_item span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  white-space: nowrap;
  font-size: 0.6em;
  font-weight: 500;
  letter-spacing: normal;
}
.hd_bg .hd .hd_logo a .hd_item img {
  max-width: 50px;
  width: 100%;
  height: auto;
  margin: 5px;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a span {
  font-family: "Source Sans 3", sans-serif;
  display: block;
  font-size: 11px;
}

/* 言語切り替え */
.toggle_button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toggle_input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.toggle_label {
  width: 90px;
  height: 30px;
  background: #000;
  position: relative;
  display: inline-block;
  border-radius: 40px;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
  box-sizing: border-box;
}

/* トグルスイッチの丸 */
.toggle_label::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 50%;
  left: 6px;
  background: #f5e22f;
  border: 1px solid #707070;
  transform: translateY(-50%);
  transition: left 0.3s ease-out, background-color 0.3s ease-out;
}

/* チェック時は右へスライド */
.toggle_input:checked + .toggle_label::after {
  left: 64px;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav_bg {
  width: 100%;
  padding: 75px 0;
}
.nav_bg .nav {
  height: 100%;
  overflow: visible;
}
.nav_bg .nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 24px;
  width: 100%;
}
.nav_bg .nav .nav_list .nav_icon {
  display: none;
}
.nav_bg .nav .nav_list .nav_hd_logo {
  display: none;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  width: calc((100% - 60px) / 4);
}
.nav_bg .nav .nav_list > li > a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 11px 17px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.5s ease;
}
.nav_bg .nav .nav_list > li > a img {
  padding-right: 0;
}
.nav_bg .nav .nav_list > li > a span {
  padding-left: 0;
}
.nav_bg .nav .nav_list > li > a:hover {
  box-shadow: unset;
  transform: translateY(4px);
}
.nav_bg .nav .nav_list > li.current a {
  box-shadow: unset;
  transform: translateY(4px);
}
.nav_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  width: -moz-max-content;
  width: max-content;
  padding: 0px 30px 30px 30px;
  color: #404040;
  background: #fff;
  transition: All 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > p {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #ff0000;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu {
  display: flex;
  margin-top: 15px;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  background: #fff;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  color: #ff0000;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  width: 100%;
  background: #fff;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  position: relative;
  justify-content: end;
  align-items: center;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translatey(-50%);
  height: 1px;
  margin-left: 40px;
  background-color: #404040;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  color: #ff0000;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover::before {
  background-color: #ff0000;
}
.nav_bg .nav .nav_list > li:nth-of-type(3) > .child_wrap {
  left: -100%;
}
.nav_bg .nav .nav_list > li:nth-of-type(4) > .child_wrap {
  left: -250%;
}
.nav_bg .nav .nav_list > li:nth-of-type(5) > .child_wrap {
  left: auto;
  right: -100%;
}
.nav_bg .nav .nav_list > li:nth-of-type(6) > .child_wrap {
  left: auto;
  right: 0;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con_bg {
  position: relative;
  width: 100%;
}

.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
}

.main {
  order: 1;
  width: 700px;
}

.side {
  order: 2;
  width: 230px;
}
.side h3 {
  background-color: #eee;
  color: #111;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 8px;
  text-align: center;
}

.side_nav_list li a {
  background: url(../images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #ccc;
  color: #111;
  display: block;
  text-decoration: none;
}
.side_nav_list li a:hover, .side_nav_list li a.current {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.ft_bg {
  width: 100%;
  margin-top: auto;
  height: 510px;
  background: url(../images/slideshow/index_bg.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
}
.ft_bg .ft_con {
  margin: 70px auto 240px;
  text-align: center;
}
.ft_bg .ft_con .ft_box h2 {
  font-family: "Niveau Grotesk", sans-serif;
  font-size: 4em;
  line-height: 1.2;
  letter-spacing: 0.15em;
}
.ft_bg .ft_con .ft_box h2 span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: normal;
}
.ft_bg .ft_con .ft_box .ft_logo {
  display: flex;
  margin: 5px;
}
.ft_bg .ft_con .ft_box .ft_logo img {
  width: 35px;
  height: auto;
}
.ft_bg .ft_con .ft_box .ft_logo h2 {
  font-size: 18px;
  color: #404040;
}
.ft_bg .ft_con .ft_box .ft_address {
  display: flex;
  flex-wrap: nowrap;
}
.ft_bg .ft_con .ft_box .ft_address p:last-of-type {
  margin-left: 5px;
}
.ft_bg .ft_con .ft_icon {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a {
  opacity: 1;
  transition: all 0.5s ease;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a img:last-child {
  margin-left: 0;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a:hover {
  opacity: 0.5;
  transition: all 0.5s ease;
}
.ft_bg .ft .ft_copy {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #333;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 100;
  transition: all 0.3s ease;
  opacity: 0;
}

.pt_btn {
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
  opacity: 0;
}
.pt_btn::before, .pt_btn::after {
  background-color: #fff;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt_btn::before {
  width: 7px;
  bottom: 0;
}
.pt_btn::after {
  height: 7px;
  right: 0;
}

.advent.pt {
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}
.advent.pt:hover {
  opacity: 0.6;
}
.advent.pt .pt_btn {
  opacity: 1;
  cursor: pointer;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.index_main {
  order: 1;
  width: 700px;
}

.index_side {
  order: 2;
  width: 230px;
}

.index_bnr_list li {
  margin-bottom: 4px;
}
.index_bnr_list a {
  padding: 16px 16px 16px 42px;
  border: 1px solid #000000;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(../images/icon_elink_black.png) no-repeat 16px center;
  color: #000000;
}
.index_bnr_list a:hover {
  background-color: #000;
  background-image: url(../images/icon_elink_white.png);
  color: #fff;
}

.index_slider_bg {
  width: 100%;
}
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider .catchcopy_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, 70vw);
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy {
  color: #fff;
  text-align: center;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
  font-family: "Niveau Grotesk", sans-serif;
  font-size: 5vw;
  letter-spacing: 0.2em;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 1.6vw;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy .cat_image {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy .cat_image img {
  width: calc((100% - 5rem) / 5);
}
.index_slider_bg .index_slider .slider_slick {
  width: 100%;
}
.index_slider_bg .index_slider .slider_slick img {
  width: 100%;
  height: max(670px, 35vw);
  -o-object-fit: cover;
  object-fit: cover;
}

.index_news,
.index_about,
.index_report,
.index_findings,
.index_slide,
.index_resources,
.index_articles {
  display: flex;
  align-items: center;
  margin: 0 2em;
  padding: 2em 0;
}
.index_news_box,
.index_about_box,
.index_report_box,
.index_findings_box,
.index_slide_box,
.index_resources_box,
.index_articles_box {
  width: 66.6666666667%;
  padding: 1em;
}
.index_news_box_ttl,
.index_about_box_ttl,
.index_report_box_ttl,
.index_findings_box_ttl,
.index_slide_box_ttl,
.index_resources_box_ttl,
.index_articles_box_ttl {
  position: relative;
}
.index_news_box_ttl .icon > img,
.index_about_box_ttl .icon > img,
.index_report_box_ttl .icon > img,
.index_findings_box_ttl .icon > img,
.index_slide_box_ttl .icon > img,
.index_resources_box_ttl .icon > img,
.index_articles_box_ttl .icon > img {
  width: min(140px, 7.4vw);
}
.index_news_box_ttl h2,
.index_about_box_ttl h2,
.index_report_box_ttl h2,
.index_findings_box_ttl h2,
.index_slide_box_ttl h2,
.index_resources_box_ttl h2,
.index_articles_box_ttl h2 {
  font-family: "Montserrat", sans-serif;
  font-size: min(120px, 6.25vw);
  line-height: 1;
  margin: 15px 0;
}
.index_news_box_ttl h2 span,
.index_about_box_ttl h2 span,
.index_report_box_ttl h2 span,
.index_findings_box_ttl h2 span,
.index_slide_box_ttl h2 span,
.index_resources_box_ttl h2 span,
.index_articles_box_ttl h2 span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}
.index_news_box_ttl h3,
.index_about_box_ttl h3,
.index_report_box_ttl h3,
.index_findings_box_ttl h3,
.index_slide_box_ttl h3,
.index_resources_box_ttl h3,
.index_articles_box_ttl h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: min(1.5rem, 1.3vw);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.index_news_box_ttl > img,
.index_about_box_ttl > img,
.index_report_box_ttl > img,
.index_findings_box_ttl > img,
.index_slide_box_ttl > img,
.index_resources_box_ttl > img,
.index_articles_box_ttl > img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.index_news_box p,
.index_about_box p,
.index_report_box p,
.index_findings_box p,
.index_slide_box p,
.index_resources_box p,
.index_articles_box p {
  width: 100%;
  font-size: clamp(0.8rem, 0.9vw, 1rem);
  line-height: 2;
  margin-bottom: 40px;
}
.index_news_image,
.index_about_image,
.index_report_image,
.index_findings_image,
.index_slide_image,
.index_resources_image,
.index_articles_image {
  width: 33.3333333333%;
  padding: 2em;
}
.index_news_image > img,
.index_about_image > img,
.index_report_image > img,
.index_findings_image > img,
.index_slide_image > img,
.index_resources_image > img,
.index_articles_image > img {
  border-radius: 40px;
}

.index_news_bg {
  transform: translate(0%, -50%);
  max-width: 1300px;
}
.index_news_bg .index_news {
  width: 100%;
  gap: 40px;
  background: #fff;
  border-radius: 30px;
  margin: 0;
  padding: 28px 54px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.index_news_bg .index_news_box {
  width: 25%;
}
.index_news_bg .index_news_box_ttl h2 {
  font-size: 30px;
  text-align: center;
  line-height: 1.3;
  margin: 0;
}
.index_news_bg .index_news_box_ttl h2 span {
  margin-top: 10px;
}
.index_news_bg .index_news_box a {
  transition: all 0.3s ease;
  margin-right: 0;
}
.index_news_bg .index_news_box a:hover {
  margin-right: -15px;
  transition: all 0.3s ease;
}
.index_news_bg .index_news_scrl .index_news_item {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 20px 0;
  gap: 20px;
}
.index_news_bg .index_news_scrl .index_news_item_date {
  display: flex;
  align-items: center;
  gap: 20px;
}
.index_news_bg .index_news_scrl .index_news_item_date span {
  color: #fff;
  background-color: #87dce2;
  border-radius: 30px;
  min-width: 100px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 32px;
  text-align: center;
}
.index_news_bg .index_news_scrl .index_news_item_date.media {
  color: #780072;
}
.index_news_bg .index_news_scrl .index_news_item_date.media span {
  background: #780072;
}
.index_news_bg .index_news_link {
  display: none;
}

section[class*=_bg] {
  margin-bottom: 80px;
  border-radius: 42px;
}
section[class*=_bg]:first-of-type {
  margin-top: 50px;
}
section[class*=_bg]:last-of-type {
  margin-bottom: 280px;
}

.index_about_bg {
  background: rgba(77, 170, 233, 0.25);
}

.index_report_bg {
  background: rgba(250, 77, 77, 0.25);
}

.index_findings_bg {
  background: rgba(145, 213, 89, 0.25);
}

.index_slide_bg {
  background: rgba(188, 145, 232, 0.25);
}

.index_resources_bg {
  background: rgba(212, 89, 42, 0.25);
}

.index_articles_bg {
  background: rgba(235, 236, 42, 0.25);
}

.index_btn {
  width: 230px;
}
.index_btn a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #000;
  border-radius: 50px;
  padding: 18px 10% 18px 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1;
  transition: all 0.3s ease;
}
.index_btn a::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  background: url(../images/icon_arrow_black.png) no-repeat center;
  width: 8.63px;
  height: 15.09px;
  background-size: cover;
  transition: all 0.3s ease;
}
.index_btn a:hover::after {
  transform: translate(10px, -50%);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.page_slider_bg,
.single_slider_bg {
  width: 100%;
}
.page_slider_bg .page_slider,
.page_slider_bg .single_slider,
.single_slider_bg .page_slider,
.single_slider_bg .single_slider {
  position: relative;
}
.page_slider_bg .page_slider .catchcopy_bg,
.page_slider_bg .single_slider .catchcopy_bg,
.single_slider_bg .page_slider .catchcopy_bg,
.single_slider_bg .single_slider .catchcopy_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy,
.page_slider_bg .single_slider .catchcopy_bg .catchcopy,
.single_slider_bg .page_slider .catchcopy_bg .catchcopy,
.single_slider_bg .single_slider .catchcopy_bg .catchcopy {
  color: #fff;
  text-align: center;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy h1,
.page_slider_bg .single_slider .catchcopy_bg .catchcopy h1,
.single_slider_bg .page_slider .catchcopy_bg .catchcopy h1,
.single_slider_bg .single_slider .catchcopy_bg .catchcopy h1 {
  font-size: 4vw;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy p,
.page_slider_bg .single_slider .catchcopy_bg .catchcopy p,
.single_slider_bg .page_slider .catchcopy_bg .catchcopy p,
.single_slider_bg .single_slider .catchcopy_bg .catchcopy p {
  font-size: 2vw;
}
.page_slider_bg .page_slider .slider_slick,
.page_slider_bg .single_slider .slider_slick,
.single_slider_bg .page_slider .slider_slick,
.single_slider_bg .single_slider .slider_slick {
  width: 100%;
  margin-bottom: 2rem;
}
.page_slider_bg .page_slider .slider_slick img,
.page_slider_bg .single_slider .slider_slick img,
.single_slider_bg .page_slider .slider_slick img,
.single_slider_bg .single_slider .slider_slick img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

.page,
.single,
.archive {
  margin-bottom: 60px;
}
.page a img:hover,
.single a img:hover,
.archive a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.page h2,
.single h2,
.archive h2 {
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 30px;
  color: #87dce2;
}
.page h3,
.single h3,
.archive h3 {
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 25px;
  color: #87dce2;
}
.page h4,
.single h4,
.archive h4 {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 20px;
}
.page h5,
.page h6,
.single h5,
.single h6,
.archive h5,
.archive h6 {
  font-size: 18px;
  margin-bottom: 2px;
  margin-top: 15px;
}
.page hr,
.single hr,
.archive hr {
  border: none;
  border-top: 1px dotted #000;
}
.page iframe,
.single iframe,
.archive iframe {
  max-width: 100%;
}
.page img,
.single img,
.archive img {
  max-width: 1920px;
  width: 100%;
  height: auto;
}
.page ol,
.single ol,
.archive ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page ol li,
.single ol li,
.archive ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.page p,
.single p,
.archive p {
  line-height: 2em;
  margin-bottom: 1em;
}
.page ul,
.single ul,
.archive ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page ul li,
.single ul li,
.archive ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.page .box,
.single .box,
.archive .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page .box .box_item,
.single .box .box_item,
.archive .box .box_item {
  width: 50%;
}

.news .news_scrl {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.news .news_scrl .news_item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.news .news_scrl .news_item_date {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news .news_scrl .news_item_date span {
  color: #fff;
  background-color: #87dce2;
  border-radius: 30px;
  min-width: 100px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 32px;
  text-align: center;
}
.news .news_scrl .news_item_date.media {
  color: #780072;
}
.news .news_scrl .news_item_date.media span {
  background: #780072;
}
.news .news_scrl .news_item a {
  transition: all 0.3s ease;
  margin-right: 0;
}
.news .news_scrl .news_item a:hover {
  margin-right: -15px;
  transition: all 0.3s ease;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/
@media screen and (max-width: 1440px) {
  .index_news_bg .index_news_box h2 {
    font-size: min(30px, 1.6vw);
  }
  .index_news_bg .index_news_box br {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */