@charset "utf-8";

/* CSS Document */

/* ===============================

    common

================================ */
:root {
  --theme_main: #AA0023;
  --theme_main_sub: #F2D9DE;
  --theme_date: #D66C00;
  --leading-trim: calc((1em - 1lh) / 2);/* 日本語 */
  --leading-trim_en: calc((1cap - 1lh) / 2);/* 英語 */
  --half-leading: calc((1lh - 1em) / 2);/* 日本語 */
  --half-leading_en: calc((1lh - 1cap) / 2);/* 英語 */
  --btn-online-bg: #e0f2fe;/* 背景色。現在は未使用（白指定のため） */
  --btn-online-fg: #0369a1;
  --btn-online-border: #7dd3fc;
  --btn-raijou-bg: #ffedd5;/* 背景色。現在は未使用（白指定のため） */
  --btn-raijou-fg: #c2410c;
  --btn-raijou-border: #fdba74;
}

/* リセット */
button {
  appearance: none;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;

  /* フォント関連の継承設定 */
  font: inherit;
  outline: none;
  padding: 0;
}

/* h1 */
.visually-hidden {
  border-width: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*
    レイアウト
================================ */
.l_main {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 1240px;
}

.l_main__body {
  order: 2;
  width: 1020px;
}

div#cont {
  font-family: "helvetica neue","noto sans jp","yu gothic",YuGothic,"ヒラギノ角ゴ pron w3","hiragino kaku gothic pron",Arial,"メイリオ",Meiryo,sans-serif;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 55px;
  text-align: left;
}

#base {
  counter-reset: qNum aNum;
  width: 1240px;
}

.l_overview{
  --newsList_height: 200px;

  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  margin-top: 25px;

  :is(p,div):not([class]) {
    + :is(p,div) { margin-top: 20px; }
  }
}

.l_section__item{
  margin-top: 64px;
}

.l_main__sideNav{
  order: 0;
  width: 200px;
  z-index: 2;
}

.l_main__sideNavInner{
  pointer-events: all;
}

iframe { width: 100%; }

@media screen and (width <= 768px){
  body {}  

  #base {
    width: 100%;
  }

  div#cont{
    margin: 0 auto;
    width: auto;
  }

  .l_main__sideNav{
    display: none;
  }

  .l_main {
    width: 100%;
  }

  .l_main__body {
    width: 100%;
  }

  .l_overview{
    display: block;
    margin-top: 0;
  }
}

@media screen and (width <= 599px){}


/*
    メインビジュアル
================================ */
.mainvisual--top {
  .mainvisual-wrap { 
    margin: 0 auto;
    padding-bottom: 10px;
    position: relative;
    width: 1020px;
  }
  .slick-slider { width: 1020px; }

  /* スライドの器：リンクありは a、リンクなしは li 自身 */
  .slick-slide a,
  .slick-slide:not(:has(> a)) {
    aspect-ratio: 10 / 3;
    background: #fff;
    display: block;
    height: auto; /* slick の height:100% を打ち消す */
    overflow: hidden;
    position: relative;
  }

  .slick-slide img {
    height: 100%;
    inset: 0;
    object-fit: contain;
    position: absolute;
    width: 100%;
  }
}

.mainvisual--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.subvisual { margin-bottom: 10px;}

.subvisual--flex {
  margin-top: 10px;
  padding-bottom: 10px;
}

.ss-wrapper {
  font-size: 0;
  line-height: 0;
}

