@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  min-height: 100vh;
  overflow-x: clip;
}

/*----------------------------------------------------------------------------
******************************************************************************
** tablet size
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** 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 10px;
}
.hd_bg #header_inner #h_logo {
  display: flex;
  flex-wrap: wrap;
}
.hd_bg #header_inner #h_logo a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 520px) {
  .hd_bg #header_inner #h_logo a {
    flex-direction: column;
  }
}
.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;
}
@media screen and (max-width: 520px) {
  .hd_bg #header_inner #h_logo a span {
    font-size: 18px;
  }
}
.hd_bg #header_inner .header_right {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.hd_bg #header_inner .header_right .banner_area {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hd_bg #header_inner .header_right .banner_area {
    display: block;
    width: clamp(200px, (100vw - 325px) / 699 * 200 + 200px, 400px);
  }
  .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: 10px 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 .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: 20px auto 0;
}
.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 {
  position: relative;
  margin-top: 2rem;
}
.keyword_wrap .keyword .keyword_list_wrap .keyword_list {
  position: relative;
  max-height: 150px; /* 開く前に見せたい高さを指定 */
  margin-bottom: 1rem;
  overflow: hidden;
  transition: max-height 1s;
}
.keyword_wrap .keyword .keyword_list_wrap .keyword_list::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0.9) 50%, hsla(0, 0%, 100%, 0.9) 0, #fff);
  content: "";
}
.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 .keyword_list.open {
  margin-bottom: 3rem;
}
.keyword_wrap .keyword .keyword_list_wrap .keyword_list.open:after {
  z-index: -1;
  opacity: 0;
}
.keyword_wrap .keyword .keyword_list_wrap .more_btn {
  display: block;
  margin: 0 auto;
  padding: 8px 40px;
  background: #2589d0;
  color: #fff;
  border: 1px solid #2b8fdd;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.keyword_wrap .keyword .keyword_list_wrap .keyword_list.open + .more_btn {
  background: white;
  color: #2589d0;
  font-weight: 500;
}

/*----------------------------------------------------------------------------
******************************************************************************
** category list
******************************************************************************
----------------------------------------------------------------------------*/
.category {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin: 20px 0;
  padding: 1rem;
  background-color: #ebecec;
}
.category .category_item {
  width: 100%;
  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 1rem 3rem;
}
.con .con_hd {
  margin-bottom: 2rem;
}
.con .con_hd h1 {
  border-bottom: 1px solid #111;
  font-size: 1.6rem;
}
.con .main .banner_area_sp {
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con .main .banner_area_sp {
    display: none;
  }
}
.con .main .banner_area_sp img {
  width: 100%;
}
.con .main .main_hd h1 {
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  font-size: clamp(1.5rem, 1.144rem + 1.78vw, 2rem);
  font-weight: 500;
  border-bottom: 2px solid #333;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  position: sticky;
  z-index: 1;
  top: 100%;
  background-color: #000;
}
.ft_bg .ft {
  padding: 2rem 0;
}
.ft_bg .ft .ft_copy {
  color: #FFF;
  font-size: 0.75rem;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  z-index: 1;
  right: 10px;
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  cursor: pointer;
  position: relative;
  transform: rotate(45deg);
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
}
.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: 1rem;
}
.post_list .post_list_item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc((100% - 1rem) / 2);
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .post_list .post_list_item {
    max-width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .post_list .post_list_item {
    max-width: 100%;
  }
}
.post_list .post_list_item a {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: #ebecec;
  text-decoration: none;
}
@media screen and (max-width: 520px) {
  .post_list .post_list_item a {
    display: block;
  }
}
.post_list .post_list_item a .post_list_item_txt {
  width: 55%;
  padding: 15px;
  background-color: #2b8fdd;
  color: #fff;
  transition: all 0.3s ease;
}
@media screen and (max-width: 520px) {
  .post_list .post_list_item a .post_list_item_txt {
    width: 100%;
  }
}
.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;
}
@media screen and (max-width: 520px) {
  .post_list .post_list_item a .post_list_item_img {
    width: 100%;
  }
}
.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;
  margin: 0 0 20px !important;
}
.post_cate_list span {
  flex-shrink: 0;
  display: inline-block;
}
.post_cate_list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  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;
}
@media screen and (max-width: 520px) {
  .example_img .example_img_item {
    width: calc((100% - 1rem) / 2);
  }
}
.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;
}
@media screen and (max-width: 520px) {
  .purpose {
    flex-wrap: wrap;
  }
}
.purpose .purpose_img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 35%;
}
@media screen and (max-width: 520px) {
  .purpose .purpose_img {
    width: 100%;
    max-width: 400px;
  }
}

.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;
}
@media screen and (max-width: 520px) {
  .contact_btn {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
  }
}
.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;
}

.tablepress {
  word-break: break-all;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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: clamp(1.8rem, 1.372rem + 2.14vw, 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: clamp(1.5rem, 1.144rem + 1.78vw, 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 li;
  margin-bottom-list-style-type: disc;
  margin-bottom-margin-left: 1.5em;
  margin-bottom-margin-bottom: 0.5em;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em li;
  margin-bottom-margin-left: 2em;
  margin-bottom-margin-bottom: 0.5em;
}/*# sourceMappingURL=sp.css.map */