@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;
}

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
**  font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** category
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 20px 5px 20px 15px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
  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: #ffffff;
  white-space: nowrap;
  text-shadow: 1px 1px 4px #000;
}
.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%;
}
.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: 30px;
  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 {
  padding: 4px 6px;
  color: #fff;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  transition: All 0.5s ease;
  border-radius: 0px;
}
.nav_bg .nav .nav_list > li > a:hover {
  color: #bb1111;
  background: #fff;
  border-radius: 20px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.8);
}
.nav_bg .nav .nav_list > li.current-menu-item > a, .nav_bg .nav .nav_list > li.current-menu-parent > a, .nav_bg .nav .nav_list > li.current-menu-ancestor > a {
  color: #bb1111;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.8);
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap ul.sub-menu {
  background: #fff;
  min-width: 200px;
  margin-top: 10px;
}
.nav_bg .nav .nav_list > li > .child_wrap ul.sub-menu::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 25%;
  transform: translateX(-50%);
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.nav_bg .nav .nav_list > li:hover > .child_wrap.child_wrap {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.nav_bg .nav .sub-menu li {
  border-bottom: 2px dotted #8a8a8a;
}
.nav_bg .nav .sub-menu li:last-child {
  border-bottom: none;
}
.nav_bg .nav .sub-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-align: left;
  font-size: 13px;
}
.nav_bg .nav .sub-menu li a:hover {
  background: #f2f2f2;
  color: #bb1111;
}
.nav_bg .nav .sub-menu li.current-menu-item > a {
  color: #fff;
  background: #bb1111;
  border: none;
  border-radius: none;
  text-shadow: none;
  box-shadow: none;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** 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 {
  margin: 0 auto;
}
.con_bg .con {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.con_bg .con .main {
  order: 1;
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  width: 100%;
  margin-top: auto;
}
.ft_bg .ft {
  padding: 35px 0;
  background: #bb1111;
}
.ft_bg .ft .ft_copy {
  font-size: 10px;
  text-align: center;
  color: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
}
.pt .pt_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 63px;
  height: 54px;
  background: #d43434;
  border: 1px solid #d43434;
  transition: all 0.3s ease;
}
.pt .pt_wrap .pt_btn {
  position: relative;
  top: 8px;
  cursor: pointer;
  display: block;
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
}
.pt .pt_wrap .pt_btn::before, .pt .pt_wrap .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #FFF;
}
.pt .pt_wrap .pt_btn::before {
  width: 2px;
  bottom: 0;
}
.pt .pt_wrap .pt_btn::after {
  height: 2px;
  right: 0;
}
.pt .pt_wrap .pt_ttl {
  position: relative;
  bottom: 3px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  font-weight: 700;
}
.pt .pt_wrap:hover {
  background: #fff;
}
.pt .pt_wrap:hover .pt_btn::before, .pt .pt_wrap:hover .pt_btn::after {
  background: #d43434;
}
.pt .pt_wrap:hover .pt_ttl {
  color: #d43434;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg {
  width: 100%;
}
.index_slider_bg .index_slider {
  width: 100%;
}
.index_slider_bg .index_slider img {
  width: 100%;
}
.index_slider_bg .catchcopy_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
  padding: 20px;
  border: 1px solid #D8D8D8;
  border-right: none;
}
.index_slider_bg .catchcopy_bg h2 {
  color: #A5A5A5;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  line-height: 1.7;
}
.index_slider_bg .catchcopy_bg h2::before {
  content: "";
  display: flex;
  width: 98px;
  height: 85px;
  margin: 0 auto 20px;
  background: url(../images/main_img_logo.svg) no-repeat center center;
}
.index_slider_bg .slider_slick {
  width: 100%;
}
.index_slider_bg .slider_slick img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.7);
}

