/* ① 親：高さが固定(55rem)だと比率ズレで黒が出やすいので、画面基準にする */
.video-background{
  position: relative;
  width: 100%;
  height: 100svh;         /* 画面いっぱい基準（スマホも安定） */
  min-height: 59rem;      /* 既存の見た目を保ちたいなら残す */
  overflow: hidden;
  background: #000;
}

/* ② 動画：常に中央基準で “cover” */
.video-background > #background-video{

  top: 50%;
	transform: translate(-50%, -50%) scale(1.32);

}

/* ③ 文字やカードを上に */
.video-background .video-content{
  position: relative;
  z-index: 1;
}


@media (max-width: 1700px){
  .video-background > #background-video{
    transform: translate(-50%, -50%) scale(1.33);
  }
	
}
.video-content h1{
	font-size:50px;
}

.sponsor-title{
	    margin: 0px 0 10px 20px;
}

/* グラデの暗幕（上は薄い=明るい、下は濃い=暗い） */
.video-background::after{
  content:"";
  position:absolute;
  inset:0;

  pointer-events: none;
     background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 45%, #1551b8a6 100%);
}

#background-video {

    filter: brightness(100%);
}
/* =========================
   Donate hover panel (Donorbox)
========================= */

/* パネル基本（初期は隠す） */
.donate-dropdown{ position: relative; }

.donate-panel{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(455px, 92vw);
    /*max-height: min(83vh, 760px);*/
    overflow: auto;
    border-radius: 16px;
    /* background: rgba(0, 0, 0, 0.55); */
    /* border: 1px solid rgba(255, 255, 255, 0.18); */
    /* backdrop-filter: blur(8px); */
    -webkit-backdrop-filter: blur(8px);
    /* box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45); */
    opacity: 0;
    visibility: hidden;
    transform: translateX(24px) translateY(-6px);
    pointer-events: none;
    transition: opacity 280ms cubic-bezier(.2, .8, .2, 1), transform 280ms cubic-bezier(.2, .8, .2, 1), visibility 0s linear 280ms;
    z-index: 9999;

}
/* ボタンとパネルの“隙間”を埋める透明ゾーン */
.donate-panel::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-16px;     /* 隙間より少し大きく */
  height:16px;   /* この高さ分が“橋”になる */
  background: transparent;
}

/* ★開いている時だけ表示（カーソル外しても消えない） */
.donate-dropdown.is-open .donate-panel{
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(0);
  pointer-events: auto;
  transition: opacity 280ms cubic-bezier(.2,.8,.2,1),
              transform 280ms cubic-bezier(.2,.8,.2,1),
              visibility 0s;
}


.donate-panel__inner{
  padding: 14px 14px 10px;
}




/* Donorbox iframe の見た目 */
.donor-box iframe{
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #fff;
}


.header-buttons{
	align-items: center;
}

/* 動きを減らす設定の人 */
@media (prefers-reduced-motion: reduce){
  .donate-panel{
    transition: none;
  }
}

/* ×ボタン */
.donate-close{
  position: absolute;
  top: 15px;
  right: 20px;
  width: 110px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgb(0 0 0 / 82%);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
	    display: flex;
    justify-content: center;
    align-items: center;
}
.donate-close:hover{ background: rgb(61 61 61 / 55%); }

.donate-panel__inner{ padding: 14px; }

.donor-box iframe{
  display:block;
  width:100%;
  border:0;
  border-radius: 12px;
  background:#fff;
}

/* これ超重要：切れ防止 */
.site-header, .header-container, .header-right, .header-buttons{
  overflow: visible !important;
}

/* ★閉じた状態は hover でも出さない */
.donate-dropdown.is-locked .donate-panel{
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateX(24px) translateY(-6px) !important;
  pointer-events: none !important;
}

/* 全画面オーバーレイ（開いてる時だけ有効） */
.donate-overlay{
  position: fixed;
  inset: 0;
  /*background: rgba(0,0,0,0.35);*/
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms cubic-bezier(.2,.8,.2,1), visibility 0s linear 220ms;
  z-index: 9998; /* panelより下 */
}

