@charset "utf-8";

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");






.wrapper {
    width: 1400px;
    margin: 0 auto;
  }






/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	overflow-x: hidden;
    min-height: 100%;    /*背景グラデーション用*/
    font-size: 14px;    /*基準となるフォントサイズ。下の方にある「画面幅800px以上」で基準を大きなサイズに変更しています。*/
}

body {
	font-family: 'M PLUS Rounded 1c', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic";	/*フォント種類*/
	-webkit-text-size-adjust: none;
    background: #fff;	/*背景色*/
	color: #555;	    /*全体の文字色*/
	line-height: 2;		/*行間*/
}





/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*section全般の設定*/
section + section {
	padding-top: 40px;	/*sectionの間に空けるスペース*/
}



/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #555;	/*文字色*/
}

a:hover {
	color: #999;	/*マウスオン時の文字色*/
}

/*headerブロック（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
    text-align: center;		/*中身をセンタリングする*/
    padding-top: 20px;		/*上に空ける余白*/
}

/*ロゴテキスト*/
header #logo {   
    margin: 0;
    letter-spacing: 0.1em;    /*文字間隔を少しだけ広くとる設定*/
    font-size: 2.8rem;
    font-family: 'Redressed', cursive;        /*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}
header #logo a {
    text-decoration: none;
}



/*メニューの設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#menubar ul {
    list-style: none;
	text-align: center;
    display: flex;
    /*justify-content: space-around;*/
    /*background-color: #999;*/
    
}
/*#menubar ul li{
    width: 25%;
    text-align: center;
}

/*リンクテキストの設定*/
#menubar a {
	display: block;
    text-decoration: none;
	padding: 0px 8px;	/*上下、左右へのテキスト内にとる余白。*/
    color: #000;
    font: bold;
    /*font-family: 'Redressed', cursive;*/
}

/*メニュー１個あたりの設定*/
#menubar li {
	/*display: inline-block;	/*メニューを横並びにする指定*/
	text-align: center;		/*テキストをセンタリング*/
    position: relative;
    width: 25%;
    margin-bottom: 40px;
}
#menubar a:hover{
    background-color: #555;
    color: #fff;
    transition: all 0.3s;
}
#menubar li::before {
    content: "";
    background: #ccc;	/*下線の色*/
    height: 5px;		/*下線の高さ*/
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
	transition: 0.2s;	/*アニメーションにかける時間*/
    transition-timing-function: ease-out;
	transform: scaleX(0);
}

/*マウスオン時*/
#menubar li:hover::before {
	transform: scaleX(1);
}

/* ーーーーー------ 追加 ---------------------------------------　　*/
.title{
    width: auto;
    background: rgb(128, 66, 45);
}
.title h1{
    text-align: center;
    line-height: 200%;
    /*text-shadow: rgb(221, 218, 226) 5px 2px;
    /*text-decoration: underline;*/
    text-decoration-color: #78adf6;
    font-size: 36px;
    font-style: oblique;
    color: #fff;
    margin: 100px 0px;
    
}
.supp{
   width: 82%;
   margin: 0 auto;
    overflow: hidden;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 5px;		/*角丸のサイズ。*/
	padding: 20px;			/*ボックス内の余白*/
	margin-bottom: 100px;	/*ボックス同士（上下間）に空けるスペース*/
	background: rgba(0,0,0,0.05);	/*背景色。*/ 
}
.supp h4{
    color: brown;
    text-align: center;

}
.main-contents{
    width: 700px;
    margin: 0 auto;
    overflow: hidden;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 5px;		/*角丸のサイズ。*/
	padding: 20px;			/*ボックス内の余白*/
	margin-bottom: 30px;	/*ボックス同士（上下間）に空けるスペース*/
	background: rgba(0,0,0,0.05);	/*背景色。*/
}
.main-contents p a{
    color: cornflowerblue;
}
.main-contents p a:hover{
    color: #78adf6;
}
.main-contents h3 a{
    color: cornflowerblue;
}
.main-contents h3 a:hover{
    color: #78adf6;
}
.main-contents h4{
    text-decoration: underline;
    text-decoration-color: #555;
}

.main-img{
    margin: 100px auto;
    width: 92%;
    height: 80%;
}
.main-img img{
    justify-content: center;
}

/*------------------------------------------目次設定--------------------------------------------*/
.index{
    width: 35%;
    background-color: #eee;
    box-shadow: 5px 5px 5px 5px #BBBBBB;
    margin: auto;
    margin-top: 100px;
}
.index h3{
    padding: 20px 20px;
    text-align: center;
}

.index ul{
    padding-right: 8px;
    padding-bottom: 8px;
}
.index ul a{
    font-size: 110%;
    color: #006aff;
}
.index ul a:hover{
    color: #78adf6;
    transition: 0.3s;
}
.child_ul {
    padding-bottom: 8px;
}

.child_ul li{
    list-style: none;
}
.child_ul li a{
    font-size: 90%;
    color: #555;
}
.child_ul li a:hover{
    color: rgb(180, 180, 180);
    transition: 0.3s;
}


/*ーーーーーーーーーーーーーーーーーーnav footer 画像設定ーーーーーーーーーーーーーーーーーーーーーーーーーー*/




.nav-footer{
    display: flex;
    list-style: none; 
    justify-content: space-around;
    padding: 100px 0;
}

