@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  transition: all 0.5s ease;
  background: #fff;
  padding: 16px 0;
}
.hd_bg .hd .hd_logo a {
  color: #000;
  transition: all 0.5s ease;
  display: block;
  width: calc(100% - 40px);
}
.hd_bg .hd .hd_logo a .hd_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Niveau Grotesk", sans-serif;
  font-size: max(15px, 4vw);
  letter-spacing: 0.15em;
}
@media screen and (max-width: 374px) {
  .hd_bg .hd .hd_logo a .hd_item {
    font-size: min(18px, 4.84vw);
  }
}
.hd_bg .hd .hd_logo a .hd_item span {
  display: block;
  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: 30px;
  width: 100%;
  height: auto;
  margin: 5px;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a span {
  display: none;
}
.hd_bg .hd_lang {
  position: absolute;
  right: 0;
  top: 0;
}

/* 言語切り替え */
.nav_toggle_button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px auto;
  width: -moz-fit-content;
  width: fit-content;
}

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

.toggle_label {
  width: 120px;
  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: 94px;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav PC
  ******************************************************************************
  ----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav sp
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav_bg {
  position: fixed;
  top: -100vh;
  left: 0;
  z-index: 100;
  overflow-x: auto;
  overflow-y: auto;
  width: 100%;
  height: 100lvh !important;
  height: 100svh !important;
  height: 100vh !important;
  background: #fff;
  transition: All 0.8s ease;
}
.nav_bg .nav {
  width: 100%;
  height: 100%;
}
.nav_bg .nav .nav_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  max-width: 1000px;
  width: 90vw;
}
.nav_bg .nav .nav_list > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 17px;
  border-radius: 20px;
  box-shadow: 0px 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, .nav_bg .nav .nav_list > li > a.current {
  box-shadow: unset;
  transform: translateY(4px);
}
.nav_bg .nav .nav_list > li:last-of-type {
  margin-bottom: 50px;
}
.nav_bg .nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 0.75em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.nav_bg .nav .nav_list > li .child_wrap_btn::before, .nav_bg .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 3px;
  background-color: #fff;
}
.nav_bg .nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 20px;
  transform: rotate(0deg) translateX(-50%);
}
.nav_bg .nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav_bg .nav .nav_list > li .child_wrap {
  display: none;
}
.nav_bg .nav .nav_list > li .child_wrap > p {
  display: none;
}
.nav_bg .nav .nav_list > li .child_wrap > .sub-menu {
  background: #87dce2;
}
.nav_bg .nav .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
}
.nav_bg .nav .nav_list > li .child_wrap > .sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25em 0 1.25em 3.5em;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
.nav_bg .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn {
  position: absolute;
  top: 1.25em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #87dce2;
}
.nav_bg .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before, .nav_bg .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background-color: #fff;
}
.nav_bg .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
  top: 50%;
  left: 15px;
  transform: rotate(0deg) translateX(-50%);
}
.nav_bg .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  top: 50%;
  left: 0.4em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.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;
  align-items: center;
  padding: 1.25em 0 1.25em 3.5em;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
.nav_bg .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a::before {
  content: "ー";
  margin-right: 5px;
}
.nav_bg .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
  background: #87dce2;
}

.sp_nav_open {
  top: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 7px;
  right: 10px;
  width: 45px;
  height: 45px;
  background: #1f102f;
  border-radius: 50%;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 3px;
  background-color: #fff;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 40%;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 60%;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con_bg {
  background: url(../images/con_bg.png) no-repeat;
}

