@charset "utf-8";



/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


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


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #010019;			/*テンプレートのテーマカラー*/
	--primary-inverse-color: #ddd;		/*上のprimary-colorの対となる色*/

	--secondary-color: #010019;			/*テンプレートのサブカラー*/
	--secondary-inverse-color: #ddd;	/*secondary-colorの対となる色*/
	
	--accent-color: #c43311;			/*テンプレートのアクセントカラー*/
	--accent-inverse-color: #ddd;		/*accent-colorの対となる色*/

	/*余白の一括管理用。主に左右の余白に使っています。4rem＝4文字分。*/
	--content-space: 2.5rem;
	
	/*フォントファミリー 英語セリフ*/
  --font-eng-serif: "the-seasons", serif;
  --font-jpn-mincho: "fot-tsukumin-pr6n", serif;
}


/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	font-size: 14px;	/*基準となるフォントサイズ。*/
  overflow-x: hidden;
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	html, body {
		font-size: 15px;	/*基準となるフォントサイズ。*/
	}

	}/*追加指定ここまで*/


body {
  margin: 0;
  padding: 0;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
  -webkit-text-size-adjust: none;
/*  background: var(--secondary-color);	背景色*/
  background: linear-gradient(#3c0000, 1%, var(--secondary-color));
  color: var(--primary-inverse-color);		/*文字色*/
  line-height: 2;		/*行間*/
  overflow-x: hidden;
}


#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    text-align: center;
}
#loading img{
  width: 30vw;
  margin: 0 auto;
}
#container {
    opacity: 0;
    transition: opacity 1s ease;
}

/* スマホ時での2階タップしないとリンクが飛ばない問題を解決 */
@media (min-width: 1px) and (max-width: 600px) {
  a:hover {
    opacity: 1;
  }
}


/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}

/*section*/
section {
	padding: var(--content-space);	/*section内の余白。css冒頭のcontent-spaceを読み込みます。*/
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
  opacity: 1;
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	position: relative;
	animation: opa1 1s 1s both;	/*1秒待機し、1秒かけてフェードイン*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0 auto;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding: 1rem var(--content-space);		/*ヘッダー内の余白。上下に１文字分、左右についてはcss冒頭のcontent-spaceを読み込みます。*/
	color: #fff;		/*文字色*/
	position: absolute;
	width: 100%;
}
header a {color: inherit;}

/*ロゴ*/
#logo a {text-decoration: none;}
#logo img {
	display: block;
	width: 220px;	/*ロゴの幅*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*ヘッダーブロック*/
	header {
		display: flex;	/*中のコンテンツを横並びにする*/
		justify-content: space-between;
		gap: 2rem;	/*中のコンテンツ同士に空けるマージン的な余白。*/
		align-items: center;
	}

	}/*追加指定ここまで*/


/*header-box（ヘッダー右側にあるボタン）
---------------------------------------------------------------------------*/
/*ボックス全体*/
#header-box * {margin: 0;padding: 0;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
    #header-box {
      margin-right: 30px;	/*ハンバーガーアイコンと重ならないように適当な余白*/
    }
	}/*追加指定ここまで*/

/*ボタンが入ったボックス*/
#header-box .btn {
	list-style: none;
	display: flex;
	gap: 1rem;	/*ボタン同士の間に空けるスペース。１文字分。*/
}


/*ボタンが入ったボックス*/

/*メニュー１個あたり（ここにない設定は、下の方にある「btn共通設定」にあります。）*/
#header-box .btn a {
	display: block;text-decoration: none;
	padding: 0.5rem 2rem;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px;		/*角を少し丸くする*/
}

/*ボタンに使用しているアイコン*/
#header-box .btn i {
	margin-right: 1rem;		/*アイコンの右側に１文字分のスペースを空ける*/
	transform: scale(1.4);	/*アイコンサイズを140%に。*/
}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {

	/*ボタンが入ったボックス*/
	#header-box .btn {
		display: inline-block;
	}
	
	/*ボタン１個あたり*/
	#header-box .btn li {
		margin-bottom: 0.5rem;
	}

	}/*追加指定ここまで*/


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
#menubar {
  animation: animation1 0.2s both;
  position: fixed;
  overflow: auto;
  z-index: 100;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 50px var(--content-space) 50px;		/*ブロック内の余白。上に100px、左右についてはcss冒頭のcontent-spaceを読み込む、下に50px。*/
  background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
  color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
  opacity: 0.9;
}

/*メニュー１個あたり*/
#menubar .gnav a {
	display: block;text-decoration: none;
	color: inherit;
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける。メニュー同士の間隔です。*/
	padding: 1rem 2rem;		/*メニュー内の余白。上下に１文字分、左右に２文字分。*/
  margin-top: 0px;
  z-index: 200;
}
#menubar .gnav a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