.nav-footer img{
    border-radius: 5px;
    box-shadow: 5px 5px 5px 5px #BBBBBB;
}


.image_link01{
    position:relative;
    display:block;
    height:auto;
  }
  .image_link01 img{
    display:block;
    width:100%;
  }
  .image_link01:before{
    content:"";
    display:block;
    width:100%;
    height:100%;
    position:absolute;
    z-index:2;
    background:rgb(0, 0, 0);
    opacity:0;
    transition:0.3s;
  }
  .image_link01:hover:before{
    opacity:0.2;
  }

  .image_link02{
    position:relative;
    display:block;
    height:auto;
  }
  .image_link02 img{
    display:block;
    width:100%;
  }
  .image_link02:before{
    content:"";
    display:block;
    width:100%;
    height:100%;
    position:absolute;
    z-index:2;
    background:#000;
    opacity:0;
    transition:0.3s;
  }
  .image_link02:hover:before{
    opacity:0.2;
  }

  .image_link03{
    position:relative;
    display:block;
    height:auto;
  }
  .image_link03 img{
    display:block;
    width:100%;
  }
  .image_link03:before{
    content:"";
    display:block;
    width:100%;
    height:100%;
    position:absolute;
    z-index:2;
    background:#000;
    opacity:0;
    transition:0.3s;
  }
  .image_link03:hover:before{
    opacity:0.2;
  }

  .image_link04{
    position:relative;
    display:block;
    height:auto;
  }
  .image_link04 img{
    display:block;
    width:100%;
  }
  .image_link04:before{
    content:"";
    display:block;
    width:100%;
    height:100%;
    position:absolute;
    z-index:2;
    background:#000;
    opacity:0;
    transition:0.3s;
  }
  .image_link04:hover:before{
    opacity:0.2;
  }




  

   





  
  
  
  








/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.8rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}

/*リンクテキスト*/
footer a {text-decoration: none;}

/*著作部分*/
footer .pr {display: block;}

/*フッターにあるアイコン類
---------------------------------------------------------------------------*/
/*アイコン類を囲むブロック*/
ul.icon {
	list-style: none;
	margin: 0;padding: 0;
	margin-bottom: 30px;	/*下に空けるスペース*/
}

/*アイコン１個あたりの設定*/
ul.icon li {
	display: inline-block;	/*リストタグを横並びにさせる指定*/
}

/*アイコン画像の設定*/
ul.icon img {
	width: 30px;	/*アイコン画像の幅*/
}

/*画像のマウスオン時*/
ul.icon img:hover {
	opacity: 0.8;	/*透明度。0.8は色が80%出た状態の事。*/
}



/*スライドショー（slickを使用）
---------------------------------------------------------------------------*/
.mainimg {
	position: relative;
}

.slick-slide {
    margin: 10px;	/*スライドショー画像同士の間にあけるスペース*/
}

.slick-slide img {
    border-radius: 10px;	/*画像の角丸。丸くカットしない場合は、この１行を削除。*/
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒色のことで0.2は色が20%出た状態のこと。*/
}

/*丸いページナビボタン全体を囲むブロック*/
.slick-dots {
	text-align: center;
	width: 100%;
	margin:0;padding: 0;
	line-height: 1;
	position: absolute;
	bottom: 20px;	/*下からの配置場所指定*/
}

/*丸いページナビボタン１個あたりの設定*/
.slick-dots li {
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
}

/*buttonタグ*/
.slick-dots li button {
	display: block;
    padding: 0;
    border: none;
    border: 1px solid #555;	/*枠線の幅、線種、色*/
	text-indent: -9999px;	/*デフォルトで文字が出るので画面の外に追い出す指定*/
	width: 12px;			/*ボタンの幅*/
	height: 12px;			/*ボタンの高さ*/
	border-radius: 50%;		/*丸くする指定*/
	background: #fff;		/*背景色。白。*/
}

/*buttonのアクティブ時（現在表示されている画像を示すボタン）*/
.slick-dots li.slick-active button {
	background: #555;	/*色*/
}





/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

.pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;
	right: 30px;		/*右からの配置場所指定*/
	bottom: 30px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒色のことで0.4は色が40%出た状態。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒色のことで0.8は色が80%出た状態。*/
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #78adf6 !important;}
.color-check, .color-check a {color: #ff0000 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.large {font-size: 2rem;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;border: 1px solid #ccc;padding: 5px 20px;background: rgba(0,0,0,0.03);border-radius: 5px;margin: 5px 0;}
.ofx {overflow-x: hidden;}



/*---------------------------------------------------------------------------
ここから下は画面幅600px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:600px) {

/*メニューの設定
---------------------------------------------------------------------------*/
/*リンクテキストの設定*/
#menubar a {
	padding: 0 20px;	/*上下、左右へのテキスト内にとる余白。*/
}





/*---------------------------------------------------------------------------
ここから下は画面幅800px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:800px) {

/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 18px;	/*基準となるフォントサイズの上書き*/
}

/*section全般の設定*/
section + section {
	padding-top: 50px;	/*sectionの間に空けるスペース*/
}

/*headerブロック（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
    padding: 30px 0;       /*上下、左右へ空ける余白*/
}

/*メニューの設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#menubar ul {
    margin: 20px 70px;    /*上下、左右へのブロックの外側へ空けるスペース*/
}
}