@media screen and (width <= 768px){
  .mainvisual {
    aspect-ratio: 10 / 3;
    background-image: url("/resource/img/seminar/_sl_top_muryo-seminar.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: auto;
    margin-bottom :10px;
    padding-top: 0;
    width: auto;
  }

  .mainvisual-wrap {
    display: none;
  }

  .subvisual {
    display: none;
  }
}


/*
    スライダー
================================ */
.bxslider,.subslider {
  height: fit-content;
  opacity: 0;
  transition: .3s;
  visibility: hidden;

/* サブスライダーの高さ調整 */
}

.bxslider > li:not(:first-child),.subslider> li:not(:first-child) {
  display: none;
}

.bxslider.slick-initialized,.subslider.slick-initialized{
  display: block;
  opacity: 1;
  visibility: visible;
}

.slick-slider{
  opacity: 0;
  position: relative;
  transition: opacity .3s linear;
  z-index: 9999;
}
.slick-slider.slick-initialized { opacity: 1; }

.slick-slide img {
  aspect-ratio: 10 / 3;
  object-fit: cover;
}

/*
    スライダー：イレギュラー比率の画像（JSで自動付与）
================================ */
.slick-slide.js_is-irregular,
.slick-slide > .js_is-irregular {
  --blur: 28px;
  --bg-brightness: .95;
  --bg-saturate: 1.2;

  aspect-ratio: 10 / 3;
  background: #fff;
  display: block;
  height: auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;

  > img {
    aspect-ratio: auto;
    height: 100%;
    inset: 0;
    object-fit: contain;
    position: absolute;
    width: 100%;
  }

  > img:not(.slide__bg) {
    filter: drop-shadow(0 0 16px rgb(0 0 0 / 45%));
  }

  > .slide__bg {
    --spread: calc(var(--blur) * 3);

    filter: blur(var(--blur)) brightness(var(--bg-brightness)) saturate(var(--bg-saturate));
    height: calc(100% + var(--spread) * 2);
    inset: calc(var(--spread) * -1);
    object-fit: cover;
    width: calc(100% + var(--spread) * 2);
  }
}

/* 小スライダーは白背景の中に並ぶので暗化を控えめに */
.ss-wrapper .slick-slide.js_is-irregular,
.ss-wrapper .slick-slide > .js_is-irregular {
  --blur: 10px;
  --bg-brightness: .95;
}

/* スライダーのボタン */
.slick-prev,
.slick-next {
  background: #777;
  border: none;
  bottom: 0;
  cursor: pointer;
  display: block;
  height: 80px;
  margin: auto 0;
  position: absolute;
  text-indent: -9999px;
  top: 0;
  width: 24px;
}

.slick-prev::before,
.slick-next::before{
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  content: "";
  display: block;
  height: 12px;
  inset: 0;
  margin: auto;
  position: absolute;
  width: 12px;
}

.slick-prev{
  left: 0;
  transform: translateX(-100%);
}

.slick-next{
  right: 0;
  transform: translateX(100%);
}

.slick-prev::before{
  transform: translateX(4px) rotate(-135deg);
}

.slick-next::before{
  transform: translateX(-4px) rotate(45deg);
}

/* スライダーのページャー */
.slick-dots{
  bottom: -48px;
  display: flex;
  justify-content: center;
  left: calc(50% + 125px);
  position: absolute;
  transform: translate(-50%, 100%);
}
.slick-dots .slick-active:only-child{ display: none;}

.slick-dots button{
  background: #ccc;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: block;
  height: 8px;
  line-height: 0;
  margin:0 8px;
  text-indent: -9999px;
  width: 80px;
}

.slick-dots button:hover,
.slick-dots .slick-active button{
  background: var(--theme_main);
}

.slick-dots {
  bottom: -8px;
  left: calc(50%);
}

.slick-dots button {
  height: 4px;
  width: 60px;
}

:is(.bxslider), :is(.subslider) {
  .slick-prev, .slick-next {
    background-color: transparent;
    background-position-y: center;
    background-repeat: no-repeat;
    bottom: 50%;
    height: 100%;
    opacity: 0.5;
    top: 50%;
    width: 25px;
    z-index: 1;

    &:hover {
        opacity: 1;
        transition: .3s;
    }
  }

  .slick-prev {
    background-image: url("/resource/img/bup/slider_arrow-left.png");
    left: 25px;
  }

  .slick-next {
    background-image: url("/resource/img/bup/slider_arrow-right.png");
    background-position-x: right;
    right: 25px;
  }

  .slick-prev::before, .slick-next::before {
    display: none;
  }

  .slick-prev::before {
    transform: translateX(2px) rotate(-135deg);
  }

  .slick-next::before {
    transform: translateX(-2px) rotate(45deg);
  }
}

:is(.subslider) {
  width: 1030px;

  .slick-prev {
    background-image: url("/resource/img/bup/slider_arrow-sm-left.png");
  }

  .slick-next {
    background-image: url("/resource/img/bup/slider_arrow-sm-right.png");
    right: 35px;
  }
}

body{
  :is(.bxslider) {
    .slick-prev::before, .slick-next::before {
      height: 8px;
      width: 8px;
    }
    .slick-prev::before { transform: translateX(2px) rotate(-135deg); }
    .slick-next::before { transform: translateX(-2px) rotate(45deg); }
  }

  .mainvisual--top:has(.slick-dots .slick-active:only-child) + .nav--container{
    .nav-top2 { padding-top: 12px;} 
  }
}

@media screen and (width <= 768px){
  :is(.subslider) {
    width: 100%;
  }
}


/*
    ニュース
================================ */
.m_news{
  width: calc(50%);

  /* padding-right:15px; */
}

.m_newsHeading{
  color: var(--theme_main);
  padding:5px 0 ;
}

.m_newsList{
  border-bottom:1px solid #eee;
  border-top:1px solid #eee;
  font-size: 12px;
  font-weight: bold;
  height: var(--newsList_height); /* .l_overviewで指定 */
  overflow: auto;
}

.m_newsList__item{
  padding: 5px 0;
}

.m_newsList__item + .m_newsList__item {
  border-top: 1px dotted #DDD;
}

.m_newsList__addition{
  align-items: center;
  display: flex;
}

.m_newsList__date{
  color: #d66c00;
  margin-right: 12px;
}

.m_newsList__ttl{
  font-size: 13px;
  width: 100%;
}

.m_newsList__target{
  color: #333;
}

.m_newsList__btn{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
  margin-right: 8px;
  margin-top: 8px;
}

.m_newsList__btnTarget{
  align-items: center;
  border: 1px solid #383838;
  color: #333;
  display: flex;
  font-size: 12px;
  justify-content: center;
  letter-spacing: 2px;
  line-height: 1;
  padding: 0 24px;
  transition: .2s background;
}

.m_newsList__btnTarget::before {
  content: "";
  height: 1em;
  padding: 4px 0;
}

@media screen and (width <= 768px){
  .m_news{
    padding: 0;
    width: 100%;
  }

  .m_newsList{
    height: 200px;
  }
}

/*
    価格表
================================ */
.m_priceList{
  padding-left: 15px;
  position: relative;
  width: calc(50%);
}

.m_priceListHeading{
  background-color: var(--theme_main);
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
}
.m_priceList__tableWrapper{}

.m_priceList__modalTrigger{
  background-color: #fff;
  border: 3px solid #333;
  border-color: var(--theme_main);
  border-radius: 50%;
  bottom: 15px;
  color: var(--theme_main);
  font-size: 30px;
  padding: 10px;
  position: absolute;
  right: 15px;
}

.m_priceList__modalTrigger:hover{
  background-color:var(--theme_main);
  color: #fff;  
}

.m_priceList__tableWrapper--simple .m_priceList__modalClose{
  display:none;
}

.m_priceList__table{
  border: 1px solid #51350B;
}

.m_priceList__serviceTtl{
  font-weight: bold;
}

.m_priceList__serviceDuration{
  text-align: center;
}

.m_priceList__servicePrice{
  text-align: right;
}

.m_priceList__attention{
  font-size: 12px;
}

.m_priceList__table th,
.m_priceList__table td{
  padding: 10px;
  vertical-align: middle;
}

.m_priceList__table tr{
  border-top: 1px solid #51350B;
}

.m_priceList__table tr:nth-of-type(2n){
  background-color:#E5E1DA;
}
.m_priceList__table td{}

.m_priceList__table th + th{
  border-left: 1px dashed #fff;  
}

.m_priceList__table td + td{
  border-left: 1px dashed #51350B;  
}

.m_priceList__table thead{
  background-color: #51350B;
  text-align: left;
}
.m_priceList__table thead tr{}

.m_priceList__table thead th{
  color: #fff;
}

.m_priceList__table tbody{
  text-align:left;
}

@media screen and (width <= 768px){
  .m_priceList{
    margin-top: 40px;
    padding: 0;
    width: 100%;
  }
}

/* 簡易版表 */
.m_priceList__tableWrapper--simple{
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  font-size: 12px;
  font-weight: bold;
  max-height: 356px;   
  overflow-y: auto; 

  .m_priceList__dsNone--simple{
    display :none;
  }

  .m_priceList__table{
    border:none;
    width: 100%;
  }

  .m_priceList__serviceDesc{
    display: none;
  }

  .m_priceList__servicePrice{
    width: 46%;
  }

  .m_priceList__attention{
    font-size: 10px;
  }

  thead{
    display: none;
  }

  .m_priceList__table td + td{
    border: none;
    text-align:left;
  }

  .m_priceList__table tr{
    border:none;
  }

  th:nth-of-type(2),
  th:nth-of-type(3),
  td:nth-of-type(2),
  td:nth-of-type(3){
    display: none; 
  }
}

/*
    資料ダウンロード
================================ */
.m_dlMaterials {
  --dl_theme: #1d2a57;

  display: flex;
  flex-direction: column;
  width: 50%;

  @media screen and (width <= 599px) {
    width: 100%;
  }
}

.m_dlMaterialsHeading {
  color: var(--theme_main);
  padding:5px 0 ;
}

.m_dlMaterials__container {
  display: flex;
  flex: 1;
  gap: 15px;
}

.m_dlMaterials__image {
  border: 1px solid #ccc;
  flex-shrink: 0;
  height: var(--newsList_height);
  overflow: hidden;
  width: calc(var(--newsList_height) / 1.41);

  > img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    width: 100%;
  }
}