#menubar img{
  margin-left: auto;
  margin-right: auto;
  width: 70vw;
  max-width: 700px;
  display: block;
  margin-top: -100px;
  margin-bottom: 0px;
  z-index: 50;
}
	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: flex;
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	width: 70px;	/*ボタンの幅*/
	height: 70px;	/*ボタンの高さ*/
	background: #000;	/*ボタン色*/
	border-radius: 0px 0px 0px 20px;	/*角を丸くする指定。左上、右上、右下、左下の順番。この場合は左下だけ角を丸くする。*/
	transform-origin: right top;
	transform: scale(1);	/*大きさを調整したい場合はここの「1」を変更します。1.2や0.7など。*/
}

/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
	background: #ff0000;
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	width: 35px;
	height: 2px;		/*線の高さ*/
	background: #fff;	/*線の色*/
	transition: 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}

/* ハンバーガーメニュー展開時 */
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}


/*ヘッダーにある１行のお知らせ
---------------------------------------------------------------------------*/
.new-top * {margin: 0;padding: 0;}

/*ブロック全体*/
.new-top {
  position: absolute;
  top: 85vh;	/*上から80%の場所に配置*/
  z-index: 1;
  width: 80vw;	/*幅は80%*/
  margin-left: 10vw;	/*左に10%空ける*/
  display: flex;
  align-items: center;
  padding: 1rem;	/*ボックス内の余白。1文字分。*/
  background: #fff9;	/*背景色。*/
  border-radius: 5px;	/*角を丸くする*/
  color: rgba(0,0,0,1.00);
}

/*マウスオン時に透明度を80%に*/
.new-top a:hover {
	opacity: 0.8;
}

/*「お知らせ」の見出し*/
.new-top h2 {
	font-size: 1rem;
	font-weight: normal;
	background: #555;	/*背景色*/
	color: #fff;		/*文字色*/
	border-radius: 3px;	/*角を少しだけ丸く*/
	margin-right: 1rem;	/*右に空けるスペース。テキストブロックとの間に空けるスペースです。*/
	padding: 0 1rem;	/*見出し内の余白。上は0で、左右に１文字分。*/
}

/*テキストのブロック*/
.new-top .text {
	flex: 1;
	
	/*以下4行は、末尾を...として１行にまとめる為のスタイル*/
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*ブロック右側にある「一覧」*/
.new-top .new-list {
	align-self: flex-end;
}



/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
#news{
}

/* お知らせ全体のコンテナ */
#news-container {
  border-top: 1px solid #ccc;
}

#news h2{
  margin-bottom: 0;
}

#news h3{
  font-size: 1rem;
  color: var(--primary-inverse-color);
  opacity: .6;
  margin-bottom: 3rem;

  
}
/* お知らせ一行ずつのスタイル（aタグ） */
.news-item {
  display: flex;
  padding: 15px 10px;
  border-bottom: 1px solid #ccc;
  text-decoration: none;
  color: var(--primary-inverse-color);;
  transition: color 0.2s;
}

/* マウスが乗った時のスタイル */
.news-item:hover {
  color: var(--accent-color);;
}

/* 各パーツのスタイル */
.news-date {
  width: 120px;
}

.news-category {
  width: 100px;
  text-align: center;
}

.news-title {
  flex: 1; /* 残りの幅をすべて使う */
  padding-left: 20px;
}






/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツブロック*/
#contents {
	flex: 1;
}

/*トップページ以外のコンテンツ*/
body:not(.home) #contents {
	padding-top: 10rem;		/*上に10文字分の余白を空ける*/
	padding-bottom: 10rem;	/*下に10文字分の余白を空ける*/
}

/*コンテンツ内で使用するul,ol要素（リストタグ）*/
#contents ul,#contents ol {
/*	margin-left: 2rem;*/
/*	margin-right: 2rem;*/
}


/*p要素（段落タグ）
---------------------------------------------------------------------------*/
p {
	margin-left: 1rem;	/*左に１文字分のスペース*/
	margin-right: 1rem;	/*右に１文字分のスペース*/
}


/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
  margin: 0;
  padding: 0;
  font-size: 3.5rem;		/*文字サイズ。240%。*/
  font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
  margin-bottom: 3rem;		/*下にスペースを空ける*/
  display: flex;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  flex-direction: column-reverse;
  align-items: flex-start;
  font-family: var(--font-jpn-mincho);
  line-height: 5rem;
}

/*見出し内のspan（小さな装飾文字と上部のアクセントライン）*/
main h2 span.small {
	display: inline-block;
	border-top: 2px solid var(--primary-color);	/*上の線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
	font-size: 0.9rem;		/*文字サイズ90%*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	padding-top: 2rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
}

/*見出しをセンタリングする場合*/
main h2.c {
	align-items: center;
}

main section:first-child{
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;

}



/*2カラムブロック　※900px未満では１カラム（私たちのこだわりブロック）
---------------------------------------------------------------------------*/
.list-half * {margin: 0;padding: 0;}

/*背景画像*/
#concept-top {
  margin-bottom: 0px;
}

#concept-top > div{
    margin-top: -10vh;

}
#concept-top h4 {
  font-size: 3rem;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.4rem;
  font-family: var(--font-jpn-mincho);
}
#concept-top p{
  font-size: 1.5rem;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.2rem;
  margin-left: 0px;
  margin-right: 0px;
  line-height: 3.5rem;
}

