@charset "utf-8";
/* CSS Document */
image {
    width: 100%;
}
#Container .mix {
    display: none;
}
/*--- ヘッダー---*/





header {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    /* height: 60px; */
    margin: 0 auto;
    padding: 15px 0 10px;
   background-color: rgb(35 91 47);
}
div.logo {
    /* width: 15%; */
    max-width: 120px;
    margin-left: 5px;
    float: left;
    padding: 10px;
}
div.menu {
	float: right;
}
ul.header_ul {
	margin: 0;
	padding: 0;
}
ul.header_ul li {
display: inline-block;
    margin: 0px 10px;
    font-size: 20px;
}











/*--- サムネイル---*/

.mix {
    float: left;
    border: solid 1px #FFF;
}

@media screen and (max-width:400px) {
/*　画面サイズが480pxからはここを読み込む　*/

.mix.category-1, .mix.category-2, .mix.category-3, .mix.category-4, .mix.category-5 {
    width: 33.33333333333%;
}
}

@media screen and (min-width:401px) and ( max-width:767px) {
/*　画面サイズが768pxから1024pxまではここを読み込む　*/
.mix.category-1, .mix.category-2, .mix.category-3, .mix.category-4, .mix.category-5 {
    width: 33.33333333%;
}
}

@media screen and (min-width:768px) and ( max-width:1024px) {
/*　画面サイズが768pxから1024pxまではここを読み込む　*/

.mix.category-1, .mix.category-2, .mix.category-3, .mix.category-4, .mix.category-5 {
    width: 25%;
}
}

@media screen and (min-width:1024px) {
/*　画面サイズが1024pxからはここを読み込む　*/
.mix.category-1, .mix.category-2, .mix.category-3, .mix.category-4, .mix.category-5 {
    width: 16.6666666666%;
}
}
/*　カテゴリーの見出し　*/
.mix.midashi {
    width: 100%;
    text-align: center;
    line-height: 2;
    font-size: 3em;
    background-color: #FFF;
    display: inline-block;
	margin:100px 0 0;
}

.midashi h3 {
    font-size: 3rem;
	font-weight: 600;
    text-align: center;
    width: 80%;
    margin: 0 10% 0.5em ;
}



.midashi h5 {
    font-size: 1.4rem;
    text-align: justify;
    width: 80%;
    margin: 0 10% 2em;
}
.remodal dl dt {
    font-size: 1.1em;
    text-align: justify;
    margin: 1em;
}
.remodal dl dt {
    font-size: 1.1em;
    text-align: justify;
    margin: 1em;
}
.remodal dl dd p {
    text-align: left;
    margin: 1em;
    font-weight: 600;
    font-size: 0.9em;
    border-bottom: solid 1.5px;
}
/*== 外の線が伸びるボタン */

.btnlinestretches {
    /*線の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    color: #333;
    border: 1px solid #333;
    padding: 10px 30px;
    display: inline-block;
    text-decoration: none;
    outline: none;
    /*アニメーションの指定*/
    transition: all 0.3s ease-in-out;
}
/*hoverした際の背景の形状*/
.btnlinestretches:hover {
    background: #333;
    color: #fff;
    border-color: transparent;
}
/*線の設定*/
.btnlinestretches::before, .btnlinestretches::after {
    content: '';
    /*絶対配置で線の位置を決める*/   
    position: absolute;
    border: solid #333;
    width: 10px;
    height: 10px;
    /*アニメーションの指定*/
    transition: all 0.3s ease-in-out;
}
/*線の位置と形状*/
.btnlinestretches::before {
    top: -6px;
    left: -6px;
    border-width: 1px 0 0 1px;
}
/*線の位置と形状*/
.btnlinestretches::after {
    bottom: -6px;
    right: -6px;
    border-width: 0 1px 1px 0;
}
/*hoverした際の線の形状*/
.btnlinestretches:hover::before, .btnlinestretches:hover::after {
    width: calc(100% + 11px);
    height: calc(100% + 11px);
    border-color: #666;
}
a.btnlinestretches {
    margin-top: 2em;
}
    
    
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-border-shadow {
  padding: calc(1.5rem - 12px) 3rem 1.5rem;

  background: #fff;
}

a.btn-border-shadow:before {
  position: absolute;
  top: -6px;
  left: -6px;

  width: 100%;
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;

  border: 3px solid #000;
  border-radius: 0.5rem;
}

a.btn-border-shadow:hover {
  padding: calc(1.5rem - 6px) 3rem;
}

a.btn-border-shadow:hover:before {
  top: 0;
  left: 0;
}

a.btn-border-shadow--color2 {
  border-radius: 100vh;
}

a.btn-border-shadow--color2:before {
  border-radius: 100vh;
  -webkit-box-shadow: 3px 3px 0 #78e5e5;
  box-shadow: 3px 3px 0 #78e5e5;
}


a.btn.btn-border-shadow.btn-border-shadow--color2 {
    font-size: 0.8rem;
    float: left;
    margin: 1%;
}


a.btn.btn-border-shadow.btn-border-shadow--color2 {
    font-size: 0.8rem;
    float: left;
    margin: 2%;
}

.filter {
    font-size: 0.8rem;
    float: left;
    margin: 1%;
}





.filter:before {
    border-radius: 100vh;
    -webkit-box-shadow: 3px 3px 0 #78e5e5;
    box-shadow: 3px 3px 0 #78e5e5;
}













.link {
    width: 100%;
    margin: 100px;
    max-width: 960px;
    display: inline-block;
}


.link h4 {
    font-size: 1.4em;
    font-weight: bold;
    margin: 1em 0;
}

@media screen and (max-width:960px) {
/*　画面サイズが480pxからはここを読み込む　*/

.link {
    width: 80%;
    margin: 20px 10%;
    max-width: 960px;
}

a.btn.btn-border-shadow.btn-border-shadow--color2 {
    font-size: 0.5rem;
    float: left;
    margin: 2%;
}



.filter {
    font-size: 0.5rem;
    float: left;
    margin: 2%;
}
}


div#title {
    width: 100%;
    max-width: 640px;
    margin: 100px auto;
}

#title p {
    padding: 1rem 2rem;
    border-top: 6px double #FFF;
    border-bottom: 6px double #FFF;
    font-size: 1.4rem;
    line-height: 2.4;
    text-align: justify;
	color: #FFF;
}



@media screen and (max-width:960px) {
/*　画面サイズが480pxからはここを読み込む　*/


div#title {
    width: 80%;
    max-width: 640px;
    margin: 100px auto;
}


.midashi h3 {
    font-size: 2.2rem;
	font-weight: 600;
    text-align: center;
    width: 80%;
    margin: 0 10% 0.5em ;
}



.midashi h5 {
    font-size: 1.2rem;
    text-align: justify;
    width: 80%;
    margin: 0 10% 2em;
}



}


#sort {
    width: 80%;
    margin: 0 10%;
    max-width: 960px;
}

#sort h4 {
    font-size: 1.4em;
    font-weight: bold;
    margin: 1em 0;

}

.title-wrap {
    margin: 0 0 50px;
    padding: 100px;
    background-color:#235b30;
}


@media screen and (max-width:960px) {
/*　画面サイズが480pxからはここを読み込む　*/
.title-wrap {
    padding: 50px 0;


}
#sort {
    width: 80%;
    margin: 0 10% 40px;
    max-width: 960px;
}
}

/*---フッター---*/

.footer {
    width: 100%;
    background-color: #ffffff;
    color: #000;
    font-size: 12px;
    text-align: center;
    margin: 100px auto 0;
    padding: 25px 0;
}
/*Topへボタン*/
#pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
#pageTop a {
display: block;
    z-index: 999;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    background-color: #9FD6D2;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
    line-height: 1;
    padding: 10px 10px;
    letter-spacing: 2px;
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}


.wrapping {
    margin-top: 50px;
    color: #FFF;
    text-align: center;
}


.wrapping .btnlinestretches {
border: solid 1px #FFF;
color: #FFF;

}



.wrapping .btnlinestretches::before,{
    border: solid #FFF;
}

.wrapping .btnlinestretches::after,{
    border: solid #FFF;
}
.wrapping .btnlinestretches a{
color: #FFF;
}