.index_main {
  order: 1;
  width: calc(100% - 290px);
  margin-top: 15px;
}
.index_main .index_greet {
  position: relative;
  margin-bottom: 40px;
}
.index_main .index_greet h2 {
  margin: 1em 0 0.4em 0;
  font-size: 1.3em;
  font-weight: bold;
  color: #fff;
  padding: 0.5em 0 0.5em 1.5em;
  background: #bb1111;
}
.index_main .index_greet .index_greet_item {
  gap: 20px;
}
.index_main .index_greet .index_greet_item img {
  padding-top: 20px;
}
.index_main .index_greet .more {
  position: absolute;
  top: 15px;
  right: 0;
  background: #bb1111;
}
.index_main .index_greet .more a {
  display: flex;
  align-items: center;
  color: #252525;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
}
.index_main .index_greet .more a::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/icon_more.svg) no-repeat center center;
}
.index_main .index_greet .more a:hover {
  color: #d43434;
}
.index_main .index_news {
  position: relative;
  margin-bottom: 50px;
}
.index_main .index_news h2 {
  margin: 0.8em 0 0.4em 0;
  font-size: 1.3em;
  font-weight: bold;
  color: #fff;
  padding: 0.5em 0 0.5em 1.5em;
  background: #bb1111;
}
.index_main .index_news .index_news_scrl {
  max-height: 230px;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1.5em 0.8em;
  border-bottom: 1px dotted #D8D8D8;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  width: 70px;
  font-family: "Open Sans", sans-serif;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 90px);
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #2679b1;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a:hover {
  text-decoration: none;
}
.index_main .index_news .index_news_scrl .index_news_item .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 .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
  font-family: "Open Sans", sans-serif;
}
.index_main .index_news .more {
  margin-top: 20px;
  text-align: center;
}
.index_main .index_news .more a {
  display: inline-block;
  padding: 10px 30px;
  background: #d43434;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 1px solid #d43434;
}
.index_main .index_news .more a:hover {
  background: #fae2e2;
  color: #d43434;
}

.index_side {
  order: 2;
  width: 250px;
  margin-top: 30px;
}
.index_side .center_info_box {
  padding: 0px 0px 10px;
  background-color: #f5f5f5;
  border: 1px solid #056cb7;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.index_side .center_info_box h2 {
  background-color: #056cb7;
  color: #fff;
  text-align: center;
  padding: 5px 0;
}
.index_side .center_info_box p {
  font-size: 1rem;
  padding: 10px 10px 0;
}
.index_side .side_logo {
  width: 100%;
  text-align: center; /* 中央寄せ */
  margin-bottom: 20px;
}
.index_side .side_logo img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.index_side #i_bnr {
  width: 100%;
  margin-top: 20px;
  background-color: #bb1111;
}
.index_side #i_bnr ul.i_bnr_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.index_side #i_bnr ul.i_bnr_list li {
  border-bottom: 5px solid #fff;
  width: 100%;
}
.index_side #i_bnr ul.i_bnr_list li a.bnr-text {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff;
  padding: 15px 0 15px 30px;
  border: 1px solid #bb1111;
  background: url(../images/common/bnr_bg_hover.png) 8px center no-repeat;
  transition: All 0.5s ease;
}
.index_side #i_bnr ul.i_bnr_list li a.bnr-text:hover {
  opacity: 0.8;
}
.index_side #i_bnr ul.i_bnr_list li a.bnr-image {
  display: block;
  border: none;
  background: none;
  padding: 0;
}
.index_side #i_bnr ul.i_bnr_list li a.bnr-image img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  box-shadow: none;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
-------------------------------------------------------------------------------*/
.page_slider_bg {
  position: relative;
  width: 100%;
  height: 40vh;
  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_con_bg {
  margin: 0 auto;
  width: 100%;
}
.page_con_bg .page_con {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.page_con_bg .page_con .page_main {
  order: 2;
  width: calc(100% - 200px);
  margin-left: 30px;
}
.page_con_bg .page_con .page_main a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.page_con_bg .page_con .page_main h2 {
  font-size: 34px;
  margin-bottom: 20px;
  margin-top: 30px;
  color: #e72f2f;
  border-bottom: 2px solid rgb(189, 77, 77);
  padding: 0;
}
.page_con_bg .page_con .page_main h3 {
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 25px;
  color: #bd0b0b;
  border-left: 4px solid #bd0b0b;
  padding: 0 0 0 15px;
}
.page_con_bg .page_con .page_main h4 {
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 20px;
}
.page_con_bg .page_con .page_main h5,
.page_con_bg .page_con .page_main h6 {
  font-size: 18px;
  margin-bottom: 2px;
  margin-top: 15px;
}
.page_con_bg .page_con .page_main .faculty-name {
  font-size: 30px;
  color: #5a94c5;
  font-weight: 600;
  line-height: 1.3;
}
.page_con_bg .page_con .page_main hr {
  border: none;
  border-top: 1px dotted #000;
}
.page_con_bg .page_con .page_main iframe {
  max-width: 100%;
}
.page_con_bg .page_con .page_main img {
  max-width: 1920px;
  width: 100%;
  height: auto;
}
.page_con_bg .page_con .page_main ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page_con_bg .page_con .page_main ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.page_con_bg .page_con .page_main p {
  line-height: 1.8em;
  margin-bottom: 1em;
  font-size: 1.2rem;
  color: #444;
}
.page_con_bg .page_con .page_main ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page_con_bg .page_con .page_main ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.page_con_bg .page_con .page_main .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page_con_bg .page_con .page_main .box .box_item {
  width: 50%;
  padding: 10px;
}
.page_con_bg .page_con .page_main .waku {
  border: 1px solid #222;
  border-radius: 30px;
  padding: 30px;
}
.page_con_bg .page_con .page_side {
  order: 1;
  width: 250px;
  margin-top: 12px;
}
.page_con_bg .page_con .page_side #first_side_bnr {
  margin-bottom: 20px;
}
.page_con_bg .page_con .page_side #first_side_bnr h2 {
  color: #bb1111;
  border: none;
  border-bottom: 1px solid #bb1111;
  background: none;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  height: 30px;
}
.page_con_bg .page_con .page_side #first_side_bnr .page_side_list {
  padding: 0px;
  list-style: none;
}
.page_con_bg .page_con .page_side #first_side_bnr .page_side_list li a {
  width: 100%;
  box-sizing: border-box;
  height: auto;
  padding: 8px 5px 5px 23px;
  display: block;
  text-decoration: none;
  background: url(../images/common/sidenav_icon.png) no-repeat 6px 16px;
  font-size: 14px;
  color: #333333;
  border-bottom: dotted 1px #CCC;
  transition: all 0.3s ease;
}
.page_con_bg .page_con .page_side #first_side_bnr .page_side_list li a:hover {
  padding-left: 30px;
}
.page_con_bg .page_con .page_side .side_logo {
  width: 100%;
  text-align: center; /* 中央寄せ */
  margin-bottom: 20px;
}
.page_con_bg .page_con .page_side .side_logo img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.page_con_bg .page_con .page_side #second_side_bnr {
  width: 100%;
  margin-top: 20px;
  background-color: #bb1111;
}
.page_con_bg .page_con .page_side #second_side_bnr .page_bnr_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.page_con_bg .page_con .page_side #second_side_bnr .page_bnr_list li {
  border-bottom: 5px solid #fff;
  width: 100%;
}
.page_con_bg .page_con .page_side #second_side_bnr .page_bnr_list li a.bnr-text {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff;
  padding: 15px 0 15px 30px;
  border: 1px solid #bb1111;
  background: url(../images/common/bnr_bg_hover.png) 8px center no-repeat;
  transition: All 0.5s ease;
}
.page_con_bg .page_con .page_side #second_side_bnr .page_bnr_list li a.bnr-text:hover {
  opacity: 0.8;
}
.page_con_bg .page_con .page_side #second_side_bnr .page_bnr_list li a.bnr-image {
  display: block;
  border: none;
  background: none;
  padding: 0;
}
.page_con_bg .page_con .page_side #second_side_bnr .page_bnr_list li a.bnr-image img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  box-shadow: none;
}

