@charset "utf-8";


/*PC・タブレット・スマホ(全端末)共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	-webkit-text-size-adjust: none;
	color: #333333; /*全体の文字色*/;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; /*フォント種類*/;
	font-size: 18px; /*文字サイズ*/;
	line-height: 2; /*行間*/;
	background: #fff;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {
	margin: 0px;
	padding: 0px;
	font-size: large;
	font-weight: bold;
}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}



/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #4169e1;	/*リンクテキストの色*/
	transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
}
a:hover {
	color: #ff92c8;	/*マウスオン時の文字色*/
}

/*コンテナー（ホームページを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;	/*ブロックの最大幅*/
	margin: 0 auto;
	padding: 0 3%;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
	text-align: center;	/*内容を中央よせ*/
}


/*ロゴ画像設定*/
#logo img {
	width: 400px; /*画像幅*/;
	margin: 10px auto 0px;
	right: auto;
}


.slide-in {
  font-size: 30px;
  font-weight: bold;
  animation: slideIn 2s ease-out;
}

@keyframes slideIn {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.reflection{
display:inline-block;
position:relative;
overflow:hidden;
}
 
.reflection:after {
content:"";
height:100%;
width:30px;
position:absolute;
top:-180px;
left:0;
background-color: #fff;
opacity:0;
-webkit-transform: rotate(45deg);
-webkit-animation: reflection 3s ease-in-out infinite;
}
 
@keyframes reflection {
0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
65% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
66% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.border{
	position: relative;
	text-align: center;
	font-size: 18px;
}

.border:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	border-bottom: solid 1px #808080;
	transform: translateX(-50%);
	animation: border_anim 3s linear forwards;
}

@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}

.rote {
  float:right;
  margin-right:30px;
  animation: rotate-anime 2s linear infinite;
}
@keyframes rotate-anime {
  0%  {transform: rotateY(0);}
  100%  {transform: rotateY(360deg);}
}

.rote2 {
  float:left;
  margin-left:30px;
  animation: rotate-anime 2s linear infinite;
}
@keyframes rotate-anime {
  0%  {transform: rotateY(0);}
  100%  {transform: rotateY(360deg);}
}
/*=== 画像の表示エリア ================================= */
div.slide-show {
width: 780px; /* スライドショーの幅 */
max-width: 100%; /* スマホで表示が欠けないように */
margin: 20px auto; /* 中央揃え */
position: relative;
}
 
.slide-show img {
animation: show 15s infinite; /* 12秒のスライドショーを繰り返し */
border-radius: 20px;
max-width: 100%;
height: auto;
opacity: 0;
position: absolute; /* 画像を重ねて表示 */
left: 0;
top: 0;
}

.slide-show:hover img {
  box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
  transform: translateY(-10px);
  transition-duration: 0.5s;
}
 
@keyframes show {
0% {opacity: 0}
17% {opacity: 1}
33% {opacity: 1}
50% {opacity: 0}
}
 
.slide-show img:nth-of-type(1) {
position: relative;
}
 
.slide-show img:nth-of-type(2) {
animation-delay: 0s;
}
 
.slide-show img:nth-of-type(3) {
animation-delay: 5s;
}
 
.slide-show img:nth-of-type(4) {
animation-delay: 10s;
}
 

/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg img {
	border-radius: 20px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/
	margin-bottom: 20px;	/*下に空けるスペース*/
    margin-top   : 20px;
    transition-duration: 0.5s;
}

#mainimg:hover img {
  box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
  transform: translateY(-10px);
  transition-duration: 0.5s;
}

#mainimg2 img {
	border-radius: 20px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/
	margin-bottom: 10px;	/*下に空けるスペース*/
        margin-top   : 5px
/*    margin-right: 50px;  */
/*    margin-left: 50px;  */
    transition-duration: 0.5s;
}

#mainimg2:hover img {
/*  transform: scale(1.1); */
  box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
   transform: translateY(-10px);
  transition-duration: 0.5s;
}


#mainimg3 img {
	border-radius: 10px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/
	margin-bottom: 30px;	/*下に空けるスペース*/
    margin-top   : 30px
    margin-right: 30px;
    margin-left: 10px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
/*  transform: translateY(-5px);  */
/*    transition-duration: 0.5s;  */
}

/*メニュー/囲むブロック*/
#menubar {
	text-align: center;		/*文字をセンタリング*/
	font-size: 18px;		/*文字サイズ*/
	margin-bottom: 25px;	/*下に空けるスペース*/
       margin-top: 15px;
}
/*メニュー１個あたりの設定*/
#menubar li {
	display: inline;	/*横並びにする設定*/
}
#menubar li a {
	text-decoration: none;
    color: #999;	/*リンクテキストの色*/
	padding: 10px 10px;	/*各メニュー内の余白。上下に15px、左右に30pxあけるという意味。*/
}
/*マウスオン時の設定*/
#menubar li a:hover {
	color: #ff92c8;	/*文字色*/
	border-bottom: 4px solid #ff92c8;	/*下線の幅、線種、色*/
	letter-spacing: 0.1em;			/*文字間隔を少しだけ広くする指定。そのままがいいならこの１行を削除。*/
}

/*コンテンツ（見出しバーや文字などが入っているブロック）
---------------------------------------------------------------------------*/
/*コンテンツのh2タグの設定*/
#contents h2 {
    clear: both;
    margin-bottom: 20px;
    color: #fff;    /*文字色*/;
    padding: 10px 30px;    /*上下、左右への余白*/
