@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-wrap: wrap;
  min-height: 100vh;
  font-size: 14px;
  overflow-x: hidden;
  width: 100%;
}

.w_base {
  margin: 0 auto;
  max-width: 1080px;
  width: 100%;
}

a {
  text-decoration: none;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.5s ease;
}
.hd_bg .hd {
  display: flex;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
}
.hd_bg .hd .hd_logo a {
  color: #222;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a .hd_item {
  display: flex;
  justify-content: flex-start;
}
.hd_bg .hd .hd_logo a .hd_item .hd_ttl_text {
  font-size: clamp(1.125rem, 0.883rem + 0.5vw, 1.5rem);
  line-height: 1em;
  margin: 5px 0 5px 10px;
  color: #222;
  white-space: nowrap;
}
.hd_bg .hd .hd_logo a .hd_item .hd_ttl_text span {
  white-space: nowrap;
  font-size: 1em;
  color: #222;
}
.hd_bg .hd .hd_logo a .hd_item img {
  max-width: 50px;
  width: 100%;
  height: auto;
  margin: 13px 0;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a span {
  font-family: "Source Sans 3", sans-serif;
  display: block;
  font-size: 0.9em;
  color: #222;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav_bg {
  height: 100%;
  margin: 10px auto;
}
.nav_bg .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  overflow: visible;
}
.nav_bg .nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  width: 100%;
}
.nav_bg .nav .nav_list .nav_icon {
  display: none;
}
.nav_bg .nav .nav_list .nav_hd_logo {
  display: none;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
}
.nav_bg .nav .nav_list > li > a {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s ease;
}
.nav_bg .nav .nav_list > li > a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #10499e;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.nav_bg .nav .nav_list > li > a:hover::after {
  transform: scale(1, 1);
}
.nav_bg .nav .nav_list > li.current a {
  color: #10499e;
  font-weight: 600;
}
.nav_bg .nav .nav_list > li.current a::after {
  transform: scale(1, 1);
}
.nav_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  width: -moz-max-content;
  width: max-content;
  padding: 0px 30px 30px 30px;
  color: #404040;
  background: #fff;
  transition: All 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > p {
  padding: 20px 20px 10px 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #00049f;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu {
  display: flex;
  margin-top: 15px;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  background: #fff;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 30px;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  color: #00049f;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  width: 100%;
  background: #fff;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  position: relative;
  justify-content: end;
  align-items: center;
  padding: 10px 0px 10px 30px;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translatey(-50%);
  width: 10px;
  height: 1px;
  margin-left: 40px;
  background-color: #404040;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  color: #00049f;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover::before {
  background-color: #00049f;
}
.nav_bg .nav .nav_list > li:nth-of-type(3) > .child_wrap {
  left: -100%;
}
.nav_bg .nav .nav_list > li:nth-of-type(4) > .child_wrap {
  left: -250%;
}
.nav_bg .nav .nav_list > li:nth-of-type(5) > .child_wrap {
  left: auto;
  right: -100%;
}
.nav_bg .nav .nav_list > li:nth-of-type(6) > .child_wrap {
  left: auto;
  right: 0;
}
.nav_bg .nav .nav_list .contact-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background-color: #5a94c5;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list .contact-link a:hover {
  background-color: rgb(0, 2.7169811321, 108);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** tel
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.tel {
  padding: 0 15px;
  font-size: clamp(0.75rem, 0.508rem + 0.5vw, 1.125rem);
  white-space: nowrap;
  font-weight: bold;
  line-height: 80px;
  color: #fff;
  background-color: #297dc3;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** color change
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.colorchange.hd_bg {
  color: #040404;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a {
  color: #040404;
  transition: all 0.5s ease;
}
.colorchange.hd_bg .nav_list > li > a {
  color: #040404;
  transition: all 0.5s ease;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con_bg {
  width: 100%;
}

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

.main {
  order: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 60px;
  /*-------* content *------*/
}
.main .post_meta {
  align-items: end;
}
.main .post_meta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  margin-top: 0px;
  color: #5a94c5;
  border-bottom: 2px solid rgb(185, 185, 185);
}
.main .single_ttl {
  position: static;
  top: none;
  left: none;
}
.main .single_thumb {
  text-align: center;
  margin: 20px 0;
}

.side {
  order: 2;
  width: 230px;
}
.side h3 {
  background-color: #EEE;
  color: #111;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 8px;
  text-align: center;
}

.side_nav_list li a {
  background: url(../images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #CCC;
  color: #111;
  display: block;
  padding: 12px 10px;
  text-decoration: none;
}
.side_nav_list li a:hover, .side_nav_list li a.current {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  width: 100%;
  margin-top: auto;
  background-color: #f4ebff;
}
.ft_bg .ft_con {
  display: flex;
  justify-content: space-between;
  margin: 15px auto;
}
.ft_bg .ft_con .ft_box h2 {
  margin: 5px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2em;
  color: #5a94c5;
}
.ft_bg .ft_con .ft_box .ft_logo {
  display: flex;
  margin: 5px;
}
.ft_bg .ft_con .ft_box .ft_logo img {
  width: 35px;
  height: auto;
  margin: 7px 0;
}
.ft_bg .ft_con .ft_box .ft_logo h2 {
  font-size: 18px;
  color: #404040;
}
.ft_bg .ft_con .ft_box .ft_address {
  display: flex;
  flex-wrap: nowrap;
}
.ft_bg .ft_con .ft_box .ft_address p:last-of-type {
  margin-left: 5px;
}
.ft_bg .ft_con .ft_icon {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a {
  opacity: 1;
  transition: all 0.5s ease;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a img {
  margin-right: 10px;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a img:last-child {
  margin-left: 0;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a:hover {
  opacity: 0.5;
  transition: all 0.5s ease;
}
.ft_bg .ft {
  padding: 10px 0;
  background-color: #00012b;
}
.ft_bg .ft .ft_copy {
  font-size: 10px;
  text-align: center;
  color: #fff;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #333;
  bottom: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 100;
  transition: all 0.3s ease;
  opacity: 0;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
  opacity: 0;
}
.pt_btn::before, .pt_btn::after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt_btn::before {
  width: 7px;
  bottom: 0;
}
.pt_btn::after {
  height: 7px;
  right: 0;
}

.advent.pt {
  opacity: 1;
  transition: all 0.3s ease;
}
.advent.pt .pt_btn {
  opacity: 1;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.index_main {
  order: 1;
  width: 700px;
}

.index_side {
  order: 2;
  width: 230px;
}

.index_bnr_list li {
  margin-bottom: 4px;
}
.index_bnr_list a {
  padding: 16px 16px 16px 42px;
  border: 1px solid #000000;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(../images/icon_elink_black.png) no-repeat 16px center;
  color: #000000;
}
.index_bnr_list a:hover {
  background-color: #00049f;
  background-image: url(../images/icon_elink_white.png);
  color: #FFF;
}

.index_slider_bg {
  width: 100%;
}
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider .catchcopy_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy {
  color: #fff;
  text-align: center;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 4vw;
  text-shadow: 1px 1px 8px #333;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy p {
  font-size: 2vw;
  text-shadow: 1px 1px 8px #555;
}
.index_slider_bg .index_slider .slider_slick {
  width: 100%;
}
.index_slider_bg .index_slider .slider_slick img {
  width: 100%;
  height: 860px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.8);
  opacity: 0.8;
}

.index_news {
  display: flex;
  justify-content: space-around;
  padding: 30px 0;
}
.index_news .index_news_box {
  width: 50%;
  margin: 30px;
  padding: 30px;
}
.index_news .index_news_box h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 60px;
  line-height: 1.5em;
  text-align: left;
}
.index_news .index_news_box h2 span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
}
.index_news .index_news_box p {
  color: #404040;
}
.index_news .index_news_box a {
  display: block;
  font-size: 15px;
  text-align: right;
}
.index_news .index_news_scrl {
  width: 50%;
  margin: 15px;
  display: flex;
  flex-wrap: wrap;
}
.index_news .index_news_scrl .index_news_item {
  display: grid;
  align-items: center;
  width: 100%;
  margin: 20px 0;
  padding-left: 10px;
  border-left: solid 1px #000;
}
.index_news .index_news_scrl .index_news_item .index_news_item_date span {
  padding: 2px 5px;
  color: #fff;
  background-color: #495989;
  margin-left: 5px;
}

.index_about,
.index_project {
  display: block;
  padding: 30px 0;
}
.index_about .index_about_box,
.index_about .index_project_box,
.index_project .index_about_box,
.index_project .index_project_box {
  width: 100%;
  margin: 30px;
  padding: 30px;
}
.index_about .index_about_box h2,
.index_about .index_project_box h2,
.index_project .index_about_box h2,
.index_project .index_project_box h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 60px;
  line-height: 1.5em;
  text-align: left;
}
.index_about .index_about_box h2 span,
.index_about .index_project_box h2 span,
.index_project .index_about_box h2 span,
.index_project .index_project_box h2 span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
}
.index_about .index_about_box p,
.index_about .index_project_box p,
.index_project .index_about_box p,
.index_project .index_project_box p {
  color: #333;
}
.index_about .index_about_box a,
.index_about .index_project_box a,
.index_project .index_about_box a,
.index_project .index_project_box a {
  display: block;
  font-size: 15px;
  text-align: right;
}

.index_news_bg .index_news_box {
  color: #fff;
  background-color: #51c4cb;
}
.index_news_bg .index_news_box a {
  color: #fff;
  transition: all 0.3s ease;
  margin-right: 0;
}
.index_news_bg .index_news_box a:hover {
  color: #404040;
  margin-right: -15px;
  transition: all 0.3s ease;
}
.index_news_bg .index_news_scrl .index_news_link {
  display: none;
}

.index_about_bg {
  min-height: 540px;
  height: 100%;
  position: relative;
  z-index: 1;
}
.index_about_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/about_viblab.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: -1;
}
.index_about_bg .index_about_box {
  color: #5a94c5;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 1px 1px 10px #555;
}
.index_about_bg .index_about_box .index_about_txt {
  font-size: 1.1rem;
  line-height: 1.8;
}

.index_project_bg {
  min-height: 540px;
  height: 100%;
  position: relative;
  z-index: 1;
}
.index_project_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/project_research.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: -1;
}
.index_project_bg .index_project_box {
  color: #5a94c5;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 1px 1px 10px #555;
}
.index_project_bg .index_project_box .index_project_txt {
  font-size: 1.1rem;
  line-height: 1.8;
}
.index_project_bg .index_project_box a {
  color: #404040;
  margin-right: 0;
  transition: all 0.3s ease;
  margin-top: 20px;
  font-weight: 600;
}
.index_project_bg .index_project_box a:hover {
  color: #1632af;
  margin-right: -15px;
  transition: all 0.3s ease;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
-------------------------------------------------------------------------------*/
.page_slider_bg {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
  /* 背景動画 or 背景画像 */
}
.page_slider_bg .page_bg_video,
.page_slider_bg .page_bg_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.page_slider_bg .page_bg_image {
  background-size: cover;
  background-position: center center;
  opacity: 0.85;
}
.page_slider_bg .page_slider {
  position: relative;
  width: 100%;
  text-align: center;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy {
  color: #fff;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy h1 {
  font-size: 4vw;
  text-shadow: 0px 1px 10px #252525;
  line-height: 1;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy h1 span {
  font-size: 2.5vw;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy p {
  font-size: 2vw;
}

.page {
  margin-bottom: 60px;
  /*-- メンバーページ　member -- */
}
.page a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.page h2 {
  font-size: 36px;
  margin-bottom: 20px;
  margin-top: 30px;
  color: #5a94c5;
  border-bottom: 2px solid rgb(185, 185, 185);
}
.page h3 {
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 25px;
  color: #5a94c5;
  border-left: 4px solid #5a94c5;
  padding: 0 0 0 15px;
}
.page h4 {
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 20px;
}
.page h5,
.page h6 {
  font-size: 18px;
  margin-bottom: 2px;
  margin-top: 15px;
}
.page .faculty-name {
  font-size: 30px;
  color: #5a94c5;
  font-weight: 600;
  line-height: 1.3;
}
.page hr {
  border: none;
  border-top: 1px dotted #000;
}
.page iframe {
  max-width: 100%;
}
.page img {
  max-width: 1920px;
  width: 100%;
  height: auto;
}
.page ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.page p {
  line-height: 1.8em;
  margin-bottom: 1em;
  font-size: 1.2rem;
  color: #444;
}
.page ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.page .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page .box .box_item {
  width: 50%;
  padding: 10px;
}
.page .member-table table thead {
  border: 1px solid #bdbdbd;
  border-bottom: 0;
  background-color: #117a93;
  color: #fff;
}
.page .member-table table th {
  border: 1px solid #bdbdbd;
  padding: 0.5em;
  font-size: 1.2rem;
}
.page .member-table table td {
  border: none;
  padding: 0 0 0 1rem;
}
.page .member-table table td:first-child {
  width: 100px;
  white-space: nowrap;
  position: relative;
  padding: 10px 20px 10px 20px;
}
.page .member-table table td:first-child::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #222;
  font-weight: bold;
}
.page .member-graduate-table table thead {
  border: 1px solid #bdbdbd;
  border-bottom: 0;
  background-color: #117a93;
  color: #fff;
}
.page .member-graduate-table table th {
  border: 1px solid #bdbdbd;
  padding: 0.5em;
  font-size: 1.2rem;
}
.page .member-graduate-table table td {
  border: none;
  padding: 0 0 0 1rem;
}
.page .member-graduate-table table td:first-child {
  width: 100px;
  white-space: nowrap;
  position: relative;
  padding: 10px 20px 10px 20px;
}
.page .member-graduate-table table td:first-child::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #222;
  font-weight: bold;
}
.page .member-graduate-table table td:nth-child(2) {
  width: 150px;
  position: relative;
  padding: 10px 20px 10px 20px;
}

/*-- ニュースアーカイブ　archive -- */
.archive_news_bg {
  margin: 0 auto;
  width: 100%;
}
.archive_news_bg .archive_news {
  display: block;
  padding: 30px 5%;
}
.archive_news_bg .archive_news_item {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #adadad;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.archive_news_bg .archive_news_item dl {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px dotted #ccc;
  display: flex;
  flex-wrap: wrap;
}
.archive_news_bg .archive_news_item dl:first-child {
  padding-top: 0;
}
.archive_news_bg .archive_news_item dl dt {
  width: 110px;
  padding-left: 10px;
  color: #000;
}
.archive_news_bg .archive_news_item dl dd {
  width: calc(100% - 110px);
  padding-right: 10px;
}
.archive_news_bg .archive_news_item dl dd .icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.archive_news_bg .archive_news_item dl dd .icon_new:before {
  content: "NEW";
}
.archive_news_bg .archive_news_item_date {
  display: flex;
  align-items: center;
  gap: 8px; /* 日付とカテゴリの隙間 */
  min-width: 180px;
}
.archive_news_bg .archive_news_item_date span {
  display: inline-block;
  text-align: center;
  padding: 2px 5px;
  color: #fff;
  background-color: #495989;
  border-radius: 3px;
  white-space: nowrap;
}
.archive_news_bg .archive_news_item_ttl {
  padding-left: 10px;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
----------------------------------------------------------------------------*/
/* アコーディオン */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0;
}

.accordion-content.open {
  max-height: 2000px; /* 内容が収まる十分大きな値 */
  padding: 15px 0;
}

.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon .mcon_ttl {
  position: relative;
  margin-bottom: 3em;
  border-radius: 40px;
  overflow: hidden;
}
.mcon .mcon_ttl img {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  filter: blur(1px);
}
.mcon .mcon_ttl h1 {
  width: 100%;
  min-height: 180px;
  margin: 0 auto;
  padding: 1.2em 0.5em 1em 40px;
  display: flex;
  align-items: center;
  font-size: 30px;
  color: #fff;
}
.mcon h2 {
  position: relative;
  margin: 1.5em 0 1em;
  padding: 0 0 0.7em;
  font-size: 1.7em;
  color: #0073bd;
  font-weight: 700;
  border-bottom: 2px solid #ebebeb;
}
.mcon h2:first-child {
  margin-top: 0;
}
.mcon h3 {
  margin: 1.5em 0 1em;
  padding: 0 0 0 15px;
  font-size: 1.5em;
  font-weight: 700;
  border-left: 4px solid #0073bd;
  line-height: 1.4;
}
.mcon h4 {
  position: relative;
  margin: 1.2em 0 0.5em;
  padding: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 700;
}
.mcon h4:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 50px;
  left: 0;
  bottom: 0;
  background: #383838;
}
.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 ol, .mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li, .mcon ul li {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
}
.mcon p {
  margin-bottom: 1em;
}

.single_news {
  margin: 0 auto;
  font-size: 1.2rem;
}

.js-fadeIn {
  opacity: 0;
  transform: translateY(30px); /* 下からずらす */
  transition: all 0.6s ease-out;
}

.js-fadeIn.is-scrollIn {
  opacity: 1;
  transform: translateY(0);
}

.bdr_sol_btm_sent {
  border-bottom: 3px solid rgba(19, 112, 252, 0.4) !important;
  margin: 0 auto;
  display: block;
  border-radius: 0;
}

/* 利用規約のスクロール */
.scroll　 {
  overflow: auto;
  height: 200px;
  width: 100%;
}

/* ダウンロードページ－カード全体 */
.card-column {
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* 影を追加 */
}

/* お問い合わせのテーブル */
.contact-table table td {
  border: 1px solid #bdbdbd;
  padding: 10px 0 10px 20px;
}

.contact-table table td:first-child {
  width: 100px;
  white-space: nowrap;
  padding: 10px;
  text-align: center;
  background-color: #ededed;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** contact form 7
  ******************************************************************************
----------------------------------------------------------------------------*/
/* フォーム全体を中央寄せ */
.wpcf7-form {
  max-width: 600px; /* お好みの幅に調整 */
  margin: 0 auto; /* 中央寄せ */
}

/* ラベルをブロック表示（見た目を揃える用） */
.wpcf7-form label {
  display: block;
  margin-bottom: 1rem;
}

.wpcf7-form label {
  display: block;
  margin-bottom: 2rem;
  color: #333;
}

/* 入力フィールド共通 */
.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px; /* formrun風の内側余白 */
  border: 1px solid #ccc; /* 薄い枠線 */
  border-radius: 6px; /* 角丸 */
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* フォーカス時（クリックしたときの枠線強調） */
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: #0073e6; /* 青い枠線 */
  box-shadow: 0 0 0 2px rgba(0, 115, 230, 0.2);
  outline: none;
}

/* ボタン */
.wpcf7-form input[type=submit] {
  background: #0073e6;
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 20px;
}

.wpcf7-form input[type=submit]:hover {
  background: #005bb5;
}

.wpcf7-form .required {
  color: #fff;
  font-size: 0.9rem;
  margin-left: 6px;
  background: #e60000;
  padding: 0 5px;
  border-radius: 5px;
}

/* 入力エラー時の枠線 */
.wpcf7-not-valid {
  border-color: #e60000 !important;
  background: #fff5f5;
}

/* エラーメッセージのテキスト */
.wpcf7-not-valid-tip {
  color: #e60000;
  font-size: 0.85rem;
  margin-top: 4px;
  display: block;
}

/* フォーム全体のエラーメッセージ（送信時まとめて出るやつ） */
.wpcf7-response-output {
  margin-top: 20px;
  padding: 12px;
  font-weight: bold;
  width: 70%;
}

.wpcf7-response-output.wpcf7-validation-errors {
  background: #fff5f5;
  border: 1px solid #e60000;
  color: #e60000;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #f0fff4;
  border: 1px solid #38a169;
  color: #276749;
}

/* 姓・名フィールドを横並びに分割表示 */
.name-fields {
  display: flex;
  gap: 1rem; /* フィールド間の余白 */
}

.name-fields .field-item {
  flex: 1; /* 均等に横幅を分ける */
}

.name-fields .field-item input {
  width: 100%;
  box-sizing: border-box;
}

/* Contact Form 7 の承諾チェックボックスを横並びに */
.wpcf7-acceptance .wpcf7-list-item {
  display: flex !important;
  align-items: center !important;
}

.wpcf7-acceptance .wpcf7-list-item label {
  display: flex !important;
  align-items: center !important;
  gap: 0.5em; /* チェックボックスと文字の間隔 */
  margin: 0; /* 余計な改行を消す */
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** tablet?
  ******************************************************************************
----------------------------------------------------------------------------*/
@media screen and (max-width: 999px) {
  main {
    padding: 10px;
  }
  .nav_bg .nav .nav_list > li > a {
    padding: 10px;
  }
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pager
  ******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px auto 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.pager .pager_list .page-numbers {
  border: 1px solid #00049f;
  border-radius: 5px;
  color: #00049f !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  padding: 5px 0;
  background: #fff;
  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: #00049f;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #00049f;
}

.map-wrapper {
  text-align: center;
}/*# sourceMappingURL=style.css.map */