/*画面幅900px以下の追加指定*/
@media screen and (max-width:500px) {
  #concept-top p{
    font-size: 1.3rem
  }
}

.concept-ttl{
  
}

.concept-ttl h3{
  font-size: 2.7rem;
  font-family: var(--font-jpn-mincho);
}
.concept-ttl p{
  font-size: 1.1rem;
  margin-right: auto;
  margin-left: 0;
  width: 100%;
  max-width: 800px;
  letter-spacing: 0.1rem;
}

#statement{
  background-image: url("../images/bg-photo_sp.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  }

#statement-shime{
  width: 300px;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
  .concept-ttl h3{
  text-align: center;
  }
  .concept-ttl p{
  font-size: 1.1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 900px;
  text-align: center;
  }

  #statement{
  background-image: url("../images/bg-photo.png");
  }

  #statement-shime{
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  }
}


#concept section{
  padding-left: 0px;
  padding-right: 0px;
}



/* 一番上のロゴと被らないように下にずらず。 */
main > section:first-child{
  background: url("../images/bg-concept.png") no-repeat left top / 500px;
  padding-top:   15rem;
  margin-bottom: 10rem;
  
}


#statement h2 {
  font-size: 3rem;		/*文字サイズ。240%。*/
  font-weight: bold;	/*h要素のデフォルトの太字を標準に*/
  margin-bottom: 5vw;		/*下にスペースを空ける*/
  display: block;
  flex-direction: column-reverse;
  align-items: flex-start;
  text-align: center;
  letter-spacing: 0.4rem;
  font-feature-settings: "palt";
}

#statement p{
  line-height: 3.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}



#faq h3,
#flow h3, 
#mysteries h3, 
#faq h3, 
#access h3{
  font-size: 1.2rem;
  margin-top: 50px;
  margin-bottom: 10px;
}

/*google マップ*/
.google-map iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  height: 400px;
  max-width: 800px;
}


/*２カラムを囲むブロック*/
.list-half .list {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	margin-bottom: 2rem;	/*ボックスの下に2文字分のスペースを空ける*/
}

/*ブロック内のh4見出し*/
.list-half .list h4 {
	font-size: 2.0rem;	
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
}

/*ブロック内のh4内のspan（小さな装飾文字）*/
.list-half .list h4 span {
	display: block;
	opacity: 0.5;	/*透明度50%*/
	font-weight: normal;
	font-size: 0.5em;	/*文字サイズを親要素の50%*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広く*/
}

/*画像ブロック共通*/
.list-half .image-l img, .list-half .image-r img {
	border-radius: 50px;	/*角を丸くする指定。*/
	box-shadow: 10px 10px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*２カラムを囲むブロック*/
	.list-half .list {
		flex-direction: row;			/*子要素を横並びにする*/
		justify-content: space-between;	/*並びかたの種類の指定*/
		align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	}

	/*画像ブロック共通*/
	.list-half .image-l, .list-half .image-r {
		width: 50%;			/*画像の幅*/
	}

	/*画像を右に配置する場合*/
	.list-half .image-r {
		margin-left: 2rem;	/*画像の左側に空けるスペース*/
	}

	/*画像を左に配置する場合*/
	.list-half .image-l {
		order: -1;
		margin-right: 2rem;	/*画像の右側に空けるスペース*/
	}

	/*テキストブロック*/
	.list-half .text {
		flex: 1;
	}

	}/*追加指定ここまで*/


/*（とは）
---------------------------------------------------------------------------*/
#top-about{
    font-size: 1.2rem;
}





/*（イントロ）
---------------------------------------------------------------------------*/
#intro-top{
  margin-bottom: 50px;  
}

#intro-top .list-grid2 {
  display: grid;
}

#intro-top .list-grid2 div {
  background-color: rgba(67,0,28,.5);
  height:90%;
  margin-top: 4rem;  /* 背景のカラーをずらす */
  margin-bottom: 0rem;
  margin-left: 0px;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}




#intro-top .numicon {
  font-family: var(--font-eng-serif);
  letter-spacing: 0.2rem;
  line-height: 1;
  font-size: 5rem;
  font-weight: bold;
  color: var(--primary-inverse-color);
  position: relative;
  margin-bottom: 0;
  text-align: center;
  margin-top: -3rem;/* 背景のカラーを下にずらしたのであげる */
}

#intro-top .numicon::before {
  content: 'point';
  font-size: 0.3em;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 1px;
}

#intro-top h3{
  text-align: center;
  color: var(--accent-color);
  font-size: 2rem;
  font-family: var(--font-jpn-mincho);
  font-feature-settings: "palt";
  letter-spacing: 0.3rem;
}

#intro-top p{
  font-size: 1.2rem;
}

#intro-top section{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
  padding-left: 0px;
  padding-right: 0px;
}

#intro-top img{
  width: 100%;
  margin-top: 10rem;
  margin-bottom: 5rem;
}

