@charset "utf-8";

/*
==================================================
【PC】上ナビタイプ 目次
==================================================
basic - 共通基本設定
header - ヘッダー
nav - メインナビゲーション
home - トップページ用
news - ニュースページ用
subnav - サブナビページ用
schedule-calendar - スケジュールカレンダー
schedule-chart - スケジュール星取表
401,404,406 - エラーページ
footer - フッター
clearfix - クリアフィックス設定
rollover - 画像ロールオーバー設定
==================================================
*/

/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */

/* 画像のプリント禁止 */
@media print{
  img{display:none !important;}
}

/* リセットcss */
article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{
  display: block;
  margin: 0;
  padding: 0;
}

html,h1,h2,h3,h4,dl,dt,dd,ul,li,p,img{
  margin: 0;
  padding: 0;
}

ul{
  list-style-type: none;
}



/* ボディ */
body{
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
  font-size: 1em;
  font-weight: normal;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  color: #333;
}
a:link{text-decoration: underline; color: #e81c4f;}
a:visited{text-decoration: underline; color: #e81c4f;}
a:active{text-decoration: underline; color: #e81c4f;}
a:hover{text-decoration: none; color: #e81c4f;}

/* 画像関連 */
figure{
  margin: 0;
  padding: 0;
}

figcaption{
  font-size: 80%;
  text-align: center;
  margin: 0;
  padding: 0 0 5px 0;
  color: #666;
}

img{
  border: none;
  vertical-align: bottom;
}

figure img{
  max-width: 100%;
  height: auto;
  width /***/:auto; /* 親要素の100% */
}

.image-container{}
.movie-container{}
.music-container{}

/* 配置 */
.left{float: left; margin: 0 10px 10px 0;}
.center{float: none; margin: 0 0 10px 0;}
.right{float: right; margin: 0 0 10px 10px;}
figure.left{text-align: left; margin: 5px 10px 10px 0;}
figure.center{text-align: center; margin: 5px 0 10px 0;}
figure.right{text-align: right; margin: 5px 0 10px 10px;}

/* 罫線 */
hr {height: 0; margin: 15px 0; padding: 0; border: 0; width: 100%;}
.solid{border-top: 1px #999 solid;}
.dotted{border-top: 1px #999 dotted;}
.dashed{border-top: 1px #999 dashed;}
.double{border-top: 3px #999 double;}

/* ページレイアウト */
#wrapper{
  width: 100%;
  margin: 0;
  padding: 0;
}

#contents{
  width: 100%;max-width: 800px;
  margin: 0 auto;
  padding: 0;
  clear: both;
}

#main-box{
  width: 100%;max-width: 800px;
  margin: 0 auto;
  padding: 0 0 15px;
}

#side-box{display: none;
  width: 100%;max-width: 800px;
  margin:auto;
  padding: 0;
}

/* メインコンテンツ部分(main-box内) */
#contents-title{
  width: 700px;
  font-size: 140%;
  text-align: center;
}

#head{
  font-size: 120%;
  text-align: center;
  background: #000;
  color: #fff;
  margin: 15px 0 0;
  padding: 5px;
}

article{max-width: 840px;
  margin: 0 auto;
  padding: 20px 0 20px 0;
  clear: both;
}

.subhead{
  font-size: 100%;
  padding: 8px 15px;
  margin: 0 0 15px;
  clear: both;
  border-top: 1px solid #666;
  border-bottom: 1px dotted #666;
}

.packs{
  margin: 0;
  padding: 0 0 0 15px;
  width : calc(100% - 15px) ;
}

.column{
  margin: 0;
  padding: 0 15px 0 0;
  float: left;
}

/* バナー・ツイッター枠など(side-box内) */
.banner{
  width: 260px;
  margin: 0 auto 10px;
  padding: 0;
}

.twitter{
  margin: 0 auto 10px;
  background: #000;
}

/* ページトップ */
#pagetop{display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 10px 20px;
}

/* =============================================== */
/* header - ヘッダー */
/* ----------------------------------------------- */
/* ヘッダー大枠 */
header{
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ヘッダー内部 */
#header-inner{
  width: 1000px;
  margin: 0 auto;
  padding: 0;
}

/* 左部分(サイトタイトル) */
#header-left{
  float: left;
  width: 500px;
  margin: 0;
  padding: 0;
}

#site-title{
  width: 500px;
  margin: 0;
  padding: 0;
}

#site-caption{
  margin: 3px 0 8px;
  padding: 0;
  font-size: 80%;
}

/* 右部分(用途に合わせて会員メニュー・SNSボタンなど) */
#header-right{
  float: left;
  width: 500px;
  margin: 0;
  padding: 0;
}



/* =============================================== */
/* nav - メインナビゲーション */
/* ----------------------------------------------- */
/* ナビ全体枠 */
nav{
  clear: both;
  width: 1000px;
  margin: 15px auto;
  padding: 0;
  line-height: 1;
}

/* 第一階層 */
#main-menu{
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #000;
}
#main-menu::after{
  display: block;
  clear: both;
  content: '';
}
#main-menu li{
  position: relative;
  float: left;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
#main-menu li a{
  display: inline-block;

}
#main-menu li a:link{text-decoration: none;}
#main-menu li a:visited{text-decoration: none;}
#main-menu li a:active{text-decoration: none;}
#main-menu li a:hover{text-decoration: none; background: #666;}

/* 第二階層 */
#main-menu .sub-menu{
  position: absolute;
  top: 100%;
}
#main-menu .sub-menu li{
  float: none;
  margin: 0;
  padding: 0;
}
#main-menu .sub-menu li a{
  display: block;
  padding: 1em 1.5em;
  font-size: 80%;
  font-weight: normal;
  text-align: left;
  background: #000;
}
#main-menu .sub-menu li a:link{text-decoration: none;}
#main-menu .sub-menu li a:visited{text-decoration: none;}
#main-menu .sub-menu li a:active{text-decoration: none;}
#main-menu .sub-menu li a:hover{text-decoration: none; background: #666;}

/* 第二階層のフェード設定 */
.sub-menu{
  visibility: hidden;
  opacity: 0;
  transition: .1s ease-in-out;
  transform: translateY(-20px);
}
#main-menu li:hover > .sub-menu{
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}


header.siteHeader #main-menu > li > a,
header.siteHeader #main-menu > li > a:link,
header.siteHeader #main-menu > li > a:visited,
header.siteHeader #main-menu > li > a:active,
header.siteHeader #main-menu > li > a:hover{
  text-decoration:none !important;
  border-bottom:none !important;
}
/* =============================================== */
/* home - トップページ用 */
/* ----------------------------------------------- */
/* メインビジュアル */
#main-visual{
  width: 1000px;
  margin: 0;
  padding: 0;
}

#visual-caption{
  margin: 2px 0 10px;
  padding: 0;
  font-size: 80%;
  text-align: center;
}

/* ニュースフィード（main-box内） */
#news-feed-index{
  margin: 0;
  padding: 15px;
  background: #eee;
}

#news-feed-index ul{
}

#news-feed-index h2{
  font-size: 85%;
  margin: 0;
  padding: 4px 0 4px 1em;
  clear: both;
  background: url('/imagesPC/allow01.gif') no-repeat 0 8px;
}

.thumbnail{
  width: 80px;
  float: left;
  padding: 5px 10px 5px 0;
}

.news-txt{
  padding: 5px 0 5px 0;
  font-size: 80%;
}

/* =============================================== */
/* news - ニュースページ用 */
/* ----------------------------------------------- */
/* 記事タイトル部分（subhead内） */


/* 記事内カテゴリー */
.article-category {display: none;
  clear: both;
  text-align: right;
  padding: 1em 15px;
  margin: 0;
}
.article-category a:link{
  text-decoration: none;
  color: #333;
  padding: 0 0 0 1em;
  background: url('/imagesPC/allow01.gif') no-repeat left;
}
.article-category a:visited{text-decoration: none; color: #333;}
.article-category a:active{text-decoration: none; color: #333;}
.article-category a:hover{text-decoration: none; color: #e81c4f;}

/* プレビュー・ネクスト */
#pager{
  text-align: center;
  clear: both;
  margin: 15px 0 30px;
  padding: 0;
}

#pager li{
  display: inline;
  margin: 0 1em;
  padding: 0;
  font-size: 80%;
}
#pager li a:link{text-decoration: none; color: #fff; background: #444; padding: 0.8em 1.5em; border-radius: 5px;}
#pager li a:visited{text-decoration: none; color: #fff;}
#pager li a:active{text-decoration: none; color: #fff;}
#pager li a:hover{text-decoration: none; color: #e81c4f; background: #000;}

.disabled{display: none;}

/* 最新記事・カテゴリー・アーカイブのリスト（side-box内） */
#new-entry{margin: 0 0 10px;}
#category{margin: 0 0 10px;display: none;}
#archive{margin: 0 0 10px;display: none;}


/* =========================================
   NEW ENTRY
========================================= */

#new-entry{
  margin:40px 0 30px;
}

/* □ NEW ENTRY ───────── */
#new-entry h4{
  display:flex;
  align-items:center;
  gap:14px;

  margin:0 0 14px;
  padding:0;

  font-family:var(--font-ui);
  font-size:12px;
  font-weight:500;
  letter-spacing:.12em;
  line-height:1;

  color:var(--water-text);
}

/* NEW ENTRYを囲う四角 */
#new-entry h4::before{
  content:"";
  width:9px;
  height:9px;
  flex:0 0 9px;

  border:1px solid var(--water-soft);
}

/* 右に伸びる線 */
#new-entry h4::after{
  content:"";
  height:1px;
  flex:1;

  background:rgba(74,79,83,.25);
}


/* リスト全体を薄く囲う */
#new-entry .side-list{
  margin:0;
  padding:8px 18px;

  border:1px solid rgba(74,79,83,.22);
  background:rgba(255,255,255,.20);

  font-size:14px;
}


/* 各行 */
#new-entry .side-list li{
  margin:0;
  padding:13px 4px;

  background:none;
  border-bottom:1px solid rgba(74,79,83,.14);

  text-align:left;
  font-weight:400;
}

#new-entry .side-list li:last-child{
  border-bottom:0;
}


/* リンク */
#new-entry .side-list li a,
#new-entry .side-list li a:link,
#new-entry .side-list li a:visited{
  display:block;

  color:var(--water-text);
  text-decoration:none;
}

#new-entry .side-list li a:hover{
  color:var(--water-text);
  opacity:.6;
}


/* 日付 */
#new-entry .side-list li span{
  display:inline-block;
  margin-right:12px;

  font-family:var(--font-ui);
  font-size:12px;
  color:var(--water-soft);
}



.home-page #new-entry,#news-2 .news-list #new-entry{display: none;}

h4{text-align: left;
  font-family: var(--font-ui);
  font-size: 80%;
  padding: 3px 10px;
  margin: 30px 0 0 0;
  border-radius: 0 8px 0 0;
}

.side-list{
  font-size: 80%;
  margin: 0 auto 30px;
}

.side-list li{text-align: left;
  padding: 1em;
  margin: 0 10px;
  background: url('/imagesPC/allow01.gif') no-repeat 0 15px;
  border-bottom: 1px dotted #999;
  font-weight: 400;
}
.side-list li a:link{text-decoration: none; color: #333;}
.side-list li a:visited{text-decoration: none; color: #333;}
.side-list li a:active{text-decoration: none; color: #333;}
.side-list li a:hover{text-decoration: none; color: #e81c4f;}

.side-list li span{font-family: var(--font-ui);}



/* =============================================== */
/* 401,404,406 - エラーページ */
/* ----------------------------------------------- */
.error-page .column{
  margin: 0;
  padding: 0 15px 50px 0;
}

.error-page .pack p{
  padding: 30px 0 0;
  text-align: center;
}

/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
/* フッター大枠 */
footer{
  width: 100%;
  height: 100px;
  margin: 0;
  padding: 15px 0;
  clear: both;
  color: #fff;
}

/* フッターメニュー */
#footer-menu{
  width: 1000px;
  text-align: center;
  margin: 0 auto 15px;
  padding: 5px 0 15px;
  font-size: 80%;
  border-bottom: 1px solid #444;
  clear: both;
}

#footer-menu li{
  display: inline;
  padding: 5px 1em;
  margin: 0 0.5em;
  background: url('/imagesPC/allow01.gif') no-repeat 0 7px;
}
#footer-menu li a:link{text-decoration: none; color: #fff;}
#footer-menu li a:visited{text-decoration: none; color: #fff;}
#footer-menu li a:active{text-decoration: none; color: #fff;}
#footer-menu li a:hover{text-decoration: none; color: #e81c4f;}

/* フッター内部 */
#footer-inner{
  width: 1000px;
  margin: 0 auto;
  padding: 0;
  clear: both;
  font-size: 85%;
}

/* 左部分(用途に合わせてバナー等) */
#footer-left{
  width: 250px;
  float: left;
  margin: 0;
  padding: 0;
  min-height: 20px;
}

/* 中央部分(コピーライト等) */
#footer-center{
  width: 500px;
  float: left;
  margin: 0;
  padding: 0;
  min-height: 20px;
}

#footer-center p{font-family: var(--font-ui);
  text-align: center;
  font-size: 80%;
}

/* 右部分(mincへのリンク等) */
#footer-right{
  width: 250px;
  float: left;
  margin: 0;
  padding: 0;
  min-height: 20px;
}

#footer-right p{
  text-align: right;
  font-size: 80%;
  margin: 0;
  padding: 0;
}
#footer-right p a:link{text-decoration: none; color: #fff;}
#footer-right p a:visited{text-decoration: none; color: #fff;}
#footer-right p a:active{text-decoration: none; color: #fff;}
#footer-right p a:hover{text-decoration: underline; color: #fff;}

/* =============================================== */
/* clearfix - クリアフィックス設定 */
/* ----------------------------------------------- */
.clearfix:after {
  content:" ";
  display:block;
  clear:both;
}

/* =============================================== */
/* rollover - 画像ロールオーバー設定 */
/* ----------------------------------------------- */
a:hover img{
  -moz-opacity: 0.80;
  opacity: 0.80;
  filter: alpha(opacity=80);
}

nav a:hover img{
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
/* =========================================================
   WATER NEWS CUSTOM OVERRIDE
   2026-08-06
========================================================= */
:root{
  --water-text:#4a4f53;
  --water-soft:rgba(74,79,83,.68);
  --water-line:rgba(74,79,83,.38);
  --water-bg:linear-gradient(180deg, #ffffff 0%, #ffffff 56%, #eef7fc 80%, #ddeff9 100%);

  --water-header-text:#4a4f53;
  --water-header-bg:rgba(255,255,255,.92);
  --water-header-line:rgba(0,0,0,.08);

    --font-body:"BIZ UDPGothic",sans-serif;
    --font-ui: "Inter", sans-serif;
}


*,*::before,*::after{box-sizing:border-box;}

body{
  color:var(--water-text);
  background:var(--water-bg);
  background-repeat:no-repeat;
  background-attachment:fixed;
  background-size:100% 100%;
  min-height:100vh;
  font-family:"BIZ UDPGothic","Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
  font-size:16px;
  line-height:1.85;
  letter-spacing:.01em;
}

a:link,a:visited,a:active{color:inherit;}
a:hover{color:inherit;}

#wrapper{
  min-height:100vh;
  background:transparent;
}

header{
  padding:24px 0 12px;
  background:rgba(255,255,255,.96);
}

#header-inner{
  width:min(100% - 80px,1100px);
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

#header-left,#header-right{float:none;width:auto;}
#site-title{width:auto;max-width:250px;}
#site-title img{display:block;max-width:100%;height:auto;}
#site-caption{color:var(--water-soft);}

nav{
  width:min(100% - 80px,1100px);
  margin:0 auto;
  border-top:1px solid rgba(74,79,83,.16);
  border-bottom:1px solid rgba(74,79,83,.16);
}

#main-menu{
  display:flex;
  justify-content:center;
  background:transparent;
}
#main-menu li{float:none;font-size:12px;font-weight:500;letter-spacing:.14em;}
#main-menu li a{color:var(--water-text);padding:18px 24px;}
#main-menu li a:hover,#main-menu li a.current-page{background:transparent;opacity:.55;}
#main-menu .sub-menu{background:#fff;box-shadow:0 14px 30px rgba(45,55,60,.08);}
#main-menu .sub-menu li a{background:#fff;color:var(--water-text);}
#main-menu .sub-menu li a:hover{background:#f4f7f8;}

#contents{
  width:min(100% - 80px,920px);
  margin:0 auto;
  padding:60px 0 90px;
}




#contents-title{
  width:100%;
  margin:32px 0 72px;
  color:var(--water-text);
  font-family:var(--font-ui);
  font-size:80px;
  font-weight:500;
  line-height:1;
  letter-spacing:0;
  text-align:center;
}

#pagetop{right:24px;bottom:24px;padding:0;opacity:.58;display: none;}


footer{
  min-width:0;
  padding:36px 0;
  color:var(--water-soft);

}
#footer-menu{width:min(100% - 80px,920px);}
#footer-menu li a:link,#footer-menu li a:visited,#footer-menu li a:active{color:var(--water-text);}
#footer-inner{width:min(100% - 80px,920px);}
#footer-center,#footer-right{color:var(--water-soft);}

.footerLogo {
    margin: 0 auto 30px;
    width: 70%;
    max-width: 300px;
}

#footer-right p a:link,#footer-right p a:visited,#footer-right p a:active{color:var(--water-soft);}

/* =========================================================
   WATER STYLE FIXED PC HEADER / NAVIGATION
   PC-only template override
========================================================= */


/* Fixed desktop header: logo left / navigation right */
header.siteHeader{
  position:fixed;
  top:0;
  left:0;
  z-index:700;
  width:100%;
  min-width:1040px;
  margin:0;
  padding:28px 0 0 ;
  background:transparent;
 
}

header.siteHeader #header-inner{
  width:100%;
  min-width:984px;
  margin:0;
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:0;
}

header.siteHeader #header-left,
header.siteHeader #header-right{
  float:none;
  width:auto;
  flex:0 0 auto;
}

header.siteHeader #site-title{
  width:auto;
  max-width:130px;
  margin:0;
}

header.siteHeader #site-title a,
header.siteHeader #site-title img{
  display:block;
  max-width:100%;
  height:auto;
}

header.siteHeader .siteNav{
  clear:none;
  width:auto;
  margin:0 0 0 auto;
  padding:0;
  border:0;
  line-height:1;
}

header.siteHeader #main-menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:24px;
  margin:0;
  padding:18px 0 18px 18px;
  background:var(--water-header-bg);
  border:1px solid var(--water-header-line);
  box-shadow:0 1px 3px rgba(0,0,0,.04),0 8px 24px rgba(0,0,0,.10);
}

header.siteHeader #main-menu > li{font-size: 16px;
  float:none;
  margin:0;
  padding:0;
  font-weight:400;
  letter-spacing:0;
  text-align:center;
}

header.siteHeader #main-menu > li > a{
  display:block;
  padding:0;
 color:var(--water-header-text);
font-family: var(--font-ui);
  background:transparent;
  opacity:.72;
  white-space:nowrap;
  transition:opacity .25s ease;
}

header.siteHeader #main-menu > li > a:hover,
header.siteHeader #main-menu > li > a.current-page{
  color:var(--water-header-text);
  background:transparent;
  opacity:1;
}


/* Reserve space because the header is fixed. Adjust if the first view is a full KV. */
body:not(.home-page) #contents{
  padding-top:150px;
}


/* =========================================
   NEWS LIST 最終調整
========================================= */



/* NEWS archive */
#news-2 .news-list article{width: 100%;
  margin:auto;
  padding:0;
  border-top:1px solid var(--water-line);
}
#news-2 .news-list article:last-of-type{border-bottom:1px solid var(--water-line);}



.newsPageHead__label{text-align: center;
  margin:0 auto 12px;

  font-family:var(--font-ui);
  font-size:11px;
  letter-spacing:.25em;
  text-transform:uppercase;

  color:var(--soft);
}



/* 1記事の1行 */
#news-2 .news-list .subhead{
  display:grid;
  grid-template-columns:110px 1fr;
  column-gap:30px;
  align-items:center;

  width:100%;
  margin:0;
  padding:20px 0;

  clear:none;

  border:0;
  font-size:18px;
 font-weight:600;
  line-height:1.5;
}


/* 左：日付 */
#news-2 .news-list .date{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  margin:0;
  padding:0;

  font-family:var(--font-ui);
  line-height:1;
  text-align:center;
}


/* 2026 */
#news-2 .news-list .date-year{ color:var(--water-soft);
  display:block;

  margin:0 0 5px;
  padding:0;

  font-size:18px;
  font-weight:400;
  line-height:1;
}


/* 06.21 */
#news-2 .news-list .date-md{
  display:block;

  margin:0;
  padding:0;

  font-size:25px;
  font-weight:600;
  line-height:1;

  color:rgba(74,79,83,.72);
}


/* 右：タイトル */
#news-2 .news-list .headline{
  display:block;
  min-width:0;

  margin:0;
  padding:0;

  font-size:18px;
  font-weight:400;
  line-height:1.6;
  text-align:left;
}

#news-2 .news-list .headline a,
#news-2 .news-list .headline a:link,
#news-2 .news-list .headline a:visited,
#news-2 .news-list .headline a:active{
  display:block;
  color:var(--water-text);
  text-decoration:none;
}

#news-2 .news-list .headline a:hover{
  opacity:.6;
}

/* =========================================
   NEWS 単記事
========================================= */
#news-2 .news-detail .subhead{
  display:block;
  margin:0 0 54px;
  padding:0 0 34px;
  border:0;

}

#news-2 .news-detail .subhead span.date{  color:var(--water-soft);font-family:var(--font-ui);
  display:block;
  margin:0 0 14px;
  font-size:13px;
}

#news-2 .news-detail .subhead span.headline{
  display:block;
  font-size:46px;
  line-height:1.5;
}
#news-2 .news-detail 
/* =========================================
   NEWS 単記事から一覧に戻る
========================================= */

.newsBack{
  margin-top:80px;
  text-align:center;
}

.newsBack a{
  display:inline-block;

  font-family:var(--font-ui);
  font-size:12px;
  letter-spacing:.15em;
  text-transform:uppercase;

  padding-bottom:6px;

  border-bottom:1px solid rgba(0,0,0,.25);

  text-decoration:none;
}

/* =========================================
   NEWS フライヤーダウンロード
========================================= */
.newsFlyer{
    margin:36px auto 0;
    text-align:center;
}

.newsFlyer__image{
    max-width:520px;
    margin:0 auto 24px;
}

.newsFlyer__image img{
    display:block;
    width:100%;
    height:auto;
}

.newsFlyer__actions{
    text-align:center;
}

.newsFlyer__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    padding:13px 26px;
    border:1px solid var(--water-soft);
    color:#4a4f53;
    font-size:14px;
    letter-spacing:.08em;
    text-decoration:none;
    transition:
        color .25s ease,
        background-color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.newsFlyer__btn:hover{
    color:#fff;
    background-color:#4a4f53;
    border-color:#4a4f53;
    transform:translateY(-1px);
}

.newsFlyer img{border:1px solid var(--water-soft);}
.newsFlyer img:hover{opacity: 0.8;}

@media (max-width:768px){
    .newsFlyer{
        margin-top:28px;
    }

    .newsFlyer__image{
        max-width:86%;
        margin-bottom:20px;
    }

    .newsFlyer__btn{
        min-width:200px;
        padding:12px 22px;
        font-size:13px;
    }
}


/* =========================================
   NEWS フライヤーダウンロード
========================================= */






/* NEWS article headings / playguide buttons */
.newsArticle__subTitle{
  margin:2.4em 0 1em;
  font-size:1.05em;
  line-height:1.7;
  font-weight:700;
}

/* =========================================
   PLAY GUIDE BUTTONS
========================================= */

.playGuideBtns{
  max-width:640px;
  margin:0 auto;
  display:grid;
  gap:30px;
}

.playGuideBtn,
.playGuideBtn:link,
.playGuideBtn:visited{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

  width:100%;
  padding:16px 20px;

  border:1px solid var(--water-text);

  background:var(--water-text);
  color:#fff;

  font-size:20px;
  line-height:1.5;

  text-decoration:none;

  transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease;
}

.playGuideBtn::after{
  content:"";

  width:18px;
  height:18px;
  flex-shrink:0;

  background:url("../img/arrowW.svg") center / contain no-repeat;

  transition:
    transform .3s ease,
    background-image .3s ease;
}

.playGuideBtn:hover{
  background:#fff;
  color:var(--water-text);
  border-color:var(--water-text);
}

.playGuideBtn:hover::after{
  background-image:url("../img/arrowB.svg");
  transform:translateX(8px);
}


/* NEWS記事内で使う場合 */
.newsPlayGuideBtns{
  margin:0 0 2.2em;
}

/* =========================================
   NEWS ※リスト
========================================= */
.newsNote{
    margin-top:.3em;
    font-size:.9em;
    line-height:1.45;
    color:#666;
}

.newsNote br + *{
    margin-top:.15em;
}

.newsArticle__body p small{
    font-weight:400;
    line-height:1.2;
}