.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;
  padding: 12px 10px;
  text-decoration: none;
}
.side_nav_list li a:hover, .side_nav_list li a.current {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.ft_bg {
  background: url(../images/slideshow/index_bg.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
}
.ft_bg .ft_con {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}
.ft_bg .ft_con .ft_box {
  width: 100%;
  padding: 30px 0;
}
.ft_bg .ft_con .ft_box h2 {
  font-family: "Niveau Grotesk", sans-serif;
  font-size: 33px;
  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: 11px;
  font-weight: 500;
  letter-spacing: normal;
}
.ft_bg .ft_con .ft_box .ft_logo {
  display: flex;
  justify-content: center;
}
.ft_bg .ft_con .ft_box .ft_logo img {
  width: 27px;
  height: auto;
}
.ft_bg .ft_con .ft_box .ft_logo h2 {
  margin: 0;
  font-size: 18px;
  color: #404040;
}
.ft_bg .ft_con .ft_box .ft_address {
  display: flex;
  flex-wrap: wrap;
}
.ft_bg .ft_con .ft_box .ft_address p {
  width: 100%;
}
.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 {
  margin: 5px 10px;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a:hover {
  opacity: 0.5;
  transition: all 0.5s ease;
}
.ft_bg .ft {
  padding: 17px 0;
}
.ft_bg .ft .ft_copy {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 11px;
  font-weight: 500;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** 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;
  opacity: 0;
  transition: all 0.3s ease;
}

.pt_btn {
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
  opacity: 0;
  transition: all 0.3s ease;
}
.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;
  transition: all 0.3s ease;
  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%;
  height: 108vw;
}
.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: max(280px, 75vw);
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy {
  color: #fff;
  text-align: center;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
  white-space: nowrap;
  font-family: "Niveau Grotesk", sans-serif;
  font-size: 13vw;
  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: 3.7vw;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy .cat_image {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy .cat_image div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy .cat_image div img {
  width: calc((100% - 2rem) / 3);
}
.index_slider_bg .index_slider .slider_slick {
  width: 100%;
}
.index_slider_bg .index_slider .slider_slick img {
  width: 100%;
  height: 108vw;
  -o-object-fit: cover;
  object-fit: cover;
}

.index_about,
.index_features,
.index_report,
.index_findings,
.index_slide,
.index_resources,
.index_articles {
  padding: 27px;
}
.index_about_box,
.index_features_box,
.index_report_box,
.index_findings_box,
.index_slide_box,
.index_resources_box,
.index_articles_box {
  margin-bottom: 10px;
}
.index_about_box_ttl,
.index_features_box_ttl,
.index_report_box_ttl,
.index_findings_box_ttl,
.index_slide_box_ttl,
.index_resources_box_ttl,
.index_articles_box_ttl {
  display: grid;
  align-items: center;
  grid-template-columns: 60px 1fr;
  grid-template-rows: 60px 1fr;
  gap: 14px 7px;
  width: 100%;
  margin-bottom: 18px;
}
.index_about_box_ttl .icon img,
.index_features_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 {
  grid-row: 1;
  grid-column: 1;
  width: 60px;
}
.index_about_box_ttl h2,
.index_features_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(42px, 9.6vw);
  line-height: 1;
}
.index_about_box_ttl h2 br,
.index_features_box_ttl h2 br,
.index_report_box_ttl h2 br,
.index_findings_box_ttl h2 br,
.index_slide_box_ttl h2 br,
.index_resources_box_ttl h2 br,
.index_articles_box_ttl h2 br {
  display: none;
}
@media screen and (max-width: 465px) {
  .index_about_box_ttl h2 br,
  .index_features_box_ttl h2 br,
  .index_report_box_ttl h2 br,
  .index_findings_box_ttl h2 br,
  .index_slide_box_ttl h2 br,
  .index_resources_box_ttl h2 br,
  .index_articles_box_ttl h2 br {
    display: block;
  }
}
.index_about_box_ttl h2 span,
.index_features_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: 0.9rem;
  line-height: 1.4;
}
.index_about_box_ttl h3,
.index_features_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.3rem, 4.5vw);
  line-height: 1.5;
  grid-column: 1/3;
}
.index_about_box_ttl a,
.index_features_box_ttl a,
.index_report_box_ttl a,
.index_findings_box_ttl a,
.index_slide_box_ttl a,
.index_resources_box_ttl a,
.index_articles_box_ttl a {
  display: block;
  font-size: 15px;
  text-align: right;
}
.index_about_box p,
.index_features_box p,
.index_report_box p,
.index_findings_box p,
.index_slide_box p,
.index_resources_box p,
.index_articles_box p {
  font-size: 13px;
  line-height: 1.7;
}
.index_about_box img,
.index_features_box img,
.index_report_box img,
.index_findings_box img,
.index_slide_box img,
.index_resources_box img,
.index_articles_box img {
  width: 85px;
  height: auto;
  margin: 5px 5px 0 0;
}
.index_about_image,
.index_features_image,
.index_report_image,
.index_findings_image,
.index_slide_image,
.index_resources_image,
.index_articles_image {
  width: 100%;
  margin-bottom: 20px;
}
.index_about_image > img,
.index_features_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 .index_news {
  padding: 32px 0;
}
.index_news_bg .index_news_box {
  width: 100%;
  text-align: center;
  background: #fff;
  margin-bottom: 20px;
}
.index_news_bg .index_news_box_ttl h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
}
.index_news_bg .index_news_box_ttl h2 br {
  display: none;
}
.index_news_bg .index_news_box_ttl h2 span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
}
.index_news_bg .index_news_box_ttl a {
  display: none;
}
.index_news_bg .index_news_scrl {
  width: 100%;
}
.index_news_bg .index_news_scrl .index_news_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.index_news_bg .index_news_scrl .index_news_item .index_news_item_date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
}
.index_news_bg .index_news_scrl .index_news_item .index_news_item_date span {
  display: block;
  padding: 2px 25px;
  color: #fff;
  background-color: #87dce2;
  border-radius: 30px;
  min-width: 80px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}