/*画面幅800px以上の追加指定*/
@media screen and (min-width:1000px) {

  /*ブロック全体を囲むブロック*/
  #intro-top .list-grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
    gap: 1rem	/*ブロックの間に空けるマージン的な指定。２文字分。*/;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  #intro-top img{
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

}/*追加指定ここまで*/







/*list-grid7（サービス紹介ブロック）
---------------------------------------------------------------------------*/
#monogatari .list-grid7 .list * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
#monogatari .list-grid7 .list {
  display: grid;
  position: relative;
  padding: rem;			/*ボックス内の余白。２文字分。*/
  margin-bottom: 2rem;
  transition: .3s;
  background-color: transparent;
}

#monogatari .list-grid7 .list:hover {
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}




	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*ブロック全体を囲むブロック*/
	.list-grid7 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem	/*ブロックの間に空けるマージン的な指定。２文字分。*/
	}
    
	}/*追加指定ここまで*/



/*物語一覧 ミステリー
---------------------------------------------------------------------------*/
#mysteries{
}

#mysteries p{
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}

#mysteries h3{
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}

#monogatari-shosai{
  max-width: 100vw;
}

#monogatari-shosai section{
  padding-left: 0px;
  padding-right: 0px;
}

#monogatari-shosai p{
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}

#monogatari-shosai #story,
#monogatari-shosai #highlights{
  padding-left: 0px;
  padding-right: 0px;
}

#monogatari-shosai #info{
  margin-top: 100px;
  padding-left: 0px;
  padding-right: 0px;
}

#monogatari-shosai #info h3{
  text-align: center;
  font-size: 3rem;
  font-family: var(--font-eng-serif);
  letter-spacing: 0.4rem;
}


/* テーブル */
#monogatari-shosai #info table {
  margin-left: auto;
  margin-right: auto;
  line-height: 1rem;
  }

/* テーブルのヘッダーセルとデータセルのスタイル */
#monogatari-shosai #info th, td {
  /* [disabled]border: 1px solid #ccc; */ /* 罫線 */
  padding-top: 6px;
  padding-bottom: 7px;
  text-align: left;
  vertical-align: top; /* セル内のテキストを上揃えにする */
  line-height: 1.4rem;
}

/* テーブルのヘッダーセルのスタイル */
#monogatari-shosai #info th {
width: 20%; /* ヘッダー列の幅を固定 */
font-weight: bold;
}

/* 注釈のスタイル */
#monogatari-shosai #info .note {
  display: block; /* ブロック要素にして改行させる */
  margin-top: 3px;
  font-size: 0.9rem;
  color: #888;
}
/* テーブル終わり */

#monogatari-shosai #caution{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block; /* ブロック要素にして改行させる */
  padding-left: 0px;
  padding-right: 0px;
}

#monogatari-shosai #caution h4{
  font-size: 1.1em;
}

#monogatari-shosai #caution p{
  font-size: 0.9em;
  line-height: 1.3rem;
}

#story h3,
#highlights h3{
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}

#story h3 img,
#highlights h3 img{
  margin-left: auto;
  margin-right: auto;
  width: 70vw;
  display: block;
}

#story p,
#highlights p{
  text-align: center;
  font-size: 1.2rem;
  line-height: 3rem;
}

#highlights section{
  margin-bottom: 80px;
}

#highlights section img{
  width: 100%;
}

#highlights section h4{
  font-family: var(--font-jpn-mincho);
  font-size: 2rem;
  margin-bottom: 0px;
}

#highlights section p{
  line-height: 1.7rem;
  text-align: left;
}

.mono-header{
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
  display: block;
}




	/*画面幅800px以上の追加指定*/
@media screen and (min-width:600px) {

#story ,
#highlights{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

#story h3,#highlights h3{
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}

#story h3 img, 
#highlights h3 img{
  margin-left: auto;
  margin-right: auto;
  width: 50vw;
  display: block;
}
#monogatari-shosai #caution{
  max-width: 600px;  
}
  

#highlights section{
  clear: both;  
}

#highlights section img{
  width: 40%;
  float: left;
  margin-right: 2rem;
}

#highlights section:nth-child(odd) img{
  width: 40%;
  float: right;
  margin-right: 2rem;
}



  
  
}/*追加指定ここまで*/








