@charset "utf-8";



/*Google Fontsの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Amarante&family=Jacques+Francois&family=Kaisei+HarunoUmi:wght@700&display=swap');


/*slide.cssとmenu.cssの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@import url(sof_slide.css);
@import url(sof_menu.css);



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

/*全体の設定
---------------------------------------------------------------------------*/
body.home,html {width: 100%;height: 100%;overflow-x: hidden;}
body {
	margin: 0px;
	padding: 0px;
	color: #777;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", 'Jacques Francois', serif;	/*フォント種類*/
	font-size: 13px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
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: #777;		/*リンクテキストの色*/
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
	color: #000;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}


/*トップページのcontainerとsub共通
---------------------------------------------------------------------------*/
.home #container,.home #sub {
	height: 100%;
}

/*トップページのmain共通
---------------------------------------------------------------------------*/
.home #main {
	height: 95%;
}

/*container。サイト全体を囲むブロック
---------------------------------------------------------------------------*/
#container {
	max-width: 1500px;	/*最大幅の制限。これ以上広がらない。*/
}

/*mainブロック
---------------------------------------------------------------------------*/
#main {
	overflow: hidden;
	float: right;		/*右に回り込み*/
	width: 69%;			/*ブロックの幅*/
	padding: 30px 3% 0;	/*上、左右、下へのブロック内の余白*/
}
/*トップページでの追加設定*/
.home #main {
	width: 75%;	/*ブロックの幅*/
	padding: 0;	/*余白のリセット*/
}
/*h2タグ*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	font-size: 36px;				/*文字サイズ*/
	color: #aea863;					/*文字色*/
	font-family: 'Jacques Francois', serif;	/*フォントの指定*/
	line-height: 1.4;				/*行間*/
	border-bottom: 1px solid #aea863;	/*下線の幅、線種、色*/
	padding-bottom: 15px;				/*h2タグ内の下側に空ける余白。小文字と下線との間のスペースです。*/
}
/*h2タグの小文字*/
#main h2 span {
	display: block;
	font-size: 20px;		/*文字サイズ*/
	font-family: 'Kaisei HarunoUmi', serif;
	padding-left: 3px;		/*左に空ける余白*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
}
/*h3タグ*/
#main h3 {
	clear: both;
	margin-bottom: 18px;
	font-family: 'Jacques Francois', serif;	/*フォントの指定*/
	font-size: 24px;	/*文字サイズ*/
	color: #333;		/*文字色*/
}
/*h3タグの左のアクセントライン*/
#main h3::first-letter {
	border-left: 2px solid #333;	/*左側の線の幅、線種、色*/
	padding-left: 10px;		/*ラインと文字との間の余白*/
}
/*h3タグの小文字*/
#main h3 span {
	display: block;
	font-size: 16px;		/*文字サイズ*/
	font-family: 'Kaisei HarunoUmi', serif;
	padding-left: 1em;		/*左に空ける余白*/
	margin-top: -0.5em;	
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
}
/*h4タグ*/
h4 {
	font-family: 'Kaisei HarunoUmi', serif;
	font-size: 18px;		/*文字サイズ*/
	color: #000000;					/*文字色*/
	padding; 0
	
}

/*h5タグ*/
h5 {
	font-family: 'Kaisei HarunoUmi', serif;
	font-size: 32px;		/*文字サイズ*/
	color: #000000;					/*文字色*/
	margin-top: -0.5em;

}
/*h5タグの小文字*/
#main h5 span {
	display: block;
	font-size: 18px;		/*文字サイズ*/
	font-family: 'Kaisei HarunoUmi', serif;
	margin-top: -20px;	
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
}

/*段落(p)タグ*/
#main p {
	padding: 0 10px 10px;	/*上、左右、下への余白*/	
}
/*他*/
#main p + p {
	margin-top: -10px;
}
#main h2 + p, 
#main h3 + p {
	margin-top: -7px;
}
#main section + section {
	clear: both;
	padding-top: 30px;
}

p.ss {

    display:flex; 
	justify-content:center;
    list-style:none;
	padding: 20px;

}