/*-- ニュースアーカイブ　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: #777777;
  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;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** search
  ******************************************************************************
----------------------------------------------------------------------------*/
/*--------search button---------*/
.search-form {
  width: 100%;
  max-width: 300px;
}

.search-box {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.search-box input[type=text] {
  width: 100%;
  padding: 5px 30px 5px 10px;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
}

.search-box input[type=text]:focus {
  outline: none;
  border: 1px solid #ccc;
  box-shadow: none;
}

.search-box button {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 1px solid #aaa;
  border-top: none;
  border-bottom: none;
  background: #dcdcdc;
  cursor: pointer;
  padding: 0;
  border-radius: 0 4px 4px 0;
}

.search-box button img {
  width: 16px;
  height: 19px;
}

.search-box button:hover {
  opacity: 0.7;
}

/*----------search result------------*/
.search-result-text {
  margin: 10px 0 20px;
  font-size: 16px;
}

.search-result-list {
  list-style: none;
  padding: 0;
}
.search-result-list .search-result-item {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
.search-result-list .search-result-item h3 {
  margin-bottom: 8px;
}
.search-result-list .search-result-item h3 a {
  color: #bb1111;
}
.search-result-list .search-result-item h3 a:hover {
  text-decoration: underline;
}
.search-result-list .search-result-item .search-result-excerpt {
  font-size: 14px;
  color: #555;
}
.search-result-list .search-result-item .search-result-link {
  margin-top: 5px;
  font-size: 13px;
}

.search-pagination {
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */