@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;	/*全体の文字色*/
	background: #FFF;	/*全体の背景色*/
	margin: 0px;
	padding: 0px;
	font-family: "メイリオ", "Meiryo", "MS Ｐゴシック", Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.5;
  }
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #1a247c;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 989px;	/*コンテナー幅*/
	margin: 0px auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;	/*ヘッダーの幅*/
	height: 100px;	/*ヘッダーの高さ*/
	position: relative;
}
/*h1タグの設定*/
header h1 {
	font-size: 9px;		/*文字サイズ*/
	line-height: 10px;	/*行間*/
	position: absolute;
	bottom: 8px;			/*ヘッダーブロックに対して下から8pxの位置に配置*/
	right: 10px;			/*ヘッダーブロックに対して右から10pxの位置に配置*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準に。太字がいいならこの１行削除。*/
}
/*ロゴ画像の設定*/
header #logo {
	position: absolute;
	left: 20px;	/*ヘッダーブロックに対して左から20pxの位置に配置*/
	top: 8px;	/*ヘッダーブロックに対して上から22pxの位置に配置*/
}
/*ヘッダー右側のアイコン類*/
#h-nav {
	position: absolute;
	right: 3%;	/*右から3%の場所に配置*/
	top: 34px;	/*上から34pxの場所に配置*/
}
/*ヘッダー右側のアイコン類（１個あたり）*/
#h-nav li {
	float: left;
	margin-left: 20px;	/*アイコン間の余白*/
}
/*ヘッダー右側のアイコン類（画像）*/
#h-nav li img {
	display: block;
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	background: #fff;	/*背景色*/
	border-radius: 4x;	/*角丸のサイズ。50%にすると正円になる。*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	line-height: 1.6;
	margin-right: 5px;
	margin-bottom: 20px;
	width: 136px;
}
nav#menubar ul li.last {
	margin-right: 0px;
}
nav#menubar ul li a {
	color: #000;		/*文字色*/
	padding: 10px 0px;	/*左から、上下、左右への余白。（メニュー内の）*/
	text-decoration: none;
	display: block;
	text-align: center;
	background: #fff;	/*背景色（※古いブラウザ用）*/
	background: url(../images/list.gif) no-repeat 10px center, -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: url(../images/list.gif) no-repeat 10px center, -webkit-linear-gradient(#FFF, #ebebeb);	/*同上*/
	background: url(../images/list.gif) no-repeat 10px center, linear-gradient(#FFF, #ebebeb);			/*同上*/
	border-radius: 10px 10px 10px 10px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	background: #5bb2e4;	/*背景色*/
	color: #FFF;	/*文字色*/
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #5bb2e4;	/*背景色*/
	color: #FFF;	/*文字色*/
}

#menubar li a:hover, #menubar li.current2 a {
	background: #ff6c6c;	/*背景色*/
	color: #FFF;	/*文字色*/
}

/*DK(トップメニューの点滅）
---------------------------------------------------------------------------*/
.blink {
	animation: blink 0.5s ease-in-out infinite alternate;
 }
   