.m_dlMaterials__body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.m_dlMaterials__detail {}

.m_dlMaterials__heading {
  display: flex;
  flex-direction: column-reverse;
}

.m_dlMaterials__date {
  border-left: 10px solid var(--dl_theme);
  font-size: 12px;
  padding-left: 5px;
}

.m_dlMaterials__dl {
  margin-top: auto;
}

.m_dlMaterials__btn {
  background-color: #fff;
  border: 2px solid var(--dl_theme);
  border-radius: 5px;
  color: var(--dl_theme);
  display: grid;
  gap: 5px;
  grid-template-columns: auto auto;
  padding: 10px;
  place-content: center;
  place-items: center;
  transition: .15s background-color, .15s color;

  &:hover {
    background-color: var(--dl_theme);
    color: #fff;
    &::before { background-color: #fff; }
  }

  &::before {
    background-color: var(--dl_theme);
    content: "";
    display: block;
    height: 1.5em;
    line-height: 1;
    mask-image: url("/resource/img/seminar/icon_fresem_download.svg");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    transition: .15s background-color, .15s color;
    width: 1.5em;
  }
}

/*
    ローカルナビ
================================ */
.nav--container{
  display: flex;
}

.nav {
  display: flex;
  flex: auto;
  position: relative;
}

.nav-top2 {
  align-items: center;
  display: flex;
  flex: auto; 
  padding: 10px;

  @media screen and (width <= 768px){
    flex-direction: column;
  }
}

.nav-top2--win{
  background:#ccc;
  background:var(--theme_main_sub);
}

.nav-top2__title{
  color: var(--theme_main);
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  text-align: center;
  width: auto;
  word-break: keep-all;

  @media screen and (width <= 768px){
    margin-bottom: 10px;
  }
}

.nt2 {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin: 0 auto;
  width: 100%;

  @media screen and (width <= 768px){
    gap: 6px 0;
    justify-content: space-between;
  }
}

.nt2__list {
  display: flex;

  /* width: calc(25% - 10px); */

  /* width: calc(33.333% - 10px); */
  width: calc(50% - 10px);

  @media screen and (width <= 768px){
    width:calc(50% - 3px);
  }
}

.nt2__link {
  align-items: center;
  background: #fff;
  border: 2px solid #164a84;
  border-color:var(--theme_main);
  border-radius: 4px;
  color: #333;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 50px;
  justify-content: center;
  line-height: 1.3;
  padding: 4px ;
  position: relative;
  text-align: left;
  width: 100%;
}

.nt2__link:hover {
  background: var(--theme_main);
  color: #fff;
}

.nt2__link.is_active {
  background:var(--theme_main);
  color: #fff; 
  transition: background 0.3s;
}

.subnav{
  align-items: flex-start;
  display: flex;
  transition: background-color .2s;

  @media screen and (width <=768px) {}
}

.subnav_btnList{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
}

.subnav_btnItem{
  width:120px;

  @media screen and (width <= 768px){
    width: calc(25% - (12px / 4));
  }

  @media screen and (width <= 599px){
    width: calc(50% - (6px / 2));
  }
}

.subnav_btnItem_target{
  align-items: center;
  background-color: #fff;
  border: 1px solid #BBB;
  border-radius: 4px;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height:50px;
  justify-content: center;
  line-height: 1.3;
  text-align: center;
  width: 100%;

  @media screen and (width <= 768px){
    font-size: 12px;
    height :40px;
  }

  @media screen and (width <= 768px){
    &.subnav_btnItem_target--ask,
    &.subnav_btnItem_target--shodan{
      font-size: 14px;
    }
  }
}

.subnav_btnItem:has(.subnav_btnItem_target--ask){
  @media screen and (width <= 768px){ order:5;}
}

.subnav_btnItem:has(.subnav_btnItem_target--shodan){
  @media screen and (width <= 768px){ order:6;}
}

.subnav_btnItem:has(.subnav_btnItem_target--ask),
.subnav_btnItem:has(.subnav_btnItem_target--shodan){
  @media screen and (width <= 768px){ width: calc(50% - (10px / 2));}
}

.subnav_btnItem_target--ask{
  border-color: inherit;
  color: #ec4062;
}

.subnav_btnItem_target--shodan{
  border-color: inherit;
  color: #2a6cae;
}

.subnav_btnItem_target:hover{
  opacity: .6;
  transition: .3s;
}

.subnav_btnItem_target_img{
  height: auto;
  margin-right: 4px;
  width: 24px;
}

@media screen and (width <= 768px){
  .nav--container{ flex-direction: column;} 
}

/*
    見出し
================================ */
.m_heading{}
.m_heading__ttl{}

.m_heading--primary{
  margin-bottom: 10px;
  position: relative;
}

.m_heading--primary .m_heading__ttl{
  color: var(--theme_main);
  font-size: 20px;
  font-weight: bold;
  width: fit-content;
}

/*
    コンテンツ
================================ */
.m_contents{}

.m_contents__lead{
  text-align: left;
}

.m_contents__lead + .m_contents__body{
  margin-top: 40px;
}

/*
    注目のセミナー
================================ */
.articleGrid {
  --articleGrid_gap: 30px;

  display: flex;
  flex-wrap: wrap;
  gap: 15px var(--articleGrid_gap);

  @media screen and (width <= 599px) {
    flex-direction: column;
  }
  & + & { margin-top: 20px; }
}

.articleGrid__item {
  flex: 0 0 calc((100% - var(--articleGrid_gap) * 2) / 3);

  &.__sub:has(.__mini) {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.articleBox {
  &:has(.__mini):not(.__sub > :first-child) {
    border-top: 1px solid #E4E4E4;
    padding-top: 15px;
  }
}

.articleBox__link {
  color: currentcolor;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: .3s opacity;

  &:hover {
    opacity: 0.7;
  }
}

.articleBox__body {
  &.__mini {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr auto;

    .articleBox__title { font-size: 14px; }

    .articleBox__image {
      > img { max-width: 120px; }
    }
  }
}

.articleBox__title {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 20px;
  -webkit-line-clamp: 2; /* 表示する行数 */
  line-clamp: 2;
  max-height: 2lh;
  overflow: hidden;
  :not(.__mini) & { margin-bottom: 5px; }
}

.articleBox__image {
  > img {
    aspect-ratio: 10 / 3;
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
  }
}

.articleBox__info {
  display: flex;
  font-size: 11px;
  gap: 5px;
  .articleBox__type { color: #6b7280; }

  .articleBox__date {
    color: var(--theme_date);
  }
}


/*
    商材のラッパー
================================ */
.m_serviceWrap{}
.m_serviceWrap__nav{}

.m_serviceWrap__nav + .m_serviceWrap__body{
  margin-top: 25px;
}
.m_serviceWrap__body{}


/*
    商材マップ
================================ */
.m_serviceGraph{}

.m_serviceGraph__explain{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.m_serviceGraph__clickIco{
  color: var(--theme_main);
  margin-right: 10px;
}

.m_serviceGraph__wrap {
  text-align: center;

  /* margin-right: 20px; */
  @media screen and (width <= 768px){ 
    & + & { margin-top: 10px; }
  }
}

.m_serviceGraph__cat {
  align-items: center;
  display: flex;
  font-weight: bold;
  text-align-last: left;

  &::before {
    background-color: var(--theme_main);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
    content: "";
    display: iblock;
    height: 1em;

    /* margin-top: var(--half-leading); */
    margin-right: 0.5em;
    width: 1em;
  }
}
.m_serviceGraph__catDesc { text-align-last: left; }

.m_serviceGraph__headingList {
  align-items: stretch;
  color: #fff;
  display: flex;
  font-size: 16px;
  margin-bottom:5px;
}

.m_serviceGraph__headingItem {
  align-items: center;
  color: #fff;
  display: flex;
  font-weight: 500;
  height: 40px;
  justify-content: center;
  letter-spacing: 3px;
  list-style: none;
  position: relative;
  width: 33.333%;
}

.m_serviceGraph__headingItem::before, .m_serviceGraph__headingItem::after{
  background: inherit;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  right: 5px;
  width: 10px;
  z-index: 1;
}

.m_serviceGraph__headingItem::before{
  background: inherit;
  top: 0;
  transform: skew(30deg) translateX(100%);
}

.m_serviceGraph__headingItem::after{
  background: inherit;
  bottom: 0;
  transform: skew(-30deg) translateX(100%);
}

.m_serviceGraph__headingItem:nth-of-type(1){
  background: #E53C3C;
}

.m_serviceGraph__headingItem:nth-of-type(2){
  background: #FC6D6D;
}

.m_serviceGraph__headingItem:nth-of-type(3){
  background: #FFA2A2;
}

.m_serviceGraph__lineList{
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
}

.m_serviceGraph__lineItem{
  display: flex;
  padding: 5px;
  width: fit-content;
}
.m_serviceGraph__lineItem--noItem {}

.m_serviceGraph__lineItem--2cel {
  width: 66.666%;
}

.m_serviceGraph__lineItem--3cel {
  width: 100%;
}

.m_serviceGraph__lineTarget {
  align-items: center;
  border: 1px solid #BEBEBE;
  border-color:var(--theme_main);
  border-radius: 30px;
  color: var(--theme_main);
  display: flex;
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  height: 40px;
  justify-content: left;
  padding-inline: 40px 20px;
  position: relative;
  text-decoration: none;
  width: 100%;
}

.m_serviceGraph__lineTarget::after {
  border: 2px solid #BEBEBE;
  border-color: var(--theme_main);
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  left: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  width: 20px;
}

.m_serviceGraph__lineTarget:hover {
  background:var(--theme_main);;
  border-color: var(--theme_main);
  color: #fff;;
}

.m_serviceGraph__lineTarget:hover::after {
  border-color: #fff;
}

.m_serviceGraph__lineTarget::before {
  background: #fff;
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: block;
  height: 14px;
  left: 13px;
  margin: auto;
  position: absolute;
  top: 0;
  width: 14px;
}

@media screen and (width <= 768px) {
  .m_serviceGraph__headingItem {
    font-size: 14px;
    letter-spacing: 0;
  }

  .m_serviceGraph__lineTarget {
    font-size: 14px;
    height: 40px;
    padding: 0;

    /* justify-content: center; */
  }

  .m_serviceGraph__lineTarget::after, .m_serviceGraph__lineTarget::before{
    content: none;
  }

  .m_serviceGraph__lineItem{
    width: 33.333%;
  }
}

@media screen and (width <= 599px) {
  .m_serviceGraph__headingItem {
    font-size: 12px;
    height: 32px;
  }

  .m_serviceGraph__headingItem::before, .m_serviceGraph__headingItem::after{
    content: none;
  }

  .m_serviceGraph__wrap {
    margin-right: 0;
  }

  .m_serviceGraph__lineItem{
    padding: 2px;
    width: 50%;
  }

  .m_serviceGraph__lineTarget {
    letter-spacing: -1px;
  }

  .m_serviceGraph__lineTarget::after, .m_serviceGraph__lineTarget::before{
    content: none;
  }
}

/* サービス一覧デザイン上書き */
.m_serviceGraph__lineTarget::before,
.m_serviceGraph__lineTarget::after { content: none; }

.m_serviceGraph__lineTarget {
  color: var(--theme_main);
  gap: 5px;
  padding-inline: 10px 15px;

  .radio-svg {
    height: 1.6em;
    width: 1.6em;
  }
  .inner-dot { fill: #fff; }

  &:hover .inner-dot {
    opacity: 1;
  }
}


/*
    商材ラインナップ
================================ */
.m_lineUp{
  overflow: hidden;
  padding:0 20px 20px 0;
}

.m_lineUp__heading{
  align-items: center;
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.m_lineUp__ttl{
  font-size: 16px;
  font-weight: bold;
  padding-left: 1.5em;
  position: relative;
}

.m_lineUp__ttl::before{
  background: var(--theme_main);
  border-radius: 50%;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: var(--half-leading);
  width: 1em;
}
.m_lineUp__ttl .is_hidden { display: none; }
.m_lineUp__resetBtn{}

.m_lineUp__resetBtnTarget{
  color: #E53C3C;
  display: block;
  padding-left: 1.5em;
  position: relative;
  width: fit-content;
}

.m_lineUp__resetBtnTarget::before{
  background: url("/resource/img/recruitment-support/ico_resetbtn.png") no-repeat center center / contain;
  content: "";
  display: block;
  height: 15px;
  left: 0;
  position: absolute;
  top: var(--half-leading);
  width: 15px;
}

.m_lineUp__list {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  margin: -1px 0 0 -1px;
}

.m_lineUp__card {
  border-left: 1px solid #bbb;
  border-top: 1px solid #bbb;
  box-sizing: border-box;

  /* text-align: center; */
  padding: 10px;
  position: relative;
  width: 33.333%;
}

.m_lineUp__card::before{
  background: #fff;
  content : "";
  display: block;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  width: 40px;
  z-index: 1;
}

.m_lineUp__card:hover {
  border: none;
  box-shadow: 10px 10px 10px -5px rgb(0 0 0 / 50%);
  position: relative;
  transition: 0.3s;
  z-index: 2;
}

.m_lineUp__cardWrap {
  color: #000;
  display: inline-block;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.m_lineUp__cardInner {
  height: 100%;
  margin: auto;
  padding-top: 30px;
  width: 90%;
}

.m_lineUp__cardImg {
  /* aspect-ratio: 10 / 3;
  width: 100%; */
}

.m_lineUp__cardImg > img {
  aspect-ratio: 10 / 3;
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
  &[src$=".svg"] { width: 100px; }
}

.m_lineUp__cardTtl {
  -webkit-box-orient : vertical;
  display: -webkit-box;
  font-size: 18px;

  /* height: 45.5px;
  display: flex;
  align-items: center; */
  font-weight: 500;
  height: 2lh;
  -webkit-line-clamp: 2;
  margin: 10px 0;
  overflow: hidden;
  text-align: left;
}

.m_lineUp__cardCopy {
  font-size: 14px;
  font-weight:400;
  padding-bottom: 20px;
  text-align: left;
}

.m_lineUp__cardTag {
  /* position: absolute; */
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 500;
  padding-bottom: 10px;
}

.m_lineUp__cardTagItem {
  padding-right: 5px;
}

.m_lineUp__cardTagItem::before {
  content: "#";
}

@media screen and (width <= 768px) {
  .m_lineUp{
    padding: 0;
  }

  .m_lineUp__card{
    width: 50%;
  }
}

@media screen and (width <= 599px) {
  .m_lineUp__heading{
    display: block;
  }

  .m_lineUp__card{
    border-left: none;
    border-top: 1px solid #e6e6e6;
    margin: auto;
    max-width: 375px;
    width: 100%;
  }

  .m_lineUp__card::before{
    content:none;
  }

  .m_lineUp__cardInner {
    padding-top: 0;
  }
}


/*
    ご相談はこちら
================================ */
.m_inquirySec{
  border: 20px solid #E6E6E6;
  padding: 20px;
}

.m_inquirySec__txt{
  font-weight: bold;
  text-align: center;
}

.m_inquirySec__btnWrap{
  display:flex;
  gap: 20px;
  margin-top: 20px;
}

.m_inquirySec__btn {
  align-items: center;
  border: 1px solid #333;
  border-color: var(--theme_main);
  border-radius: 30px;
  color: var(--theme_main);
  display: flex;
  font-weight: bold;
  height: 62px;
  justify-content: center;
  position: relative;
  width: 100%;
}

.m_inquirySec__btn:hover{
  background-color: var(--theme_main);
  color: #fff;  
}

.m_inquirySec__btn.m_inquirySec__btn--shodan{
  background-color: var(--theme_main);
  color: #fff;
}

.m_inquirySec__btn.m_inquirySec__btn--shodan:hover{
  background-color: #fff;
  color: var(--theme_main);
}
.m_inquirySec__btn.m_inquirySec__btn--inquiry{}

@media screen and (width <= 599px) {
  .m_inquirySec__btnWrap{
    flex-wrap: wrap;
    justify-content: center;
  }

  .m_inquirySec__btn {
    max-width: 300px;
    min-width: 250px;
  }
}


/*
    無料セミナー
================================ */
.swiper-container {
  margin: auto;
  margin-top: 20px;
  max-width: 960px;
  position: relative;
  width: 100%;
}

.m_freeSeminar__list.swiper-wrapper {
  align-items: stretch;
}

/* .swiper-slide {
  width: 50% !important;
  padding: 15px !important;
  margin: 0 !important;
} */
.datatable {
  transform: scale(1) !important;
}

.swiper-pagination {
  align-items: stretch;
  bottom: -25px !important;
  display: flex!important;
  justify-content: center;
  margin: 0 -5px;
  max-width: 1090px;
  position: absolute;
  width: 100%;
}

.swiper-pagination-bullet {
  border-radius: 0;
  height: 4px;
  overflow: hidden;
  text-indent: -9999px;
  width: 60px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #aa0023;
}

.swiper-button-prev,
.swiper-button-next {
  bottom: 0;
  height: 60px;
  margin: auto 0;
  position: absolute;
  top: 0;
  width: 30px;
}

.swiper-button-prev {
  left: -45px;
}

.swiper-button-next {
  right: -45px;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  content: '';
  display: block;
  height: 0;
  inset: 0;
  margin: auto;
  position: absolute;
  width: 0;
  z-index: 10;
}

.swiper-button-prev::before {
  border-bottom: 20px solid #fff;
  border-color: transparent #fff transparent transparent;
  border-right: 8px solid #fff;
  border-top: 20px solid #fff;
}

.swiper-button-next::before {
  border-bottom: 20px solid #fff;
  border-color: transparent transparent transparent #fff;
  border-left: 8px solid #fff;
  border-top: 20px solid #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background: #AA0023;
  content: '';
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}

@media screen and (width <= 768px){
  .js_slickfreeSeminarList .slick-dots{
    justify-content: center;
    position: static;
  }

  .js_slickfreeSeminarList .slick-dots button{
    width: 32px;
  }

  .swiper-button-prev,.swiper-button-next {
  display: none;
  
  }

  .swiper-pagination-bullet {
    width: 32px;
  }
}

/* 無料セミナーカード */
.m_freeSeminarCard{
  max-width: 560px;
  padding-bottom: 120px;
  position: relative;
}

.m_freeSeminarCard__link{
  color: inherit;
  display: block;
  text-decoration: none;
  transition: .3s opacity;
}

.m_freeSeminarCard__link:hover{
  opacity: .7;
}

.m_freeSeminarCard__heading{
  margin-bottom: 12px;
}

.m_freeSeminarCard__ttl{
  font-size: 18px;
  font-weight: bold;
  height: calc(1em * 1.6 * 2);
  overflow: hidden;
  position: relative;
}

.m_freeSeminarCard__ttl::after{
  background: linear-gradient(to left,#fff,rgb(255 255 255 / 96%) 25%,rgb(255 255 255 / 0%) 100%);
  bottom: 0;
  content: '';
  display: block;
  height: calc(1em * 1.6);
  position: absolute;
  right: 0;
  width: 3em
}
.m_freeSeminarCard__body{}

.m_freeSeminarCard__img{
  line-height: 0;
  text-align: center;
}

.m_freeSeminarCard__img img{
  height: auto;
  max-width: 100%;
}

.m_freeSeminarCard__iframe{
  left: 50%;
  line-height: 0;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: 130%;
}

.m_freeSeminarCard__iframe iframe{
  transform: scale(.75);
  transform-origin: center top;
  width: 100%;
}

.m_freeSeminarCard__link + .m_freeSeminarCard__iframe{
  margin-top: 12px;
}

@media screen and (width <= 768px){
  .m_freeSeminarCard{
    max-width: none;
  }
}

@media screen and (width <= 599px){
  .m_freeSeminarCard{
    padding-bottom: 0;
  }

  .m_freeSeminarCard__iframe{
    position: static;
    transform: none;
    width: 100%;
  }

  .m_freeSeminarCard__iframe iframe{
    transform: none;
  }
}

/* 無料セミナー */
.m_freeSeminar{
  background: #fff;
  left: -60px;
  padding: 64px 0 64px 60px;
  position: relative;
  width: calc((100vw - 1090px) / 2 + 1090px);  
}
.m_freeSeminar__body{}

.m_freeSeminar__msg{
  width: 970px;
}

.m_freeSeminar__msg + .m_freeSeminar__list{
  margin-top: 20px;
}

.m_freeSeminar__footer{
  margin-top: 34px;
  width: 970px;
}

.m_freeSeminar__link{
  display: flex;
  justify-content: flex-end;
}

@media screen and (width <= 768px){
  .m_freeSeminar{
    left: 0;
    padding: 64px 0 0;
    width: 100%;
  }

  .m_freeSeminar__msg{
    width: 100%;
  }

  .m_freeSeminar__footer{
    width: 100%;
  }
}


/*
    リンク
================================ */
.m_link{
  color: inherit;
  text-decoration: none;
  transition: .6s transform, .3s opacity;
}

.m_link:hover{
  opacity: .7;
  transform: translateX(16px);
}

.m_link--main{
  color: #AA0023;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  padding-right: 28px;
  position: relative;
}

.m_link--main::before{
  border-bottom: 1px solid #AA0023;
  border-right: 1px solid #AA0023;
  bottom: 0;
  content: "";
  display: block;
  height: 4px;
  margin: auto 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: skewX(45deg);
  width: 20px;
}

/*
    Q＆A
================================ */

/* -----------
QAリスト
----------- */
.m_qaList{}
.m_qaList__item{}

.m_qaList__item + .m_qaList__item{
  border-top: 1px solid #bbb;
  margin-top: 20px;
  padding-top: 20px;
}

/* QA */
.m_qa {}

.m_qa__q, .m_qa__a {
  align-items: center;
  display: flex;
  list-style: none;
  position: relative;
}

.m_qa__q{
  margin-bottom: 20px;
}

.m_qa__q::before, .m_qa__a::before {
  align-items: center;
  display: flex;
  left: 0;
  margin-top: -19px;
  position: absolute;
  top: 50%;
}

.m_qa__text {
  padding-left: 40px;
}

.m_qa__link:hover {
  opacity: 0.6;
  transition: .4s;
}

/* サイドナビ */
.side_Logo{
  padding: 10px 0;
  text-align: center;
}

.side_Logo img{
  vertical-align: bottom;
}

/*
    モーダル
================================ */

/*********
js
**********/

/* 背景 */
.js_priceList__modalBg {
  background: rgb(0 0 0 / 50%);
  inset: 0;
  opacity: 0;
  position: fixed;
  transition: all 0.3s ease;
  visibility: hidden;
  z-index: 999998;
}

.js_priceList__modalBg.is_active {
  opacity: 1;
  visibility: visible;
}

/* モーダル中身 */
.js_priceList__modal{
  background: #fff;
  font-family: "helvetica neue", "noto sans jp", "yu gothic", YuGothic, "ヒラギノ角ゴ pron w3", "hiragino kaku gothic pron", Arial, "メイリオ", Meiryo, sans-serif;
  left: 50%;
  line-height: 1.5;
  max-height: 90vh;
  max-width: 1167px;
  opacity: 0;
  overflow: visible;
  padding:30px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  transition: all 0.3s ease;
  visibility: hidden;
  width: 90%;
  z-index: 999999;
}

.js_priceList__modal.is_active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}

.is_active{
  .m_priceList__modalClose {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 50px;
    position: absolute;
    right: -30px;
    top: -45px;
    transition: opacity 0.3s;
  }

  .m_priceList__modalClose:hover {
    opacity: 0.6;
  }

  .m_priceList__table{
    width: 1090px;
  }

  .m_priceList__serviceDesc{
    display:block;
    margin-top:5px;
  }
  th:nth-of-type(1){ width: 50%;}
  th:nth-of-type(2){ width: 25%;}
  th:nth-of-type(3){ width: 10%;}
  th:nth-of-type(4){ width: 15%;}
}

/* モーダル内スクロール用ラッパー */
.m_priceList__modalContent {
  max-height: 80vh;
  overflow: auto;
  padding-bottom: 5px;
}

@media screen and (width <= 768px){
  .m_priceList__modalContent {
    padding: 0 10px 10px 0;
  }
}


/*
    ローカルナビ
================================ */
.nav--container.is_fixed {
  position: fixed;
  top: 0;
  width: 1020px;
  z-index: 9999;
}

.is_fixed > .subnav{
  background-color: var(--theme_main_sub);
}


/*
    サービスの表示
================================ */
.m_serviceGraph__lineTarget.is_active {
  background:var(--theme_main);
  border-color: var(--theme_main);
  color: #fff;
}

.m_serviceGraph__lineTarget.is_active::after {
  border-color: #fff;
}

.m_lineUp__card{
  opacity: 0;
  transform: scale(.7);
  transition: .3s all;
}

.m_lineUp__card.is_active{
  opacity: 1;
  transform: scale(1);
}


/*
    コラム
================================ */

/* リスト全体のスタイル（必要に応じて横並びにするなど調整してください） */
.m_columnList {
  display: flex;
  flex-direction: column; /* 縦並びのベース */
  gap: 20px; /* コラム間の余白 */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* もしPC表示で横並び */
@media screen and (width >= 769px) {
  .m_columnList {
    flex-flow: row wrap;
  }

  .m_columnList__item {
    width: calc(33% - 10px);
  }
}

.m_columnList__link {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.m_columnList__link:hover {
  opacity: 0.7; /* ホバー時に少し薄くしてクリックできる感を出します */
}

/* タイトルのスタイル（画像に合わせました） */
.m_columnList__ttl {
  color: #1a1a1a; /* サイトの基本テキストカラーに合わせて調整してください */
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 8px;

  @media screen and ( width >= 768px) {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* ここで表示したい上限の行数を指定します */
  overflow: hidden;
  }
}

/* 更新日のスタイル（画像のオレンジ色に合わせました） */
.m_columnList__date {
  color: #d87d19; /* 画像のオレンジっぽい色味 */
  display: block;
  font-size: 13px;
  font-weight: 500;
}

.scheBtn {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.m_placeNavList {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.m_placeNavList__item {
  flex: 1;
}

.m_placeNavList__inner {
  appearance: none;
  background-color: #eee;
  border: 2px solid transparent;
  color: #333;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: bold;
  outline: none;
  padding: 12px 0;
  text-align: center;
  transition: all 0.2s ease;
  width: 100%;
}

.m_placeNavList__inner:hover,
.m_placeNavList__inner.is_active {
  background-color: #0060a8;
  color: #fff;
}

/* カレンダー */
.scheduleTbl {
  border: 2px solid #164A84;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: 500;
  table-layout: fixed;
  width: 100%;
}

#scheduleBox .tblWrap-sp {
  max-height: 0;
  opacity: 0;
  overflow-y: hidden;
  transition: .3s opacity;
}

.scheduleSelect {
  display: none;
}

.js_schedule:has(#onlineBtn:checked) .js_schedule__body #table_online,.js_schedule:has(#tokyoBtn:checked) .js_schedule__body #table_tokyo,.js_schedule:has(#osakaBtn:checked) .js_schedule__body #table_osaka,.js_schedule:has(#nagoyaBtn:checked) .js_schedule__body #table_nagoya,.js_schedule:has(#fukuokaBtn:checked) .js_schedule__body #table_fukuoka,.js_schedule:has(#sapporoBtn:checked) .js_schedule__body #table_sapporo,.js_schedule:has(#sendaiBtn:checked) .js_schedule__body #table_sendai,.js_schedule:has(#kawasakiBtn:checked) .js_schedule__body #table_kawasaki,.js_schedule:has(#hiroshimaBtn:checked) .js_schedule__body #table_hiroshima {
  max-height: 100%;
  opacity: 1;
}

.scheduleTbl > caption {
  display: none;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}

.scheduleTbl th {
  background-color: #999;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  font-weight: bold;
  text-align: center;
}

.scheduleTbl th:first-of-type {
  width: 8%;
}

.scheduleTbl td {
  border-color: #164a84;
  border-style: dotted;
  border-width: 0 1px;
  padding: 3px;

  /* text-align: center; */
  vertical-align: middle;
}

.days {
  border-top: 2px solid #164A84;
}

.days > td {
  color: #164A84;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
}

.area {
  font-weight: bold;
  text-align: center;
}

.scheBtn {
  --btn-bg: #fff;
  --btn-fg: #333;
  --btn-border: #333;
  --btn-icon: var(--btn-fg);   /* 既定は文字色に追従 */

  background: var(--btn-bg);
  border: 1px solid var(--btn-border);
  border-radius: 3px;
  box-shadow: 0 3px 0 #666;
  color: var(--btn-fg);
  display: inline-block;
  font-family: inherit;
  font-size: 12px;
  font-weight: bold;
  height: auto;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 2px;
  padding: 4px 3px;
  text-decoration: none;
  width: 99%;
}

.scheBtn:hover {
  box-shadow: none;
  color: #333;
  text-decoration: none;
  transform: translateY(3px);
}

.scheBtn > span {
  /* display: block;
  font-size: 10px; */
}

.scheBtn.biz-calendarOnline {
  /* 背景は白指定のため既定値のまま。色を戻す場合は下行を有効化 */
  /* --btn-bg: var(--btn-online-bg); */
  --btn-border: var(--btn-online-border);
  --btn-icon: var(--btn-online-fg);
}

.scheBtn.biz-calendarOnline:hover {
  /* background-color: #bae6fd; */
}

.scheBtn.biz-calendarRaijou {
  /* 背景は白指定のため既定値のまま。色を戻す場合は下行を有効化 */
  /* --btn-bg: var(--btn-raijou-bg); */
  --btn-border: var(--btn-raijou-border);
  --btn-icon: var(--btn-raijou-fg);
}

.scheBtn.biz-calendarRaijou:hover {
  /* background-color: #fed7aa; */
}

.scheBtn.is-disabled {
  background-color: #f1f5f9 !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: none !important;
  color: #94a3b8 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}

.m_scheduleWrap__schedule {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  padding-bottom: 10px;
  width: 100%;
}

.scheduleTbl {
  min-width: 800px;
  width: 100%;
}

.m_scrollHint {
  display: none;
}

.m_flexBox {
  display: flex;
  &.m_flexBox--sb { justify-content: space-between; }

  @media screen and (width <= 599px) { display: block; }
}

.m_scheBtn--sample {
  display: flex;
  gap: 5px;
  margin-block-end: 5px;
  margin-inline-start: auto;
  width: 300px;
  > li { pointer-events: none; }

  @media screen and (width <= 599px) { width: 100%; }
}

/* --------------------------------------------------
   カレンダーのアイコン表示（疑似要素）
-------------------------------------------------- */

/* アイコンの共通設定 */
.icon-online,
.icon-raijou {
  align-items: flex-start;
  display: flex;
  &:not([href])::before { align-self: center; }
  &:not([href]) .btn-text { align-self: center; }
}

.icon-online::before,
.icon-raijou::before {
  color: var(--btn-icon);
  direction: ltr;
  display: inline-block;
  font-family: 'Material Symbols Outlined';
  font-size: 1.5em; /* テキストとのバランスを見て調整してください */
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  /* transform: translateY(-1px); 縦位置の微調整 */
  letter-spacing: normal;
  line-height: 1;
  margin-right: 4px; /* アイコンと文字の間の隙間 */
  overflow-wrap: normal;
  text-transform: none;
  vertical-align: middle;
  white-space: nowrap;
}

/* オンラインのアイコン設定 */
.icon-online::before {
  content: "cast";
}

/* 来場開催のアイコン設定 */
.icon-raijou::before {
  content: "meeting_room";
}

.btn-text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  flex: 1;
  -webkit-line-clamp: 2; /* ここを「3」にすれば3行になります！ */
  line-height: 1.4;
  min-width: 0;
  overflow: hidden;
  white-space: normal;
}

@media screen and (width <= 768px) {
  .m_scrollHint {
    animation: bounceX 2s infinite;
    color: #64748b;
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 4px;
    text-align: right;
  }

}

@keyframes bounceX {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }

}

/* --------------------------------------------------
   アコーディオン（もっと見る）関連
-------------------------------------------------- */

/* 3ヶ月目以降の行を隠す用のクラス */
.is-hidden-month {
  display: none;
}

/* ボタンを中央に配置する枠 */
.m_scheduleAccordion {
  margin-top: 15px;
  padding-bottom: 20px;
  text-align: center;
}

/* もっと見るボタンのデザイン */
.m_scheduleAccordion__btn {
  appearance: none;
  background-color: #fff;
  border: 2px solid #005088;
  border-radius: 30px; /* 角丸にする */
  box-sizing: border-box; /* paddingを含めて幅を計算させる安全策 */
  color: #005088;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  max-width: 320px;   /* ただし、最大幅は320pxで止める（パソコン対策） */
  outline: none;
  padding: 10px 40px;
  transition: all 0.2s ease;
  width: 100%;        /* 基本は親要素に対して100%の幅にする（スマホ対策） */
}

.m_scheduleAccordion__btn:hover {
  background-color: #005088;
  color: #fff;
}

/* --------------------------------------------------
   もっと見るボタン内のアイコン位置調整
-------------------------------------------------- */
.m_scheduleAccordion__btn .material-symbols-outlined {
  font-size: 1.3em;        /* テキストとのバランスを見て、少しだけサイズを調整（お好みで） */
  line-height: 1;          /* アイコン特有の上下の余白（ハーフレディング）を打ち消す */
  transform: translateY(3px); /* まだ上に浮いて見える場合、物理的に少し下へずらす魔法 */
}

/* ============================================================
   検索ボックスと検索結果のスタイル
   ============================================================ */
.search-wrapper {
  --main-color: #036;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* max-width: 500px; */
  margin-block: 25px;
  position: relative;
  width: 100%;
}

.m_searchField__heading {
  background-color: var(--main-color);
  flex: 0 0 220px;
  margin-inline-end: 15px;
  position: relative;
}

.m_searchField__heading::before {
  background: var(--main-color);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 15px;
}

.m_searchField__heading::after {
  background-color: #fff;
  clip-path: polygon(73.2% -1px, 71.1% -1px, 77.9% 50%, 71.5% 100%, 73.6% 100%, 80% 50%);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: -53px;
  top: 0;
  width: calc(100% + 15px);
}

.m_searchField__title {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 15px;
  font-weight: bold;

  /* line-height: 30px; */
  height: 100%;
  padding: 0 10px;
  position: relative;
}


#searchInput {
  background-color: #fff; 
  border: 1px solid #ccc;
  box-sizing: border-box;
  color: #333;
  flex: 1; /* 残りの幅をすべて使う */
  font-size: 1rem;
  padding: 10px 35px 10px 15px;
  transition: border-color 0.3s;
}

#searchInput:focus {
  border-color: #ba0016;
  outline: none;    
}

/* ▼ 検索ボタンのスタイル */
#searchSubmitBtn {
  background-color: #036; /* インソース様の青色 */
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: 0 25px;
  transition: background-color 0.3s;
  white-space: nowrap;
}

#searchSubmitBtn:hover {
  background-color: #ba0016; /* ホバーで赤色 */
}

/* クリアボタンの位置調整（入力欄の右端に配置） */
#searchClearBtn {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  display: none;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 100px; /* 検索ボタンの幅＋少しの余白分、左にずらす */
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.2s;
}

#searchClearBtn:hover {
  color: #ba0016;
}

#searchResults {
  display: flex;
  flex-direction: column;
  gap: 25px;
  opacity: 0; 
  transition: opacity 0.3s ease-in-out;
}

/* ▼ 検索件数のスタイル */
.search-count {
  border-bottom: 2px solid #036;
  color: #333;
  font-size: 1.1rem;
  margin: 0 0 10px;
  padding-bottom: 10px;
}

.search-count strong {
  color: #ba0016;
  font-size: 1.4rem;
}

#searchResults .result-item {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 20px; 
}

#searchResults .result-item:last-child {
  border-bottom: none;
}

#searchResults .result-item h3 {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 8px;
}