.index_news_bg .index_news_scrl .index_news_item .index_news_item_date.media {
  color: #780072;
}
.index_news_bg .index_news_scrl .index_news_item .index_news_item_date.media span {
  background: #780072;
}
.index_news_bg .index_news_scrl a {
  display: block;
  width: 100%;
  font-size: 15px;
  text-align: right;
  color: #404040;
}

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

.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: 150px;
  margin: 0 auto;
}
.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: 14px;
  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: 5.59px;
  height: 9.77px;
  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%;
  height: 45vw;
}
.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: 40%;
  left: 50%;
  transform: translate(-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: 8vw;
  white-space: nowrap;
}
.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: 4.5vw;
}
.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%;
}
.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: 45vw;
  -o-object-fit: cover;
  object-fit: cover;
}

.page,
.single,
.archive {
  padding: 10px;
}
.page a img:hover,
.single a img:hover,
.archive a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.page h1,
.single h1,
.archive h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.page h2,
.single h2,
.archive h2 {
  font-size: 24px;
  margin-bottom: 14px;
  margin-top: 22px;
  color: #87dce2;
}
.page h3,
.single h3,
.archive h3 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 18px;
  color: #87dce2;
}
.page h4,
.single h4,
.archive h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.page h5,
.page h6,
.single h5,
.single h6,
.archive h5,
.archive h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.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: 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 {
  margin-bottom: 0.5em;
}
.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;
}

.news {
  padding: 22px 0;
}
.news .news_scrl {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news .news_scrl .news_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.news .news_scrl .news_item .news_item_date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
}
.news .news_scrl .news_item .news_item_date span {
  display: block;
  padding: 2px 25px;
  color: #fff;
  background-color: #87dce2;
  border-radius: 30px;
  min-width: 80px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}
.news .news_scrl .news_item .news_item_date.media {
  color: #780072;
}
.news .news_scrl .news_item .news_item_date.media span {
  background: #780072;
}
.news .news_scrl a {
  display: block;
  width: 100%;
  font-size: 15px;
  text-align: right;
  color: #404040;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*//*# sourceMappingURL=sp.css.map */