@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 {
  min-height: 100vh;
  overflow-x: clip;
}

.w_base {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-right: 10px !important;
  padding-left: 10px !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: #fff;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #ebecec;
}
.hd_bg #header_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.hd_bg #header_inner #h_logo a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  color: #000;
  text-decoration: none;
}
.hd_bg #header_inner #h_logo a img {
  width: 100%;
  max-width: 140px;
}
.hd_bg #header_inner #h_logo a span {
  display: inline-block;
  font-size: 28px;
}
.hd_bg #header_inner .header_right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hd_bg #header_inner .header_right .banner_area {
  max-width: 480px;
  display: flex;
  gap: 10px;
}
.hd_bg #header_inner .header_right .banner_area img {
  max-width: 100%;
  height: auto;
  transition: all 0.5s ease;
}
.hd_bg #header_inner .header_right .banner_area img:hover {
  opacity: 0.8;
}
.hd_bg #header_inner .header_right .h_category_btn {
  padding: 15px 20px;
  background-color: #c90000;
  color: #fff;
  border: 1px solid #c90000;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hd_bg #header_inner .header_right .h_category_btn.active {
  background-color: #fff;
  color: #c90000;
}
.hd_bg #header_inner .header_right .h_category_btn:hover, .hd_bg #header_inner .header_right .h_category_btn .active {
  background-color: #fff;
  color: #c90000;
}
.hd_bg #header_inner .h_category_wrap {
  position: fixed;
  left: 0;
  z-index: 100;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100dvh;
  padding: 0 15px;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
}
.hd_bg #header_inner .h_category_wrap.open {
  opacity: 1;
  visibility: visible;
  transition: All 0.5s ease;
}

/*----------------------------------------------------------------------------
******************************************************************************
** keyword
******************************************************************************
----------------------------------------------------------------------------*/
.keyword_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin: 20px 0;
  padding: 1rem;
  background-color: #ebecec;
}
.h_category_wrap .keyword_wrap {
  width: min(100%, 960px);
  margin: 40px auto 20px;
}
.keyword_wrap .keyword {
  width: 100%;
  padding: 1rem;
  background-color: #FFF;
}
.keyword_wrap .keyword h2 {
  margin: 0 auto 1rem;
  padding-bottom: 0.7rem;
  font-size: 1.1rem;
  text-align: center;
  border-bottom: 1px solid #ebecec;
}
.keyword_wrap .keyword .keyword_form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 2px solid #2b8fdd;
  border-radius: 3px;
}
.keyword_wrap .keyword .keyword_form label {
  width: 100%;
}
.keyword_wrap .keyword .keyword_form label input {
  width: 100%;
  padding: 5px 15px;
  background: transparent;
  border: none;
  box-sizing: border-box;
  font-size: 1em;
  outline: none;
}
.keyword_wrap .keyword .keyword_form label input::-moz-placeholder {
  color: #777777;
}
.keyword_wrap .keyword .keyword_form label input::placeholder {
  color: #777777;
}
.keyword_wrap .keyword .keyword_form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  border: none;
  background-color: #2b8fdd;
  cursor: pointer;
}
.keyword_wrap .keyword .keyword_form button::after {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: "";
}
.keyword_wrap .keyword .keyword_list_wrap {
  margin-top: 2rem;
}
.keyword_wrap .keyword .keyword_list_wrap .keyword_list {
  max-height: 100% !important;
}
.keyword_wrap .keyword .keyword_list_wrap .keyword_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.keyword_wrap .keyword .keyword_list_wrap .keyword_list ul li a {
  overflow: hidden;
  position: relative;
  display: block;
  padding: 0.2em 1.2em;
  background-color: #2b8fdd;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #2b8fdd;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.keyword_wrap .keyword .keyword_list_wrap .keyword_list ul li a:hover {
  background-color: #fff;
  color: #2b8fdd;
}
.keyword_wrap .keyword .keyword_list_wrap .more_btn {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** category list
******************************************************************************
----------------------------------------------------------------------------*/
.category {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin: 20px 0;
  padding: 1rem;
  background-color: #ebecec;
  overflow-y: auto;
}
.category .category_item {
  width: calc((100% - 2rem) / 3);
  padding: 1rem;
  background-color: #FFF;
}
.category .category_item h2 {
  margin: 0 auto 1rem;
  padding-bottom: 0.7rem;
  font-size: 1.1rem;
  text-align: center;
  border-bottom: 1px solid #ebecec;
}
.category .category_item .category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.category .category_item .category_list li a {
  overflow: hidden;
  position: relative;
  display: block;
  padding: 0.2em 1em 0.1em 2em;
  background-color: #00226b;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.category .category_item .category_list li a:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 100px;
  height: 50px;
  background: #2b8fdd;
  transition: all 0.5s ease-in-out;
  transform: translateX(-85%) translateY(-50%);
  border-radius: 50%;
}
.category .category_item .category_list li a span {
  position: relative;
}
.category .category_item .category_list li a:hover:before {
  width: 400px;
  height: 400px;
  transform: translateY(-175px);
  left: -15%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 2rem 0 5rem;
}
.con .con_hd {
  margin-bottom: 2rem;
}
.con .con_hd h1 {
  font-size: 2.5rem;
  border-bottom: 1px solid #111;
}
.con .main .banner_area_sp {
  display: none;
}
.con .main .main_hd h1 {
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 2px solid #333;
}
.con .main .main_category_wrap .main_category {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin: 20px 15px;
  padding: 1rem;
  background-color: #ebecec;
  overflow-y: auto;
}
.con .main .main_category_wrap .main_category .main_category_item {
  width: calc((100% - 2rem) / 3);
  padding: 1rem;
  background-color: #FFF;
}
.con .main .main_category_wrap .main_category .main_category_item h2 {
  margin: 0 auto 1rem;
  padding-bottom: 0.7rem;
  font-size: 1.1rem;
  text-align: center;
  border-bottom: 1px solid #ebecec;
}
.con .main .main_category_wrap .main_category .main_category_item .main_category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.con .main .main_category_wrap .main_category .main_category_item .main_category_list li a {
  overflow: hidden;
  position: relative;
  display: block;
  padding: 0.2em 1em 0.1em 2.2em;
  background-color: #00226b;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.con .main .main_category_wrap .main_category .main_category_item .main_category_list li a:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 100px;
  height: 50px;
  background: #2b8fdd;
  transition: all 0.5s ease-in-out;
  transform: translateX(-85%) translateY(-50%);
  border-radius: 50%;
}
.con .main .main_category_wrap .main_category .main_category_item .main_category_list li a span {
  position: relative;
}
.con .main .main_category_wrap .main_category .main_category_item .main_category_list li a:hover:before {
  width: 400px;
  height: 400px;
  transform: translateY(-175px);
  left: -15%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  position: sticky;
  top: 100%;
  background-color: #000;
}
.ft_bg .ft {
  padding: 35px 0;
  background-color: #000;
  text-align: center;
}
.ft_bg .ft .ft_copy {
  color: #FFF;
  font-size: 0.8rem;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #333;
  border-radius: 50%;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  cursor: pointer;
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
}
.pt .pt_btn::before, .pt .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background-color: #FFF;
}
.pt .pt_btn::before {
  bottom: 0;
  width: 3px;
}
.pt .pt_btn::after {
  right: 0;
  height: 3px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.post_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.post_list .post_list_item {
  width: 100%;
  max-width: calc((100% - 2rem) / 2);
}
.post_list .post_list_item a {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: #ebecec;
  text-decoration: none;
}
.post_list .post_list_item a .post_list_item_txt {
  width: 55%;
  padding: 15px;
  background-color: #2b8fdd;
  color: #fff;
  transition: all 0.3s ease;
}
.post_list .post_list_item a .post_list_item_txt h2 {
  font-size: 1.25rem;
}
.post_list .post_list_item a .post_list_item_txt h2 span {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 400;
}
.post_list .post_list_item a .post_list_item_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
  background-color: #fff;
  overflow: hidden;
}
.post_list .post_list_item a .post_list_item_img img {
  width: 100%;
  height: auto;
  max-height: -moz-max-content;
  max-height: max-content;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease;
}
.post_list .post_list_item a:hover .post_list_item_txt {
  background-color: #fff;
  color: #333;
}
.post_list .post_list_item a:hover .post_list_item_img img {
  transform: scale(1.2);
}

.post_cate_list {
  display: flex;
  align-items: center;
  margin: 0 0 20px !important;
}
.post_cate_list span {
  display: inline-block;
  margin: 0 10px 0 0;
  white-space: nowrap;
}
.post_cate_list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
}
.post_cate_list ul li {
  margin: 0 !important;
  list-style-type: none !important;
}
.post_cate_list ul li a {
  display: block;
  padding: 0.2em 1em 0.1em;
  background-color: #f6f7f7;
  color: #111;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #CCC;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.post_cate_list ul li a:hover {
  background-color: #DFDFDF;
}

.example_img {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.example_img .example_img_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 3rem) / 4);
  padding: 1rem;
  border: 1px solid #ccc;
}
.example_img .example_img_item img {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 4/3;
}

.purpose {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 40px;
}
.purpose .purpose_img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 35%;
}

.price {
  color: #c90000;
  line-height: 1.4;
  font-size: 1.3rem;
  font-weight: 500;
}
.price span {
  font-size: 2.4rem;
  font-weight: 700;
}

.detail {
  overflow: hidden;
}

.contact_btn {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.contact_btn .contact_btn_item {
  width: 100%;
  max-width: 320px;
}
.contact_btn .contact_btn_item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.contact_btn .contact_btn_item a span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}
.contact_btn .contact_btn_item a.university {
  background-color: #c90000;
  border: 1px solid #c90000;
}
.contact_btn .contact_btn_item a.university:hover {
  background-color: #fff;
  color: #c90000;
}
.contact_btn .contact_btn_item a.corporation {
  background-color: #0057c9;
  border: 1px solid #0057c9;
}
.contact_btn .contact_btn_item a.corporation:hover {
  background-color: #fff;
  color: #0057c9;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  margin-bottom: 30px;
  font-size: 2.4rem;
  line-height: 1.4;
}
.mcon h1::before {
  content: attr(data-subttl);
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
}
.mcon h2 {
  margin: 20px 0;
  padding-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 2px solid #333;
}
.mcon h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
}
.mcon h4 {
  font-size: 1.2em;
  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%;
}
.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;
}/*# sourceMappingURL=style.css.map */