/*background: #ff92c8;
    背景色*/
    background: linear-gradient(to right, #ff69b4, #ffb6c1);
    border-radius: 10px;
    font-size: large;
    font-style: normal;
    position: relative;
    background-color:#ffb6c1;
}

#contents h2::before{
    content: "";
    width: 0;
    height: 0;
    border-top: #ff69b4 10px solid;
    border-left: transparent 10px solid;
    border-right: transparent 10px solid;
    position: absolute;
    bottom: -10px;
    left: 50px;
   
}

/*コンテンツのh3タグの設定*/
#contents h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 8px 20px;/*上下、左右への余白*/
    background: #fff;/*背景色*/
    border: 1px solid #999;/*枠線の幅、線種、色*/
/*  border-radius: 10px; */
	padding-left: 50px;
    color: #727272;
}
/*コンテンツのli(段落)タグ設定*/
#contents li{
	padding: 10px 0px 10px;	/*上、左右、下への余白*/
    color: #727272;
}

/*コンテンツのp(段落)タグ設定*/
#contents p{
    padding: 5px 10px 5px;
    /*上、左右、下への余白*/
	color: #727272;
    font-size:medium;
}

/*他。微調整。
#contents p + p {
	margin-top: -5px;
    padding: 0px 40px 10px;
}*/

#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
    padding: 0px 40px 20px;
}
#contents section + section {
	margin-top: 30px;
}

#mail {
    clear: both;
    margin-bottom: 0px;
    margin-right:20px;
    margin-left:20px;
    padding: 0px 0px;    /*上下、左右への余白*/
    background: #FFF0F5;    /*背景色*/
    border: 2px solid #999;    /*枠線の幅、線種、色*/
    border-radius: 15px;
}

textarea {
	resize: vertical;
	width: 240px;
	height: 100px;
}

/*Galleryページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	border-bottom: 1px solid #999;	/*下線の幅、線種、色*/
	padding: 20px;	/*ボックス内の余白*/
}
/*h4見出しの設定*/
.list h4 {
	color: #ff92c8;	/*文字色*/
}
/*画像の設定*/
.list img {
	width: 20%;			/*画像幅*/
	float: left;		/*画像を左に回り込み*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}
/*段落タグ*/
.list p {
	padding: 0 !important;
}

/*フッター(ページ最下部のcopyrightのパーツ)設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;	/*文字をセンタリング*/
	padding: 30px 0px 10px;	/*上、左右、下へのボックス内の余白*/
}
footer a {
	text-decoration: none;
	border: none;
}
footer .pr {
	display: block;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #eee;	/*背景色*/
}
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;	/*センタリング*/
	width: 27%;			/*幅*/
}

.ta1 td {
	text-align: left;	/*センタリング*/
    padding-left: 20px;
}

/*テーブル１行目に入った見出し部分（※caption）*/
.ta2 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta2 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #eee;	/*背景色*/
}
/*ta1テーブルブロック設定*/
.ta2 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.ta2, .ta2 td, .ta2 th {
	word-break: break-all;
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta2 th {
	text-align: center;	/*センタリング*/
	width: 23%;			/*幅*/
}

.ta2 td {
	text-align: left;	/*センタリング*/
    padding-left: 0px;
}

.img_wrap img{
  width: 80px;
  cursor: pointer;
  transition-duration: 0.5s;
}
.img_wrap img:hover{
  transform: scale(1.1) rotate(9deg);
  transition-duration: 0.5s;
}


.headingrotateX {
    transition: 1.5s;
    transform: rotateX(360deg);
}

.headingrotateX:hover {
    transform: none;
    transition: 0s;
}

.click {
	font-size: 100%;
     
}
/*マウスオン時の設定*/
.click:hover {
    color:#ff1493;    /*文字色*/
letter-spacing: 0.1em;
    /*文字間隔を少しだけ広くする指定。そのままがいいならこの１行を削除。*/;
}

.text{
  font-size:100%;
  animation: flowing 4s linear infinite;
  transform: translatY(-100%);/*初期位置*/
}


@keyframes flowing {
  100% {
    transform: translateY(15px);
  }
}
/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.color1 {color: #ff92c8;}
.pr {font-size: 12px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}


/*画面幅580px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:580px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	display: block;	/*縦並びにする設定*/
	margin-bottom: 10px;
}
#menubar li a {
	text-decoration: none;
	padding: 8px 30px;	/*各メニュー内の余白。*/
}

/*Galleryページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	padding: 10px;	/*ボックス内の余白*/
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}

}
.imgright{
    /*コレ*/text-align: right;
    margin-right: 50px;
}

/***追従するトップへ戻るボタン***/
/***トップへ戻るボタン***/
html {
    scroll-behavior: smooth;
}

#page-top {
/*    position: sticky;*/
width: 120px;
height: 24px;
border-radius: 10px;
    display: block;
    font-weight: bold;
    padding: .7em;
    text-align: center;
    margin: auto;
    background: #ff69b4; /*背景色*/
    color: #fff; /*文字色*/
    transition: .3s;
}
/***マウスオーバー時***/
#page-top:hover {
    background: #666; /*背景色*/
    color: #fff; /*文字色*/
}
#footer {margin-top: 0!important}
/***トップへ戻るボタンここまで***/


/* スライダー全体 */
.slider-wrapper {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
}
/* スライド3枚のグループ */
.slider {
  animation: scroll-left 30s infinite linear .5s both;
  display: flex; /* スライド3枚を横並び */
}
/* スライド */
.slide {
  width: calc(100vw / 3); /* 3はスライドの枚数 */
}
/* スライドの画像 */
.slide img {
  display: block;
  width: 100%;
  height: 95%;
  bottom: 25px;
}
/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }

