@charset "utf-8";
/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");

/*Webフォント
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Reddit+Sans:ital,wght@0,200..900;1,200..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/ :root {
  --text-color: #333; /*テキストカラー*/
  --primary-color: #c73600; /*テンプレートのメインまたはアクセントカラー*/
  --primary-inverse-color: #fff; /*上のprimary-colorの対となる色*/
  --global-space: 5vw; /*サイト内の左右へとる余白を一括管理しています。画面幅100%＝100vw。*/
}
/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
  0% {
    left: -200px;
  }
  100% {
    left: 0px;
  }
}
/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*fadeInのキーフレーム設定（テキストのフェードインに使用）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*全体の設定
---------------------------------------------------------------------------*/
body * {
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-size: 13px; /*基準となるフォントサイズ。*/
}
/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
  html, body {
    font-size: 16px; /*基準となるフォントサイズ。*/
  }
} 
/*追加指定ここまで*/

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Meiryo", "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  /*
フォント種類（ゴシック）*/
  font-optical-sizing: auto;
  /*font-weight: 300;*/
  -webkit-text-size-adjust: none;
  background: #fff; /*背景色*/
  color: var(--text-color); /*文字色。css冒頭で指定しているtext-colorを読み込む*/
  line-height: 2; /*行間*/
}
/*リセット*/
figure {
  margin: 0;
}
dd {
  margin: 0;
}
nav, ul, li, ol {
  margin: 0;
  padding: 0;
}
nav ul {
  list-style: none;
}
section li {
  margin-left: 1rem;
}
/*table全般の設定*/
table {
  border-collapse: collapse;
}
/*画像全般の設定*/
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.contents img {
  width: 100%;
}

/*videoタグ*/
video {
  max-width: 100%;
}
/*iframeタグ*/
iframe {
  width: 100%;
}
/*他*/
input {
  font-size: 1rem;
}
section + section {
  margin-top: 3rem;
}
/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
  color: var(--text-color); /*文字色。css冒頭で指定しているtext-colorを読み込む*/
  transition: 0.3s; /*hoverまでにかける時間。0.3秒。*/
  text-decoration: none;
  /*display: flex;*/
}
main a {
  display: flex;
}
nav a {
  color: var(--primary-inverse-color); /*文字色。css冒頭で指定しているprimary-inverse-colorを読み込む*/
  transition: 0.3s; /*hoverまでにかける時間。0.3秒。*/
}
/*マウスオン時*/
a:hover {
  text-decoration: none; /*下線を消す*/
  color: var(--primary-color); /*文字色。css冒頭で指定しているprimary-colorを読み込む*/
  opacity: 0.7;
  transition: 0.5s;
}
/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
body:not(.home) #contain {
  height: 100%;
  display: flex;
  flex-direction: column; /*子要素を縦並び*/
  justify-content: space-between; /*並びかたの種類の指定*/
}
/*スライダー
---------------------------------------------------------------------------*/
#place {
  padding: 5rem 0 0 0;
}
/*コンテンツ（フッター関連「以外」を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
  flex: 1;
  padding: var(--global-space); /*コンテンツ内の余白。css冒頭で指定しているglobal-spaceを読み込む。*/
}
/*画面幅600px以下の追加指定*/
@media screen and (max-width:600px) {
  #contents {
    padding-top: 30px; /*コンテンツ内の上の余白だけ上書き*/
  }
} /*追加指定ここまで*/
/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  display: flex; /*flexボックスを使う指定*/
  align-items: center; /*垂直揃えの指定。天地中央に配置されるように。*/
  justify-content: space-between;
  height: 70px; /*ヘッダーの高さ*/
  padding: 1vw 3vw; /*ヘッダー内の余白。上下、左右への順番。*/
  font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  z-index: 1;
  width: 100%;
}
/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
  /*ヘッダーブロック*/
  header {
    position: fixed; /*スクロールしても動かないよう指定。*/
  }
}
/*ロゴ（※画像場合）*/
#logo img {
  display: block;
  width: 150px; /*ロゴ画像の幅*/
  margin-top: 10px;
}
/*ロゴ（テキスト場合）*/
#logo a {
  display: block;
  text-decoration: none;
  font-size: 1.2rem; /*文字サイズを120%に*/
  font-weight: 800; /*文字の太さ*/
}
/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {
  display: none;
}
#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#menubar a {
  display: block;
  text-decoration: none;
}
/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {
  display: block;
}
.small-screen #menubar.display-block {
  display: block;
}
/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {
  display: none;
}
/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {
  display: none;
}
/*ドロップダウンの親メニューのカーソル表示を変更*/
a.ddmenu {
  cursor: default;
}
/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu {
  cursor: default;
}
/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff; /* 通常時の矢印の色 */
  border-right: 2px solid #fff; /* 通常時の矢印の色 */
  transform: rotate(135deg);
  margin-top: -5px;
  transition: border-color 0.3s ease; /* スムーズな色の変化 */
}
.ddmenu span {
  position: relative;
  padding-left: 20px;
}
/* ホバー時に親要素.ddmenuにスタイルを適用し、子要素span::beforeのスタイルを変更 */
.ddmenu:hover span::before {
  border-top: 2px solid #fff; /* ホバー時の矢印の色 */
  border-right: 2px solid #fff; /* ホバー時の矢印の色 */
}

/* ホバー時に親要素.ddmenuにスタイルを適用し、子要素span::beforeのスタイルを変更 */
/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
.ddmenu:hover span::before {
  border-top: 2px solid #c73600; /* ホバー時の矢印の色 */
  border-right: 2px solid #c73600; /* ホバー時の矢印の色 */
}
}
/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.large-screen #menubar > nav > ul {
  display: flex; /*横並び*/
  font-size: 0.9rem; /*文字サイズ　90%*/
  gap: 0.5rem; /*メニュー同士の間に空けるマージン的な要素*/
}
/*メニュー１個あたりの設定*/
.large-screen #menubar li a {
  border-radius: 0px; /*角を丸くする指定。適当に大きければOK。*/
  padding: 0.2rem 1rem; /*上下、左右へのメニュー内の余白*/
  background: #000; /*背景色*/
}
/*大きな端末、小さな端末、共通のドロップダウンメニュー設定
---------------------------------------------------------------------------*/
/*ドロップダウンブロック*/
.large-screen #menubar ul ul, .small-screen #menubar ul ul {
  animation: opa1 0.5s 0.1s both; /*0.1秒待機後、0.5秒かけてフェードイン表示*/
}
/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.large-screen #menubar ul ul {
  position: absolute;
  z-index: 100;
}
/*メニュー１個あたり*/
.large-screen #menubar ul ul a {
  margin-top: 0.4rem; /*上に空けるスペース。メニュー同士の隙間。*/
}
/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
  position: fixed;
  overflow: auto;
  z-index: 100;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding-top: 90px;
  background: rgba(0, 0, 0, 0.9); /*背景色*/
  animation: animation1 0.2s both; /*animation1を実行する。0.2sは0.2秒の事。*/
}
/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
  width: 90%;
  border: 1px solid #ccc; /*枠線の幅、線種、色*/
  margin: 1rem; /*メニューの外側に空けるスペース*/
  border-radius: 0px; /*角を丸くする指定*/
  padding: 0 1rem; /*メニュー内の余白。上下、左右へ。*/
}
.small-screen #menubar a {
  padding: 0.5rem; /*メニュー内の余白*/
}
/*文字色*/
.small-screen #menubar, .small-screen #menubar a {
  color: #fff;
}
/*900px以下でのみ表示させるブロック*/
#menubar .sh {
  font-weight: normal; /*文字の太さを標準*/
  padding: 1rem 2rem 2rem; /*上、左右、下へのブロック内の余白*/
}
/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
  animation: opa1 0s 0.2s both;
  position: fixed;
  z-index: 101;
  cursor: pointer;
  right: 3vw; /*右からの配置場所指定*/
  top: 1vw; /*上からの配置場所指定*/
  padding: 16px 14px; /*上下、左右への余白*/
  width: 46px; /*幅（３本バーが出ている場合の幅になります）*/
  height: 46px; /*高さ*/
  display: flex; /*flexボックスを使う指定*/
  flex-direction: column; /*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
  justify-content: space-between; /*並びかたの種類の指定*/
  background: #000;
}
/*バー１本あたりの設定*/
#menubar_hdr span {
  display: block;
  transition: 0.3s; /*アニメーションにかける時間。0.3秒。*/
  border-top: 1.5px solid #FFF; /*線の幅、線種、色*/
}
/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
  background: #000;
}
/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1), #menubar_hdr.ham span:nth-of-type(3) {
  transform-origin: center center; /*変形の起点。センターに。*/
  width: 20px; /*バーの幅*/
  border-color: #fff; /*線の色だけ上書き*/
}
/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1) {
  transform: rotate(45deg) translate(3.8px, 5px); /*回転45°と、X軸Y軸への移動距離の指定*/
}
/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3) {
  transform: rotate(-45deg) translate(3.8px, -5px); /*回転-45°と、X軸Y軸への移動距離の指定*/
}
/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2) {
  display: none; /*２本目は使わないので非表示*/
}
/*main
---------------------------------------------------------------------------*/
/*h2(見出し)要素*/
main h2 {
  font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
  font-size: 2.7rem; /*文字サイズ。基準の3倍の大きさに。*/
  letter-spacing: 0.1em; /*文字間隔を少しだけ広く*/
  color: var(--primary-color); /*文字色。css冒頭で指定しているprimary-colorを読み込む*/
}
/*bg1背景の上でのh2*/
.bg1 h2 {
  color: var(--primary-inverse-color); /*文字色。css冒頭で指定*/
}
/*h2内の小文字部分*/
main h2 .hosoku {
  display: block;
  font-weight: normal;
  font-size: 1.2rem; 
}
/*h3(見出し)要素*/
main h3 {
  /*display: inline-block;*/
  border-bottom: 3px solid var(--text-color); /*下線の幅、線種、色はcss冒頭で指定*/
  font-size: 1.4rem;
  margin: 3rem 0;
}
/*h4(見出し)要素*/
main h4{
  font-size: 1.2rem; 
}
/*2カラム
---------------------------------------------------------------------------*/
.main-contents {
  margin-bottom: 5rem; /*ボックスの下に空けるスペース。subとの間の余白。5文字分。*/
}
/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
  /*カラムで使う為の指定*/
  main.column {
    display: flex; /*横並び*/
    justify-content: space-between; /*並びかたの種類の指定*/
    gap: 2rem; /*main-contentsとsub-contentsの間のマージン的な隙間*/
  }
  /*main-contentsブロック*/
  .main-contents {
    margin-bottom: 0;
    order: 2; /*並び順。数字の小さい順番に表示。*/
    flex: 1;
  }
  /*sub-contentsブロック共通*/
  .sub-contents {
    width: 230px; /*幅*/
  }
  /*1つ目のsub-contents*/
  .sub-contents:nth-child(2) {
    order: 1; /*並び順。数字の小さい順番に表示。*/
  }
  /*2つ目のsub-contents*/
  .sub-contents:nth-child(3) {
    order: 3; /*並び順。数字の小さい順番に表示。３番目という意味なので一番右側に表示。*/
  }
} /*追加指定ここまで*/
/*サブコンテンツ設定
---------------------------------------------------------------------------*/
/*サブコンテンツ内のh3要素(見出し)*/
.sub-contents h3 {
  display: block;
  margin: 0;
  text-align: center; /*テキストをセンタリング*/
  border-radius: 5px 5px 0px 0px; /*角を丸くする指定。左上、右上、右下、左下の順番。*/
  border: 1px solid #ccc; /*下線の幅、線種、色*/
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.03)); /*背景グラデーション。transparentは透明の事。0,0,0は黒の事で0.03は色が3%出た状態。*/
  padding: 0.5rem 0; /*上下、左右への見出し内の余白*/
}
/*サブメニュー設定
---------------------------------------------------------------------------*/
/*サブメニューブロック全体*/
.submenu {
  padding: 0;
  margin: 0 0 1rem; /*上、左右、下へのマージン*/
}
/*メニュー１個あたり*/
.submenu a {
  display: block;
  text-decoration: none;
  padding: 0.2rem 1rem; /*上下、左右へのメニュー内の余白*/
}
/*メニュー１個あたり（子メニュー以外）*/
.submenu > li {
  border: 1px solid #ccc; /*枠線の幅、線種、色*/
  border-top: none; /*上の線だけなくす*/
}
/*子メニュー*/
.submenu li li a {
  padding-left: 2rem; /*左に余白を空ける*/
}
/*h3見出しの下にサブメニューが続く場合にメニューの上の線をなくす*/
.sub-contents h3 + nav .submenu {
  border-top: none;
}
/*フッターメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#footermenu {
  margin: 0 !important;
  padding: 20px; /*ブロック内の余白*/
  text-align: center; /*テキストを中央に*/
  font-size: 0.8rem; /*文字サイズ。bodyのfont-sizeの80%。*/
}
/*メニュー１個あたり*/
#footermenu li {
  display: inline-block; /*簡易的に横並び*/
  padding: 0 10px; /*上下、左右への余白*/
}
/*フッターリンク
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#footerlink {
  margin: 0 !important;
  padding: 20px; /*ブロック内の余白*/
  text-align: center; /*テキストを中央*/
}
/*メニュー１個あたり*/
#footerlink li {
  display: inline-block; /*簡易的に横並び*/
  padding: 0 5px; /*上下、左右への余白*/
}
/*メニュー１個あたり*/
#footerlink li img {
  width: 300px;
  padding-bottom: 3px;
}
/*フッターSNS
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#footersns {
  margin: 0 !important;
  padding: 20px; /*ブロック内の余白*/
  text-align: center; /*テキストを中央に*/
}
/*メニュー１個あたり*/
#footersns li {
  display: inline-block; /*簡易的に横並び*/
  padding: 0 5px; /*上下、左右への余白*/
}
/*メニュー１個あたり*/
#footersns li img {
  width: 50px;
  padding-bottom: 1px;
}
/*フッター設定
---------------------------------------------------------------------------*/
footer small {
  font-size: 100%;
}
footer {
  font-size: 0.7rem; /*文字サイズ。bodyのfont-sizeの70%。*/
  text-align: center; /*内容をセンタリング*/
  padding: 20px; /*ボックス内の余白*/
}
/*リンクテキスト*/
footer a {
  color: inherit;
  text-decoration: none;
}
/*著作部分*/
footer .pr {
  display: block;
}
/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/* 初期状態でテキストを非表示 */
.fade-in-text {
  visibility: hidden;
}
/* アニメーションを適用するクラス。
animationの行の「0.05s」が文字の出現のなめらかさで、大きいほどなめらかに出る。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.2」で調整。*/
.char {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.05s linear both;
}
/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.new dd {
  padding-bottom: 1rem;
}
/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
  display: inline-block;
  text-align: center;
  line-height: 1.8; /*行間（アイコンの高さ）*/
  border-radius: 3px; /*角を丸くする指定*/
  width: 8rem; /*幅。６文字分。*/
  transform: scale(0.8); /*80%のサイズに縮小*/
  background: #fff; /*背景色*/
  color: #777; /*文字色*/
  border: 1px solid #333;
}
/*icon-bg1*/
.new .icon-bg1 {
  background: #333; /*背景色*/
  color: #fff; /*文字色*/
}
/*icon-bg2*/
.new .icon-bg2 {
  background: #E60016; /*背景色*/
  color: #fff; /*文字色*/
}
/*画面幅700px以上の追加指定*/
@media screen and (min-width:700px) {
  /*ブロック全体*/
  .new {
    display: grid; /*gridを使う指定*/
    grid-template-columns: auto 1fr; /*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
  }
} /*追加指定ここまで*/
/*list-grid1
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-grid1 {
  display: grid;
  color: var(--text-color); /*文字色。css冒頭で指定しているtext-colorを読み込む*/
}
/*ボックス１個あたり*/
.list-grid1 .list {
  display: grid;
}
/*list内の全ての要素のmarginとpaddingを一旦リセット*/
.list-grid1 .list * {
  margin: 0;
  padding: 0;
}
/*ボックス内のp要素*/
.list-grid1 .list p {
  font-size: 0.9rem; /*文字サイズ　90%*/
}
/*画面幅500px以上の追加指定*/
@media screen and (min-width:500px) {
  /*listブロック全体を囲むブロック*/
  .list-grid1 {
    grid-template-columns: repeat(2, 1fr); /*2列指定。4列にしたければrepeat(4, 1fr)とする。*/
    gap: 1rem; /*ブロックの間に空けるマージン的な指定*/
  }
} /*追加指定ここまで*/
/*画面幅800px以上の追加指定*/
@media screen and (min-width:800px) {
  /*listブロック全体を囲むブロック*/
  .list-grid1 {
    grid-template-columns: repeat(2, 1fr); /*3列指定。4列にしたければrepeat(4, 1fr)とする。*/
    gap: 1rem; /*ブロックの間に空けるマージン的な指定*/
  }
} /*追加指定ここまで*/
/*ボックス１個あたり*/
.list-grid1 .list {
  padding: 1rem; /*ボックス内の余白*/
  background: #fff; /*背景色*/
  grid-template-rows: auto 1fr; /*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1); /*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}
/*ボックス内のfigure画像*/
.list-grid1 .list figure img {
  margin-bottom: 0.5rem; /*画像の下に空けるスペース*/
}
/*list-grid2
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-grid2 {
  display: grid;
  color: var(--text-color); /*文字色。css冒頭で指定しているtext-colorを読み込む*/
}
/*ボックス１個あたり*/
.list-grid2 .list {
  display: grid;
}
/*list内の全ての要素のmarginとpaddingを一旦リセット*/
.list-grid2 .list * {
  margin: 0;
  padding: 0;
}
/*ボックス内のp要素*/
.list-grid2 .list p {
  font-size: 0.9rem; /*文字サイズ　90%*/
}
/*画面幅500px以上の追加指定*/
@media screen and (min-width:500px) {
  /*listブロック全体を囲むブロック*/
  .list-grid2 {
    grid-template-columns: repeat(2, 1fr); /*2列指定。4列にしたければrepeat(4, 1fr)とする。*/
    gap: 1rem; /*ブロックの間に空けるマージン的な指定*/
  }
} /*追加指定ここまで*/
/*画面幅800px以上の追加指定*/
@media screen and (min-width:800px) {
  /*listブロック全体を囲むブロック*/
  .list-grid2 {
    grid-template-columns: repeat(3, 1fr); /*3列指定。4列にしたければrepeat(4, 1fr)とする。*/
    gap: 1rem; /*ブロックの間に空けるマージン的な指定*/
  }
} /*追加指定ここまで*/
/*ボックス１個あたり*/
.list-grid2 .list {
  padding: 1rem; /*ボックス内の余白*/
  background: #fff; /*背景色*/
  grid-template-rows: auto 1fr; /*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
  /*box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1); */ /*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}
/*ボックス内のfigure画像*/
.list-grid2 .list figure img {
  margin-bottom: 0.5rem; /*画像の下に空けるスペース*/
}
/*list-grid3
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-grid3 {
  display: grid;
  color: var(--text-color); /*文字色。css冒頭で指定しているtext-colorを読み込む*/
}
/*ボックス１個あたり*/
.list-grid3 .list {
  display: grid;
}
/*list内の全ての要素のmarginとpaddingを一旦リセット*/
.list-grid3 .list * {
  margin: 0;
  padding: 0;
}
/*ボックス内のp要素*/
.list-grid3 .list p {
  font-size: 0.9rem; /*文字サイズ　90%*/
}
/*画面幅500px以上の追加指定*/
@media screen and (min-width:500px) {
  /*listブロック全体を囲むブロック*/
  .list-grid3 {
    grid-template-columns: repeat(2, 1fr); /*2列指定。4列にしたければrepeat(4, 1fr)とする。*/
    gap: 1rem; /*ブロックの間に空けるマージン的な指定*/
  }
} /*追加指定ここまで*/
/*画面幅800px以上の追加指定*/
@media screen and (min-width:800px) {
  /*listブロック全体を囲むブロック*/
  .list-grid3 {
    grid-template-columns: repeat(2, 1fr); /*3列指定。4列にしたければrepeat(4, 1fr)とする。*/
    gap: 1rem; /*ブロックの間に空けるマージン的な指定*/
  }
} /*追加指定ここまで*/
/*ボックス１個あたり*/
.list-grid3 .list {
  padding: 1rem; /*ボックス内の余白*/
  background: #fff; /*背景色*/
  grid-template-rows: auto 1fr; /*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1); /*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}
/*ボックス内のfigure画像*/
.list-grid3 .list figure img {
  margin-bottom: 0.5rem; /*画像の下に空けるスペース*/
}

/*ボタン（btnと、btn-border-radius）
---------------------------------------------------------------------------*/
/*ボタン共通*/
.btn {
  display: block;
  text-decoration: none;
  font-size: 1rem;
  text-align: center; /*テキストをセンタリング*/
  background: var(--primary-color) !important; /*背景色。css冒頭で指定しているprimary-colorを読み込む*/
  color: var(--primary-inverse-color) !important; /*文字色。css冒頭で指定しているprimary-inverse-colorを読み込む*/
  padding: 0.5rem !important; /*ボタン内の余白*/
  margin-top: 1rem !important;
}
.btn-border-radius a {
  display: block;
  text-decoration: none;
  font-size: 1rem;
  text-align: center; /*テキストをセンタリング*/
  background: var(--primary-color) !important; /*背景色。css冒頭で指定しているprimary-colorを読み込む*/
  color: var(--primary-inverse-color) !important; /*文字色。css冒頭で指定しているprimary-inverse-colorを読み込む*/
  padding: 0.5rem !important; /*ボタン内の余白*/
  margin-top: 1rem !important;
}
/*ボタン共通（マウスオン時に少し明るくする）*/
.btn a:hover, .btn-border-radius a:hover {
  filter: brightness(1.2);
}
/*btn-border-radiusの上書き*/
.btn-border-radius a {
  display: inline-block;
  padding: 0.5rem 2rem !important; /*ボタン内の余白*/
  border-radius: 0px; /*角丸の指定。適当に大きければOK。*/
  background: #000 !important;
}
/*bg1背景色がついたブロック
---------------------------------------------------------------------------*/
.bg1 {
  position: relative;
  background: var(--primary-color); /*背景色。css冒頭で指定しているprimary-colorを読み込む*/
  color: var(--primary-inverse-color); /*文字色。css冒頭で指定しているprimary-inverse-colorを読み込む*/
  padding-top: 5vw; /*ボックス内の上に空ける余白。調整可。*/
  padding-bottom: 5vw; /*ボックス内の下に空ける余白。調整可。*/
  margin-top: 10vw; /*ボックス外の上に空ける余白。調整可。*/
  margin-bottom: 10vw; /*ボックス外の下に空ける余白。調整可。*/
  /*以下は変更不要*/
  margin-left: calc(-1 * var(--global-space));
  margin-right: calc(-1 * var(--global-space));
  padding-left: var(--global-space);
  padding-right: var(--global-space);
}
.bg1 a {
  color: inherit;
  display: flex;
}
/*以下のheightの行が傾斜の角度。vwという単位は画面幅に対してで、画面幅100%＝100vwになります。
つまり、画面幅に対して常に同じ傾斜具合になります。1pxの数字は時々隙間が発生するのでそれを防ぐ為の措置。
傾斜（height）を変更したい場合は、下にある「.bg1::before」のtopと「.bg1::after」のbottomの数字も変更。*/
.bg1::before, .bg1::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(5vw + 1px);
  background: var(--primary-color); /*背景色。css冒頭で指定しているprimary-colorを読み込む*/
}
.bg1::before {
  top: -5vw; /*上の、heightの「5vw」と数字を揃えて先頭にマイナスをつける*/
  clip-path: polygon(0 100%, 100% 0, 100% 100%); /*三角形の形を作っています*/
}
.bg1::after {
  bottom: -5vw; /*上の、heightの「5vw」と数字を揃えて先頭にマイナスをつける*/
  clip-path: polygon(0 0, 100% 0, 0 100%); /*三角形の形を作っています*/
}
/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.thumbnail-view-parts {
  max-width: 1000px; /*最大幅*/
  margin: 0 auto 1rem; /*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
  text-align: center; /*画像が小さい場合でもセンタリングされるように*/
}
/*サムネイル全体を囲むブロック*/
.thumbnail-parts {
  display: flex; /*flexを使う指定*/
  justify-content: center; /*並びかたの種類の指定。これはセンタリングする指定。*/
  margin-bottom: 2rem; /*下に空けるスペース。２文字分。*/
}
/*サムネイル画像*/
.thumbnail-parts img {
  width: 100px; /*サムネイルの幅*/
  margin: 2px; /*サムネイル間のスペース*/
  cursor: pointer; /*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインター*/
  transition: 0.3s; /*マウスオンまでにかける時間。3秒。*/
}
.thumbnail-parts img:hover {
  opacity: 0.8; /*マウスオン時に80%だけ色を出す。薄くなる。*/
}
/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
  font-weight: bold; /*太字に*/
  padding: 0.5rem 1rem; /*ボックス内の余白*/
  background: #333; /*背景色*/
  color: #fff; /*文字色*/
  margin-bottom: 1rem; /*下に空けるスペース*/
  border-radius: 5px; /*角を丸くする指定*/
}
/*ta1テーブルブロック設定*/
.ta1 {
  table-layout: fixed;
  border-top: 1px solid #333; /*テーブルの一番上の線。幅、線種、色*/
  width: 100%; /*幅*/
  margin-bottom: 2rem; /*テーブルの下に空けるスペース。2文字分。*/
}
/*tr（１行分）タグ設定*/
.ta1 tr {
  border-bottom: 1px solid #333; /*テーブルの下線。幅、線種、色*/
}
/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
  padding: 0.5rem; /*ボックス内の余白*/
  word-break: break-all; /*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合がある。*/
}
/*th（左側）のみの設定*/
.ta1 th {
  /*width: 50%; 
  text-align: left; */
  background: #eee;
}
/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
  /*th（左側）のみの設定*/
  /*
  .ta1 th {
    width: 50%; 
  }*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
  display: block;
}
/*ボタンの設定*/
.pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  z-index: 99;
  position: fixed; /*スクロールに追従しない(固定で表示)為の設定*/
  right: 20px; /*右からの配置場所指定*/
  bottom: 20px; /*下からの配置場所指定*/
  color: #fff; /*文字色*/
  font-size: 1rem; /*文字サイズ*/
  background: rgba(0, 0, 0, 0.8); /*背景色*/
  width: 50px; /*幅*/
  line-height: 50px; /*高さ*/
  border-radius: 0%; /*円形*/
}
/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.color-check, .color-check a {
  color: #E60016 !important;
}
.l {
  text-align: left !important;
}
.c {
  text-align: center !important;
}
.r {
  text-align: right !important;
}
.ws {
  width: 95%;
  display: block;
}
.wl {
  width: 95%;
  display: block;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.look {
  display: inline-block;
  padding: 0px 10px;
  background: #eee;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 5px 0;
  word-break: break-all;
}
.small {
  font-size: 0.75em;
}
.large {
  font-size: 2em;
  letter-spacing: 0.1em;
}
.pc {
  display: none;
}
.dn {
  display: none !important;
}
.block {
  display: block !important;
}
/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
  .ws {
    width: 48%;
    display: inline;
  }
  .sh {
    display: none;
  }
  .pc {
    display: block;
  }
} /*追加指定ここまで*/
/*Googleマップ
---------------------------------------------------------------------------*/
.map_bg {
  background-color: #000;
}
.map_mat {
  margin: 0.5em !important;
  width: 100% !important;
  font-weight: bold;
  padding: 0.8em 1em 0.8em 1em;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-size: 0.9em;
  text-align: center;
}


/*パーツ
---------------------------------------------------------------------------*/
.space-top{
    margin-top: 5rem;
    }
.lineup li{
    margin: 0px !important;
    }
.lineup-items {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3,1fr);
    list-style: none;
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 1080px) {
    .lineup-items {
        gap:20px
    }
}

@media only screen and (max-width: 782px) {
    .lineup-items {
        grid-template-columns:repeat(2,1fr);
        margin: 30px 0
    }
}

@media only screen and (max-width: 480px) {
    .lineup-items {
             grid-template-columns:repeat(2,1fr);
        /*grid-template-columns:1fr*/
    }
}

.lineup-item-link {
    border-radius: 20px;
    display: block;
    overflow: hidden;
    position: relative
}

@media only screen and (max-width: 1080px) {
    .lineup-item-link {
        border-radius:10px
    }
}

.lineup-item-link:before {
    content: "";
    display: block;
    padding: 133.3333333333% 0 0
}

.lineup-item-link img {
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0;
    transition: transform .3s;
    width: 100%
}

.lineup-item-link:hover img {
    transform: scale(1.1)
}

.lineup-item-link span {
    bottom: 85px;
    color: #fff;
    font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    left: 50%;
    padding: 0 20px;
    position: absolute;
    text-align: center;
    transform: translate(-50%);
    width: 100%;
    z-index: 0;
    text-shadow: 0px 0px 5px #000, 0 0 15px #000;
    line-height: 1.5;
}

@media only screen and (max-width: 1080px) {
    .lineup-item-link span {
    font-size: 1.5rem;
    }
}

@media only screen and (max-width: 960px) {
    .lineup-item-link span {
        bottom:40px
    }
}

/*リンクボタン
---------------------------------------------------------------------------*/
.lineup-btn{
margin-bottom: 3rem;
}

/* ボタンのスタイル */
.btn2 a {
    border: solid 2px #c73600;
    background: #c73600;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 250px;
    padding: 10px 25px;
    font-family: "Noto Sans Japanese";
    color: #fff;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;

}
.btn2 a:hover {
    background: #fff;
    color: #c73600;
}
.btn2 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.btn2 a:hover:after {
    border-color: #c73600;
}