.donate-dropdown.is-open .donate-overlay{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 220ms cubic-bezier(.2,.8,.2,1), visibility 0s;
}

/* donate-panel は overlay より上 */
.donate-panel{ z-index: 9999; }


/* --- marine segment hover effect --- */
.marine-progress__bar{

	border-radius: 12px; /* いまの値に合わせてOK */
  overflow: hidden;    /* ここが大事：角を切る */
}

.marine-seg{
  transform-origin: center;
  transition:
    width 2800ms cubic-bezier(.2,.8,.2,1),
    transform 220ms cubic-bezier(.2,.8,.2,1),
    filter 220ms cubic-bezier(.2,.8,.2,1),
    box-shadow 220ms cubic-bezier(.2,.8,.2,1);
}

.marine-seg:hover{
  transform: scale(1.035);              /* ちょい大きく */
  filter: brightness(1.15) saturate(1.1); /* 明るく・鮮やかに */
  z-index: 5;                           /* 前に出す */
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* セグメント内部も少しクッキリ */
.marine-seg:hover .marine-seg__inner{
  border-right-color: rgba(255,255,255,0.22);
}

/* スマホでは hover ないのでタップ時も効かせる */
.marine-seg:active{
  transform: scale(1.03);
  filter: brightness(1.22) saturate(1.1);
}

.donor-box {

    border-radius: 16px;
    box-shadow: 0 0px 7px 2px rgba(0, 0, 0, 0.45);
}



/* =========================
   Support Grid (6 cards)
========================= */
.support-grid{
  padding: 70px 0 90px;
}

.support-grid__inner{
  width: min(1220px, 92%);
  margin: 0 auto;
}

.support-grid__head{
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}

.support-grid__title{
  margin: 0;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: .02em;
}

.support-grid__sub{
  margin: 0;
  font-size: 13px;
  opacity: .7;
}

.support-grid__cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.support-card{
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  transform: translateY(0);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms cubic-bezier(.2,.8,.2,1);
}




.support-card__body{
  padding: 16px 16px 18px;
}

.support-card__kicker{
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  opacity: .75;
  letter-spacing: .05em;
}

.support-card__ttl{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}



.support-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,.16);
}




/* 画像エリア */
.support-card__img{
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}
/*
.support-card__img::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.00), rgba(0,0,0,0.22));
}
*/

/* 文字オーバーレイ */
.support-card__overlay{
  position: absolute;

  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
}

.support-card-b{
	color: #113779;;
}

.support-card__kicker{
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  opacity: .9;
  letter-spacing: .05em;
}
.support-card__ttl{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
}


/* hover演出 */
.support-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,.16);
}
.support-card:hover .support-card__img{
  filter: brightness(1.08) saturate(1.06);
}

/* レスポンシブ */
@media (max-width: 900px){
  .support-grid__cards{ grid-template-columns: repeat(2, 1fr); }
  .support-card__img{ height: 200px; }
}



/* =========================
   Action Friends background
========================= */
.action-friends{
  position: relative;
  padding: 80px 0 100px;

  /* ▼背景画像（ここを差し替え） */
  background-image: url('/wp-content/uploads/2026/02/your-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* 中身をベールより上に */
.action-friends__inner{
  position: relative;
  z-index: 1;
}
.action-friends__inner{
  width: min(1220px, 92%);
  margin: 0 auto;
}

.action-friends__head{
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}

.action-friends__title{
  margin: 0;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: .02em;
}

.action-friends__sub{
  margin: 0;
  font-size: 13px;
  opacity: .7;
}

/* 4ボタンの並び */
.action-friends__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.action-friends-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-top:34px;
}

.action-friends_btn{
  position: relative;
  overflow: hidden;
  border-radius: 12px; /* 好みで */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;                 /* 背景写真に合わせて白文字に */
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  height: 200px;
}

/* 暗幕（テキストの視認性UP） */
.action-friends_btn::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.15));
  pointer-events:none;
}
/* 文字・矢印は暗幕より上に */
.action-friends_btn > *{
  position: relative;
  z-index: 1;
}

