@charset "utf-8";

/*
=======================================
  リセット CSS
=======================================
*/
html, body, div, span, object,
h1, h2, h3, h4, h5, h6, p, blockquote,
img,small, strong, sub, sup, var,
dl, dt, dd, ol, ul, li,
table, caption, tbody, tfoot, thead, tr, th, td,
footer, header, main, menu, nav, section {
  margin:0;
  padding:0;
}

article,aside,details,figcaption,figure,
footer,header,main,menu,nav,section{
  display:block;
}

html{  -webkit-text-size-adjust: 100%;}

body{
  color: #000;
  line-height: 1.5;
  font-size: 14px;
  background-color: #f5f5f5;
}

img{
  border: 0;
  max-width: 100%;
  height: auto;
}

ul,ol{  list-style-type: none;}

img, input, select, textarea {   vertical-align: middle;}

/*
=======================================
  全ページ共通 CSS
=======================================
*/

a {
  color: #000;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {  color: #d53e04;}

a:hover img {  opacity: 0.7;}

.text p {
	margin: 20px auto;
	font-size: 12px;
	line-height: 30px;
	letter-spacing:3px;
	font-family: 'Klee One', cursive;
}

.select:before {
    content: "●";
	color: #eb581d;
    padding-right: 4px;
}

/*
=========================================
  font
=========================================
*/

@font-face {
  /*フォントの名前*/
  font-family: "KinfolkReg";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../font/MARIGOLD.otf") format("opentype");
}
.KinfolkReg{
  font-family: "KinfolkReg";
}


/*
=========================================
  ベース 共通レイアウト
=========================================
*/
/*container*/
.container {
  width: 70%;
  margin: 50px 200px 50px auto;
}

/*max*/
.max {
  width: 100%;
  margin: 0 auto;
  }

.center {
    margin: 0 auto;
}

.center_t {
    text-align: center;
}

/*float*/
.right {
    float: right;
}

.left {
    float: left;
}

.right_t {
    text-align: right;
    margin-right: 10px;
}

.left_t {
    text-align: left;
    margin-left: 10px;
}

.clear {
    clear: both;
}

.clearfix::after {
   content: "";
   display: block;
   clear: both;
}

/*
=========================================
  文字装飾
=========================================
*/

/*title--------------------*/
.title h2,
.footer h2 {
  width: 95%;
  padding-left: 5px;
  padding-bottom: 20px;
  margin-bottom: 50px;
  border-bottom: #000 1px solid;
  color: #000;
  line-height: 30px;
  font-size: 35px;
  letter-spacing: 0.5px;
  font-weight: bold;
  position: relative;
  /*font-family: 'Aboreto', cursive;*/
  font-family: "KinfolkReg";
}

@media(min-width: 450px) {
    .title h2 {
  margin-top: 100px;
}
}

.footer {
  font-size: 12px;
  /*font-family: 'Aboreto', cursive;*/
  font-family: "KinfolkReg";
}

@media only screen and (min-width: 940px) {
    .title h2,.footer h2 {
    z-index: 500;
    }
}

.title p {
	font-family: 'Noto Sans JP', sans-serif;
}

.title h2:before {
	content: "●";
	color: #4e67ef;
    padding-right: 5px;
}

.white {
	color: #fff;
}

/*
=========================================
  ブロックごとの設定
=========================================
*/

/*global navigation-----------------*/
.gnav {
  height: 300px;
  overflow: visible;
  float: right;
}
.gnav ul {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 1000;
}
.gnav li {
  width: 160px;
}
.gnav a {
  display: block;
  padding: 15px 0;
  color: #000;
  text-decoration: none;
  font-size: 15px;
  /*font-family: 'Aboreto', cursive;*/
  font-family: "KinfolkReg";
  letter-spacing: 0;
}
.gnav a:hover {
  color: #ff6347;
}

/*footer--------------------*/
.footer{
  color: #000;
  margin-bottom: 20px!important;
  padding: 20px 0 0 0;
}

.footer p small{
  letter-spacing: 0.3px;
}

/*SNS*/
.sns{
  margin-bottom: 15px;
  text-align: center;
}
.sns li{
  display: inline-block;
}
.sns a{
  display: block;
  padding: 10px 20px;
  color: #d8c7a0;
  border-radius: 5px;
  text-decoration: none;
  font-size: 24px; 
}

.sns img {
    width: 30px;
}

.sns a:hover{
  opacity: 0.7;
}

/*copyright*/
.copyright {
  text-align: center;
  padding-bottom: 50px;
}

@media only screen and (min-width: 940px) {
.pc { display: inline-block!important; }
.sp { display: none!important; }

.gnav {display: inline-block;}
#hamburger {display: none;}
}

/*
=======================================
  940px以下
=======================================
*/

@media only screen and (max-width: 940px) and (min-width: 450px) {

.pc { display: none!important; }
.sp { display: inline-block!important; }

.gnav {display: none;}
#hamburger {display: inline-block;}

.container {
  width: 85%;
  margin: 80px auto;
}

/*max*/
.max {
  width: 100%;
  margin: 0 auto;
  }

.title h2,
.footer h2 {
    margin-top: 0;
}

}

/*
=======================================
  450px以下
=======================================
*/

@media only screen and (max-width: 450px) {

.pc { display: none!important; }
.sp { display: inline-block!important; }

.gnav {display: none;}
#hamburger {display: inline-block;}

.container {
  width: 80%;
  margin: 50px auto;
}

.title h2,
.footer h2 {
  width: 100%;
  padding-left: 5px;
  padding-bottom: 5px;
  margin-bottom: 15px;
  font-size: 20px;
}

.text p {
	margin: 20px auto;
	font-size: 12px;
	line-height: 20px;
	letter-spacing:3px;
	font-family: 'Klee One', cursive;
}

.more{
  margin: 20px 20px 10px 0;
  padding: 10px 5px 0 10px;
  background: #222;
}

}


