@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 {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  text-decoration: none;
}

.pc_only {
  display: none;
}

.sp_only {
  display: block;
}

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
**  font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** category
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  padding: 16px 0px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
}
.hd_bg .hd {
  display: flex;
  width: 100%;
  padding: 0 10px;
  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;
  align-items: center;
}
.hd_bg .hd .hd_logo a .hd_item .hd_ttl_text {
  font-size: clamp(1.5rem, 0.883rem + 0.5vw, 1.5rem);
  line-height: 1.2em;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 1px 1px 3px #000;
}
.hd_bg .hd .hd_logo a .hd_item .hd_ttl_text span {
  font-size: 12px;
  color: #222;
}
.hd_bg .hd .hd_logo a .hd_item img {
  max-width: 36px;
  width: 100%;
  height: auto;
  margin: 6px 0;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a span {
  display: block;
  font-size: 11px;
  color: #222;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav sp
  ******************************************************************************
------------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  left: auto;
  z-index: 100;
  overflow-x: auto;
  overflow-y: auto;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  transition: all 0.5s ease;
}
.nav .nav_list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav .nav_list .nav_hd_logo a {
  color: #222;
  transition: all 0.5s ease;
}
.nav .nav_list .nav_hd_logo a .hd_item {
  display: flex;
  justify-content: flex-start;
}
.nav .nav_list .nav_hd_logo a .hd_item span {
  display: block;
  margin: 2px;
  font-size: 15px;
  line-height: 1.2em;
}
.nav .nav_list .nav_hd_logo a .hd_item img {
  max-width: 30px;
  width: 100%;
  height: auto;
  margin: 5px;
}
.nav .nav_list .nav_hd_logo a span {
  display: none;
}
.nav .nav_list .nav_icon {
  display: flex;
  justify-content: center;
  background: #42bcc3;
}
.nav .nav_list .nav_icon .icon_items {
  margin: 20px;
}
.nav .nav_list .nav_icon .icon_items a {
  opacity: 1;
  transition: all 0.5s ease;
}
.nav .nav_list .nav_icon .icon_items a:nth-of-type(2) {
  padding: 0 30px;
}
.nav .nav_list .nav_icon .icon_items a:hover {
  opacity: 0.5;
  transition: all 0.5s ease;
}
.nav .nav_list > li {
  position: relative;
}
.nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 1em;
  background: #d43434;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  /* ホバー時 */
}
.nav .nav_list > li > a:hover {
  background-color: #d32f2f;
  color: #fff;
}
.nav .nav_list > li {
  /* 現在ページ */
}
> .nav .nav_list > li.current > a {
  background-color: #d32f2f; /* ここは好きな色で */
  color: #fff;
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 0.75em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 3px;
  background-color: #fff;
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 20px;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap {
  display: none;
}
.nav .nav_list > li .child_wrap > p {
  display: none;
}
.nav .nav_list > li .child_wrap > .sub-menu {
  background: #b71414;
}
.nav .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
  border-bottom: 2px dotted #fdfdfd;
}
.nav .nav_list > li .child_wrap > .sub-menu li:last-child {
  border-bottom: none;
}
.nav .nav_list > li .child_wrap > .sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25em 0 1.25em 3.5em;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
.nav .nav_list > li.open > .child_wrap {
  display: block;
}
.nav .nav_list .contact-link a {
  padding: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #1562a0;
}
.nav .nav_list .contact-link a:hover {
  background-color: #d30000;
  color: #fff;
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 0;
  right: 0;
  width: 55px;
  height: 55px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.5s ease;
  box-sizing: border-box;
  box-shadow: 1px 1px 5px #000;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 30%;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 30%;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** tel
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.tel {
  display: 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.sp_nav_trigger span {
  background-color: #404040;
  transition: all 0.5s ease;
}
.colorchange.sp_nav_trigger.sp_active span {
  background-color: #fff;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con_bg {
  background: url(../images/con_bg.png) no-repeat;
  padding-bottom: 0 !important;
}

.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.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;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  margin: 15px auto;
}
.ft_bg .ft_con .ft_box {
  width: 100%;
}
.ft_bg .ft_con .ft_box h2 {
  margin: 15px 0px 7px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2em;
  color: #5a94c5;
}
.ft_bg .ft_con .ft_box .ft_logo {
  display: flex;
  justify-content: center;
}
.ft_bg .ft_con .ft_box .ft_logo img {
  width: 45px;
  height: auto;
  margin: 9px 0;
}
.ft_bg .ft_con .ft_box .ft_logo h2 {
  margin: 0;
  font-size: 18px;
  color: #404040;
  padding-left: 10px;
  text-align: justify;
}
.ft_bg .ft_con .ft_box .ft_address {
  display: flex;
  flex-wrap: wrap;
}
.ft_bg .ft_con .ft_box .ft_address p {
  width: 100%;
}
.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: 5px 10px;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a:hover {
  opacity: 0.5;
  transition: all 0.5s ease;
}
.ft_bg .ft {
  padding: 25px 0;
  background-color: #00012b;
  margin-top: auto;
}
.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;
  opacity: 0;
  transition: all 0.3s ease;
}
.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;
  transition: all 0.3s ease;
}
.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;
  transition: all 0.3s ease;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