.action-friends__name{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .02em;
}

.action-friends__arrow{
  font-size: 18px;
  font-weight: 900;
  opacity: .55;
}

/* hoverでちょいズーム&明るさUP（好み） */
.action-friends_btn{
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms cubic-bezier(.2,.8,.2,1), filter 220ms cubic-bezier(.2,.8,.2,1);
}
.action-friends_btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
  filter: brightness(1.05);
}
/* それぞれの背景 */
.action-friends_btn.is-ishikawa{ background-image:url("/wp-content/themes/ashiato/img/ishikawa.jpg"); }
.action-friends_btn.is-ocean  { background-image:url("/wp-content/themes/ashiato/img/ocean.jpg"); }
.action-friends_btn.is-eicom  { background-image:url("/wp-content/themes/ashiato/img/eicom.jpg"); }
.action-friends_btn.is-plaats { background-image:url("/wp-content/themes/ashiato/img/plaats.jpg"); }

/* レスポンシブ */
@media (max-width: 1000px){
  .action-friends__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .action-friends__grid{ grid-template-columns: 1fr; }
  .action-friends__head{ flex-direction: column; align-items: flex-start; }
}

.action-friends-card-title{
  display: inline-block;
  padding: .25em .6em;
  background: rgba(255,255,255,.85);
  border-radius: 999px;
  backdrop-filter: blur(4px); /* 対応ブラウザならさらに読みやすい */
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  color: #1551b8;
}

.action-friends-card{
  position:relative;
  overflow:hidden;
  min-height:240px;
  display:flex;
  align-items:flex-end;
  padding:18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}
@media (max-width: 760px){
	.action-friends-card{
		min-height:220px;
	}
}
.action-friends-card-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(135deg, rgba(0,0,0,.25), rgba(0,0,0,.65));
  opacity:1;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.action-friends-card-bg[data-bg="b1"]{ background-image: linear-gradient(135deg, rgb(122 167 255 / 0%), rgb(0 0 0 / 0%)),url("/wp-content/themes/ashiato/img/sampleaction.jpg"); }
.action-friends-card-bg[data-bg="b2"]{ background-image: linear-gradient(135deg, rgb(122 167 255 / 0%), rgb(0 0 0 / 0%)),url("/wp-content/themes/ashiato/img/ocean.jpg"); }
.action-friends-card-bg[data-bg="b3"]{ background-image: linear-gradient(135deg, rgb(122 167 255 / 0%), rgb(0 0 0 / 0%)),url("/wp-content/themes/ashiato/img/sampleaction.jpg"); }
.action-friends-card-bg[data-bg="b4"]{ background-image: linear-gradient(135deg, rgb(122 167 255 / 0%), rgb(0 0 0 / 0%)),url("/wp-content/themes/ashiato/img/plaats.jpg"); }

.action-friends-card-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0));
}
.action-friends-card-title{

  z-index:1;
  font-weight:900;
  font-size:18px;
  letter-spacing:.04em;
    display: flex;
    justify-content: center;
	width:100%;
}
@media (max-width: 1124px){
.action-friends-card-title{
	font-size: 1.5vw;
	}
}
@media (max-width: 900px){
.action-friends-card-title{
	font-size: 1.4vw;
	}
}

@media (max-width: 720px){
	.action-friends-card-title{
	font-size: 17px;
	}
}


@media (min-width: 761px){
	.action-friends-card-title{
	    display: grid;
}
}

.action-friends-card-title small{
  display:inline-block;
  margin-left:10px;
  font-weight:800;
  opacity:.8;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
}
.action-friends-card-btn{
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;

  height: 44px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;

  overflow: hidden;
  z-index: 2;

  transition: color .3s ease, border-color .3s ease, transform .3s ease;
}