#searchResults .result-item h3 a {
  color: #036;           
  text-decoration: none;
  transition: color 0.3s;
}

#searchResults .result-item h3 a:hover {
  color: #ba0016;           
  text-decoration: underline;
}

#searchResults .result-item p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

#searchResults > p.no-results {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  color: #333;
  font-size: 1rem;
  margin: 0;
  padding: 30px;
  text-align: center;
}

/* ===============================

    utility

================================ */

/* 横幅 */
.u_col1{width:8.333%;}
.u_col2{width:16.667%;}
.u_col3{width:25%;}
.u_col4{width:33.333%;}
.u_col5{width:41.666%;}
.u_col6{width:50%;}
.u_col7{width:58.333%;}
.u_col8{width:66.666%;}
.u_col9{width:75%;}
.u_col10{width:83.33%;}
.u_col11{width:91.666%;}
.u_col12{width:100%;}

/* 間隙 */
.u_mb4{margin-bottom: 4px;}
.u_mb8{margin-bottom: 8px;}
.u_mb16{margin-bottom: 16px;}
.u_mb24{margin-bottom: 24px;}
.u_mb40{margin-bottom: 40px;}
.u_mb64{margin-bottom: 64px;}
.u_mr8{margin-right: 8px;}
.u_mt4{margin-top: 4px;}
.u_mt8{margin-top: 8px;}
.u_mt16{margin-top: 16px;}

