ul.item_category_sf{
  padding: 0 20px;
	/*padding: 10px;*/
  font: 14px/1.6 'arial narrow', sans-serif;
  width:90%;
  max-width:640px;
  list-style: none;
  margin:0 auto;

}
ul.item_category_sf li{
  position: relative;
  padding: 7px 5px 7px 35px;
  margin-bottom:5px;
  /*background: #32cd32;*/
  border: 1px solid #696969; /*線の太さ・色*/
  font-family: YuGothic,'Yu Gothic',sans-serif;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
  border-radius: 8px;
}

ul.item_category_sf a{
  text-decoration: none;
  color: #333333;
}

ul.item_category_sf li:before{
  content: "";
  position: absolute;
  left: 10px;
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #88aa00ff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}


a, a:visited {
  color : #696969;
}

blockquote {
    position: relative;
    padding: 10px 15px;
    /*box-sizing: border-box;*/
    font-style: normal;
    color: #464646;
    border: solid 3px #72ccf4;
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    border-radius: 0 0 30px;
    content: "\f10d";
    font-family: FontAwesome;
    background: #72ccf4;
    color: #FFF;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}

blockquote p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #616161;
    font-size: 1.0em;
}

.yt_midashi2 {
  font-size:20px;
  background: linear-gradient(transparent 60%, #79c06e 60%);
  padding-left:1rem;
  margin:0 auto;  
  margin-bottom:10px;
  width:90%;
  max-width:963px;
}


.movie-wrap {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
 
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     width: 90%;
     /*height: 90%;*/
     margin:0 auto;
}

.movie-wrap-text{
   font-size: 14px;
   width: 90%;
  margin:0 auto;
}

.movie-wrap2 {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
 
.movie-wrap2 iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

.movie-wrap-text2{
   font-size: 14px;
   width: 90%;
  margin:0 auto;
}

.content_main{
  max-width:350px;
  margin-left: auto;
  margin-right: auto;
}

.content_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    /*gap:15px;*/
    padding: 5px;
    /*padding: 1.0rem;*/
    justify-content: space-between;
}

.content_card {
    /*display: flex;
    flex-direction: column;*/
    flex-basis: 48%;
    padding: 0.5rem;
    /*padding: 5px;*/
    word-wrap: break-word;
    background-color: #fff;
    box-sizing: border-box;
    /*border-radius: 0.25rem;*/
    border: 1px solid #cdcdcd;
    color: #333;
    text-decoration: none;
    transition: 0.5s;
    /*width: calc((1000px - 10px * 1) / 3);*/ 
}

.content_card-box {
    /*padding: 5px 0;*/
    padding: 0.3rem 0;
}

.content_card-image {
    width: 100%;
    object-fit: contain;
}

.contet_card-title {
    /*margin-bottom: 0.5rem;*/
    font-size: 0.9rem;
    font-weight: bold;
}

.contet_card-description {
    line-height: 1.2;
    /*text-align:center;*/
    font-size: 0.8rem;
}

.content_card:hover {
    box-shadow: 0 10px 20px #999;
}

.content_wrapper:after{
    content: "";
    display: block;
    flex-basis: 48%;
}

/* === evt-202509 slider === */
.evt-slider-202509{
  margin:0 auto;
  max-width:640px;
  width:90%;               /* 画面幅いっぱい */
  position:relative;

  /* 影と角丸をスライダー全体に */
  box-shadow:0 4px 15px rgba(0,0,0,.15);
  border-radius:8px;
  overflow:hidden;
}

.evt-track-202509{
  display:flex;
  flex-wrap:nowrap;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  gap:12px;
  padding:0;               /* ← 左右の余白を消す */
  scroll-padding:0;
  scroll-snap-type:x mandatory;
  touch-action:pan-x;
  overscroll-behavior-x:contain;
}
.evt-track-202509::-webkit-scrollbar{ display:none; }

.evt-slide-202509{
  flex:0 0 100%;            /* 1画面=1枚（チラ見せなら 92%） */
  max-width:100%;
  border-radius:0;          /* ←角丸は外側に任せる */
  box-shadow:none;          /* ←影も外側に任せる */
  background:#fff;
  scroll-snap-align:start;
  scroll-snap-stop:always;
}

.evt-img-202509{
  width:100%;
  height:auto;
  display:block;
}

.evt-textbox-202509{
  padding:10px 18px;
  background:#fff;
  box-sizing:border-box;

  /* 追加: 概要とリンクを縦積みに */
  display:flex;
  flex-direction:column;
}

.evt-textbox-202509 > * + *{
  margin-top:10px;
}

.evt-title-202509{
  font-size:18px;
  font-weight:bold;
  line-height:1.25;
  margin:0 0 10px;
}

.evt-overview-202509{
  font-size:14px;
  line-height:1.6;
  margin:0;

  /* 概要文は上側に残す */
  flex-grow:1;
}

.evt-link-202509{
  display:block;              /* 横並びを防ぐ */
  margin-top:6px;
  text-align:right;           /* 右寄せ */
  color:#616161;
  text-decoration:underline;
  font-size:14px;

  /* 下端に寄せるイメージ */
  align-self:flex-end;
}


/* ナビボタン */
/* ボタン内の文字は非表示にして、擬似要素で矢印を描く */
/* ボタン本体 */
.evt-nav-202509{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px; height:44px;
  border:none; border-radius:999px;
  background:rgba(255,255,255,.9);
  box-shadow:0 2px 10px rgba(0,0,0,.15);
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  user-select:none;
  z-index:2;
}

/* 矢印（擬似要素で描く） */
.evt-nav-202509::before{
  content:"";
  display:block;
  width:12px; height:12px;
  border-top:2px solid #333;
  border-right:2px solid #333;
}

/* 左＝&#9664; */
.evt-prev-202509{ left:4px; }
.evt-prev-202509::before{ transform:rotate(-135deg); }

/* 右＝&#9654; */
.evt-next-202509{ right:4px; }
.evt-next-202509::before{ transform:rotate(45deg); }

/* ドット（任意） */
.evt-dots-202509{ display:flex; justify-content:center; gap:6px; margin-top:8px; }
.evt-dots-202509 button{
  width:8px; height:8px; border-radius:999px; border:none;
  background:#000; opacity:.3; padding:0;
}
.evt-dots-202509 button.is-active{ opacity:1; }