/* 白が左→右へスライドして反転 */
.action-friends-card-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:#fff;
  transform: scaleX(0);
  transform-origin: left;   /* ← 左から右 */
  transition: transform .35s ease;
  z-index:-1;
}

.action-friends-card:hover .action-friends-card-btn::before{
  transform: scaleX(1);
}

.action-friends-card:hover .action-friends-card-btn{
  color:#0a0f1a;
  border-color: rgba(255,255,255,.35);
  transform: translateY(-1px);
}

/* 矢印だけちょい進む（→がテキストに含まれてても効くように） */
.action-friends-card-btn{
  letter-spacing: .08em;
}
.action-friends-card:hover .action-friends-card-btn{
  letter-spacing: .10em;
}


/* hoverでふわっと浮く */
.action-friends-card:hover{

  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  border-color: rgba(255,255,255,.22);
}

/* 背景画像がズーム（カード内に .action-friends-card-bg がある前提） */
.action-friends-card .action-friends-card-bg{
  transition: transform .6s ease, filter .6s ease;
  will-change: transform;
}
.action-friends-card:hover .action-friends-card-bg{
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.05);
}

/* ちょい“光沢”スイープ */
.action-friends-card::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,.14) 50%,
    rgba(255,255,255,0) 60%);
  transform: translateX(-35%) rotate(10deg);
  opacity: 0;
  transition: opacity .25s ease, transform .6s ease;
  pointer-events:none;
}
.action-friends-card:hover::after{
  opacity: 1;
  transform: translateX(35%) rotate(10deg);
}


.hero-info-card .learn-btn-n{
	    position: absolute;
    bottom: 10px;
    right: 35px;
}



.sponsor-about{
	text-align: right;
    margin: 0 20px 50px 0;
	    padding-bottom: 20px;
}

.newsec:nth-child(even)::before{
	content: "";
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    margin-left: -50.9vw;
    margin-right: -50vw;
    width: 100.3vw;
    height: 100%;
    background-color: #efefef;
    z-index: -1;
}

.newsec-w{
	width: min(1220px, 92%);
    margin: 0 auto 50px;
}

.learn-btn-n {
            display: inline-block;
    		padding: 5px 15px;
   		 	font-size: 14px;
            text-decoration: none;
            text-transform: uppercase;
            color: #555;
            border: 1px solid #555;
            position: relative;
            overflow: hidden;
            transition: color 0.4s ease;
	    font-family: 'Noto Serif JP', sans-serif;
	    background-color: #FFF;
        }

        .learn-btn-n::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #FFF;
            z-index: -1;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .learn-btn-n:hover {
            color: #fff;
			background: #1551b8;
        }

        .learn-btn-n:hover::before {
            transform: translateX(0);
        }
.learn-btn-n-box{
	    position: absolute;
    right: 5px;
    top: 15px;
}


/* overlay 内でタイトルの下に余白 */
.support-card__ttl{
  margin: 0 0 10px;
}

/* CTA全体：白いピル型 */
.support-card__cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  color: #0b2a66;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  user-select: none;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
	
}

/* 文字 */
.support-card__ctaText{
  font-size: 22px;
  white-space: nowrap;
	    color: #1551b8;
}

/* 右の丸（矢印） */
.support-card__ctaIcon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #1551b8;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff; /* SVG矢印の色 */
}

.support-card__ctaIcon svg{
  width: 16px;
  height: 16px;
}

/* ふわっとホバー（カードhoverに追従させる） */
.support-card:hover .support-card__cta{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.support-card:hover .support-card__ctaIcon{
  transform: translateX(2px);
}

/* アニメーション滑らか */
.support-card__cta,
.support-card__ctaIcon{
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}



.newsec-w{
	padding:0;
}
.mag-img{
	transform: translateY(0);
    transition: transform 220ms cubic-bezier(.2, .8, .2, 1), box-shadow 220ms cubic-bezier(.2, .8, .2, 1);
}
.mag-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .16);
}
/*
a img{
  transition: transform .6s ease, filter .6s ease;
  will-change: transform;
}

a img:hover{
	 filter: brightness(1.1);
	transform: scale(1.06);
  filter: saturate(1.08) contrast(1.05);
}
*/

