﻿
/******************************************************************************
******************************************************************************
**
** 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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg .hd {
  padding: 20px 10px;
}

.hd_bg .hd .hd_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 60vw);
}

.hd_bg .hd .hd_logo img {
  max-width: 100%;
  height: auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  background: #1a0f63;
  color: #fff;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  z-index: 200;
  width: 70%;
  overflow-x: none;
  overflow-y: auto;
  top: 0px;
  right: -70%;
  position: fixed;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}

.nav .nav_list > li > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 1em 1em 1em 1.5em;
  text-decoration: none;
  position: relative;
}

.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background-color: rgba(255, 255, 255, 0.2);
}

.nav .nav_clist > li > a {
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 1em 1em 1em 2em;
  text-decoration: none;
}

.nav .nav_clist > li > a:hover, .nav .nav_clist > li > a.current {
  background-color: #000;
  -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.nav .nav_glist > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 1em 1em 3em;
  text-decoration: none;
}

.nav .nav_glist > li > a:hover, .nav .nav_glist > li > a.current {
  background-color: #000;
  -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 25px;
  right: 15px;
  margin-top: -5px;
  width: 36px;
  height: 24px;
}

.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #1a0f63;
  border-radius: 4px;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sp_nav_trigger span:nth-of-type(1) {
  top: 0;
}

.sp_nav_trigger span:nth-of-type(2) {
  top: 10px;
}

.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}

.sp_nav_trigger::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: 'MENU';
  display: block;
  width: 100%;
  padding-top: 20px;
  color: #1a0f63;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.sp_nav_trigger.sp_active::after {
  content: 'CLOSE';
  bottom: -25px;
  color: #fff;
}

.sp_nav_trigger.sp_active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
  background: #fff;
}

.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}

.sp_nav_trigger.sp_active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con .main .page_ttl {
  position: relative;
  height: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.con .main .page_ttl.results, .con .main .page_ttl.news {
  background-image: url(../image/bg_title_eyecacth.png) !important;
}

.con .main .page_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../image/bg_title.png);
}

.con .main .page_ttl h1 {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 15vh;
  padding: 0 20px;
  color: #fff;
  font-size: 36px;
  text-shadow: 0px 2px 7px rgba(82, 82, 82, 0.4);
}

.con .main .page_ttl h1 span {
  position: relative;
  display: block;
  padding: 0 0 0 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.con .main .page_ttl h1 span::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  background: #8fadf7;
}

.ft_bg .ft {
  padding: 30px 0;
}

.ft_bg .ft .ft_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.ft_bg .ft .ft_logo figure {
  width: 145px;
  height: auto;
  background: #fff;
}

.ft_bg .ft .ft_logo figure img {
  width: 100%;
  height: 100%;
}

.ft_bg .ft .ft_logo p {
  margin-left: 15px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.ft_bg .ft .ft_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.ft_bg .ft .ft_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ft_bg .ft .ft_nav ul li {
  margin: 0 1em;
}

.ft_bg .ft .ft_nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.ft_bg .ft .ft_nav ul li a::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  background: #fff;
  border-radius: 50%;
}

.ft_bg .ft .ft_nav ul li a:hover {
  text-decoration: underline;
}

.ft_bg .ft .ft_copy {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #616bf0;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  right: 10px;
  position: fixed;
  width: 40px;
  z-index: 100;
}

.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
}

.pt_btn::before, .pt_btn::after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}

.pt_btn::before {
  width: 5px;
  bottom: 0;
}

.pt_btn::after {
  height: 5px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg .index_slider {
  position: relative;
}

.index_slider_bg .index_slider .index_slider_ttl {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}

.index_slider_bg .index_slider .index_slider_ttl h2 {
  margin-bottom: 10px;
  padding: 0 20px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  text-shadow: 0px 0px 24px rgba(102, 103, 108, 0.7);
}

.index_slider_bg .index_slider .index_slider_ttl h2 span {
  display: block;
  font-size: 18px;
}

.index_slider_bg .index_slider .index_slider_ttl p {
  padding: 0 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0px 0px 24px rgba(102, 103, 108, 0.7);
}

.index_slider_bg .index_slider img {
  width: 100%;
  height: 30vh !important;
  -o-object-fit: cover !important;
  object-fit: cover;
  font-family: 'object-fit: cover!important;';
}

.index_main {
  margin-bottom: 20px;
  padding: 30px 0;
}

.index_main .index_link_btn {
  width: 180px;
  margin: 0 auto;
  background: #fff;
}

.index_main .index_link_btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.65em 2em;
  background: -webkit-gradient(linear, left top, right top, from(#616bf0), to(#8fadf7));
  background: linear-gradient(to right, #616bf0 0%, #8fadf7 100%);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #4c57e5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_link_btn a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 100%;
  height: 1px;
  background: #4c57e5;
  -webkit-transition: 0.2s ease 0s;
  transition: 0.2s ease 0s;
}

.index_main .index_link_btn a::after {
  content: '';
  position: absolute;
  top: 5px;
  right: -5px;
  width: 1px;
  height: 100%;
  background: #4c57e5;
  -webkit-transition: 0.2s ease 0.2s;
  transition: 0.2s ease 0.2s;
}

.index_main .index_link_btn a:hover {
  background: #fff;
  color: #4c57e5;
}

.index_main .index_link_btn a:hover::before {
  width: 0%;
}

.index_main .index_link_btn a:hover::after {
  height: 0%;
}

.index_main .index_about {
  margin-bottom: 80px;
}

.index_main .index_about h2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin: 0 0 30px;
  padding: 0 0 20px;
  color: #616bf0;
  font-size: 46px;
  font-weight: 500;
  text-align: center;
  line-height: 1.0;
}

.index_main .index_about h2 span {
  display: block;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.index_main .index_about h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  content: "";
  width: 30px;
  height: 2px;
  background: #b2b7f2;
}

.index_main .index_about > p {
  margin: 0 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 2.0;
}

.index_main .index_about .index_about_con {
  padding: 40px 20px;
  background: #f0f0f9;
}

.index_main .index_about .index_about_con h3 {
  color: #b8bcea;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

.index_main .index_about .index_about_con h3 span {
  display: block;
  color: #1a0f63;
  font-size: 22px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.index_main .index_about .index_about_con .index_about_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 40px;
}

.index_main .index_about .index_about_con .index_about_list .index_about_list_item {
  width: 100%;
  padding: 30px 10px;
  text-align: center;
  border-bottom: 1px solid #b8bcea;
}

.index_main .index_about .index_about_con .index_about_list .index_about_list_item:nth-child(3n) {
  padding-bottom: 0;
  border-bottom: none;
}

.index_main .index_about .index_about_con .index_about_list .index_about_list_item h4 {
  margin: 10px 0 0;
  color: #616bf0;
  letter-spacing: -0.03em;
}

.index_main .index_about .index_about_con .index_about_list .index_about_list_item p {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 500;
}

.index_main .index_results {
  margin-bottom: 80px;
}

.index_main .index_results h2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin: 0 0 30px;
  padding: 0 0 20px;
  color: #616bf0;
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  font-weight: 500;
  text-align: center;
  line-height: 1.0;
}

.index_main .index_results h2 span {
  display: block;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.index_main .index_results h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  content: "";
  width: 30px;
  height: 2px;
  background: #b2b7f2;
}

.index_main .index_results .index_results_con {
  padding: 0 20px;
}

.index_main .index_results .index_results_con .index_results_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 40px;
}

.index_main .index_results .index_results_con .index_results_list .index_results_list_item {
  width: 100%;
  margin: 0 0 2em;
  padding: 0;
}

.index_main .index_results .index_results_con .index_results_list .index_results_list_item:nth-child(3n) {
  margin-bottom: 0;
}

.index_main .index_results .index_results_con .index_results_list .index_results_list_item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.index_main .index_results .index_results_con .index_results_list .index_results_list_item a figure {
  overflow: hidden;
  border-radius: 0 20px 0 0;
}

.index_main .index_results .index_results_con .index_results_list .index_results_list_item a figure img {
  width: 100%;
  height: auto;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.index_main .index_results .index_results_con .index_results_list .index_results_list_item a p {
  position: relative;
  display: block;
  width: 100%;
  margin: 20px 0 0;
  padding: 10px 10px 0;
  color: #1a0f63;
  font-size: 16px;
  font-weight: 500;
  border-top: 1px solid #b8bcea;
}

.index_main .index_results .index_results_con .index_results_list .index_results_list_item a p::before {
  position: absolute;
  top: 19px;
  left: 0;
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  background: url(../image/icon_arrow_purple.png) no-repeat center center;
  background-size: cover;
}

.index_main .index_results .index_results_con .index_results_list .index_results_list_item a:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.index_main .index_news {
  margin-bottom: 80px;
  background: #f0f0f9;
}

.index_main .index_news .index_news_con {
  position: relative;
  padding: 95px 20px 85px;
}

.index_main .index_news .index_news_con h2 {
  position: absolute;
  top: 45px;
  left: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin: 0 0 30px;
  padding: 0 0 20px;
  color: #616bf0;
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.2;
}

.index_main .index_news .index_news_con h2 span {
  position: relative;
  display: block;
  padding-left: 40px;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.index_main .index_news .index_news_con h2 span::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  width: 30px;
  height: 2px;
  background: #b2b7f2;
}

.index_main .index_news .index_news_con .index_news_scrl {
  padding: 40px 20px 50px;
  background: #fff;
}

.index_main .index_news .index_news_con .index_news_scrl .index_news_item {
  position: relative;
  padding: 20px 0;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
}

.index_main .index_news .index_news_con .index_news_scrl .index_news_item::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 75px;
  height: 1px;
  background: #4c57e5;
}

.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_date {
  margin-bottom: 10px;
  color: #616bf0;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_date .index_news_cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 75px;
  margin: 5px 0 0;
  padding: 3px 10px 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_date .index_news_cate.news {
  background: #00009e;
  color: #fff;
}

.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_date .index_news_cate.colum {
  background: #4c57e5;
  color: #fff;
}

.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl {
  width: 100%;
}

.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}

.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}

.index_main .index_news .index_news_con .index_link_btn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.index_main .index_sdgs {
  padding-bottom: 0;
}

.index_main .index_sdgs h2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin: 0 0 30px;
  padding: 0 0 20px;
  color: #616bf0;
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  font-weight: 500;
  text-align: center;
  line-height: 1.0;
}

.index_main .index_sdgs h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  content: "";
  width: 30px;
  height: 2px;
  background: #b2b7f2;
}

.index_main .index_sdgs .index_sdgs_con {
  margin-bottom: 20px;
  padding: 0 50px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.about_box {
  padding: 20px 40px;
  border: 4px solid #eaeef2;
}

.about_box p {
  color: #1a0f63;
  font-weight: 500;
}

.results_con {
  padding: 0 20px;
}

.results_con .results_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 40px;
}

.results_con .results_list .results_list_item {
  width: calc((100% - 1em - 1px) / 2);
  margin: 0 1em 2em 0;
  padding: 0;
}

.results_con .results_list .results_list_item:nth-child(2n) {
  margin-right: 0;
}

.results_con .results_list .results_list_item:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.results_con .results_list .results_list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.results_con .results_list .results_list_item a figure {
  overflow: hidden;
  border-radius: 0 20px 0 0;
  margin-bottom: 20px;
}

.results_con .results_list .results_list_item a figure img {
  width: 100%;
  height: 29vw;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.results_con .results_list .results_list_item a p {
  position: relative;
  display: block;
  width: 100%;
  margin: auto 0 0;
  padding: 10px 10px 0;
  color: #1a0f63;
  font-size: 16px;
  font-weight: 500;
  border-top: 1px solid #b8bcea;
}

.results_con .results_list .results_list_item a p::before {
  position: absolute;
  top: 19px;
  left: 0;
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  background: url(../image/icon_arrow_purple.png) no-repeat center center;
  background-size: cover;
}

.results_con .results_list .results_list_item a:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.news_con {
  padding: 0 20px;
}

.news_con .news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 40px;
}

.news_con .news_list .news_list_item {
  width: calc((100% - 1em - 1px) / 2);
  margin: 0 1em 2em 0;
  padding: 0;
}

.news_con .news_list .news_list_item:nth-child(2n) {
  margin-right: 0;
}

.news_con .news_list .news_list_item:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.news_con .news_list .news_list_item figure {
  overflow: hidden;
  border-radius: 0 20px 0 0;
}

.news_con .news_list .news_list_item figure img {
  width: 100%;
  height: 29vw;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.news_con .news_list .news_list_item .news_item_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
  color: #616bf0;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.news_con .news_list .news_list_item .news_item_date .news_cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  margin: 0 0 0 10px;
  padding: 3px 0 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.news_con .news_list .news_list_item .news_item_date .news_cate.news {
  background: #00009e;
  color: #fff;
}

.news_con .news_list .news_list_item .news_item_date .news_cate.colum {
  background: #4c57e5;
  color: #fff;
}

.news_con .news_list .news_list_item p {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 10px 0;
  color: #1a0f63;
  font-size: 16px;
  font-weight: 500;
  border-top: 1px solid #b8bcea;
}

.news_con .news_list .news_list_item p::before {
  position: absolute;
  top: 19px;
  left: 0;
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  background: url(../image/icon_arrow_purple.png) no-repeat center center;
  background-size: cover;
}

.news_con .news_list .news_list_item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.news_con .news_list .news_list_item > a figure {
  overflow: hidden;
  border-radius: 0 20px 0 0;
}

.news_con .news_list .news_list_item > a figure img {
  width: 100%;
  height: 29vw;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.news_con .news_list .news_list_item > a .news_item_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
  color: #616bf0;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.news_con .news_list .news_list_item > a .news_item_date .news_cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  margin: 0 0 0 10px;
  padding: 3px 0 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.news_con .news_list .news_list_item > a .news_item_date .news_cate.news {
  background: #00009e;
  color: #fff;
}

.news_con .news_list .news_list_item > a .news_item_date .news_cate.colum {
  background: #4c57e5;
  color: #fff;
}

.news_con .news_list .news_list_item > a p {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 10px 0;
  color: #1a0f63;
  font-size: 16px;
  font-weight: 500;
  border-top: 1px solid #b8bcea;
}

.news_con .news_list .news_list_item > a p::before {
  position: absolute;
  top: 19px;
  left: 0;
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  background: url(../image/icon_arrow_purple.png) no-repeat center center;
  background-size: cover;
}

.news_con .news_list .news_list_item > a:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.inquiry {
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
  margin: 0 0 20px;
  border: 1px solid #ddd;
}

.inquiry tr {
  border-top: 1px solid #ddd;
}

.inquiry tr:first-child {
  border-top: none;
}

.inquiry tr th {
  display: block;
  width: 100%;
  padding: 10px;
  background: #f7f7f7;
  color: #444;
  font-size: 14px;
  font-weight: bold;
  text-align: left !important;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
}

.inquiry tr th .haveto {
  position: relative;
  bottom: 1px;
  margin: 0 0 0 10px;
  padding: 5px;
  background: #ff9393;
  color: #fff;
  font-size: 12px;
  border-radius: 2px;
}

.inquiry tr td {
  display: block;
  width: 100%;
  padding: 8px;
}

.inquiry tr td .attention {
  display: block;
}

.inquiry tr td input, .inquiry tr td textarea {
  max-width: 90% !important;
  margin: 5px 10px 10px 5px;
  padding: 10px;
}

.inquiry tr td select {
  width: 100%;
  max-width: 290px !important;
  margin: 5px 10px 10px 5px;
  padding: 10px;
}

.inquiry tr td .wpcf7-list-item {
  display: inline-block;
  margin: 0 1em 0 0 !important;
}

.inquiry tr td.message-100 textarea {
  width: 100%;
  margin: 5px 10px 10px 5px;
}

.online select.wpcf7-form-control.wpcf7-select {
  margin: 0 5px;
  padding: 3px;
}

.form_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 30px 0 50px;
}

.form_btn div {
  position: relative;
}

.form_btn div::before {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 100%;
  height: 1px;
  background: #4c57e5;
  -webkit-transition: 0.2s ease 0s;
  transition: 0.2s ease 0s;
}

.form_btn div::after {
  content: '';
  position: absolute;
  top: 5px;
  right: -5px;
  width: 1px;
  height: 100%;
  background: #4c57e5;
  -webkit-transition: 0.2s ease 0.2s;
  transition: 0.2s ease 0.2s;
}

.form_btn div:hover::before {
  width: 0%;
}

.form_btn div:hover::after {
  height: 0%;
}

.form_btn div .btn-submit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  padding: 0.65em 2em;
  background: -webkit-gradient(linear, left top, right top, from(#616bf0), to(#8fadf7));
  background: linear-gradient(to right, #616bf0 0%, #8fadf7 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #4c57e5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.form_btn div .btn-submit:hover {
  background: #fff;
  color: #4c57e5;
}

.form_btn div .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: -40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
  margin: -30px 0 50px !important;
  padding: 10px !important;
  color: #f00;
  font-size: 1.3em;
  text-align: center;
  border: 2px solid #F00 !important;
}

div.wpcf7 .ajax-loader {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  /* Dark Gray 800 */
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

/*----------------------------------------------------------------------------
******************************************************************************
** sitemap
******************************************************************************
----------------------------------------------------------------------------*/
#sitemap_list {
  margin: 0;
  padding: 0;
}

#sitemap_list li {
  margin: 12px 0;
  padding: 0 0 12px 0px;
  text-indent: 0;
  list-style-type: none;
  border-bottom: solid 1px #8b8b8b;
}

#sitemap_list li a {
  display: inline-block;
  margin-left: 10px;
  padding-left: 25px;
  background: url(../image/icon_sitemap.png) no-repeat left center;
  text-decoration: none;
  line-height: 33px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 80px;
}

.pager .pager_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pager .pager_list .page-numbers {
  border: 1px solid #1a0f63;
  border-radius: 5px;
  color: #1a0f63 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #1a0f63;
  color: #FFF !important;
}

.pager .pager_list .page-numbers.dots {
  border-color: #1a0f63;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}

.mcon section {
  padding-top: 40px;
}

.mcon a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mcon h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 20px;
  color: #616bf0;
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 500;
}

.mcon h2 span {
  position: relative;
  display: block;
  margin-bottom: -5px;
  padding-left: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.mcon h2 span::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  width: 30px;
  height: 2px;
  background: #616bf0;
}

.mcon h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 5px;
  color: #616bf0;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 2px solid #eaeef2;
}

.mcon h3::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#616bf0), to(#8fadf7));
  background: linear-gradient(to right, #616bf0 0%, #8fadf7 100%);
}

.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}

.mcon h5,
.mcon h6 {
  margin-bottom: 2px;
  margin-top: 5px;
}

.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}

.mcon iframe {
  max-width: 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: 1em;
}

.mcon p.color_purple {
  color: #616bf0;
}

.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 .bg_purple {
  position: relative;
  margin-top: 40px;
  padding-top: 50px;
  padding-bottom: 80px;
  background: #eeeef8;
}

.mcon .bg_purple h2 {
  position: absolute;
  top: -50px;
}

.mcon .bg_purple h3 {
  border-bottom: 2px solid #fff;
}
/*# sourceMappingURL=sp.css.map */