/*フィルターブロック
---------------------------------------------------------------------------*/
.mys-filter{
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
.mys-filter img {
  display: block;
  width: 100%;
}
.mys-filter ol {
  list-style: none;
}
.mys-filter a {
  text-decoration: none;
}
.mys-filter input[type="radio"] {
  position: absolute;
  left: -9999px;
}
.mys-filter .filters {
  text-align: center;
  margin-bottom: 2rem;
}
.mys-filter .filters * {
  display: inline-block;
}
.mys-filter .filters label {
  text-align: center;
  padding: 0.25rem 1rem;
  margin-bottom: 0.25rem;
  min-width: 50px;
  line-height: normal;
  cursor: pointer;
  transition: all 0.2s;
  color: #999;
}
.mys-filter .filters label:hover {
  background: var(--accent-color);;
  color: #fff;
}
.mys-filter .targets {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.mys-filter .targets .target {
  margin-bottom: 5rem;
}

.mys-filter .targets .target-title {
  font-size: 1.8rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 0;
  margin-left: 0.25rem;
  color: var(--primary-inverse-color);
  line-height: 2.4rem;
  box-sizing: border-box;
  white-space: nowrap;
}

.mys-filter .targets .target-title:hover {
  
}
.mys-filter .targets figcaption {
  font-size: 0.8rem;
}
.mys-filter .targets .target-categories {
  font-size: 0.9rem;
}
.mys-filter .targets .target-categories * {
  display: inline-block;
}
.mys-filter .targets .target-categories li {
  border: 1px solid var(--primary-inverse-color);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 0.4rem;
}
.mys-filter .targets .target-categories a {
  padding: 0.2rem 0.5rem;
  transition: all 0.1s;
  color: var(--accent-color);
}
.mys-filter .targets .target-categories a:hover {
  background: var(--accent-color);
  color: var(--primary-inverse-color);;
}
 
[value="All"]:checked ~ .filters [for="All"],
[value="cat-a"]:checked ~ .filters [for="cat-a"],
[value="cat-b"]:checked ~ .filters [for="cat-b"], 
[value="cat-c"]:checked ~ .filters [for="cat-c"]
{
  background: var(--accent-color);;
  color: #fff;
}

/* メディアクエリ */
@media screen and (max-width: 900px) {
  .mys-filter .targets {
    grid-template-columns: repeat(2, 1fr);
  }
}
 
/* アニメーション */
.checked_animation {
  animation: checked_animation 0.4s ease-in-out both;
}
 
@keyframes checked_animation {
  0% {
  transform: translate(0,  10px);
  filter: blur(30px);
  opacity: 0;
    
  }
  100% {
  transform: translate(0, 0);
  filter: blur(0);
  opacity: 1;
  }
}



/*映像ブロック
---------------------------------------------------------------------------*/
#movie{
  margin-top: 20rem;
  margin-bottom: 10rem;
  padding: 0;
  width: 100%;
}

#movie iframe{
  aspect-ratio: 16/9;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
  display: block;
}



/*アクセスロック
---------------------------------------------------------------------------*/
#access{
}

#access h4{
  margin-bottom: 0px;  
}

#access p{
  margin-top: 0px;
  margin-bottom: 3rem;
}


/*フローブロック
---------------------------------------------------------------------------*/
#flow{
}

.flow_design09 {
  display: flex;
  justify-content: left;
  align-items: left;
}

.flow_design09 ul{
	margin-left: 0!important;
	margin-right: 0!important;  
}

.flow09 {
  padding-left: 0;
  border-bottom: solid 1px #E1E8ED;
}

.flow09 > li {
  list-style-type: none;
  display: flex;
  padding: 20px 0;
  border-top: solid 1px #E1E8ED;
}

.flow09 > li dl dt {
  font-size: 1.2em;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 10px;
}

.flow09 > li .icon09 {
  line-height: 1;
  font-size: 2em;
  font-weight: bold;
  color: var(--primary-inverse-color);
  text-align: center;
  width: 30px;
  position: relative;
  margin-top: 0;
}

.flow09 > li .icon09::before {
  content: 'STEP';
  font-size: 0.3em;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 1px;
}

.flow09 > li .icon09::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #858585;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  margin: auto;
}

.flow09 > li dl dd {
  margin: 0;
}

.flow09 > li dl {
  width: calc(100%);
  margin-top: 0.8em;
}






/*よく頂く質問ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#faq{
}

.faq {
	font-size: 1.2rem;	/*文字サイズ130%*/
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*下線の幅、線種、最後は色の指定で255,255,255は白の事で0.3は色を30%出す指定。*/
}

/*質問*/
.faq dt {
	display: flex;
	align-items: flex-start;
	border-top: 1px solid rgba(255,255,255,0.3);	/*上の幅、線種、最後は色の指定で255,255,255は白の事で0.3は色を30%出す指定。*/
	padding: 1rem;		/*ブロック内の余白。１文字分。*/
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

/*「＋」アイコン（閉じている場合）*/
.faq dt::before {
	content: "＋";	/*アイコン画像の指定*/
	margin-right: 1rem;	/*右側に空けるスペース*/
	flex-shrink: 0;
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	width: 2rem;		/*幅*/
	line-height: 2rem;	/*高さ*/
	text-align: center;
	border-radius: 50%;	/*円形にする*/
	transform: translateY(5px);	/*アイコンの上下バランスの微調整*/
}

/*「ー」アイコン（開いている場合）*/
.faq dt.active::before {
	content: "ー";	/*アイコン画像の指定*/
}

/*回答*/
.faq dd {
  margin: 0 1rem 1rem 4rem;	/*ボックスの外側にとる余白。上、右、下、左への順番。*/
  padding: 1rem 1rem;	/*ボックスの内側の余白。上下に1文字、左右に２文字分。*/
  color: var(--primary-inverse-color);		/*文字色*/
  border-left: 1px solid rgba(255,255,255,1.00);
}




/*お問い合わせブロック、フォームブロック
---------------------------------------------------------------------------*/
#form{

}

#form h3 a{
  color: var(--accent-color);  
}

.form-field{
/*  display: flex;*/
  padding: 10px;
  margin-bottom: 20px;
}


#form .form-field > label{
  width: 15rem;
  padding: 10px;
  display: inline-block;
}

#form .req:after{
  content: " ※";
  color: var(--accent-color);;
}


	/*画面幅800px以上の追加指定*/
@media screen and (min-width:900px) {
  .form-field{
    display: flex;
  }
}


.input-text{
  padding: 1rem;
  border: 1px solid var(--primary-inverse-color);
  background-color: transparent;
  color: var(--primary-inverse-color);
  line-height: 1.7rem;
  width: 100%;
}

.form-radio div{
}

.form-radio div label{
  display: block;
  margin-bottom: 0.7rem;
  margin-left: 0px;
}

.form-radio div label:hover,
.form-radio div input:hover{
  cursor: pointer;
  color: var(--accent-color);
  transition: .3s;
}

.form-field label option{
  font-size: 0.8rem;
  width: 100%;
}

.form-radio input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid var(--primary-inverse-color);;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-radio input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background:  var(--primary-inverse-color);
  content: '';
}

.contact-form .caption{
  text-align: center;
  font-size: 1.2rem;
  margin-top: 5rem;
}

.form-field button{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  width: 100%;
  background-color: var(--accent-color);
  color: var(--primary-inverse-color);
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  border: 1px solid var(--accent-color);
  ;
}
.form-field button:hover{
  background-color: var(--primary-inverse-color);
  color: var(--accent-color);
  transition: 0.5s;
}



/*btn共通設定（ヘッダーと、フッターの上のボックス内にあるボタンの共通設定）
---------------------------------------------------------------------------*/
.btn a {
	display: block;text-decoration: none;
	background: var(--accent-color);	/*背景色。css冒頭のaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	text-align: center;	/*テキストをセンタリング*/
}

/*マウスオン時*/
.btn a:hover {
	background: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	color: var(--accent-color);					/*文字色。css冒頭のaccent-colorを読み込みます。*/
}

.btn-box2 a {
  display: block;
  text-decoration: none;
  background: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
  color: var(--primary-color);					/*文字色。css冒頭のaccent-colorを読み込みます。*/
  text-align: center;	/*テキストをセンタリング*/
  font-size: 1.3rem;
  letter-spacing: 0.3rem;
}

/*マウスオン時*/
.btn-box2 a:hover {
	background: var(--accent-color);	/*背景色。css冒頭のaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
}

.right-pos{
  text-align: right;
  margin-right: 50px;
}


.simple-btn{
  margin-left: 0px;
}

.simple-btn-bg{
  background-color: var(--primary-color);
  width: 25rem;
  margin-left: auto;
  margin-right: auto;
}

.simple-btn a{
  letter-spacing: 0.1em;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  max-width: 110%;
  padding: 4px 16px 4px 0;
  margin-top: 10px;
  margin-bottom: 15px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
  text-align: center;
}

/*アンダーライン*/
.simple-btn a::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 110%;
  height: 1px;
  background: var(--primary-inverse-color);
  bottom: 0;
  transition: all 0.3s;
}

/*斜めの線*/
.simple-btn a::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 1px;
  background: var(--primary-inverse-color);
  rotate: 40deg;
  right: -11%;
  bottom: 10px;
  transition: all 0.3s;
}

.simple-btn a:hover {
  translate: 20px 0;
  transition: all 0.3s;
  color: var(--accent-color);
}

.simple-btn a:hover::after,
.simple-btn a:hover::before {
  translate: 20px 0;
  transition: all 0.3s;
  background: var(--accent-color);
}


/*フッターの上のボックス内にあるボタン（ここにない設定は、すぐ上の「btn共通設定」にあります。）
---------------------------------------------------------------------------*/
/*ボタンに使用しているアイコン*/
.btn-box .btn i {
	margin-right: 2rem;		/*アイコンの右側に２文字分のスペースを空ける*/
	transform: scale(1.4);	/*アイコンサイズを140%に。*/
}

/*ボタンブロック*/
.btn-box .btn {
	list-style: none;margin:0;padding:0;
	display: flex;
	flex-direction: column;	/*縦並びに*/
	justify-content: center;
	align-items: center;
	gap: 2rem;			/*ボタン同士に空けるスペース。２文字分。*/
	height: 80vh;		/*ブロックの高さ。画面の高さの80%。お好みで。*/
	font-size: 1.5rem;	/*文字サイズを150%に*/
}
/*ボタンブロック*/
.btn-box2 .btn {
	list-style: none;margin:0;padding:0;
	display: flex;
	flex-direction: column;	/*縦並びに*/
	justify-content: center;
	align-items: center;
	gap: 2rem;			/*ボタン同士に空けるスペース。２文字分。*/
	font-size: 1.5rem;	/*文字サイズを150%に*/
}

/*ボタン１個あたり*/
.btn-box .btn li {
	width: 80vw;	/*幅。画面幅の80%*/
}
.btn-box2 .btn li {
	width: 80vw;	/*幅。画面幅の80%*/
}
.btn-box .btn a {
  /* [disabled]border-radius: 10px; */	/*角を丸くする指定*/
  padding: 1rem 2rem;		/*ボタン内の余白。上下、左右へ。*/
}

.btn-box2 .btn a {
  padding: 0.1rem 2rem;		/*ボタン内の余白。上下、左右へ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*ボタンブロック*/
	.btn-box .btn {
		flex-direction: row;	/*横並びに変更*/
	}
	
	/*ボタン１個あたり*/
	.btn-box .btn li {
		width: 40vw;	/*幅。画面幅の40%*/
	}
  .btn-box2 .btn li {
		width: 30vw;	/*幅。画面幅の40%*/
	}
    
    .pc-c{
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
    }

	}/*追加指定ここまで*/





/*文字のアニメーション
---------------------------------------------------------------------------*/
.text-animation{
  padding-left: 0px;
  padding-right: 0px;
  margin-top: -100px;
  margin-bottom: -100px;
}

.text-animation .sec1 {
  width: 100vw;
  display: flex;
/*  overflow: hidden;*/
}
.text-animation .sec1__title--first,
.text-animation .sec1__title--second {
  flex-shrink: 0;
  width: auto;
  height: auto;
/*  display: inline-block;*/
  text-wrap: nowrap;
  white-space: nowrap;
  font-size: 8rem!important;
  font-family: var(--font-eng-serif);
  background-image: url(../images/text_animation.jpg);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-repeat: repeat-x;
  background-size: 50%;
/*  font-style: italic;*/
  corsor: default!important;
}

.text-animation .sec1__title--first {
  animation: anim--first 40s infinite linear 0.1s both;
}
.text-animation .sec1__title--second {
  animation: anim--second 40s infinite linear 0.1s both;
}

@keyframes anim--first {
  0% {
    transform: translateX(0%);
    background-position: 0% 0;

  }
  100% {
    transform: translateX(-100%);
    background-position: 100% 0;
  }
}
@keyframes anim--second {
  0% {
    transform: translateX(0%);
    background-position: 0% 0;

  }
  100% {
    transform: translateX(-100%);
    background-position: 100% 0;
  }
}



/*波のアニメーション
---------------------------------------------------------------------------*/
/*アニメーション*/
@keyframes move-wave {
0% { transform: translateX(0); }
100%   { transform: translateX(-50%); }
}

/*波を囲む全体のブロック*/
.wave-section {
	position: relative;
	
	/*以下の３行の数字については、下のwaveのheight(波の高さ)から1を差し引いた形です。隙間が出る場合があるのでそれが出ないようにしています。*/
	padding-top: 79px;
	top: -79px;
	margin-bottom: -79px;
}

/*波の色（２つとも揃えておけばOK）*/
.wave-section .text {
	background: var(--primary-color);	/*背景色。css冒頭のprimary-colorを読み込みます。*/
}
.wave-wrap use {
	fill: var(--primary-color);			/*塗りつぶしの色。css冒頭のprimary-colorを読み込みます。*/
}

/*上下の波（共通）*/
.wave {
	position: absolute;
	left: 0;
	width: 100%;
	height: 80px;	/*波の高さ。ここを変更する場合は上の.wave-sectionの３箇所の数字も合わせて変更して下さい。*/
}
.wave svg {
	display: block;
	width: 100%;
	height: 100%;
}

.wave .wave-wrap {
	transform-box: fill-box;
	transform-origin: 0 0;
	animation: move-wave 10s linear infinite;	/*ここの10sを変更すれば波のアニメーション速度が変わります*/
}

/*上の波*/
.wave-top {
	top: 0;
}

/*下の波*/
.wave-bottom {
	bottom: 0;
	transform: rotate(180deg);
}


/*フッター
---------------------------------------------------------------------------*/
#footer * {margin: 0;padding: 0;}
#footer ul {list-style: none;}

/*ブロック全体*/
#footer {
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	padding: var(--content-space);	/*フッター内の余白。css冒頭のcontent-spaceを読み込みます。*/
}

/*ロゴやSNSアイコンが入ったブロック*/
#footer div.footer1 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;	/*このブロック内のボックス同士の間に空ける余白。１文字分。*/
}

/*メニューブロック*/
#footer div.footer2 {
/*    flex: 1;*/
}

#footer img{
  margin-bottom: 30px;
  max-width: 200px;
}

#footer .footer-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 50px;
}

#footer .footer-navi li{
  margin-bottom: 0.75rem;
}
#footer .footer-navi li a{
  text-decoration: none;
}
#footer .footer-navi li a::before{
  content: "- ";
}
#footer .footer-navi li a:hover{
  color: var(--accent-color);
}

	/*画面700px以上の追加指定*/
	@media screen and (min-width:700px) {

    #footer {
      display: flex;
      gap: 2rem;		/*ロゴのブロックとメニューのブロックとの間の余白。2文字分。*/
    }

    /*ロゴやSNSアイコンが入ったブロック*/
    #footer div.footer1 {
      text-align: left;
      width: 40%;	/*幅。40%。*/
    }
    

    #footer .md-flex {
      display: flex;
    }

    #footer .md-justify-between {
      justify-content: space-between;
    }

    #footer .grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    #footer .footer-grid{
      margin-top: 0px;
    }

	}/*追加指定ここまで*/