@media screen and (max-width: 1350px) {
	.marine-seg__value {
    font-size: 30px;
}
	.video-content h1 {
    font-size: 40px;
}
	.video-content {
    margin: 300px 0 0 440px;
}
	
}

@media screen and (max-width: 1220px) {
	.sponsor {
    padding: 0;
    width: 90%;
    margin: 0 auto;
}
	.magazine-nav{
		    width: 90%;
		    top: 55%;
	}
	.support-card__ctaText {
  font-size: 1.5vw;

}
	
	}

.sns_inner{
		width: min(1220px, 92%);
    margin: 0 auto;
	}

@media screen and (max-width: 720px) {
    .second-title:before, .second-title:after {
        width: 0;
    }
}
@media screen and (max-width: 720px) {
	.magazine-carousel {
    padding: 70px 0 0;
    position: relative;
}
    .second-title:after {
        right: 0;
    }
	.mag-card img{
		    height: auto;
	}
	.magazine-carousel__head {

    margin-bottom: -5px;
    margin-top: -25px;
}
	.action-friends-grid {
    grid-template-columns: repeat(2, 1fr);
}
	.hero-info-card {
        top: 350px;
    }
	.hero-info-card {

    height: min(170px, 86vh);

}
	.support-card__ctaText{
		    font-size: 15px;
	}
	.support-card__ctaIcon {
    width: 25px;
    height: 25px;

}
	.support-card__cta{
		    padding: 8px 14px 8px 16px;
	}
	.support-card__overlay{
		    bottom: 5px;
		right: 3px;
	}
	.learn-btn-n{
		    font-size: 10px;
	}
	.hero-info-card .learn-btn-n {
    right: 11px;
}
	.video-content h1{
		    font-size: 33px;
	}



	.video-background {
    min-height: 63rem;
}
	
}


.results-content {
    margin: 5px 13px;
    width: calc(52% - 60px);
}

.video-content {
    margin: 210px 0 150px;
}

.video-background {
    height: 82svh;
    min-height: 47rem;
}
.sub-text{
	    font-size: 20px;
}

/* =========================
   Ashi-ato wide 3 blocks
========================= */

.ashi-wide-links{
  /* 100vwで画面いっぱいにする（テーマのcontainer影響を回避） */
  /*width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);*/
	padding:0;
}

.ashi-wide-links__inner{
  width: 100%;
}

/* 1段（左：画像 / 右：パネル） */
.ashi-wide-links__item{
  display: grid;
  grid-template-columns: 1.35fr 1fr; /* 左右 50/50 */
      max-height: 720px;
    height: 53vw;
}

/* 左画像：背景カバー */
.ashi-wide-links__img{
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

/* 右パネル */
.ashi-wide-links__panel{
    padding: clamp(18px, 2.4vw, 28px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 45px;
}

/* タイトル/本文 */
.ashi-wide-links__title{
  margin: 0;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 37px);
  line-height: 1.15;
  letter-spacing: .02em;
  color:#0b3d91;
	    
    margin-top: 20px;
}

.ashi-wide-links__text{
  margin: 0;
  line-height: 1.8;
  color: #0b2a3a;
  /*max-width: 48ch;*/
	font-size: clamp(12px, 1.4vw, 20px);
	height: 100%;
}

/* ボタン（2つ縦並び） 
.ashi-wide-links__btns{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.ashi-wide-links__btn{
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  color: #fff;
  background: #0b3d91;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  transition: transform .15s ease, filter .15s ease, opacity .15s ease;
}

.ashi-wide-links__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.ashi-wide-links__btn:active{
  transform: translateY(0);
  opacity: .92;
}
*/
.ashi-wide-links__btns{
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 16px);
  margin-top: clamp(8px, 1vw, 14px);
}

