@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-direction: column;
  overflow-x: hidden;
}
html h1, body h1 {
  font-family: "Noto Serif JP", serif;
}
html h2, body h2 {
  color: #51b4f8;
  font-size: 40px;
}
html h3, body h3 {
  font-size: 22px;
}
html h4, body h4 {
  font-size: 20px;
}
html h5, body h5 {
  font-size: 18px;
}
html h6, body h6 {
  font-size: 16px;
}

body {
  min-height: 100vh;
  margin-top: 70px;
}

.w_base {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 70px;
  background: #fff;
}
.hd_bg .hd a {
  color: #111;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.hd_bg .hd a span {
  display: block;
  font-size: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
  position: relative;
}
.nav_bg .w_base {
  margin: 0 auto;
}
.nav_bg .nav {
  overflow: visible;
}
.nav_bg .nav .nav_list {
  display: flex;
  width: 100%;
  height: 70px;
  align-items: center;
  justify-content: center;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.nav_bg .nav .nav_list > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  background: #fff;
  color: #111;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > a:hover {
  background: #7f7979;
  color: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** lab
******************************************************************************
----------------------------------------------------------------------------*/
.lab_bg {
  padding-bottom: 70px;
  background: rgb(250, 255, 195);
  background: linear-gradient(144deg, rgb(250, 255, 195) 0%, rgb(213, 248, 255) 51%);
}

.lab .index_main h2 {
  margin-bottom: 10px;
  line-height: 1.3;
}
.lab .index_main p {
  font-size: 16px;
}
.lab .introduction {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.lab .introduction .ttl {
  width: calc(100% - 470px);
}
.lab .introduction .img {
  width: 100%;
  max-width: 450px;
}
.lab .introduction .img img {
  width: 100%;
  height: auto;
}
.lab .about .about_text .mini {
  text-align: left;
  font-size: 13px;
}
.lab .about .about_text h2 {
  text-align: left;
  line-height: 1;
}
.lab .about .about_text p {
  font-size: 18px;
  text-align: left;
  line-height: 1.8;
}
.lab .about .about_text a {
  text-decoration: none;
  color: #000;
}
.lab .about .about_img {
  width: 100%;
  position: relative;
  height: 400px;
  margin-top: 100px;
}
.lab .about .about_img > img {
  width: 55%;
  right: 0;
  position: absolute;
  top: -60%;
}
.lab .about .about_img .about_sub {
  position: absolute;
  width: 33%;
  top: 0;
  right: 40%;
}
.lab .about_img2 {
  margin-top: -20%;
  margin-left: 30%;
  width: 30%;
}
.lab .features {
  text-align: right;
}
.lab .features .features_img {
  width: 100%;
  height: 400px;
  position: relative;
  margin-top: 100px;
}
.lab .features .features_img > img {
  position: absolute;
  width: 55%;
  top: -60%;
  left: 0;
}
.lab .features .features_img .features_sub {
  position: absolute;
  width: 33%;
  top: 0;
  left: 40%;
}
.lab .features .features_text {
  width: 50%;
  margin: 0 0 0 auto;
}
.lab .features .features_text .mini {
  text-align: right;
  font-size: 13px;
}
.lab .features .features_text h2 {
  text-align: right;
  line-height: 1;
}
.lab .features .features_text p {
  text-align: right;
  line-height: 1.8;
}
.lab .features .features_text p > a {
  text-decoration: none;
  color: #000;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  background-color: #f5f5f5;
}

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

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

/*----------------------------------------------------------------------------
******************************************************************************
** access
******************************************************************************
----------------------------------------------------------------------------*/
.access {
  background: #fff;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  background: #61b1fa;
}
.ft_bg .ft_icon img {
  margin: 5px 10px;
}
.ft_bg .ft_icon img:hover {
  opacity: 0.8;
}
.ft_bg .ft {
  padding: 30px 0;
}
.ft_bg .ft .ft_copy {
  color: #fff;
  font-size: 10px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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 #51b4f8;
  border-radius: 5px;
  background: #fff;
  color: #51b4f8 !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: #51b4f8;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #51b4f8;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background: #333;
  bottom: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 100;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
}
.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;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg img {
  width: 100%;
  max-height: 600px !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.index_main {
  order: 1;
  width: 1000px;
  margin: auto;
}
.index_main .index_news h2 {
  margin-bottom: 20px;
}
.index_main .index_news .index_news_scrl {
  max-height: 300px;
  background: #fff;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  display: flex;
  align-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 10px;
  border-bottom: 1px solid #f5f5f5;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  width: 130px;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date:before {
  vertical-align: bottom;
  margin-right: 0.2em;
}
.index_main .index_news .index_news_scrl .index_news_item_kinds {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  padding: 5px;
}
.index_main .index_news .index_news_scrl .index_news_item_ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: calc(100% - 140px);
  padding: 0 10px 0 10px;
  text-align: left;
}
.index_main .index_news .index_news_scrl .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_scrl .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}
.index_main .index_news .index_news_more {
  margin-top: 5px;
  text-align: right;
}
.index_main .index_news .index_news_more > a {
  color: #000;
  text-decoration: none;
}
.index_main .index_news .index_news_more > a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1000px) {
  .nav_bg {
    background: url(../images/nav_bg_bg.png) repeat-x #000;
    position: relative;
  }
  .nav_bg .w_base {
    margin: 0 auto;
    width: 100%;
  }
  .index_main {
    order: 1;
    width: 100%;
    margin: auto;
    padding: 20px;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.page_bg {
  background: #fff;
}

.background-top {
  width: 100%;
  height: 100px;
  background: rgb(255, 243, 195);
  background: linear-gradient(97deg, rgb(255, 243, 195) 0%, rgb(213, 248, 255) 51%);
}

.pagetop {
  display: flex;
  justify-content: center;
}
.pagetop > img {
  width: 1219px;
  margin: auto;
  display: block;
  margin-top: -40px;
}

.page_bottom {
  display: flex;
  justify-content: center;
}
.page_bottom > img {
  width: 1219px;
  margin: auto;
  display: block;
}

.page .index_main h1 {
  font-size: 25px;
}
.page .index_main h2 {
  text-align: center;
}
.page .index_main p {
  text-align: left;
}
.page .about {
  margin-top: -80px;
  margin-bottom: 20px;
}
.page .about .page_about_text {
  display: inline-block;
  min-width: 50%;
  width: 50%;
  margin-right: 20px;
  padding: 20px;
  background: #fff;
}
.page .about .page_about_text .mini {
  font-size: 13px;
  text-align: left;
}
.page .about .page_about_text h2 {
  text-align: left;
  line-height: 1;
}
.page .about .page_about_text p {
  text-align: left;
  line-height: 2.5;
}
.page .about .page_about_text a {
  text-decoration: none;
  color: #000;
}
.page .about .page_about_img {
  position: relative;
  height: 280px;
  width: 100%;
}
.page .about .page_about_img > img {
  position: absolute;
  top: -80%;
  right: 0;
  width: 50%;
}
.page .about .page_about_img .page_about {
  position: absolute;
  top: 0;
  right: 40%;
  width: 30%;
}

.page_access {
  margin-top: 200px;
  background: #f5f5f5;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
  padding: 0 10px;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.mcon h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 40px;
}
.mcon h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 22px;
}
.mcon h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
}
.mcon h5, .mcon h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  aspect-ratio: 16/9;
  max-width: 100%;
  height: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon p {
  margin-bottom: 1em;
}
.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 ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 1400px) {
  .page .about .page_about_img {
    position: relative;
    height: 280px;
    width: 100%;
  }
  .page .about .page_about_img > img {
    width: 50%;
    position: absolute;
    right: 0;
    top: -80%;
  }
  .page .about .page_about_img .page_about {
    position: absolute;
    width: 30%;
    right: 40%;
    top: 0;
  }
  .page .about .page_about_text {
    width: 50%;
    background-color: white;
    padding: 20px 20px 0 20px;
    margin-right: 20px;
  }
}/*# sourceMappingURL=style.css.map */