@charset "utf-8";




/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*lightbox.cssの読み込み
---------------------------------------------------------------------------*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css);

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

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Qwitcher+Grypen&display=swap');

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




/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	height: 100vh;
	font-size: 14px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
}

body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	/*background: #fff url(../images/bg.jpg) repeat center center/200px;*/
	color: #57524b;		/*全体の文字色*/
	line-height: 2;		/*行間*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*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%;}

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}

.sp{
	display: none;
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #57524b;	/*文字色*/
	transition: 0.3s;
}

a:hover {
	opacity: 0.8;	/*マウスオン時に60%の透明度にする*/
}


/*メインイメージ（bg_sub.pngとbg_main.jpgを読み込んでいます）
---------------------------------------------------------------------------*/
#mainimg {
	text-indent: -9999px;
	position: fixed;top: 0px;z-index: -1;
	width: 100%;
	height: 100%;
	background:url(../images/bg_main.jpg) no-repeat center center/ cover;
	/*background: url(../images/bg_sub.png) no-repeat left top / 100%, url(../images/bg_main.jpg) no-repeat right center / cover;*/
}


/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 100%;	/*高さ*/
}

/*ロゴ画像*/
header #logo img {
	width: 280px;		/*幅*/
	position: fixed;	/*画面に対して固定表示*/
	/*left: -10px;		
	top: -5px;*/
	left: 5%;		
	top: 3%;	
	background: rgba(255,255,255,0.8);	/*RGBで指定した背景色。最後の0.8は色が80%出た状態のこと。*/
	border-radius: 50%;	/*角丸のサイズ。中の画像が正方形であれば円形になります。*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	display: inline-block;
	transition: 0.5s;
	border-radius: 50%;			/*円形にする*/
	animation: opa1 1.5s both;	/*animation.cssの、opa1を実行する。1.5sは1.5秒の事。*/
	text-align: center;
	font-size: 1.5em;	/*文字サイズ*/
	position: fixed;	/*画面に対して固定表示*/
	font-family: "Shippori Mincho", serif;
}
#menubar li a {
	display: block;text-decoration: none;
	color: #fff;		/*文字色*/
}

#menubar li img{
	margin-top: -5px;
}


/*マウスオン時*/
#menubar li:hover {
	transform: scale(1.05);		/*105%に拡大*/
	filter: brightness(1.1);	/*少しだけ明るくする*/
}

/*１つ目のメニュー(About)*/
#menubar li:nth-of-type(1) {
	left:20%;			/*ウィンドウに対して左からの配置場所*/
	top: 28%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.2s;	/*0.2秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(113,174,204,0.8);	/*RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
	width: 150px;		/*幅*/
	line-height: 150px;	/*高さ*/
}

/*２つ目のメニュー(Member/Gallery)*/
#menubar li:nth-of-type(2) {
	left: 5%;			/*ウィンドウに対して左からの配置場所*/
	top: 44%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.4s;	/*0.4秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(114,179,183,0.8);	/*RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
	width: 180px;		/*幅*/
	line-height: 180px;	/*高さ*/
}

/*３つ目のメニュー(Link)*/
#menubar li:nth-of-type(3) {
	left: 15%;			/*ウィンドウに対して左からの配置場所*/
	top: 67%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.6s;	/*0.6秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(179,158,198,0.8);	/*RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
	width: 130px;		/*幅*/
	line-height: 130px;	/*高さ*/
}

/*４つ目のメニュー(Instagram)*/
#menubar li:nth-of-type(4) {
	left: 8%;			/*ウィンドウに対して左からの配置場所*/
	top: 85%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.8s;	/*0.8秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(76,79,79,0.5);	/*RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
	width: 70px;		/*幅*/
	line-height: 70px;	/*高さ*/
}


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/
.contents {
	overflow: hidden;
	padding: 40px 4% 50px 35%;	/*ボックス内の余白。上、右、下、左。*/
}

input {
    display: none;
}

/* ポップアップwindow部分 */
#overlay {
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 70;
    width: 100%;
    height: 100%;
}
/* オーバーレイの背景部分 */
#bg_gray {
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 80;
}
/* ウィンドウ部分 */
#window {
    width: 50%;
    padding: 20px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px -6px rgba(0,0,0,0.6);
    z-index: 90;
    opacity: 0;
}
/* 閉じるボタン */
#btn_cloth {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00aeaa;
    border-radius: 5px;
    z-index: 100;
    cursor: pointer;
}
#btn_cloth:hover {
    opacity: 0.7;
}
#btn_cloth span,
#btn_cloth span::before {
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
}
#btn_cloth span {
    transform: rotate(45deg);
}
#btn_cloth span::before {
    content: "";
    position: absolute;
    bottom: 0;
    transform: rotate(-90deg);
}


/* クリックで表示 */
#popup:checked ~ #overlay {
    visibility: visible;
}
#popup:checked ~ #overlay #window {
    animation: fadein 500ms forwards;
    animation-timing-function: ease-in-out;
}
@keyframes fadein {
    100% {
        opacity: 1;
    }
}

#txt_label {
    text-decoration: underline;
    cursor: pointer;
}
#txt_label:hover {
    opacity: 0.7;
}

#msg{
	text-align: left;
}

#msg h4{
	text-align: center;
}

#msg h4 span{
	text-align: center;
	font-size: 60%;
	margin-top: 20px;
}

#msg a {
    display: inline-block;
    color: #fff;
    background: #00aeaa;
    border-radius: 20px;
    padding: 0.5em 1.5em;
    text-decoration: none;
}
#msg a:hover {
    opacity: 0.7;
}
/*main
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	font-size: 3em;			/*文字サイズ*/
	margin-bottom: 50px;	
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.05em;	/*文字間隔を広くとる設定*/
	/*font-family:Gabriola;*/
	font-family: "Shippori Mincho", serif;
}

/*h2見出しの上の装飾*/
main h2::before {
	/*content: "＊";*/	/*好きな装飾文字に変えてもらって構いませんが機種依存文字は化けるので使わない*/
	display: block;
	text-shadow: 20px 10px 0px rgba(255,255,255,0.5);	/*影。右に、下に、ぼかし幅。255,255,255は白の事で0.5は色が50%出た状態の事。*/
}

/*h2見出し内のspanタグ*/
main h2 span {
	display: block;
	font-size: 0.7em;	/*文字サイズ*/
}

/*h3見出し*/
main h3 {
	margin-bottom: 20px;	/*下に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
	background: #fff;		/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.3);	/*255,255,255は白の事で0.3は色が30%出た状態の事。*/
	text-align: center;		/*文字を中央に*/
	border-radius: 30px;	/*角丸のサイズ。大きめに設定しておけばOK。*/
	padding: 0px 20px;		/*上下、左右への余白*/
}

/*段落タグ*/
main p {
	padding: 0 30px 30px;		/*上、左右、下への余白*/
}

/*bg1スタイルのついたコンテンツ*/
.bg1 {
	background: url(../images/bg1.jpg) repeat center top/ 200px;	/*背景画像*/
}

/*bg2スタイルのついたコンテンツ*/
.bg2 {
	background: url(../images/bg2.jpg) repeat center top/ 200px;	/*背景画像*/
}

/*bg3スタイルのついたコンテンツ*/
.bg3 {
	background: url(../images/bg3.jpg) repeat center top/ 200px;	/*背景画像*/
}

/*bg4スタイルのついたコンテンツ*/
.bg4 {
	background: url(../images/bg4.jpg) repeat center top/ 200px;	/*背景画像*/
}


/*Member/Galleryブロック
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
.list-container {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}

/*listボックス。１個あたりのボックスの指定です。*/
.list-container .list {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 40px;			/*ボックス同士の上下間の余白*/
	overflow: hidden;
	width: 30%;	
	line-height: 1.2em;
	text-align: center;
}

.list-container .list .icon img{
	border-radius: 10px;			/*角丸のサイズ。中の画像が正方形であれば、10pxを50%にすることで円形にすることもできます。*/
}

.list-container .list h4{
	font-size: 1.2em;
	margin: 30px 0 0;
}

.list-container .list p{
	font-size: 0.8em;			
}



/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
}
/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.6em;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
	color: #4C4F4F;			/*文字色*/
	background: rgba(79,154,191,0.5);
}

/*リンクテキスト*/
footer a {text-decoration: none;color: #4C4F4F;}

/*著作部分*/
footer .pr {display: block;}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 10px 5px;		/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: rgba(255,255,255,0.2);
	margin-bottom: 15px;
	border-radius: 5px;
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid rgba(255,255,255,0.5);	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid rgba(255,255,255,0.5);	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 40%;			/*幅*/
	text-align: left;	/*左よせにする*/
}


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

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

/*ページスクロール
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

.scroll_down{
  position:absolute;
  bottom:50px;
  right:50%;
  animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a{
  position: absolute;
  left: -24px;
  bottom: 30px;
  color: #4C4F4F;
  font-size: 14px;
  font-family: 'Josefin Sans';
  letter-spacing: .2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.text {
  display: block;
  margin-top: 70px;
  margin-left: -14px;
  font-size: 12px;
  color: #4C4F4F;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
}

.arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.arrow:first-child {
  animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #4C4F4F;
}

.arrow:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% { opacity: 1; }
  33% { opacity: 1; transform: translateY(30px); }
  67% { opacity: 1; transform: translateY(40px); }
  100% { opacity: 0; transform: translateY(55px) scale3d(0.5, 0.5, 0.5); }
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #74791b !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #666; color: #fff; border-radius: 3px;margin: 5px 0;}
.look .color-check {color: #ffcc00 !important;}
.small {font-size: 0.6em;}





/*---------------------------------------------------------------------------
ここから下は画面幅768px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:768px) {
	
.pc{
	display: none;
}

#mainimg {
	background:url(../images/bg_main_sp.jpg) no-repeat center center/ cover;
}
	
main p {
	padding:0 5px;		/*上、左右、下への余白*/
}

main h2 {
	font-size: 1.5em; /*文字サイズ*/
	line-height: 1.1em;
	font-family: "Shippori Mincho", serif;
	/*font-style: italic;*/
}

header #logo img {
	width: 140px;		/*幅*/
	left: 3%;		/*ウィンドウに対して左からの配置場所*/
	top:3%;			/*ウィンドウに対して上からの配置場所*/
}
	
#menubar li {
	font-size: 1.1em;	/*文字サイズ*/
}
	
/*１つ目のメニュー(About)*/
#menubar li:nth-of-type(1) {
	left: 3%;			/*ウィンドウに対して左からの配置場所*/
	top: 28%;			/*ウィンドウに対して上からの配置場所*/
	width: 90px;		/*幅*/
	line-height: 90px;	/*高さ*/
}

/*２つ目のメニュー(Member/Gallery)*/
#menubar li:nth-of-type(2) {
	left: 6%;			/*ウィンドウに対して左からの配置場所*/
	top: 44%;			/*ウィンドウに対して上からの配置場所*/
	width: 90px;		/*幅*/
	line-height: 90px;	/*高さ*/
}

/*３つ目のメニュー(Link)*/
#menubar li:nth-of-type(3) {
	left: 3%;			/*ウィンドウに対して左からの配置場所*/
	top: 60%;			/*ウィンドウに対して上からの配置場所*/
	width: 90px;		/*幅*/
	line-height: 90px;	/*高さ*/
}

/*４つ目のメニュー(Instagram)*/
#menubar li:nth-of-type(4) {
	left: 8%;			/*ウィンドウに対して左からの配置場所*/
	top: 75%;			/*ウィンドウに対して上からの配置場所*/
	width: 70px;		/*幅*/
	line-height: 70px;	/*高さ*/
}

	
#menubar li:not(:nth-of-type(4)) {
	font-family: "Shippori Mincho", serif;
	/*font-style: italic;*/
}

.list-container{
	padding:0 10px;
}

.list-container .list {
	width: 45%;						/*幅。１行に何個配置したいか、ここの数値を変更してお好みで調整して下さい。*/
}
	
.list-container {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}

.list-container .list h4{
	font-size: 85%;
	margin: 10px 0 0;
}
	
.list-container .list p{
	margin: 5px 0;						/*幅。１行に何個配置したいか、ここの数値を変更してお好みで調整して下さい。*/
}

.ta1 th,.ta1 td {
    display: inline-block;
    width: 100%;
    float: left;
	padding: 5px 10px;
 }
	
/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
}

/*「コンテンツ」ブロック
---------------------------------------------------------------------------*/
/*コンテンツブロック*/

input {
    display: none;
}

/* ポップアップwindow部分 */
#overlay {
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 70;
    width: 100%;
    height: 100%;
}
/* オーバーレイの背景部分 */
#bg_gray {
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 80;
}
/* ウィンドウ部分 */
#window {
    width: 80%;
    padding: 20px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px -6px rgba(0,0,0,0.6);
    z-index: 90;
    opacity: 0;
}
/* 閉じるボタン */
#btn_cloth {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00aeaa;
    border-radius: 5px;
    z-index: 100;
    cursor: pointer;
}
#btn_cloth:hover {
    opacity: 0.7;
}
#btn_cloth span,
#btn_cloth span::before {
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
}
#btn_cloth span {
    transform: rotate(45deg);
}
#btn_cloth span::before {
    content: "";
    position: absolute;
    bottom: 0;
    transform: rotate(-90deg);
}


/* クリックで表示 */
#popup:checked ~ #overlay {
    visibility: visible;
}
#popup:checked ~ #overlay #window {
    animation: fadein 500ms forwards;
    animation-timing-function: ease-in-out;
}
@keyframes fadein {
    100% {
        opacity: 1;
    }
}

#txt_label {
    text-decoration: underline;
    cursor: pointer;
}
#txt_label:hover {
    opacity: 0.7;
}

#msg{
	text-align: left;
}

#msg h4{
	text-align: center;
}

#msg h4 span{
	text-align: center;
	font-size: 60%;
	margin-top: 20px;
}

#msg a {
    display: inline-block;
    color: #fff;
    background: #00aeaa;
    border-radius: 20px;
    padding: 0.5em 1.5em;
    text-decoration: none;
}
#msg a:hover {
    opacity: 0.7;
}

}




/*---------------------------------------------------------------------------
ここから下は画面幅900px以下、かつ画面が「横長」の場合の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:900px) and (orientation: landscape) {


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/
.contents {
	padding: 40px 5% 40px 120%;
}

}




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


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 16px;	/*基準となるフォントサイズの上書き*/
}



/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/



/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 40%;		/*幅*/
}


/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}

/*バブル
---------------------------------------------------------------------------*/

.bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
  opacity: 0.8;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}

.bubble-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
  opacity: 0;
  transition: opacity 1s ease;
}

.bubble-container.active {
  opacity: 1;
}

/* 4つの rise + 横揺れ付き */
@keyframes rise1 {
  0% {
    transform: translateY(0) translateX(0px) scale(1);
    opacity: 0.6;
  }
  70% {
    transform: translateY(-500px) translateX(5px) scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: translateY(-600px) translateX(-3px) scale(0.8);
    opacity: 0;
  }
}

@keyframes rise2 {
  0% {
    transform: translateY(0) translateX(0px) scale(1);
    opacity: 0.5;
  }
  70% {
    transform: translateY(-400px) translateX(-4px) scale(1.2);
    opacity: 0.2;
  }
  100% {
    transform: translateY(-500px) translateX(2px) scale(0.7);
    opacity: 0;
  }
}

@keyframes rise3 {
  0% {
    transform: translateY(0) translateX(0px) scale(1);
    opacity: 0.7;
  }
  70% {
    transform: translateY(-600px) translateX(3px) scale(1.05);
    opacity: 0.2;
  }
  100% {
    transform: translateY(-700px) translateX(-2px) scale(0.8);
    opacity: 0;
  }
}

@keyframes rise4 {
  0% {
    transform: translateY(0) translateX(0px) scale(1.1);
    opacity: 0.4;
  }
  70% {
    transform: translateY(-450px) translateX(-5px) scale(1.2);
    opacity: 0.2;
  }
  100% {
    transform: translateY(-550px) translateX(4px) scale(0.6);
    opacity: 0;
  }
}
