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

body {
  min-height: 100vh;
}

/*----------------------------------------------------------------------------
******************************************************************************
** color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.68);
  border-top: 3px solid #DB343C;
}
.hd_bg .hd {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.hd_bg .hd .hd_logo {
  flex-shrink: 0;
  width: calc(100% - 12vw);
}
.hd_bg .hd .hd_logo a {
  display: block;
  padding-left: 10px;
  color: #616161;
  font-size: clamp(1.125rem, 0.841rem + 1.42vw, 1.75rem);
  line-height: 1.5;
}
.hd_bg .hd .hd_logo a br {
  display: none;
  padding-left: 10px;
}
.hd_bg#index_hd {
  background: transparent;
  transition: all 0.5s ease;
}
.hd_bg#index_hd .hd .hd_logo a {
  color: #fff;
  transition: all 0.5s ease;
}
.hd_bg#index_hd.bg {
  background: rgba(255, 255, 255, 0.68);
}
.hd_bg#index_hd.bg .hd .hd_logo a {
  color: #616161;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: -200%;
  left: 0;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  width: 100%;
  height: auto;
  max-height: calc(100% + 30px);
  padding: 60px 15px 30px;
  background: #636363;
  transition: All 0.8s ease;
}
.nav .nav_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.nav .nav_list > li {
  position: relative;
}
.nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 1em;
  background: #fff;
  color: #DB343C;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}
.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 1.5em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #DB343C;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #DB343C;
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  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 > .sub-menu {
  background: #DB343C;
}
.nav .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25em 1.5em;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn {
  position: absolute;
  top: 0.75em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #DB343C;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before, .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #DB343C;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1em 1em 1em 2em;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
  background: #ccc;
}
.nav .nav_contact {
  margin-bottom: 40px;
}
.nav .nav_contact .ttl {
  display: none;
}
.nav .nav_contact .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 10px;
  background: #DB343C;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  border-radius: 50vh;
}
.nav .nav_contact .tel::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background: url(../images/icon_tel_white.png) no-repeat center center;
  background-size: contain;
}
.nav .nav_contact address {
  display: none;
}
.nav .nav_contact .sns {
  display: flex;
  justify-content: center;
  gap: 35px;
  width: 100%;
  max-width: 185px;
  margin: 20px auto 0;
}
.nav .nav_contact .sns li a img {
  width: 100%;
  height: auto;
}

.sp_nav_open {
  top: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  background: #DB343C;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
.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);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 0;
}
.con .main {
  margin-bottom: 30px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
}
.ft_bg .ft {
  padding: 40px 0 30px;
  text-align: center;
}
.ft_bg .ft .ft_logo {
  font-size: 24px;
}
.ft_bg .ft .ft_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12px;
}
.ft_bg .ft .ft_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.ft_bg .ft_copy {
  padding: 20px 0;
  background: #DB343C;
  color: #fff;
  font-size: 11px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 1;
}
.pt .pt_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #B5B5B6;
  border: 1px solid #B5B5B6;
  border-radius: 100vh;
  transition: all 0.3s ease;
}
.pt .pt_wrap .pt_btn {
  position: relative;
  top: 3px;
  cursor: pointer;
  display: block;
  width: 15px;
  height: 15px;
  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: 1px;
  bottom: 0;
}
.pt .pt_wrap .pt_btn::after {
  height: 1px;
  right: 0;
}
.pt .pt_wrap .pt_ttl {
  position: relative;
  bottom: 0;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 10px;
}
.pt .pt_wrap:hover {
  background: #fff;
}
.pt .pt_wrap:hover .pt_btn::before, .pt .pt_wrap:hover .pt_btn::after {
  background: #DB343C;
}
.pt .pt_wrap:hover .pt_ttl {
  color: #DB343C;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #DB343C;
  border-radius: 5px;
  color: #DB343C !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  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: #DB343C;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #DB343C;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider .slider_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 90%;
  color: #fff;
  font-size: 9vw;
  font-weight: 700;
  text-align: center;
}
.index_slider_bg .index_slider img {
  width: 100%;
  height: 90dvh !important;
  -o-object-fit: cover !important;
  object-fit: cover;
}

.index_main .index_about {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -5vh;
  padding: 0 15px;
}
.index_main .index_about .index_about_con {
  order: 1;
  flex-shrink: 0;
  padding: 20px 0;
}
.index_main .index_about .index_about_con h2 {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
}
.index_main .index_about .index_about_con h2::before {
  content: attr(data-text);
  display: inline-block;
  margin-bottom: 20px;
  color: #DB343C;
  font-family: "Libre Baskerville", serif;
  border-bottom: 2px solid #DB343C;
}
.index_main .index_about .index_about_con h2 span {
  display: block;
}
.index_main .index_about .index_about_con .more {
  width: 220px;
  margin: 40px auto 0;
}
.index_main .index_about .index_about_con .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #DB343C;
  color: #fff;
  font-weight: 700;
  border: 2px solid #DB343C;
  border-radius: 100vw;
  transition: all 0.3s ease;
}
.index_main .index_about .index_about_con .more a:hover {
  background: #fff;
  color: #DB343C;
}
.index_main .index_about .index_about_img {
  order: 2;
  flex-shrink: 0;
  width: 100%;
}
.index_main .index_about .index_about_img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 85%;
     object-position: 50% 85%;
}
.index_main .index_news {
  padding: 60px 15px;
  background: #F2F2F2;
}
.index_main .index_news h2 {
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
}
.index_main .index_news h2::before {
  content: attr(data-text);
  display: inline-block;
  margin-bottom: 20px;
  color: #DB343C;
  font-family: "Libre Baskerville", serif;
  border-bottom: 2px solid #DB343C;
}
.index_main .index_news h2 span {
  display: block;
}
.index_main .index_news .index_news_scrl {
  width: 100%;
  max-height: 50vh;
  margin: 0 auto;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_news .index_news_scrl .index_news_item:first-of-type {
  border-top: 1px solid #D8D8D8;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  padding: 0 10px;
  color: #9A9A9A;
  font-size: 14px;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl {
  padding: 0 10px;
}
.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";
}
.index_main .index_news .more {
  width: 220px;
  margin: 40px auto 0;
}
.index_main .index_news .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #DB343C;
  color: #fff;
  font-weight: 700;
  border: 2px solid #DB343C;
  border-radius: 100vw;
  transition: all 0.3s ease;
}
.index_main .index_news .more a:hover {
  background: #fff;
  color: #DB343C;
}
.index_main .index_greeting {
  padding: 60px 15px;
}
.index_main .index_greeting h2 {
  margin-bottom: 40px;
  font-size: 18px;
  text-align: center;
}
.index_main .index_greeting h2::before {
  content: attr(data-text);
  display: inline-block;
  margin-bottom: 20px;
  color: #DB343C;
  font-family: "Libre Baskerville", serif;
  border-bottom: 2px solid #DB343C;
}
.index_main .index_greeting h2 span {
  display: block;
}
.index_main .index_greeting .index_greeting_con {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.index_main .index_greeting .index_greeting_con .index_greeting_txt h3 {
  display: flex;
  align-items: center;
  margin: 20px 0;
  padding-bottom: 10px;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
}
.index_main .index_greeting .index_greeting_con .index_greeting_txt h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  aspect-ratio: 1/1;
  margin-right: 10px;
  background: #fff;
  border-radius: 50vh;
  border: 3px solid #DB343C;
}
.index_main .index_greeting .index_greeting_con .index_greeting_txt p {
  margin-bottom: 1.5em;
  line-height: 1.8;
  text-align: justify;
}
.index_main .index_greeting .index_greeting_con .index_greeting_img {
  width: 50%;
  float: right;
  margin: 10px 0px 10px 10px;
}
.index_main .index_greeting .index_greeting_con .index_greeting_img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.index_main .index_greeting .index_greeting_con .index_greeting_img .index_greeting_date {
  margin-top: 15px;
  padding: 15px;
  background: #fff;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.index_main .index_greeting .index_greeting_con .index_greeting_img .index_greeting_date p {
  margin-bottom: 0.5em;
  font-size: 11px;
  line-height: 1.6;
}
.index_main .index_greeting .index_greeting_con .index_greeting_img .index_greeting_date p:first-child {
  color: #DB343C;
  font-weight: 600;
}
.index_main .index_greeting .index_greeting_con .index_greeting_img .index_greeting_date p:last-child {
  margin-bottom: 0;
}
.index_main .index_banner .index_banner_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.index_main .index_banner .index_banner_list .index_banner_item {
  flex: 0 0 auto;
  width: 280px;
}
.index_main .index_banner .index_banner_list .index_banner_item a {
  display: block;
  transition: all 0.3s ease;
}
.index_main .index_banner .index_banner_list .index_banner_item a img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.index_main .index_banner .index_banner_list .index_banner_item .index_banner_title {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: #616161;
  line-height: 1.5;
}

.index_side .index_bnr_list li {
  margin-bottom: 4px;
}
.index_side .index_bnr_list li 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_side .index_bnr_list li a:hover {
  background-color: #000;
  background-image: url(../images/icon_elink_white.png);
  color: #FFF;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list .news_item {
  display: flex;
  align-content: space-between;
  width: 100%;
  padding: 30px 0;
  border-bottom: 1px solid #D8D8D8;
}
.news_list .news_item:first-of-type {
  border-top: 1px solid #D8D8D8;
}
.news_list .news_item .news_item_date {
  padding: 0 15px;
  color: #9A9A9A;
  font-size: 14px;
}
.news_list .news_item .news_item_ttl a {
  display: inline-block;
  color: #616161;
  text-decoration: underline;
}
.news_list .news_item .news_item_ttl a:hover {
  text-decoration: none;
}

.news_post_date {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  margin-bottom: -30px;
  padding: 0 15px;
  font-weight: 500;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon > section {
  padding: 60px 15px;
}
.mcon > section > *:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.mcon h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 345px;
  padding-top: 60px;
  background: url(../images/ttl_bg.jpg) no-repeat center center;
  background-size: cover;
}
.mcon h1 span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(3.125rem, 2.67rem + 2.27vw, 4.375rem);
  text-align: center;
  line-height: 1.3;
}
.mcon h1 span::after {
  content: attr(data-text);
  display: block;
  color: #616161;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.875rem, 0.761rem + 0.57vw, 1.125rem);
}
.mcon h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto 30px;
  color: #DB343C;
  font-size: 24px;
}
.mcon h2::before {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  margin: 0 auto 15px;
  background: #DB343C;
}
.mcon h3 {
  display: flex;
  align-items: center;
  margin: 20px 0;
  padding-bottom: 10px;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
}
.mcon h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  aspect-ratio: 1/1;
  margin-right: 10px;
  background: #fff;
  border-radius: 50vh;
  border: 3px solid #DB343C;
}
.mcon h4 {
  display: flex;
  align-items: center;
  margin: 20px 0;
  font-size: 18px;
}
.mcon h4::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  margin-right: 10px;
  background: #DB343C;
}
.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 {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon .feature_card {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.mcon .feature_card .feature_card_img {
  flex-shrink: 0;
}
.mcon .feature_card .feature_card_img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.mcon .feature_card .feature_card_content {
  flex: 1;
}
.mcon .feature_card .feature_card_content h3 {
  margin-top: 0;
}
.mcon .feature_card.reverse {
  flex-direction: row-reverse;
}
.mcon .voice_item {
  margin-bottom: 100px;
  padding: 5px;
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.mcon .voice_item:last-child {
  margin-bottom: 0;
}
.mcon .voice_graduate {
  display: flex;
  gap: 40px;
  padding: 10px;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}
.mcon .voice_graduate .voice_graduate_photo {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  position: relative;
}
.mcon .voice_graduate .voice_graduate_photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  pointer-events: none;
}
.mcon .voice_graduate .voice_graduate_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mcon .voice_graduate .voice_graduate_content {
  flex: 1;
}
.mcon .voice_graduate .voice_graduate_content .voice_graduate_header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}
.mcon .voice_graduate .voice_graduate_content .voice_graduate_header h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #2c2c2c;
  letter-spacing: 0.02em;
}
.mcon .voice_graduate .voice_graduate_content .voice_graduate_header h3::before {
  display: none;
}
.mcon .voice_graduate .voice_graduate_content .voice_graduate_header h4 {
  margin: 0;
  font-size: 13px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.mcon .voice_graduate .voice_graduate_content .voice_graduate_header h4::before {
  display: none;
}
.mcon .voice_graduate .voice_graduate_content p {
  line-height: 2;
  text-align: justify;
  color: #4a4a4a;
  font-size: 15px;
}
.mcon .voice_principal {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 10px;
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  border: 1px solid #e8e8e8;
  border-left: 5px solid #DB343C;
  border-radius: 12px;
  position: relative;
}
.mcon .voice_principal::before {
  content: "“";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(219, 52, 60, 0.08);
  line-height: 1;
}
.mcon .voice_principal .voice_principal_content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.mcon .voice_principal .voice_principal_content h4 {
  display: inline-block;
  margin: 0 0 20px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 700;
  color: #DB343C;
  background: rgba(219, 52, 60, 0.08);
  border-radius: 6px;
}
.mcon .voice_principal .voice_principal_content h4::before {
  display: none;
}
.mcon .voice_principal .voice_principal_content p {
  line-height: 2;
  text-align: justify;
  color: #4a4a4a;
  font-size: 15px;
}
.mcon .voice_principal .voice_principal_photo {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
}
.mcon .voice_principal .voice_principal_photo::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 3px solid rgba(219, 52, 60, 0.15);
  border-radius: 50%;
  z-index: -1;
}
.mcon .voice_principal .voice_principal_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mcon .course-subtitle {
  margin: -10px auto 50px;
  max-width: 800px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  color: #616161;
  border: none;
  background: none;
  padding: 0;
}
.mcon .course-subtitle::before {
  display: none;
}
.mcon .course-subtitle {
  border-bottom: none;
}
.mcon .course-card {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
  justify-content: center;
}
.mcon .course-card-content {
  flex: 1;
  line-height: 2;
  text-align: justify;
  margin-bottom: 1.5em;
}
.mcon .course-card-content p {
  line-height: 2;
  text-align: justify;
  margin-bottom: 1.5em;
}
.mcon .course-card-img {
  flex: 1;
  max-width: 480px;
}
.mcon .course-card-img img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.mcon .course-card-img img:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.mcon .course-card.reverse {
  flex-direction: row-reverse;
}
.mcon .course-card.no-image .course-card-content {
  flex: 0 1 100%;
  max-width: 880px;
  margin: 0 auto;
}
.mcon .course-research-themes {
  padding: 40px;
  background-color: #F8F8F8;
  border-radius: 12px;
}
.mcon .course-research-themes h4 {
  margin-top: 0;
  margin-bottom: 25px;
  justify-content: center;
  font-weight: bold;
  color: #DB343C;
}
.mcon .course-research-themes h4::before {
  display: none;
}
.mcon .course-research-themes ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mcon .course-research-themes ul li {
  position: relative;
  padding-left: 1.5em;
  margin-left: 0;
  line-height: 1.7;
}
.mcon .course-research-themes ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #DB343C;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .mcon .course-section .course-subtitle {
    font-size: 1.4rem;
    text-align: left;
  }
  .mcon .course-card {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }
  .mcon .course-card-content, .mcon .course-card-img {
    width: 100%;
    max-width: 100%;
  }
  .mcon .course-card.reverse {
    flex-direction: column;
  }
  .mcon .course-research-themes {
    padding: 25px;
  }
}
.mcon .requirements-table-wrap {
  margin: 40px auto;
  max-width: 800px;
}
.mcon .requirements-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.mcon .requirements-table caption {
  caption-side: top;
  margin-bottom: 10px;
  font-weight: 700;
  color: #DB343C;
  text-align: center;
  font-size: 1.2rem;
}
.mcon .requirements-table th,
.mcon .requirements-table td {
  padding: 1.2em 1em;
  border: 1px solid #ddd;
}
.mcon .requirements-table th {
  background: #DB343C;
  color: #fff;
  font-weight: 500;
  text-align: center;
  width: 60%;
}
.mcon .requirements-table td {
  color: #333;
}
.mcon .requirements-table td.num {
  text-align: center;
  font-weight: 700;
}
.mcon .requirements-table tr:nth-child(even) td {
  background: #fdfdfd;
}
.mcon .table-note {
  margin-top: 10px;
  font-size: 0.9em;
  color: #666;
  text-align: right;
}
.mcon .subject-area-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
.mcon .subject-area-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.mcon .subject-area-box h3 {
  margin-top: 0;
  border-bottom: 2px solid #DB343C;
  padding-bottom: 0.5em;
}
.mcon .subject-area-box ul {
  margin-top: 15px;
}
.mcon .subject-area-box ul li {
  line-height: 1.8;
}
.mcon .electives-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}
.mcon .elective-group {
  flex: 1;
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #DB343C;
}
.mcon .elective-group .elective-title {
  margin-top: 0;
  justify-content: center;
  text-align: center;
  border-bottom: 1px dotted #ccc;
}
.mcon .elective-group .elective-title::before {
  display: none;
}
.mcon .elective-group .elective-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
.mcon .elective-group .elective-list li {
  position: relative;
  padding-left: 1.2em;
  margin-left: 0;
  margin-bottom: 0.8em;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.8em;
}
.mcon .elective-group .elective-list li:last-child {
  border-bottom: none;
}
.mcon .elective-group .elective-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #DB343C;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .mcon .requirements-table th,
  .mcon .requirements-table td {
    padding: 1em 0.5em;
    font-size: 0.9rem;
  }
  .mcon .electives-container {
    flex-direction: column;
    gap: 30px;
  }
  .mcon .subject-area-box {
    padding: 20px;
  }
}
.mcon {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** page curriculum model (履修モデルページ用)
  ******************************************************************************
  ----------------------------------------------------------------------------*/
}
.mcon .model_list {
  list-style: none !important;
  padding-left: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mcon .model_list li {
  margin-left: 0 !important;
}
.mcon .model_list li a {
  display: block;
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 50px 20px 30px;
  background: #fff;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.mcon .model_list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transition: all 0.3s ease;
}
.mcon .model_list li a:hover {
  background: #DB343C;
  border-color: #DB343C;
  color: #fff;
  box-shadow: 0 5px 15px rgba(219, 52, 60, 0.2);
}
.mcon .model_list li a:hover::after {
  border-color: #fff;
  right: 15px;
}
.mcon {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** page admission (入試情報ページ用)
  ******************************************************************************
  ----------------------------------------------------------------------------*/
}
.mcon .policy-box {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #ccc;
}
.mcon .policy-box:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.mcon .policy-box h3 {
  margin-top: 0;
}
.mcon .admission-table-wrap {
  width: 100%;
  overflow-x: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.mcon .admission-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: #fff;
}
.mcon .admission-table th,
.mcon .admission-table td {
  padding: 1.2em 1em;
  border: 1px solid #ddd;
  vertical-align: middle;
  line-height: 1.6;
}
.mcon .admission-table thead th {
  background: #DB343C;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-color: #ffffff;
}
.mcon .admission-table thead th.th-head {
  background: rgb(186.8619246862, 33.1380753138, 40.5020920502);
  width: 15%;
}
.mcon .admission-table .th-row {
  background: #f9f9f9;
  color: #DB343C;
  font-weight: 700;
  text-align: center;
  width: 15%;
}
.mcon .admission-table td {
  color: #333;
  width: 42.5%;
}
.mcon .admission-table td.center-text {
  text-align: center;
  font-weight: 700;
}
.mcon .admission-table td.align-top {
  vertical-align: top;
}
.mcon .admission-table .num-list {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 1.5em;
  list-style-type: decimal;
}
.mcon .admission-table .num-list li {
  margin-left: 0;
  margin-bottom: 0.5em;
}
.mcon .admission-table .check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mcon .admission-table .check-list li {
  position: relative;
  padding-left: 1.2em;
  margin-left: 0;
  margin-bottom: 0.3em;
}
.mcon .admission-table .check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #DB343C;
  font-weight: bold;
}
.mcon .admission-table .sub-list-box {
  margin-top: 15px;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 4px;
}
.mcon .admission-table .sub-list-box dt {
  font-weight: 700;
  color: #DB343C;
  margin-top: 10px;
}
.mcon .admission-table .sub-list-box dt:first-child {
  margin-top: 0;
}
.mcon .admission-table .sub-list-box dd {
  margin-left: 0;
  margin-bottom: 0;
  font-size: 0.95em;
}
.mcon .table-note {
  font-size: 0.9em;
  color: #666;
  text-align: right;
  margin-bottom: 30px;
}
.mcon .btn-area {
  text-align: center;
  margin-top: 30px;
}
.mcon .btn-area .btn-link {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: #DB343C;
  border: 2px solid #DB343C;
  border-radius: 50vh;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.mcon .btn-area .btn-link:hover {
  background: #DB343C;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.mcon .license-list-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.mcon .license-list-wrap .license-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mcon .license-list-wrap .license-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1.2em;
  margin-left: 0;
  font-weight: 700;
  font-size: 1.1em;
  border-bottom: 1px dashed #eee;
  padding-bottom: 1.2em;
}
.mcon .license-list-wrap .license-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.mcon .license-list-wrap .license-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: #DB343C;
  transform: rotate(45deg);
}
.mcon .license-list-wrap .license-list li span {
  display: block;
  margin-top: 5px;
  font-weight: normal;
  font-size: 0.9em;
  color: #666;
  line-height: 1.6;
}
.mcon .license-list-wrap .license-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #DB343C;
  font-weight: 700;
  color: #DB343C;
}
.mcon {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** page faculty (教員紹介ページ用)
  ******************************************************************************
  ----------------------------------------------------------------------------*/
}
.mcon .faculty-group {
  margin-bottom: 60px;
}
.mcon .faculty-group h3 {
  margin-bottom: 30px;
}
.mcon .faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.mcon .faculty-grid .faculty-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-left: 5px solid transparent;
}
.mcon .faculty-grid .faculty-card:hover {
  background: #fafafa;
  border-left-color: #DB343C;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.mcon .faculty-grid .faculty-card .faculty-field {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.4;
  min-height: 2.8em;
}
.mcon .faculty-grid .faculty-card .faculty-name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 5px;
}
.mcon .faculty-grid .faculty-card .faculty-name .role {
  font-size: 12px;
  font-weight: normal;
  color: #888;
}
.mcon .faculty-grid .faculty-card .faculty-badge {
  position: absolute;
  top: 75px;
  right: 25px;
  display: inline-block;
  padding: 4px 8px;
  background: #f0f0f0;
  color: #555;
  font-size: 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
}
.mcon .btn-area {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}
.mcon .btn-area .btn-link {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: #DB343C;
  border: 2px solid #DB343C;
  border-radius: 50vh;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.mcon .btn-area .btn-link.external::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DB343C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.mcon .btn-area .btn-link:hover {
  background: #DB343C;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.mcon .btn-area .btn-link:hover.external::after {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  .mcon .faculty-grid {
    grid-template-columns: 1fr;
  }
  .mcon .faculty-card .faculty-field {
    min-height: auto;
  }
}/*# sourceMappingURL=sp.css.map */