------------------------------------------------------------------------------*/
.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;
  margin: 20px auto 0;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 7vw;
  white-space: nowrap;
  line-height: 1.2;
  text-shadow: 1px 1px 8px #333;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy p {
  font-size: 3.5vw;
  text-shadow: 1px 1px 8px #555;
}
.index_slider_bg .index_slider .slider_slick {
  width: 100%;
  height: 100%;
}
.index_slider_bg .index_slider .slider_slick img {
  width: 100%;
  height: 20vh;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.8);
}

.index_main {
  order: 1;
  width: 700px;
}
.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: 100%;
}
.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: 20vh;
  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: 8vw;
  text-shadow: 0px 1px 10px #252525;
  line-height: 1;
  margin-top: 20px;
}
.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 {
  padding: 10px 15px 40px;
}
.page_con_bg .page_con .page_main {
  order: 2;
  width: 100%;
}
.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 h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.page_con_bg .page_con .page_main h2 {
  font-size: 24px;
  margin-bottom: 14px;
  margin-top: 22px;
  color: #42bcc3;
  border-bottom: 2px solid rgb(185, 185, 185);
}
.page_con_bg .page_con .page_main h3 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 18px;
  color: #42bcc3;
  border-left: 4px solid #42bcc3;
  padding: 0 0 0 15px;
}
.page_con_bg .page_con .page_main h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.page_con_bg .page_con .page_main h5,
.page_con_bg .page_con .page_main h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.page_con_bg .page_con .page_main .faculty-name {
  font-size: 20px;
  color: #59afb5;
  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: 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 {
  margin-bottom: 0.5em;
}
.page_con_bg .page_con .page_main p.thanks {
  font-size: 25px;
}
.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 ul .box_item {
  width: 50%;
  padding: 10px;
}
.page_con_bg .page_con .page_side {
  order: 1;
  width: 100%;
  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: block;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #adadad;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.archive_news_bg .archive_news_item_date time {
  font-size: 1.1rem;
}
.archive_news_bg .archive_news_item_date span {
  padding: 2px 5px;
  color: #fff;
  background-color: #495989;
  margin-left: 5px;
}
.archive_news_bg .archive_news_item_date {
  padding-bottom: 10px;
}
.archive_news_bg .archive_news_item_ttl a {
  font-size: 1.2rem;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** 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;
}

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

/* ダウンロードページ－カード全体 */
.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); /* 影を追加 */
  gap: 0.5em;
}

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

.contact-table table td:first-child {
  width: 66px;
  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: 8px 5px; /* 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;
  white-space: nowrap;
}

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

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** 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 {
  width: 100%;
  max-width: 500px; /* マップ全体の最大幅 */
  margin: 0 auto; /* 中央寄せ */
}

.map-wrapper iframe {
  width: 100%;
  height: 350px; /* 高さ調整 */
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** search
  ******************************************************************************
----------------------------------------------------------------------------*/
/*--------search button (SP)---------*/
.search-form {
  width: 100%;
  max-width: 100%;
}

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

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

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

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

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

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

/*----------search result (SP)------------*/
.search-result-text {
  margin: 8px 0 15px;
  font-size: 14px;
}

.search-result-list {
  list-style: none;
  padding: 0;
}
.search-result-list .search-result-item {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}
.search-result-list .search-result-item h3 {
  margin-bottom: 6px;
  font-size: 15px;
}
.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: 13px;
  color: #555;
  line-height: 1.6;
}
.search-result-list .search-result-item .search-result-link {
  margin-top: 5px;
  font-size: 12px;
  word-break: break-all;
}

.search-pagination {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}/*# sourceMappingURL=sp.css.map */