/*Copyright部分*/
#footer small {
	display: block;
	text-align: right;
	margin-top: 2rem;
}


/*SNSアイコン
---------------------------------------------------------------------------*/
#footer .sns {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;		/*アイコン同士のマージン的な要素。１文字分。*/
}

#footer .sns i {
	font-size: 30px;	/*アイコンサイズ*/
}

#menubar .sns {
  list-style: none;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;		/*アイコン同士のマージン的な要素。１文字分。*/
}

#menubar .sns i {
	font-size: 30px;	/*アイコンサイズ*/
}



/*Google Map用
---------------------------------------------------------------------------*/
#footer .iframe {
	width: 100%;
	height: 0;
	padding-top: 56.25% !important;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}
#footer .iframe iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*フッター内の受付時間テーブル
---------------------------------------------------------------------------*/
.week {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 5px;	/*角を丸くする指定*/
	border: 1px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
	table-layout: fixed;	/*幅を均等に*/
	background: #fff;		/*テーブル全体の背景色*/
	color: #555;			/*テーブル全体の文字色*/
}

/*受付時間の幅*/
.week th:first-child,
.week td:first-child {
	width: 25%;
}

/*各曜日の幅*/
.week th:not(:first-child),
.week td:not(:first-child) {
	width: calc(75% / 7);	/*受付時間で25%とっているので残りの75%を7で割る*/
}

/*th(曜日)とtd(時間)*/
.week th,
.week td {
	padding: 1rem 0;	/*ボックス内の余白。上下に１文字分、左右は0。*/
	text-align: center;	/*テキストをセンタリング*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	border-right: 1px solid #ccc;	/*右の線の幅、線種、色*/
}

/*th(曜日)とtd(時間)のそれぞれ最後の右側の線を消す*/
.week th:last-child,
.week td:last-child {
	border-right: none;
}

/*最後の行の下線を消す*/
.week tr:last-child td {
	border-bottom: none;
}

/*th(曜日)の追加指定*/
.week th {
	background: #fafafa;	/*背景色*/
}
.week td {
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;display: block;
	background: #555;
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


/*Slick スライダー部分
---------------------------------------------------------------------------*/

.slider {
  padding: 30px 0;
  margin-top: 200px;
}

.slider .slick-slide {
  margin-right: 10px;
}

.slick-slider div {
  transition: none; 
}


.slider .slick-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gallery {
  padding: 30px 0px;
}

.gallery .slick-slide {
  margin-right: 10px;
}

.slick-slider div {
  transition: none; 
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*bg1
---------------------------------------------------------------------------*/
.bg1 {
	background: var(--secondary-color);		/*背景色。css冒頭のsecondary-colorを読み込みます。*/
	color: var(--secondary-inverse-color);	/*背景色。css冒頭のsecondary-inverse-colorを読み込みます。*/
}
.bg2 {
  color: var(--secondary-inverse-color);	/*背景色。css冒頭のsecondary-inverse-colorを読み込みます。*/
  background-image: url(../images/bg2.jpg);
  background-repeat: repeat;
  background-position: center top;
	position: relative;
}
.bg2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 10vh;	/*高さ。画面の高さの20%。お好みで。*/
	background: linear-gradient(var(--secondary-color), transparent);/*背景グラデーション。css冒頭の--secondary-colorから透明(transparent)になるグラデ。*/
}



/*背景画像が少しずつ上に移動する
---------------------------------------------------------------------------*/
/*共通設定*/
.bg-slideup {
    background-repeat: no-repeat;
    background-size: cover;
	width: 100%;
}

/*slideup2画像*/
.slideup2 {
  background-image: url("../images/bg-slideup2.jpg");	/*背景画像の読み込み*/
  position: relative;
}

/*slideup2の上部にグラデーションをかけて、「よく頂く質問」ブロックとの境界をなめらかにする*/
.slideup2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 20vh;	/*高さ。画面の高さの20%。お好みで。*/
	background: linear-gradient(var(--secondary-color), transparent);/*背景グラデーション。css冒頭の--secondary-colorから透明(transparent)になるグラデ。*/
  
}


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/*fadeInのキーフレーム設定*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}

/* 初期状態でテキストを非表示にする */
.fade-in-text {
  visibility: hidden;
  background-repeat: repeat;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.2s linear both;
}


/*マニュアルページ用
---------------------------------------------------------------------------*/
#manual {background-image: none;}
.manual {
	padding: 5rem;
}
.manual h2,.manual h3 {
	margin-top: 3rem;
}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !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;}
.mb5rem {margin-bottom: 5rem !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; color: #888; 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;}

	}/*追加指定ここまで*/