@keyframes blink {
	0% {
	  opacity: 0.1;
	}
	50% {
	  opacity: 1;
	}
	100% {
	  opacity: 1;
	}
 }

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;
	height: auto;
	position: relative;
	border-radius: 8px;	/*角丸のサイズ*/
	-webkit-box-shadow: 1px 1px 8px rgba(0,0,0,0.3);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 1px 8px rgba(0,0,0,0.3);			/*同上*/
	margin-bottom: 30px;

}
#mainimg img {
	border-radius: 8px;	/*角丸のサイズ*/
	object-fit: cover;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	z-Index:1;
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}
/*トップページのギャラリー
---------------------------------------------------------------------------*/
.main_gallery {
	display: block;
	margin-bottom: 20px;
	border-radius: 4px;	/*角丸のサイズ。50%にすると正円になる。*/
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 950px;	/*コンテンツ幅*/
	padding-top: 30px;
	margin: 0px auto;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 700px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	background: #5bb2e4;	/*背景色*/
	border: 1px solid #5bb2e4;		/*枠線の幅、線種、色*/
	border-radius: 6px 6px 0px 0px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 120%;
	color: #FFF;	/*文字色*/
	padding: 5px 15px;	/*左から、上下、左右への余白*/
	clear: both;
}
/*h2を画像にする場合の設定*/
#main h2.img {
	border-bottom: none;
	padding: 0;
	background: transparent;
	-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.2);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.2);			/*同上*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	border: 1px solid #ccc;	/*枠線の幅・線種・色*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg2.png), -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: url(../images/bg2.png), -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: url(../images/bg2.png), linear-gradient(#FFF, #e3e3e3);			/*同上*/
	background-repeat: no-repeat;		/*右側の装飾画像をリピートしない設定*/
	background-position: right center;	/*上記画像の位置*/
	font-size: 120%;
	padding: 4px 15px;	/*上下、左右への余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	clear: both;
}


h4 {
padding: 0.4em 0.5em;/*文字の上下 左右の余白*/
color: #494949;/*文字色*/
background: #f4f4f4;/*背景色*/
border-left: solid 5px #1ec17a;/*左線*/
border-bottom: solid 3px #d7d7d7;/*下線*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*上、左右、下への余白*/
}
/*FAQページの設定
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 15px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #0000FF;	/*文字色*/
	font-weight: bold;	/*太字*/
	padding-top: 15px;
	font-size: 120%;
}
.faq dt a {
	color: #1a4ef7;
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}
/*Cast用の各ブロック
---------------------------------------------------------------------------*/
/*各キャストボックスの設定*/
.list {
	position: relative;
	overflow: hidden;
	float: left;		/*左に回り込み*/
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.5;
	width: 23%;		/*ボックスの幅*/
	margin-left: 1.25%;
	margin-bottom: 15px;
	border: 1px solid #fff;	/*枠線の幅、線種、色。*/
}
.list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 5px;	/*ボックス内の余白*/
	height: 150px;	/*高さ*/
}
/*マウスオン時の背景色*/
.list a:hover {
	background: #fff;
}
/*２カラム時のボックス幅*/
.c2 .list a {
	padding: 15px;
	height: 190px;
}
/*ボックス内のp(段落)タグ設定*/
.list p {
	text-align: center;	/*文字をセンタリング*/
	font-size: 15px;	/*文字サイズ*/
	color: #1ec17a;	/*文字色*/
	font-weight: bold;	/*太字*/
}

/* 2カラム（スマートフォンでは1カラム) */
.twoCol {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: censpace-betweenter;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position:relative;
	overflow:hidden;
	margin-bottom:60px;
}
.twoCol .inner {
	position: relative;
	overflow:hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: censpace-betweenter;
	justify-content: space-between;
	-ms-flex-direction: column-reverse;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	flex-direction: column;
	width: 48.98%;
	width: calc((480 / 980) *100%);
	height: auto;
	margin: 0 0 20px 0;
}
.twoCol .inner div:nth-child(2n+1) {
	clear:both;
}
.twoCol .inner .image {
	width: 80%;
	min-height: 0%;
	-webkit-box-shadow: 1px 6px 10px rgba(0,0,0,0.2);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
}
.twoCol .inner img {
	width:100%;
}

@media screen and (max-width:767px) {
	.twoCol {
		display: block;
		margin-bottom:20px;
	}
	.twoCol .inner {
		width :85%;
		margin:0 0 10px 0;
	}
}

/*共通設定*/
.mark1, .mark2 {
	display: inline-block;
	position: absolute;
	left: 5px;	/*ボックス内の左から5pxの場所に配置*/
	top: 5px;	/*ボックス内の上から5pxの場所に配置*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	font-size: 9px;		/*文字サイズ*/
	text-align: center;
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸のサイズ*/
	transform: rotate(-30deg);	/*左回転で30度傾ける設定*/
	-webkit-box-shadow: 1px 2px 4px rgba(0,0,0,0.6);	/*ボックスの影。下へ、右へ、広げる範囲、rgb指定での色。0,0,0は黒のことで、0.6が透明度60%の事。*/
	box-shadow: 1px 2px 4px rgba(0,0,0,0.6);
}
.mark1 {
	background: #1ec17a;	/*mark1の背景色*/
}
.mark2 {
	background: #1ec17a;	/*mark2の背景色*/
}

.fa-hand-point-up-regular{
	color:#0070c0;
}
/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 220px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	text-align: center;	/*中身をセンタリング*/
	padding: 5px 0px;	/*上下・左右への余白*/
	border-radius: 6px 6px 0px 0px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
/*写真サムネイルボックス
---------------------------------------------------------------------------*/
#main .photobox {
	padding: 10px;	/*ボックス内の余白*/
	background: whitesmoke;	/*背景色*/
	float: left;
	width: 100px;	/*ボックスの幅*/
	height: 100px;	/*ボックスの高さ*/
	display: inline;	/*ie6用*/
	margin-left: 10px;	/*ボックス同士の左右間のスペース*/
	margin-bottom: 1em;	/*ボックス同士の上下間のスペース*/
	color: #000;		/*文字色*/
	font-size: 9px;	/*文字サイズ*/
	border: 1px solid #e6e6fa;	/*枠線の幅、線種、色*/
}
/*段落タグ共通設定*/
#main .photobox p {
	padding: 0px;
}
#main .photobox a {
	color: #FFF;	/*リンクテキストの色*/
}
#main .photobox a img {
	border: 1px solid #d3d3d3;	/*サムネイル画像のフチの設定*/
}
#main .photobox a:hover img {
	border-color: #708090;		/*サムネイル画像のマウスオン時のフチの設定*/
}
/*boxに入れた場合の写真ボックス*/
#main .box .photobox {
	margin-left: 10px;
}
/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
	text-align: center;		/*中身をセンタリング*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	border-bottom: 1px solid #ccc;	/*下側の線の幅、線種、色*/
	text-decoration: none;
	font-size: 109%;
	color: #0000FF;				/*文字色*/
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	display: block;
}
/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	background-color: #e6e6e6;	/*背景色*/
	color: #222;				/*文字色*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるのスペース*/
	background-color: #FFF;
	border: 4px double #ccc;	/*枠線の線の幅、線種、色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}
footer a:hover {
	color: #666;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new{
	margin-bottom: 15px;
}
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ボックスの高さ*/
	padding-left: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 10px;
	text-align: center;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #e3e3e3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #d7d7d7;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#d7d7d7));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #d7d7d7);	/*同上*/
	background-image: linear-gradient(#FFF, #d7d7d7);			/*同上*/
	border: none;
	-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.5);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.5);			/*同上*/
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#d7d7d7), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#d7d7d7, #FFF);	/*同上*/
	background-image: linear-gradient(#d7d7d7, #FFF);			/*同上*/
	-webkit-box-shadow: none;
	box-shadow: none;
	position: relative;
	left: 1px;
	top: 1px;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #999;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	border-radius: 30px;	/*角丸のサイズ*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #666;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #1a247c;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
.icon1::before{
  content:'\f0a6'
	color:#0070c0;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}

.profile_item {
	margin-top: 5px;
	margin-bottom: 5px;
}

.recommed_profile {
	padding: 4px;
	font-weight: 800;
	background-color: #FAEAB1;
	border-radius: 7px;
}

.number {
	padding: 2px 4px;
	background: #fff;
  	border-radius: 50%;
	color: #ff6c6c;
  	text-align: center;
}

/*　お問い合わせフォーム　*/
.container {
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 400px;
}

label {
	display: block;
	margin-bottom: 8px;
}

input, textarea {
	width: 100%;
	padding: 8px;
	margin-bottom: 16px;
	box-sizing: border-box;
}

button {
	background-color: #007bff;
	color: #fff;
	padding: 10px 15px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
}

button:hover {
	background-color: #0056b3;
}



/*　お問い合わせフォーム　*/
.profile_img_1 {
	margin: 10px auto;
	width: 98%;
	border: #5bb2e4 solid 8px;
	border-radius: 10px;
	background-color: #5bb2e4;

	img {
		border-radius: 8px;
	}
}

.ttl {
	margin-top: 20px;
	font-size: 16px;
	display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

	strong {
		font-size: 26px;
		text-shadow: 5px 5px #f4d650;
		letter-spacing: 5px;
	}
}

.ttl::before,
.ttl::after {
  content: "";
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 0px 15px 4px;
}
 
.ttl::before {
  transform: rotate(45deg);
}
 
.ttl::after {
  transform: rotate(-45deg);
}


.txt {
	margin-top: 20px;
	background-color: ;

	strong {
		font-size: 18px;
		background: linear-gradient(transparent 60%, #f4d650 0%);
		display: inline-block;
	}
}

.highlight_1 {
	font-size: 18px;
	font-weight: bold;
	color: #f4d650;
	background: linear-gradient(90deg, #f4d650, #e47863, #f4d650);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	color: transparent;
	animation: gradientShift 3s infinite, blink 3.5s step-end infinite;
}

/* グラデーションが左右に移動するアニメーション */
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

/* 点滅アニメーション */
@keyframes blink {
	50% {
		opacity: 0.9;
	}
}

.highlight_2 {
	font-size: 18px;
	font-weight: bold;
	color: #f4d650;
	background: linear-gradient(90deg, #f4d650, #e47863, #f4d650);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	color: transparent;
	animation: gradientShift 3s infinite, blink 3.5s step-end infinite;
}

/* グラデーションが左右に移動するアニメーション */
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

/* 点滅アニメーション */
@keyframes blink {
	50% {
		opacity: 0.9;
	}
}

.btn_access {
	margin: 15px auto;
	padding: 12px 17px;
	width: fit-content;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	border-radius: 25px;
	border: 4px solid #f4d650;
	transition: 0.2s;

	a {
		text-decoration: none;
		color: #f4d650;
		transition: 0.2s;
	}
}

.btn_access:hover {
	border: 4px solid #333;
	background-color: #f4d650;
	opacity: 0.8;
    transition: 0.2s;

	a {
		color: #333;
		transition: 0.2s;
	}

}


.txt_carefull {
	margin-top: 0px;
	font-size: 12px;
	color: tomato;
}

.profile_imgs {
	display: flex;
	margin:30px auto 0 auto ;
	gap: 30px;
	justify-content: center;

}

.profile_img_2 {
	width: 40%;
	img {
		border-radius: 8px;
	}
}

/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;
	height: 90px;
	margin-bottom: 20px;
}
/*h1見出しタグ設定*/
header h1 {
	display: none;
}
/*ロゴ画像の設定*/
header #logo {
	position: static;
}
/*電話番号ボックスの設定*/
header #tel {
	position: static;
}
/*ヘッダー右側のアイコン類*/
#h-nav {
	right: 7%;	/*右から20%の場所に配置*/
        top: 30px
}
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list1 {
	width: auto;
	float: none;
	margin-bottom: 0;
	line-height: normal;
	border-bottom: 1px solid #ccc;
}
#main .list1:first-of-type {
	border-top: 1px solid #ccc;
}
#main .list1 a {
	height: auto;
	border-right: none;
}
/*１、５、１０個目…のボックスへの追加設定*/
#main .list1:nth-of-type(4n+1) a {
	border-left: none;
}
/*ボックス内の画像(figure)タグ設定*/
#main .list1 figure {
	float: left;
	width: 30%;
	margin-right: 10px;
}
/*ボックス内の段落(p)タグ設定*/
#main .list1 p {
	font-size: 100%;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	padding: 0px 10px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	margin-right: 0;
	margin-bottom: 5px;
	width: 49%;
}
/*奇数番目のメニューの設定*/
nav#menubar ul li:nth-child(odd) {
	margin-right:1%;
	width: 50%;
}
/*最後のメニューの設定*/
nav#menubar ul li:last-child a {
	margin-bottom: 10px;
}
/*英語表記の設定*/
nav#menubar ul li a span {
	display: none;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	padding-top: 20px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 100px;
	text-align: center;
	margin-bottom: 10px;
}
/*h1見出しタグ設定*/
header h1 {
	display: none;
}
/*ロゴ画像の設定*/
header #logo {
	position: static;
}
header #logo img {
	width: 80%;	/*ロゴ画像の幅*/
	height: auto;
	margin: 10px 0px;
}
/*電話番号ボックスの設定*/
header #tel {
	position: static;
}
/*ヘッダー右側のアイコン類*/
#h-nav {
	right: 0%;	/*右から20%の場所に配置*/
        top: 40px
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	padding: 0px 10px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: none;
	width: 100%;
	margin: 0;
}
nav#menubar ul li a {
	border-radius: 0 0 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child a {
	border-radius: 10px 10px 0 0;
}
/*最後のメニューの設定*/
nav#menubar ul li:last-child a {
	border-radius: 0 0 10px 10px;
	margin-bottom: 10px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	padding-top: 10px;
}
/*各ボックスの設定*/
.list {
	float: none;
	width: auto;
	margin: 0;
	border: none;
	border-top: 1px solid #eee;
}
.list:last-child {
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
}
.list a {
	padding: 10px !important;
	height: auto !important;
}
/*画像*/
.list figure {
	float: left;	/*左に回り込み*/
	width: 40%;		/*画像幅*/
	margin-right: 10px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 5px 1em;	/*左から、上、左右、下への余白*/
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#95e2c0), to(#1ec17a));	/*マイナスアイコンとグラデーション*/
	background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#95e2c0, #30c684 49%, #1ec17a 50%);	/*同上*/
	background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, linear-gradient(#95e2c0, #30c684 49%, #1ec17a 50%);			/*同上*/
}
section#new h2.close {
	background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#95e2c0), to(#1ec17a));	/*プラスアイコンとグラデーション*/
	background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#95e2c0, #30c684 49%, #1ec17a 50%);	/*同上*/
	background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, linear-gradient(#95e2c0, #30c684 49%, #1ec17a 50%);			/*同上*/
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	margin: 5px 5px 0px;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定
body.s-n #sub {
	display: none;
}*/
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}

}


.profile_img_1 {
	margin: 10px auto;
	width: 98%;
	border: #5bb2e4 solid 8px;
	border-radius: 10px;
	background-color: #5bb2e4;

	img {
		border-radius: 8px;
	}
}

.ttl {
	font-size: 14px;
	display: flex;

	strong {
		font-size: 22px;
		text-shadow: 4px 4px #f4d650;
		letter-spacing: 5px;
	}
}

.ttl::before,
.ttl::after {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #000;
  margin: 0px 5px 4px;
}
 
.ttl::before {
  transform: rotate(45deg);
}
 
.ttl::after {
  transform: rotate(-45deg);
}


.txt {
	margin-top: 20px;
	background-color: ;

	strong {
		font-size: 18px;
		background: linear-gradient(transparent 60%, #f4d650 0%);
		display: inline-block;
	}
}

.highlight_1 {
	font-size: 18px;
	font-weight: bold;
	color: #f4d650;
	background: linear-gradient(90deg, #f4d650, #e47863, #f4d650);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	color: transparent;
	animation: gradientShift 3s infinite, blink 3.5s step-end infinite;
}

/* グラデーションが左右に移動するアニメーション */
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

/* 点滅アニメーション */
@keyframes blink {
	50% {
		opacity: 0.9;
	}
}

.highlight_2 {
	font-size: 18px;
	font-weight: bold;
	color: #f4d650;
	background: linear-gradient(90deg, #f4d650, #e47863, #f4d650);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	color: transparent;
	animation: gradientShift 3s infinite, blink 3.5s step-end infinite;
}

/* グラデーションが左右に移動するアニメーション */
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

/* 点滅アニメーション */
@keyframes blink {
	50% {
		opacity: 0.9;
	}
}

.btn_access {
	margin: 15px auto;
	padding: 12px 17px;
	width: fit-content;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	border-radius: 25px;
	border: 4px solid #f4d650;
	transition: 0.2s;

	a {
		text-decoration: none;
		color: #f4d650;
		transition: 0.2s;
	}
}

.btn_access:hover {
	border: 4px solid #333;
	background-color: #f4d650;
	opacity: 0.8;
    transition: 0.2s;

	a {
		color: #333;
		transition: 0.2s;
	}

}


.txt_carefull {
	margin-top: 0px;
	font-size: 12px;
	color: tomato;
}

.profile_imgs {
	display: flex;
	margin:30px auto 0 auto ;
	gap: 30px;
	justify-content: center;

}

.profile_img_2 {
	width: 40%;
	img {
		border-radius: 8px;
	}
}
