@charset "utf-8";

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

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

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

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

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



@keyframes scaleInBounce {
    0% {
        transform: matrix(1.1,0,0,1.1,0,0)
    }

    3.4% {
        transform: matrix(1.068,0,0,1.059,0,0)
    }

    4.7% {
        transform: matrix(1.055,0,0,1.04,0,0)
    }

    6.81% {
        transform: matrix(1.034,0,0,1.011,0,0)
    }

    9.41% {
        transform: matrix(1.012,0,0,.983,0,0)
    }

    10.21% {
        transform: matrix(1.006,0,0,.977,0,0)
    }

    13.61% {
        transform: matrix(.988,0,0,.967,0,0)
    }

    14.11% {
        transform: matrix(.986,0,0,.967,0,0)
    }

    17.52% {
        transform: matrix(.979,0,0,.976,0,0)
    }

    18.72% {
        transform: matrix(.979,0,0,.981,0,0)
    }

    21.32% {
        transform: matrix(.98,0,0,.993,0,0)
    }

    24.32% {
        transform: matrix(.985,0,0,1.004,0,0)
    }

    25.23% {
        transform: matrix(.987,0,0,1.006,0,0)
    }

    29.03% {
        transform: matrix(.994,0,0,1.01,0,0)
    }

    29.93% {
        transform: matrix(.995,0,0,1.01,0,0)
    }

    35.54% {
        transform: matrix(1.002,0,0,1.004,0,0)
    }

    36.74% {
        transform: matrix(1.003,0,0,1.002,0,0)
    }

    41.04% {
        transform: matrix(1.004,0,0,.998,0,0)
    }

    44.44% {
        transform: matrix(1.003,0,0,.997,0,0)
    }

    52.15% {
        transform: matrix(1.001,0,0,.999,0,0)
    }

    59.86%,63.26% {
        transform: matrix(.999,0,0,1.001,0,0)
    }

    75.28%,85.49%,90.69%,to {
        transform: matrix(1,0,0,1,0,0)
    }
	}

  /* @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

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

.scroll_down a{
  position: absolute;
  left: -24px;
  bottom: 17px;
  color: #000;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
    content: "";
    position: absolute;
    bottom: 5px;
    right: -6px;
    width: 2px;
    height: 20px;
    background: #000;
    transform: skewX(-31deg);
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 2px;
  height: 85px;
  background:#000;
}

@keyframes arrowmove{
   0%{bottom:1%;}
   50%{bottom:5%;}
   00%{bottom:1%;}
} */


@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: #000;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  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: #000;
  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: #000;
}

.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); }
}




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

body {
	font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	letter-spacing: 0.05em;
	background: #fff;	/*背景色*/
	color: #5B3D2C;		/*全体の文字色*/
	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;}
.m-top{
  margin-top: 50px;
}

.highlight-date {
  font-weight: bold;
  color: #d9534f; /* 赤系で目立つ */
  background-color: #fff3cd; /* 薄い黄色背景 */
  padding: 2px 6px;
  border-radius: 4px;
}

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

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

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


.red_link a {
    display: block;
    text-align: center;
    max-width: 230px;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
    padding-top: 4px;
    padding-right: 4px;
    padding-left: 4px;
    padding-bottom: 4px;
    background-color: #E5494B;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 24px;
    -webkit-box-shadow: 1px 1px 2px #5A5A5A;
    box-shadow: 2px 2px 1px #CCCCCC;
}


.box {
  height: 200px;
  margin-inline: auto;
  margin-top: 50px;
  width: 200px;
  position: relative;
}
.box img {
  /* background-color: #b2d8ff; */
  height: 100%;
  width: 100%;
  animation: rotation 12s linear infinite;
  position: absolute;
}
.box .box-yu{
animation-direction: reverse;
}
.box .box-a{
animation-direction: alternate;
}

/* アニメーション */
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: maroon;	/*文字色*/
	transition: 0.3s;
}
a:hover {
	color: #666;
}
#event .border{
  border-bottom: solid 2px;
}


/*section
---------------------------------------------------------------------------*/
section {
	padding: 2% 5%;
}
section .more{
	width: 150px;
}

/*背景設定
---------------------------------------------------------------------------*/
.bg0{
  background-color: burlywood;
}

.bg1 {
	background-color: #deb88787;
}

.bg2 {
	background-color: #f3d589a3;
}

.bg3 {
	background-color: #efee68a8;
}
.bg4 {
	background-color: #eee6e0;
}

/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 100vh;				/*画面に対して高さ100%*/
	display: flex;				/*flexボックスを使う指定*/
	justify-content: center;	/*左右の中央に配置*/
	align-items: center;		/*天地中央に配置*/
	text-align: center;			/*文字をセンタリング*/
}

/*ヘッダーのリンクテキスト*/
header a {
	text-decoration: none;
	display: block;
}

/*ロゴやメニューのブロック*/
header #text {
	font-family: 'Cinzel';
	position: absolute;
	z-index: 1;			/*画像の上にくるように*/
	background: rgba(255,255,255,0.95);	/*背景色。255,255,255は白の事で0.95は色が95%出た状態。*/
	border-radius: 30px;	/*角を丸くする指定*/
	padding: 100px 50px;	/*上下、左右へのブロック内の余白*/
	margin: 30px;			/*ブロックの外にとる余白*/
}

/*ロゴ画像*/
header #logo img {display: block;}
header #logo {
	margin: 0 auto 50px;
	max-width: 200px;	/*ロゴ画像の最大幅*/
}


/*メイン画像
---------------------------------------------------------------------------*/
.mainimg-tate {
	width: 100%;	/*幅*/
	height: 100%;	/*高さ*/
}

/*横長画像は非表示にしておく*/
.mainimg-yoko {display: none;}


/*メニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar a {
	padding: 20px;	/*メニュー内の余白*/
}

/*マウスオン時*/
#menubar nav a:hover {
	letter-spacing: 0.2em;	/*文字間隔を少し広くする*/
}


/*メニューの下にあるfacebook,twitter,youtube,instagramのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
header ul.icons {
	list-style: none;margin: 0; padding: 0;
	font-size: 1.5em;	/*文字サイズ　＝　アイコンサイズの事です*/
}

/*アイコン１個あたりの設定*/
header ul.icons li {
	display: inline-block;	/*アイコンを横並びにする指定*/
	margin: 0 5px;			/*上下、左右へ空けるスペース*/
}
header ul.icons li a {
	opacity: 0.5;	/*色が50%出た状態*/
}

/*マウスオン時*/
header ul.icons li a:hover {
	opacity: 1;	/*色を100%出す*/
}

#menubar .shadow{
  color: #e5e5e5;
    text-shadow: -1px -1px rgba(255, 255, 255, 0.5), 1px 1px 2px rgba(0, 0, 0, 0.5);
}


iframe{
  height: 750px;
}



/*mainブロック
---------------------------------------------------------------------------*/
/* h1タグ */
h1{
	text-align:center;
	color: maroon;
}

/*h2タグ*/
main h2 {
	font-family: 'Cinzel', serif;	/*GoogleFontsの指定*/
	font-weight: normal;	/*太さを標準に*/
	font-size: 2em;			/*文字サイズを２倍に*/
	letter-spacing: 1em;	/*文字間隔を広くとる*/
	/* text-indent: 1em;	 */
  	/*上の行のletter-spacingと同じ値をセットする*/
	text-align: center;
  border-bottom: 2px solid #161616;
}

/*h2タグ内のspanタグ。小文字部分。*/
.lis-menu .lis .hanbai{
  color: #d60404;
  border-bottom: solid 1px darkred;
}


main h2 span {
	display: block;
	font-size: 0.5em;		/*文字サイズを親要素の半分に*/
	letter-spacing: 0.5em;	/*文字間隔の上書き*/
	text-indent: 0.5em;		/*上の行のletter-spacingと同じ値をセットする*/
}

/*h3タグ*/
main h3 {
	font-weight: normal;	/*太さを標準に*/
	font-size: 1.5em;		/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる*/
  text-align: center;
}

/*h4タグ*/
main h4{
  text-align: center;
}

/*main
---------------------------------------------------------------------------*/
#yugawara main {
	flex: 1;
	padding-top: 1rem;		/*ブロックの上の余白*/
	padding-bottom: 3rem;	/*ブロックの下の余白*/
}

/*h2(見出し)要素*/
#yugawara main h2 {
	font-size: 2rem;		/*文字サイズを２倍*/
	font-weight: normal;	/*太さを標準*/
	color: var(--primary-text-color);	/*文字色。css冒頭で指定しているprimary-text-colorを読み込みます*/
	border-bottom: 1px solid var(--primary-text-color);	/*下線の幅、線種、varの部分は色で、css冒頭で指定しているprimary-text-colorを読み込みます*/
	padding-left: 0.5rem;	/*左に0.5文字分の余白*/
}

/*type1の見出し*/
#yugawara main h2.type1 {
	margin: 0; padding: 0; border: none;
	font-family: var(--heading-font);	/*フォント種類。css冒頭で指定しているheading-fontを読み込みます*/
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
#yugawara main h2.type1 span {
	display: block;
	font-size: 1rem;
	text-align: right;	/*テキストを右寄せ*/
}

.news-container {
  width: 80%; /* コンテナの幅 */
  margin: 0 auto; /* 中央寄せ */
  overflow-y: scroll; /* 縦スクロールを許可 */
  max-height: 240px; /* 最大高さを設定 */
  border: 1px solid #ccc; /* 枠線 */
}

dl {
  padding: 10px;
}

dt {
  font-weight: bold;
  margin-bottom: 5px;
}

dd {
  margin-left: 20px;
  margin-bottom: 10px;
}

.icon-bg1 {
  background-color: #f0f0f0; /* アイコンの背景色 */
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 5px;
}


.center{
  text-align: center;
}
#hayashi .center,#yutapon .center{
  text-align: center;
}


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

	/*type1の見出し*/
#yugawara 	main h2.type1 {
		width: 20vw;	/*幅*/
		flex: 0 0 auto;
		line-height: 1;
		transform: rotate(-10deg);	/*少しだけ傾ける*/
		margin-right: 2rem;			/*右側へのスペース*/
		font-size: 4rem;			/*文字サイズ。４倍。*/
	}
#yugawara 	main h2.type1 span {
		margin-top: 2rem;	/*上に２文字分のスペース*/
	}
#event .event-img{
    margin-left: 150px;
    margin-right: 150px;
    width: -webkit-fill-available;
  }

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


/*h3(見出し)要素*/
#yugawara main h3 {
	padding-left: 0.5rem;	/*左に0.5文字分の余白*/
}

/*p(段落)要素*/
#yugawara main p {
	padding-left: 0.5rem;	/*左に0.5文字分の余白*/
}


/*左側にh2見出し、右側にメニュー写真が並ぶタイプのブロック設定
---------------------------------------------------------------------------*/

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

	/*ブロック全体*/
	.lis-side-title {
		display: flex;	/*横並びに*/
		justify-content: center;	/*中央に寄せる*/
		align-items: flex-start;	/*上に寄せる*/
		gap: 3%;					/*ブロック同士のマージン的な要素。*/
	}

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


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

	/*ブロック内にある、全ての写真ブロックを囲むボックス*/
	.lis-side-title .lis-menu {
		display: grid;
		grid-template-columns: repeat(2, 1fr);	/*２列にする。３列がいいなら、(3, 1fr)とすればOKです。*/
		gap: 2rem;	/*写真ブロック同士に空けるマージン的な要素。*/
	}

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


/*lis（メニュー写真や説明が入ったボックス一個あたり）
---------------------------------------------------------------------------*/
/*lis内の全ての要素のマージンを一旦リセット*/
.lis * {
	margin: 0;
}

/*ボックス１個あたり*/
.lis {
	position: relative;
    display: flex;
	flex-direction: column;
	padding: 1rem;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	margin-bottom: 3%;
}

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

	/*ボックス１個あたり*/
	.lis {
		margin-bottom: 0;
	}

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

/*ブロック内のh4*/
.lis h4 {
	color: #555;	/*文字色*/
}

/*価格*/
.lis h4 .price {
	background: var(--secondary-color);	/*背景色。css冒頭で指定しているsecondary-colorを読み込みます*/
	color: var(--secondary-text-color);	/*文字色。css冒頭で指定しているsecondary-text-colorを読み込みます*/
	border-radius: 100px;	/*角を丸くする指定。大きければ適当でOK。*/
	padding: 0.3rem 1rem;	/*価格内の余白。上下、左右へ。*/
	margin-left: 1rem;		/*左側に1文字分のスペースを空ける。メニュータイトルとの隙間の調整です。*/
	font-size: 0.8rem;		/*文字サイズを80%に*/
}

/*ブロック内のp要素*/
.lis p {
	margin: 0;padding: 0;
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.8;	/*行間を少し狭く*/
}

/*アイコン*/
.lis .newicon {
	position: absolute;
	left: -5px;	/*左からの配置場所。マイナスがついているので本来の向きとは逆に移動する。*/
	top: -10px;	/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動する。*/
	background: #f5a203;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 0.7rem;	/*文字サイズ。70%。*/
	width: 5em;			/*アイコンの幅。4文字分。*/
	line-height: 5em;	/*行間ですが、高さとして使っています。上のwidthと揃えれば正円になります。*/
	border-radius: 50%;	/*円形にする指定。*/
	text-align: center;	/*テキストをセンタリング*/
}

/*ボックス内のfigure画像*/
.lis figure img {
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
  width: -webkit-fill-available;
}

.responsive-br {display: none;}


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

	.responsive-br {display: block;}

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

  /*bg1背景
  ---------------------------------------------------------------------------*/

  .bg1-inner {
  	background: var(--primary-color);	/*背景色。背景画像の色に合わせる。*/
  	padding-top: var(--bg1-height);		/*変更不要*/
  	padding-bottom: var(--bg1-height);	/*変更不要*/
  }

  /*ボックス内の上下の空白が広くなりすぎるので、sectionの上下マージンをなくす*/
  .bg1-inner > section {
  	margin-top: 0;
  	margin-bottom: 0;
  }









/*list
---------------------------------------------------------------------------*/
.list-container {
	display: flex;
	flex-wrap: wrap;
}
.list {
	height: 0;
	width: 30%;
	padding-top: 30%;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	margin: 0 auto;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
}
.list a {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 0.5s;
}
.list img:hover {
	transform: scale(1.1);
	filter: contrast(1.3);
}


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



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

/*著作部分*/
footer .pr {display: block;}
.footer-content {
    position: relative;
    z-index: 10;
    max-width: 1180px;
    margin-top: -80px;
    padding-top: 30px;
    padding-bottom: 65px
}

.footer-content h2::before,.footer-content::after,.footer-content::before {
    position: absolute;
    background-size: 100%;
    content: ""
}

.footer-content::before {
    top: 92px;
    left: 30px;
    z-index: 10;
    width: 183px;
    height: 133px;
    background-image: url(footer-img1.png)
}

.footer-content::after {
    top: -140px;
    right: 50px;
    width: 314px;
    height: 307px;
    background-image: url(footer-img2.png)
}


.footer-content .sns-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px
}

.footer-content .sns-box a {
    width: 124px
}

.footer-content .sns-box a:last-child {
    margin-left: 40px
}

.footer-content .footer-subtitle {
    width: 254px
}

.footer-content .footer-desc {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 30px
}

.footer-content .footer-desc h3 a {
    display: block
}

.footer-content .footer-desc ul {
    margin-top: 20px;
    margin-left: 10px
}

.footer-content .footer-desc li {
    font-weight: 700;
    font-size: 1.4rem
}

.footer-content .footer-desc li:nth-of-type(n+2) {
    margin-top: 3px
}

.footer-content .btn {
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    text-align: center
}

.footer-content .copy {
    margin-top: 40px;
    font-size: 1.3rem;
    text-align: center
}
.footer-content .footer-desc .cls-1,.icon-footer02 {
    fill: #006f95
}

.footer_inqiry{
	margin-left: 20px;
  margin-top: 20px;
  background-color: blanchedalmond;
  margin-right: 20px;
  padding: 10px;
}
.footer_inqiry .bg-c{
    color: #c30000;
    border-bottom: double;
}




footer {
	background: #c2baae;		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: #5B3D2C;	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	padding: 2rem;	/*フッター内の余白。2文字分。*/
	display: flex;
	flex-direction: column-reverse;
}

/*フッター直下の1つ目ブロック（ロゴやSNSアイコンが入ったブロック）*/
footer div:nth-of-type(1) {
    text-align: center;
}

/*フッター直下の２つ目ブロック（メニューブロック）*/
footer div:nth-of-type(2) {
    flex: 1;
    display: flex;
    gap: 2rem;	/*このブロック内の直下のブロック同士に空ける余白。４文字分。*/
}


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

	footer {
		flex-direction: row;
		gap: 4rem;		/*フッター内の直下のブロック同士に空ける余白。４文字分。*/
		padding: 4rem;	/*フッター内の余白。４文字分。*/
	}

	/*フッター直下の1つ目ブロック（ロゴやSNSアイコンが入ったブロック）*/
	footer div:nth-of-type(1) {
		text-align: left;
		width: 30%;	/*幅*/
	}

	/*フッター直下の２つ目ブロック（メニューブロック）*/
	footer div:nth-of-type(2) {
		justify-content: flex-end;	/*ブロックを右に寄せる。この行を削除すれば、ロゴ画像の方によります。*/
		gap: 4rem;	/*このブロック内の直下のブロック同士に空ける余白。４文字分。*/
	}

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


footer ul {
	margin: 0;padding: 0;list-style: none;
	margin-bottom: 2rem;
}


/*Copyright部分*/
footer small {
	display: block;
	padding-top: 2rem;	/*SNSアイコンとコピーライトの間の余白調整*/
}

/* 追加 */

.footer-content {
        max-width: inherit;
        /* margin-top: 26.333333vw; */
        /* padding-top: 4.6666666667vw; */
        padding-bottom: 4.6666666667vw
    }

    .footer-content::before {
        top: 5vw;
        left: 6vw;
        width: 17.8666666667vw;
        height: 13.0666666667vw
    }

    .footer-content::after {
        top: -2vw;
        right: 4vw;
        width: 24.9333333333vw;
        height: 23.7333333333vw;
        background-image: url(footer-img2.png)
    }

    .footer-content h2 {
        width: 36.9333333333vw
    }

    .footer-content h2::before {
        top: -23vw;
        left: -28vw;
        width: 30.5333333333vw;
        height: 26.9333333333vw
    }

    .footer-content .sns-box {
        margin-top: 2.6666666667vw;
		margin-bottom: -50px;
    }

    .footer-content .sns-box a {
        width: 16.5333333333vw
    }

    .footer-content .sns-box a:last-child {
        margin-left: 5.3333333333vw
    }

    .footer-content .footer-subtitle {
        width: 54vw;
        margin-right: 6.7vw
    }

    .footer-content .footer-desc {
        flex-wrap: wrap;
        width: 90%;
        margin: 5.3333333333vw auto 0
    }

    .footer-content .footer-desc ul {
        margin-top: 6vw;
        margin-left: 0
    }

    .footer-content .footer-desc li {
        display: flex;
        font-weight: 400;
        font-size: 2.6666666667vw
    }

    .footer-content .btn {
        font-size: 3.2vw
    }

    .footer-content .btn p {
        line-height: 4vw
    }

    .footer-content .copy {
        margin-top: 6.6666666667vw;
        font-size: 1.6666666667vw
    }
		.l-flex,.l-flex-center {
		    display: flex;
		    align-items: center
		}






/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
}

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

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

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}

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


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 10px 5px;		/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #fafafa;		/*背景色*/
	margin-bottom: 15px;	/*下に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

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

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

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

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


/*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: 1.5em;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #f48e83 !important;}
.color-check, .color-check a {color: #f00 !important;}
.l {text-align: left !important;}
.r {text-align: right !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.mt30 {margin-top: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee; border: 1px solid #ccc; border-radius: 3px;margin: 2px 0; word-break: break-all;}
.small {font-size: 0.6em; letter-spacing: normal !important;}
.large {font-size: 1.8em !important;}
.block {display: block !important;}
.sh {display: block;}
.pc {display: none;}
.hidden {position: absolute; top: -9999px; left: -9999px;}


.btn,.btn-box {
    display: block;
    width: 344px;
    margin: 38px auto 0
}

.btn {
    position: relative;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #9e7dbe
}

.btn-end {
    cursor: default
}

.btn-end:hover {
    animation: none!important
}

.btn:before,.card-hover figcaption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

/* .btn:before {
    content: "";
    right: 20px;
    background-image: url(/btn.png);
    background-size: 100%;
    width: calc(44/2*1px);
    height: calc(44/2*1px)
}

.btn.btn--iconnone:before {
    content: none
} */


/*---------------------------------------------------------------------------
ここから下は、画面の高さが1000px以下の場合の追加設定
---------------------------------------------------------------------------*/
@media screen and (max-height: 1000px) {


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴやメニューのブロック*/
header #text {
	padding: 50px;	/*ブロック内の余白*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar a {
	padding: 10px;	/*メニュー内の余白*/
}


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

}



/*---------------------------------------------------------------------------
ここから下は、画面の高さが600px以下の場合の追加設定
---------------------------------------------------------------------------*/
@media screen and (max-height: 600px) {

  

/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴやメニューのブロック*/
header #text {
	padding: 20px 50px;	/*上下、左右へのブロック内の余白*/
	margin: 0px;		/*ブロックの外にとる余白*/
}

/*ロゴ画像*/
header #logo {
	margin-bottom: 0;	/*下のマージンをなくす*/
}

/* more画像 */

/*メニュー
---------------------------------------------------------------------------*/
#menubar ul {list-style: none;margin: 0;padding: 0;}

/*メニューを非表示にしておく*/
#menubar {display: none;}

/*開閉用のスタイル*/
#menubar.db {display: block;}
#menubar.dn {display: none;}

/*メニュー１個あたりの設定*/
#menubar a {
	display: block;text-decoration: none;
	text-align: center;		/*テキストを中央に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	padding: 10px;			/*メニュー内の余白*/
}


/*小さな端末用の設定（開閉ブロック）
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.db {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 70px 20px;	/*上下、左右へのブロック内の余白*/
	background: rgba(0,0,0,0.9);		/*背景色。0,0,0は黒の事で0.9は色が90%出た状態の事。*/
	animation: animation1 0.2s both;	/*animation.cssの、animation1を実行する。0.2sは0.2秒の事。*/
	text-align: center;	/*内容をセンタリング*/
	color: #fff;		/*文字色*/
}
.s #menubar.db a {
	display: block;
	color: #fff;	/*リンクテキストの文字色*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*開閉用のスタイル*/
#menubar_hdr.db {display: flex;}
#menubar_hdr.dn {display: none;}

/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	left: 20px;			/*左からの配置場所指定*/
	top: 20px;			/*上からの配置場所指定*/
	padding: 16px 14px;	/*上下、左右への余白*/
	width: 46px;		/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;		/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	background: rgba(0,0,0,0.3);	/*背景色*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 2px solid #fff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#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;	/*２本目は使わないので非表示にする*/
}


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

}



/*---------------------------------------------------------------------------
ここから下は、端末を横向きにした場合に画面幅が999以下の場合の追加設定
---------------------------------------------------------------------------*/
@media (orientation: landscape) and (max-width: 999px) {

/*メイン画像
---------------------------------------------------------------------------*/
.mainimg-yoko {
	display: block;
	width: 100%;	/*幅*/
	height: 100%;	/*高さ*/
}

/*縦長画像は非表示にしておく*/
.mainimg-tate {display: none;}


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

}



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


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

/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	padding: 100px;					/*ヘッダー内の余白*/
}

/*ロゴやメニューのブロック*/
header #text {
  font-size: 20px;	/*基準となるフォントサイズの上書き*/
  color: black;
	background: transparent;
	position: static;margin: 0;padding: 0;border-radius: 0;
	width: calc(50% - 100px);	/*幅。50%というのは画面に対しての幅。-100pxというのはheaderのpaddingの数字。幅が100%だと左右のバランスが悪いので、バランスを調整しています。*/
}

/*ロゴ画像*/
header #logo {
	max-width: 300px;	/*ロゴ画像の最大幅*/
}

/*メイン画像
---------------------------------------------------------------------------*/
.mainimg-tate {
	border-radius: 10px;	/*角を丸くする指定*/
	width: 50%;				/*幅*/
}



/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*ハンバーガーメニューを非表示にする*/
#menubar_hdr {display: none;}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付(dt)設定*/
#new dt {
	width: 14em;	/*幅。14文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: inline-block;	/*表示させる*/
	width: 9em;				/*幅。6文字(em)分。*/
	background: #999;		/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.8em;		/*文字サイズを80%に。*/
	text-align: center;		/*文字をセンタリング*/
	margin-right: 1em;		/*アイコンの右側に空けるスペース*/
	align-self: flex-start;	/*高さを間延びさせない指定*/
	line-height: 1.8;		/*行間を少し狭く*/
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}

/*bg1設定。サンプルテンプレートでは「サービス」と書いてあるマーク*/
#new dt span.icon-bg1 {
	background: #f48e83;	/*背景色*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 14em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}


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

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

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


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


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

}

/* 768px以上 */
@media screen and (min-width: 768px) {
    .btn-box:hover,.btn:hover,.hover-btn:hover,.sec05 .section-btnbox a:hover,.sns-box a:hover {
        animation-name:scaleInBounce;
        animation-duration: 1s;
        animation-fill-mode: both
    }

    main .wrap-video .none{
      display: none;
    }

    .mv-title {
        height: 275px
    }

    .mv-title svg {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%
    }

    .btn-history .btn-box {
        width: 460px
    }

    .sec05 .btn-box {
        margin: 60px auto 0
    }
    /* .none2{
      display: none;
    } */
}
/* 767px以下 */
@media screen and (max-width: 767px) {
    .waiwai-animate.animated .waiwai-animate_fukidashi::before
		{
        transform-origin:15.8666666667vw 14.9333333333vw
    }
		main h2{
			    font-size: x-large;
		}

		iframe{
  height: 900px;
}
    
    main h3{
					font-weight: normal;
					font-size: 0.8em;
					letter-spacing: 0em;
		}
    section .more{
    	width: 80px;
    }

    main p{
					font-size: small;
		}
		.btn,.btn-box {
        width: 64.4vw;
        margin: 8vw auto 0
    }

    .btn {
        height: 13.3333333333vw;
        border-radius: 2.6666666667vw
    }

    .btn:before {
        width: 4vw;
        height: 4vw;
        right: 3.3333333333vw
    }
		.l-flex,.pc {
		        display: block
		    }
        .footer_inqiry h4{
          margin: 1px;
        }
        .footer_inqiry p{
          margin: 1px;
        }
	}
	
  @media screen and (min-width: 426px) {
    #about .sp-images{
      display: none;
    }
  }

  /* 425px以下 */
  @media screen and (max-width: 425px) {
    #about .pc-images{
      display: none;
    }
    main h2{
      font-size:medium;
    }

  }