.ashi-wide-links__btn{
  position: relative;
  isolation: isolate;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  max-width: min(100%, 32rem);

  padding: clamp(10px, 1vw, 14px) clamp(14px, 1.8vw, 24px);
  min-height: clamp(40px, 4vw, 52px);

  border-radius: clamp(999px, 3vw, 999px);
  text-decoration: none;

  font-weight: 700;
  font-size: clamp(13px, 1.6vw, 18px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;

  color: #fff;
  background: linear-gradient(135deg, #1f5fbe 0%, #0b3d91 100%);
  box-shadow:
    0 clamp(5px, 0.6vw, 10px) clamp(12px, 1.4vw, 24px) rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.18);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    filter .28s ease,
    background .28s ease;
}

/* ツヤっと流れるハイライト 
.ashi-wide-links__btn::before{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.18) 45%,
    rgba(255,255,255,.35) 50%,
    rgba(255,255,255,.18) 55%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  transition: left .55s ease;
  z-index: -1;
}
*/
.ashi-wide-links__btn:hover{
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.06);
  box-shadow:
    0 clamp(8px, 1vw, 16px) clamp(18px, 2vw, 32px) rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.ashi-wide-links__btn:hover::before{
  left: 140%;
}

.ashi-wide-links__btn:active{
  transform: translateY(-1px) scale(0.995);
}

.ashi-wide-links__btn:focus-visible{
  outline: 3px solid rgba(11, 61, 145, .25);
  outline-offset: 3px;
}

/* スマホでは文字が詰まりすぎないよう少しだけ調整 */
@media (max-width: 768px){
  .ashi-wide-links__btn{
    max-width: 100%;
    font-size: clamp(12px, 3.5vw, 15px);
    padding: 10px 16px;
    min-height: 42px;
  }
}



/* 背景色（右パネル側だけ色を変えたいので item に付ける） */
.ashi-wide-links__item.is-blue  .ashi-wide-links__panel{ background: #bfe0f2; }
.ashi-wide-links__item.is-green .ashi-wide-links__panel{ background: #bfe8c7; }
.ashi-wide-links__item.is-yellow .ashi-wide-links__panel{ background: #edf996; }


/* 段の区切り（お好みで） 
.ashi-wide-links__item + .ashi-wide-links__item{
  border-top: 1px solid rgba(0,0,0,.06);
}
*/
@media (max-width: 1160px){
.magazine-carousel__head{
	    top: 70%;
}
}
/* レスポンシブ：スマホは縦積み */
@media (max-width: 720px){
  .ashi-wide-links__item{
    grid-template-columns: 1fr;
	      height: auto;
	          max-height: initial;
  }
  .ashi-wide-links__img{
    min-height: 400px;
  }
  .ashi-wide-links__panel{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
	      gap: 15px;
  }
	
	.results-content {
    width: 100%;
		
}
	    .video-content h1 {
        font-size: 25px;
    }
	.sub-text {
    font-size: 16px;
}
	.results-content span {
        font-size: 1rem;
    }
	.video-background {
    height: 42rem;
    min-height: 42rem;
}
	.ashi-wide-links__title {

    font-size: clamp(25px, 2.4vw, 33px);

}
	.ashi-wide-links__btns {

    margin-top: clamp(45px, 2vw, 64px);
}
	.ashi-wide-links__text {

    font-size: clamp(16px, 2.4vw, 20px);

}
	.sns_inner{
		width:auto;

	}
	.magazine-carousel__head {
    position: absolute;
    top: 80%;
    right: 0%;
}
	.magazintext-b {
    margin-bottom: 10px;

}
	
	    .news-list {
        margin: 0;
    }
	.news-list td {

    padding: 10px 2px;
}
	
	.sponsor-area {

    width: 100%;
}
	.news-list td a {

    font-size: 14px;
}
	.news-list td:nth-child(3) {
    padding-left: 10px;
}
	
}
@media (min-width: 1710px){
.results-content {
    margin: 5px 60px;
    width: calc(45% - 60px);
}
}