/*listボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list {
	position: relative;
	width: 24%;		/*幅*/
	margin: 0.5%;	/*外側に空けるスペース*/
	float: left;	/*左に回り込み*/
	background: #000;	/*背景色*/
}
/*画像*/
#main .list img {
	opacity: 0.5;	/*透明度。50%色がついた状態。*/
}
/*マウスオン時の画像*/
#main .list a img:hover {
	opacity: 1;		/*透明度。100%色がついた状態。*/
}
/*タイトル*/
#main .list span {
	position: absolute;
	bottom: 10px;		/*下から10pxの場所に配置*/
	left: 0px;			/*左から0pxの場所に配置*/
	width: 90%;		/*幅*/
	padding: 5px 5%;		/*余白*/
	font-size: 10px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	display: none;		/*デフォルトでは非表示にしておく*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒のことで0.7は70%色がついた状態のこと。*/
	color: #fff;	/*文字色*/
}
/*マウスオン時*/
#main .list:hover span {
	display: block;	/*表示させる*/
}

.container {
  display: flex;
  margin: 10px 30px;
  flex-wrap: row wrap;
  align-items: center
  
}

.set-flex {
  display: flex;
}

.container .item {
  margin: 5px;
  padding: 0;
}
/*subブロック
---------------------------------------------------------------------------*/
#sub {
	float: left;		/*左に回り込み*/
	width: 25%;			/*ブロックの幅*/
	max-width: 375px;	/*最大幅。これ以上広がらないようにする。*/
	text-align: center;	/*ブロック内を中央に*/
	position: fixed;	/*画面をスクロールしても固定させる指定*/
}
/*subブロックのロゴ。menu.cssにもアニメーションに関連する指定が入っています。*/
#sub .logo {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 20px 0;	/*上下、左右への余白*/
}
/*ロゴ画像*/
#sub .logo img {
	width: 60%;	/*幅*/
}

/*footerブロック
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: right;	/*右寄せ*/
	padding-right: 3%;	/*右に空ける余白*/
	padding-top: 40px;	/*上に空ける余白*/
}
.home footer {padding-top: 0px;}
footer a {text-decoration: none;}
footer .pr {display: block;}

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

/*フォーム関連
---------------------------------------------------------------------------*/
/*ボタン（btn）*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: linear-gradient(#fafafa, #eee);/*背景グラデーション*/
}
/*マウスオン時のボタン（btn）設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;	/*背景色*/
}
/*input,textarea共通*/
input,textarea {
	outline: none;background: transparent;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*input,textareaのフォーカス時*/
input:focus,textarea:focus {
	border: 1px solid #333;	/*枠線の幅、線種、色*/
}

/*ボタン
---------------------------------------------------------------------------*/
.button019 a {
    background: #eae8e1;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 5px 5px;
    max-width: 100px;
	max-height: 14px;
    padding: 5px 1px;
    color: #313131;
	text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 700;
}
.button019 a:hover {
    background: #999457;
    color: #FFF;
}
.button019 a:after {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button019 a:hover:after {
    border-color: #FFF;
}
.wrap{
  padding: 2px 10px;
}
.box{
  display:inline-block;
  text-align:center;
  padding: 0px 10px;
  width:100px;
}

/*DLボタン
---------------------------------------------------------------------------*/

.complex-button {
  background: linear-gradient(#4496d3,#a1d8e2);
 /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  font-family: 'Jacques Francois', serif;	/*フォントの指定*/
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  width: 240px;
  margin-left: 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  /* border-radius: 10px; */
}

.complex-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: skewX(-30deg);
  transition: all 1s ease-in-out;
}

.complex-button:hover::before {
  left: 100%;
}

.complex-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease-in-out;
}

.complex-button:hover::after {
  width: 100%;
}

.complex-button span {
  position: relative;
  z-index: 1;
}

.complex-button:hover {
  color: #ffffff;
  background-color: #00afcc;
}


/*ページの上部に戻る「↑」ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {
	display: none;
}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;animation-name: scroll;animation-duration: 1s;animation-fill-mode: forwards;
	width: 50px;		/*ボタンの幅*/
	line-height: 50px;	/*ボタンの高さ*/
	bottom: 50px;		/*ウィンドウの下から20pxの場所に配置*/
	right: 1%;			/*ウィンドウの右から1%の場所に配置*/
	color: #fff;		/*文字色*/
	border-radius: 50%;	/*角丸指定。50%にすると円形になる。四角形がいいならこの１行削除。*/
	background: #000;	/*背景色*/
}
/*マウスオン時の背景色*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}


/*トップページの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;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
    width:640px;
    height:480px;
  transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
    width:640px;
    height:480px;
  opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
  margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
  margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

a:hover,
a:active{
  text-decoration: none;
}

/*区切り線
---------------------------------------------------------------------------*/
hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

