@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
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  overflow-x: hidden;
}

.w_base {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}

a {
  text-decoration: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  padding: 3px 0;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #fff;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a {
  color: #fff;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a .hd_item {
  display: flex;
  justify-content: flex-start;
}
.hd_bg .hd .hd_logo a .hd_item span {
  display: block;
  margin: 2px;
  font-size: 15px;
  line-height: 1.2em;
}
.hd_bg .hd .hd_logo a .hd_item img {
  width: 120px;
  height: auto;
  margin: 5px;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a span {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: -100vh;
  left: 0;
  z-index: 100;
  overflow-x: auto;
  overflow-y: auto;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: All 0.8s ease;
}
.nav .nav_list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav .nav_list > li {
  position: relative;
}
.nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 1em;
  background: #9dc91e;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background-color: rgba(0, 0, 0, 0.2);
}
.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 .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 3px;
  background-color: #fff;
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 20px;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap {
  display: none;
}
.nav .nav_list > li .child_wrap > .sub-menu {
  background: #9dc91e;
}
.nav .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
}
.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 .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: #9dc91e;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before, .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background-color: #fff;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
  top: 50%;
  left: 15px;
  transform: rotate(0deg) translateX(-50%);
}
.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 .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li {
  position: relative;
}
.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 .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a::before {
  content: "ー";
  margin-right: 5px;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
  background: #9dc91e;
}
.nav .nav_icon {
  display: flex;
  justify-content: center;
  background: #9dc91e;
  border-top: 1px solid #fff;
  border-radius: 5px;
}
.nav .nav_icon .icon_items {
  margin: 20px;
}
.nav .nav_icon .icon_items a {
  opacity: 1;
  transition: all 0.5s ease;
}
.nav .nav_icon .icon_items a:nth-of-type(2) {
  padding: 0 30px;
}
.nav .nav_icon .icon_items a:hover {
  opacity: 0.5;
  transition: all 0.5s ease;
}

.sp_nav_open {
  top: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 3px;
  background-color: #000;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 30%;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 30%;
}
.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) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.lang_change a {
  line-height: 1;
  background: #546b11 !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** color change
******************************************************************************
----------------------------------------------------------------------------*/
.colorchange.hd_bg {
  color: #040404;
  background-color: #fdeddd;
  transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a {
  color: #040404;
  transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a .hd_item img {
  transition: all 0.5s ease;
  width: 80px;
}

.colorchange.sp_nav_trigger span {
  background-color: #404040;
  transition: all 0.5s ease;
}
.colorchange.sp_nav_trigger.sp_active span {
  background-color: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .main {
  padding-inline: 10px;
  padding-top: 20px;
  padding-bottom: 50px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  background: #F9F9F9;
}
.ft_bg .ft_con {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  margin: 0 auto 15px;
  padding-inline: 10px;
}
.ft_bg .ft_con .ft_box {
  width: 100%;
}
.ft_bg .ft_con .ft_box h1 {
  margin: 15px 0px 7px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2em;
  color: #9dc91e;
}
.ft_bg .ft_con .ft_box .ft_logo {
  display: flex;
  justify-content: center;
}
.ft_bg .ft_con .ft_box .ft_logo img {
  display: block;
  margin-block: 0px 20px;
  max-width: 150px;
  height: auto;
}
.ft_bg .ft_con .ft_box .ft_address {
  text-align: left;
}
.ft_bg .ft_con .ft_box .ft_address address {
  width: 100%;
}
.ft_bg .ft_con .ft_box .ft_address address: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: 10px 0;
  background-color: #9dc91e;
}
.ft_bg .ft .ft_copy {
  font-size: 10px;
  text-align: center;
  color: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #ffa01f;
  bottom: 30px;
  cursor: pointer;
  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:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
  opacity: 0;
  transition: all 0.3s ease;
}
.pt .pt_btn::before, .pt .pt_btn::after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt .pt_btn::before {
  width: 7px;
  bottom: 0;
}
.pt .pt_btn::after {
  height: 7px;
  right: 0;
}

.advent.pt {
  opacity: 1;
  transition: all 0.3s ease;
}
.advent.pt .pt_btn {
  opacity: 1;
  transition: all 0.3s ease;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #9dc91e;
  border-radius: 5px;
  color: #9dc91e !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #9dc91e;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #9dc91e;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg {
  width: 100%;
}
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider .slider_slick {
  width: 100%;
}
.index_slider_bg .index_slider .slider_slick img {
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: brightness(0.7);
  filter: brightness(0.7);
}
.index_slider_bg .index_slider .catchcopy_bg {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy {
  font-size: max(1rem, 7vw);
  color: #fff;
  text-align: center;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy p {
  font-size: 0.5em;
}

.index_news,
.index_about,
.index_sns {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 30px 0;
}
.index_news .index_about_box,
.index_news .index_features_box,
.index_news .index_sns_left,
.index_about .index_about_box,
.index_about .index_features_box,
.index_about .index_sns_left,
.index_sns .index_about_box,
.index_sns .index_features_box,
.index_sns .index_sns_left {
  width: 100%;
  margin: 30px;
  padding: 15px;
}
.index_news .index_about_box h2,
.index_news .index_features_box h2,
.index_news .index_sns_left h2,
.index_about .index_about_box h2,
.index_about .index_features_box h2,
.index_about .index_sns_left h2,
.index_sns .index_about_box h2,
.index_sns .index_features_box h2,
.index_sns .index_sns_left h2 {
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13vw;
  line-height: 1.1em;
  text-align: left;
}
.index_news .index_about_box h2::after,
.index_news .index_features_box h2::after,
.index_news .index_sns_left h2::after,
.index_about .index_about_box h2::after,
.index_about .index_features_box h2::after,
.index_about .index_sns_left h2::after,
.index_sns .index_about_box h2::after,
.index_sns .index_features_box h2::after,
.index_sns .index_sns_left h2::after {
  display: block;
  content: attr(data-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 5vw;
}
.index_news .index_about_box p,
.index_news .index_features_box p,
.index_news .index_sns_left p,
.index_about .index_about_box p,
.index_about .index_features_box p,
.index_about .index_sns_left p,
.index_sns .index_about_box p,
.index_sns .index_features_box p,
.index_sns .index_sns_left p {
  padding-bottom: 20px;
  font-size: 15px;
  color: #404040;
}
.index_news .index_about_box a,
.index_news .index_features_box a,
.index_news .index_sns_left a,
.index_about .index_about_box a,
.index_about .index_features_box a,
.index_about .index_sns_left a,
.index_sns .index_about_box a,
.index_sns .index_features_box a,
.index_sns .index_sns_left a {
  display: block;
  font-size: 15px;
  text-align: right;
}
.index_news .index_news_scrl,
.index_news .index_sns_right,
.index_about .index_news_scrl,
.index_about .index_sns_right,
.index_sns .index_news_scrl,
.index_sns .index_sns_right {
  width: 100%;
  margin: 15px;
  display: flex;
  flex-wrap: wrap;
}

.index_news_bg .index_news_box {
  width: 100%;
  text-align: center;
  color: #9dc91e;
}
.index_news_bg .index_news_box h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13vw;
  line-height: 1.3;
}
.index_news_bg .index_news_box h2 br {
  display: none;
}
.index_news_bg .index_news_box h2::after {
  content: attr(data-text);
  display: block;
  font-size: 5vw;
}
.index_news_bg .index_news_box a {
  display: none;
}
.index_news_bg .index_news_scrl a {
  display: block;
  width: 100%;
  font-size: 15px;
}
.index_news_bg .index_news_scrl .index_news_item {
  display: grid;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 20px 0;
  padding-left: 10px;
  border-left: solid 1px #404040;
}
.index_news_bg .index_news_scrl .index_news_item .index_news_item_date .cate {
  padding: 2px 5px;
  color: #fff;
  background-color: #9dc91e;
}
.index_news_bg .index_news_scrl .index_news_link {
  color: #000;
  text-align: right;
}
.index_news_bg.archive .index_news {
  padding-top: 0;
}
.index_news_bg.archive .index_news_scrl {
  margin-inline: 0;
}

.index_main .index_about_bg {
  background-position: 50% 50%;
  background-size: cover;
}
.index_main .index_about_bg .index_about_box a,
.index_main .index_about_bg .index_features_box a {
  color: #404040;
}
.index_main .index_about_bg .index_about_box {
  margin-top: 0;
  background-color: #ffa01f;
}
.index_main .index_about_bg .index_features_box {
  background-color: #9dc91e;
}
.index_main .index_sns_bg {
  min-height: 540px;
  height: 100%;
  background-size: cover;
}
.index_main .index_sns_bg .index_sns {
  padding-top: 0;
  padding-bottom: 50px;
}
.index_main .index_sns_bg .index_sns .index_sns_left {
  height: 100%;
  margin-top: 0;
  background: #fff;
}
.index_main .index_sns_bg .index_sns .index_sns_left h2 {
  color: #9dc91e;
}
.index_main .index_sns_bg .index_sns .index_sns_left a {
  margin-top: 10px;
  color: #000;
}
.index_main .index_sns_bg .index_sns iframe {
  width: 100%;
}
.index_main .index_bnr_bg {
  background: #F9F9F9;
  border-bottom: 1px solid #E8E8E8;
}
.index_main .index_bnr_bg .index_bnr {
  padding-block: 50px;
  padding-inline: 10px;
}
.index_main .index_bnr_bg .index_bnr .index_bnr_list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8em 0;
  max-width: 300px;
  margin-inline: auto;
}
.index_main .index_bnr_bg .index_bnr .index_bnr_list > li img {
  display: block;
  padding: 5px;
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  background: #fff;
  border: 1px solid #E8E8E8;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.page_slider_bg {
  width: 100%;
}
.page_slider_bg .page_slider {
  position: relative;
}
.page_slider_bg .page_slider .slider_slick {
  width: 100%;
  background: #F9F9F9;
}
.page_slider_bg .page_slider .slider_slick img {
  width: 100%;
  max-width: 1980px;
  height: 200px;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.page_slider_bg .page_slider .catchcopy_bg {
  width: 100%;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%);
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy {
  color: #fff;
  text-align: center;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy h1 {
  width: 100vw;
  font-size: 1.5rem;
  padding: 0 30px;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy span {
  display: block;
  font-size: 1rem;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
  /*リンクボタン*/
  /*Activities*/
  /*Enrollment and Graduation*/
  /*概要*/
  /*グローバル研究インターンシップ*/
}
.mcon > section {
  width: 100%;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.mcon h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6em;
  margin-top: 2.5em;
  color: #9dc91e;
}
.mcon h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  margin-top: 25px;
  color: #111;
  border-bottom: 1px solid #9dc91e;
}
.mcon h4 {
  font-size: 1.3em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.mcon h5,
.mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 0.5em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon table td {
  font-size: 0.8em;
}
.mcon .page_arr_btn {
  margin-block: 1.3em;
}
.mcon .page_arr_btn a {
  display: inline-block;
  text-decoration: none;
  color: #9dc91e;
  position: relative;
  padding-right: 3em;
  font-size: 1.2rem;
}
.mcon .page_arr_btn a:before, .mcon .page_arr_btn a:after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mcon .page_arr_btn a:before {
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid #9dc91e;
  border-radius: 50%;
}
.mcon .page_arr_btn a:after {
  content: "→";
  color: #9dc91e;
  right: 0.4em;
  transition: 0.3s;
}
.mcon .activities_link_list .activities_link_item {
  position: relative;
}
.mcon .activities_link_list .activities_link_item a {
  display: block;
  background: #9dc91e;
}
.mcon .activities_link_list .activities_link_item a:hover img {
  opacity: 1;
}
.mcon .activities_link_list .activities_link_item img {
  opacity: 0.2;
  display: block;
}
.mcon .activities_link_list .activities_link_item span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 1em;
  text-align: center;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
}
.mcon .activities_eg_con h3 {
  margin-top: 0;
}
.mcon .about_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mcon .about_box > * {
  width: calc(50% - 10px);
}
.mcon .gri_list .gri_item {
  text-align: center;
  border: 1px solid #9a9a9a;
  padding: 5px;
}
.mcon .gri_list .gri_item a {
  display: block;
  height: 100%;
  position: relative;
}
.mcon .gri_list .gri_item a:after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url(./../images/icon/expansion.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.mcon .gri_list .gri_item p {
  margin: 10px 0;
  line-height: 1.3;
  font-weight: 600;
  font-size: 1.1rem;
}/*# sourceMappingURL=sp.css.map */