/* フォントサイズ */
.u_fs11{font-size: 11px;}
.u_fs10{font-size: 10px;}

/* パディング */
.u_pl4{padding-left: 4px;}
.u_pl8{padding-left: 8px;}
.u_pl16{padding-left: 16px;}

/* フォントサイズ */
.u_fs11{font-size: 11px;}
.u_fs10{font-size: 10px;}

/* フォントの太さ */
.u_fwB{font-weight: bold;}

/* ポジション */
.u_rel{position: relative;}

/* 文字間 */
.u_ls0{letter-spacing: 0;}

/* 文字位置 */
.u_ar{text-align: right;}

/* 表示 */
.u_hide{display: none;}
.cu_hide {display: none;}
.cu_hideImp {display: none !important;}

@media screen and (width <= 768px) {
  .u_resMdCol1{width:8.333%;}
  .u_resMdCol2{width:16.667%;}
  .u_resMdCol3{width:25%;}
  .u_resMdCol4{width:33.333%;}
  .u_resMdCol5{width:41.666%;}
  .u_resMdCol6{width:50%;}
  .u_resMdCol7{width:58.333%;}
  .u_resMdCol8{width:66.666%;}
  .u_resMdCol9{width:75%;}
  .u_resMdCol10{width:83.33%;}
  .u_resMdCol11{width:91.666%;}
  .u_resMdCol12{width:100%;}
  .u_resMdMb8{  margin-bottom: 8px; }
  .u_resMdMb16{ margin-bottom: 16px; }
  .resHide, .cu_resMdHide {display: none;}
  .cu_resMdInline {display: inline;}
  .cu_resMdBlock {display: block;}
  .cu_resMdHideImp {display: none !important;}
  .cu_resMdInlineImp {display: inline !important;}
  .cu_resMdBlockImp {display: block !important;}
  .u_resMdHide{display: none;}
  .u_resMdInline{display: inline;}
}

@media screen and (width <= 599px) {
  .u_resSmCol1{width:8.333%;}
  .u_resSmCol2{width:16.667%;}
  .u_resSmCol3{width:25%;}
  .u_resSmCol4{width:33.333%;}
  .u_resSmCol5{width:41.666%;}
  .u_resSmCol6{width:50%;}
  .u_resSmCol7{width:58.333%;}
  .u_resSmCol8{width:66.666%;}
  .u_resSmCol9{width:75%;}
  .u_resSmCol10{width:83.33%;}
  .u_resSmCol11{width:91.666%;}
  .u_resSmCol12{width:100%;}
  .cu_resSmHide { display: none;}
  .cu_resSmInline { display: inline; }
  .cu_resSmBlock { display: block;}
  .cu_resSmHideImp {display: none !important;}
  .cu_resSmInlineImp {display: inline !important;}
  .cu_resSmBlockImp {display: block !important;}
  .u_resSmInline{display: inline;}
  .u_resSmLs0{ letter-spacing: 0;}
}