hr {
    border: 0;
    height: 1px;
	margin: 1.5em;
    background: #808080;
    background-image: linear-gradient(to right, #e8e8e8, #808080, #e8e8e8);
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #222;padding: 5px 10px;border-radius: 4px;border: 1px solid #333;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #aea863 !important;}
.color2, .color2 a {color: #ff7f7f !important;}
.colorS, .colorS a {color: #e4007f; font-family: 'Amarante', cursive; font-size: 18px;}
.colorA, .colorA a {color: #ea5532; font-family: 'Amarante', cursive; font-size: 18px;}
.colorB, .colorB a {color: #ee7800; font-family: 'Amarante', cursive; font-size: 18px;}
.colorC, .colorC a {color: #e6b422; font-family: 'Amarante', cursive; font-size: 18px;}
.colorD, .colorD a {color: #37a34a; font-family: 'Amarante', cursive; font-size: 18px;}
.colorE, .colorE a {color: #4496d3; font-family: 'Amarante', cursive; font-size: 18px;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 50px;}
.big2 {font-size: 24px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.dn {display: none;}
.sh {display: none;}
#sh-sub {display: none;}

	font-family: 'Kaisei HarunoUmi', serif;
	font-size: 20px;		/*文字サイズ*/


/*画面の高さが620px以下の場合の（大きな端末用）設定。
左メニューが620px以下になると切れて見えなくなるので、固定からスクロール表示に切り替えます。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-height:620px){

/*subブロック
---------------------------------------------------------------------------*/
#sub {
	position: absolute;	/*固定からスクロール表示に変更*/
	height: auto;
}

}



/*画面を横向きにした場合の高さが500px以下の場合の設定。
※小さな端末用メニューを２列にします。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li a {
	float: left;		/*左に回り込み*/
	width: 44%;			/*幅*/
	line-height: 1.2;	/*行間*/
}

}



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

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。
透明(opacity: 0;)から色をつける(opacity: 1;)までの指定。*/
@keyframes menubar {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: fixed;
	top: 70px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	animation-name: menubar;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-family: 'Jacques Francois', serif;	/*冒頭で読み込んでいるGoogleFontsの指定*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 10px 3%;	/*メニュー内の余白。上下、左右。*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
}
/*説明表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 50;
	top: 8px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: url(../images/icon_menu.png) no-repeat center top/50px;	/*背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*mainブロック
---------------------------------------------------------------------------*/
#main {
	float: none;
	width: auto !important;
}

/*subブロック
---------------------------------------------------------------------------*/
#sub {
	display: none;
}

/*小さな端末用(800px以下)で表示させるブロック
---------------------------------------------------------------------------*/
#sh-sub {
	display: block;	/*非表示から表示に切り替える*/
	position: relative;z-index: 2;
}
/*ロゴブロック*/
#sh-sub .logo {
	position: fixed;z-index: 2;
	top: 0px;			/*上から0pxの場所に配置*/
	height: 70px;		/*ブロックの高さ*/
	width: 100%;		/*ブロックの幅*/
	background: #000;	/*背景色*/
}
/*ロゴ画像*/
#sh-sub .logo img {
	width: 200px;		/*画像の幅*/
	margin-top: 22px;	/*上に空けるスペース。上下間をここで調整して下さい。*/
	margin-left: 3%;	/*左に空けるスペース。*/
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.big1 {font-size: 24px;}
.fl {float: none;}
.fr {float: none;}
.sh {display:block;}
.pc {display:none;}

}



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

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

/*mainブロック
---------------------------------------------------------------------------*/
/*h2タグ*/
#main h2 {
	font-size: 24px;
}
/*h3タグ*/
#main h3 {
	font-size: 14px;	/*文字サイズ*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px;	/*ボックス内の余白*/
}
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;	/*幅*/
}

}