@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スタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** function
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  overflow-x: hidden;
  position: relative;
  margin: 0;
  scroll-padding-top: 100px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.layout {
  margin: 0 auto;
  width: 100vw;
  max-width: 1200px;
}

.sp_only {
  display: none;
}

a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

.w_base {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding-right: 20px;
  padding-left: 20px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** root
******************************************************************************
----------------------------------------------------------------------------*/
:root {
  --main-color: #006e4f;
  --sub-color: #f2f8f8;
  --color-light-blue: #A9D4FE;
  --color-white: #fff;
  --color-gray: #E1E1E1;
  --color-blue-gray: #F1F4FB;
  --color-gray-blue: #A1A3A5;
  --color-black: #111;
  --main-font: "Noto Sans JP", sans-serif;
  --sub-font: "Oswald", serif;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.header {
  position: fixed;
  width: 100vw;
  height: 90px;
  z-index: 9999;
  transition: all 0.3s;
  background: var(--color-white);
}
.header_inner {
  height: 100%;
  padding: 10px 20px;
}
.header_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  height: 100%;
}
.headerTitle a {
  display: flex;
  align-items: center;
  gap: 1em;
  color: inherit;
  text-decoration: none;
}
.headerTitle_logo {
  width: 4rem;
}
.headerTitle_logo img {
  width: 100%;
}
.headerTitle_text p {
  font-size: 0.7rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.headerTitle_text p span {
  font-size: 1.4375em;
  font-weight: bold;
}
.headerNav {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100vh;
  transition: all 0.3s ease;
  background-color: var(--main-color);
  padding-top: 90px;
}
.headerNav-open {
  left: 0;
}
.headerNav_list {
  list-style: none;
  margin: 0;
  padding: 0 20px;
}
.headerNav_item {
  position: relative;
  margin: 0;
  font-weight: 600;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
.headerNav_item:not(:has(a)) {
  padding: 0.5em 1em;
}
.headerNav_item a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding: 0.5em 1em;
}

.toggleButton {
  width: 40px;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 1;
  justify-content: center;
  position: relative;
  background: transparent;
  border: none;
  transition: 0.5s;
  z-index: 10000;
  flex-shrink: 0;
}
.toggleButton::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 80%;
  top: 50%;
  background: var(--color-black);
  transform: translate(0, calc(-50% - 2.5px));
  transition: 0.5s;
}
.toggleButton::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 80%;
  top: 50%;
  background: var(--color-black);
  transform: translate(0, calc(-50% + 2.5px));
  transition: 0.5s;
}
.toggleButton-open::before {
  transform: translate(0, -50%) rotate(25deg);
  background: var(--color-white);
}
.toggleButton-open::after {
  transform: translate(0, -50%) rotate(-25deg);
  background: var(--color-white);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.main {
  order: 1;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.footer {
  position: sticky;
  top: 100%;
  background-color: var(--main-color);
}
.footer_inner {
  padding-top: 40px;
  padding-bottom: 20px;
}
.footer_content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.footerTitle {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.footerTitle_logo {
  width: 4em;
}
.footerTitle_text p {
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 500;
  margin: 0;
}
.footerTitle_text p span {
  font-size: 1.4375em;
  font-weight: bold;
}
.footerAddress p {
  margin: 0;
  color: var(--color-white);
}
.footerCopy_text {
  margin: 0;
  color: var(--color-white);
  font-size: 0.75rem;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** mainvisual
******************************************************************************
----------------------------------------------------------------------------*/
.mainvisual {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
}
.mainvisualImage {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  width: 130%;
}
.mainvisualImage img {
  width: 100%;
}
.mainvisualText {
  position: absolute;
  bottom: calc(250 * 100vw / 1920);
  left: 20px;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "YuMincho", serif;
  letter-spacing: 0.1em;
  padding-right: 20px;
}
.mainvisualText h1 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 0.3em;
}
.mainvisualText p {
  font-size: 0.7em;
  color: var(--main-color);
  margin: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** about
******************************************************************************
----------------------------------------------------------------------------*/
.about {
  background-color: var(--main-color);
}
.about_inner {
  padding-top: 100px;
  padding-bottom: 100px;
}
.about_content {
  color: var(--color-white);
}
.about_content .title {
  margin-bottom: 30px;
}
.about_content .title h2 {
  margin: 0;
  font-size: 2.5rem;
  font-family: Arial;
}
.about_content .title span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1;
}
.about_content .title span::before {
  content: "";
  background-color: var(--color-white);
  width: 2.5rem;
  height: 2px;
}
.about_content .explanation p {
  margin: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** news
******************************************************************************
----------------------------------------------------------------------------*/
.news {
  position: relative;
}
.newsBackground {
  position: absolute;
  z-index: -1;
  height: 100%;
  filter: opacity(0.3);
}
.newsBackground img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.news_content h2 {
  display: flex;
  gap: 1em;
  align-items: center;
  padding-left: 1.5rem;
  font-size: 1.75rem;
  color: var(--main-color);
  font-weight: bold;
  font-family: Arial;
}
.news_content h2::after {
  content: attr(data-sub);
  font-size: 1rem;
  font-weight: normal;
  font-family: "Hiragino Sans";
}
.news_content .more {
  display: block;
  position: relative;
  text-align: center;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  text-decoration: none;
  font-weight: bold;
  border-radius: 9999px;
  margin: 40px auto 0;
  padding: 1em;
  width: 40%;
  min-width: 290px;
}
.news_content .more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  display: block;
  clip-path: polygon(0 40%, 75% 40%, 75% 0, 100% 50%, 75% 100%, 75% 60%, 0 60%);
  background-color: var(--main-color);
  width: 2em;
  height: 0.5em;
  transition: all 0.3s ease;
}
.news_content .more:hover {
  background-color: var(--main-color);
  color: var(--color-white);
  opacity: 1;
}
.news_content .more:hover::after {
  background-color: var(--color-white);
}
.newsList_list {
  width: 100%;
  list-style: none;
  margin: 0;
}
.newsList_list li {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  width: 100%;
  margin: 0;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-gray);
}
.newsList_list li .row01 {
  display: flex;
  align-items: center;
  gap: 1em;
}
.newsList_list li .row01 .time {
  color: var(--main-color);
  font-weight: bold;
}
.newsList_list li .row01 .category {
  font-size: 0.75rem;
  background-color: var(--main-color);
  color: var(--color-white);
  margin: 0;
  padding: 0 3em;
}
.newsList_list li .row02 {
  font-weight: bold;
}
.newsList_list li .row02 .title {
  margin: 0;
}
.newsList_list.index {
  overflow-y: auto;
  max-height: 330px;
}
.newsList_list.index li:first-child {
  border-top: 1px solid var(--color-gray);
}

/*----------------------------------------------------------------------------
******************************************************************************
** research
******************************************************************************
----------------------------------------------------------------------------*/
.research {
  background-color: var(--sub-color);
}
.research_inner {
  padding-top: 100px;
  padding-bottom: 100px;
}
.researchTheme, .researchEducation, .researchProject {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
  padding-top: 50px;
  padding-bottom: 50px;
}
.researchTheme_image, .researchEducation_image, .researchProject_image {
  width: 100%;
  flex-shrink: 0;
}
.researchTheme_image img, .researchEducation_image img, .researchProject_image img {
  width: 100%;
  height: auto;
}
.researchTheme_text .title, .researchEducation_text .title, .researchProject_text .title {
  margin-bottom: 1.875rem;
}
.researchTheme_text .title h2, .researchEducation_text .title h2, .researchProject_text .title h2 {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.2em;
  letter-spacing: 0.05em;
}
.researchTheme_text .title h2::first-letter, .researchEducation_text .title h2::first-letter, .researchProject_text .title h2::first-letter {
  color: var(--main-color);
}
.researchTheme_text .title span, .researchEducation_text .title span, .researchProject_text .title span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
  font-size: 0.8125rem;
  font-weight: bold;
  color: var(--main-color);
  line-height: 1;
}
.researchTheme_text .title span::before, .researchEducation_text .title span::before, .researchProject_text .title span::before {
  content: "";
  background-color: var(--main-color);
  width: 2.5rem;
  height: 2px;
}
.researchTheme_text .more, .researchEducation_text .more, .researchProject_text .more {
  display: block;
  position: relative;
  text-align: center;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  text-decoration: none;
  font-weight: bold;
  border-radius: 9999px;
  margin: 40px auto 0;
  padding: 1em;
  width: 90%;
}
.researchTheme_text .more::after, .researchEducation_text .more::after, .researchProject_text .more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  display: block;
  clip-path: polygon(0 40%, 75% 40%, 75% 0, 100% 50%, 75% 100%, 75% 60%, 0 60%);
  background-color: var(--main-color);
  width: 2em;
  height: 0.5em;
  transition: all 0.3s ease;
}
.researchTheme_text .more:hover, .researchEducation_text .more:hover, .researchProject_text .more:hover {
  background-color: var(--main-color);
  color: var(--color-white);
  opacity: 1;
}
.researchTheme_text .more:hover::after, .researchEducation_text .more:hover::after, .researchProject_text .more:hover::after {
  background-color: var(--color-white);
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin-top: 2.8em;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
.pager .pager_list .page-numbers {
  display: block;
  border: 1px solid var(--main-color);
  padding: 0.5em 1em;
  border-radius: 5px;
  transition: 0.3s;
  text-decoration: none;
}
.pager .pager_list .page-numbers:hover {
  background: var(--main-color);
  color: var(--color-white);
  opacity: 1;
}
.pager .pager_list .page-numbers.current {
  background: var(--main-color);
  color: var(--color-white);
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.page {
  padding-top: 90px;
}
.page h1 {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--color-white);
}
.page h2 {
  position: relative;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-gray);
}
.page h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 5em;
  height: 2px;
  background-color: var(--main-color);
}
.page h2::first-letter {
  color: var(--main-color);
}
.page h3 {
  font-size: 1.625rem;
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 15px;
  padding: 10px 0;
  border-bottom: 2px solid var(--main-color);
}
.page h4 {
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 0 10px;
  border-left: 2px solid var(--main-color);
}
.page h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  margin-top: 5px;
}
.page h6 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  margin-top: 5px;
}
.page hr {
  border: none;
  border-top: 1px dotted var(--color-black);
}
.page iframe {
  max-width: 100%;
}
.page img {
  max-width: 100%;
  height: auto;
}
.page p {
  margin-bottom: 1em;
}
.pageTitle {
  position: relative;
  background-image: url(../images/mainvisual.png);
  background-position: center;
  height: 250px;
}
.pageTitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  opacity: 0.7;
}
.pageTitle h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 0;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
.page_inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.page_content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}
.pageMenu {
  width: 100%;
}
.pageMenu_list {
  list-style: none;
  margin: 0;
}
.pageMenu_item {
  margin: 0;
  position: relative;
}
.pageMenu_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  clip-path: polygon(0 40%, 75% 40%, 75% 0, 100% 50%, 75% 100%, 75% 60%, 0 60%);
  background-color: var(--main-color);
  width: 1.5em;
  height: 0.5em;
}
.pageMenu_item:nth-child(even) {
  background-color: var(--sub-color);
}
.pageMenu_item a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  padding: 1em 1em 1em 3.5em;
}
.page_main {
  width: 100%;
}
.page_main .date {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 2em;
}
.page_main .date .time {
  color: var(--main-color);
  font-weight: bold;
}
.page_main .date .category {
  font-size: 0.75rem;
  background-color: var(--main-color);
  color: var(--color-white);
  margin: 0;
  padding: 0 3em;
}/*# sourceMappingURL=sp.css.map */