@charset "utf-8";

/*----------------------------------------
2019.08
style_common.css

共通箇所を記述します。
・ヘッダー
・フッター
----------------------------------------*/

/*==========================================
 フォーム全般
===========================================*/

input, button, textarea, select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* responsible ---------------------------------------------
  ----------------------------------------------------------
 ★ --------------------共通--------------------------------
  ----------------------------------------------------------
 -------------------------------------------------------- */

*{
  box-sizing: border-box;
}

html { text-rendering: optimizeLegibility; }
.clearfix::after { content: ""; display: table; clear: both;}
a { text-decoration: none; color:#fff; 
}

/* hoverエフェクト */
.fade,
.fade::before,
.fade::after {
  -webkit-transition: .3s;
  transition: .3s;
}
h1 {
    font-size: 0;
    margin: 0;
}

p{
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
}
img {
  width: 100%;
}


h3 {
  line-height: 2;
}
/* ----------------------- font ----------------------- */
body {
  font-family: "Noto Sans JP","Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", 
  Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  margin: 0;
  font-size: 15px;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ----------------------- head ----------------------- */
header {
  width: 100%;
}
.header__navi_list,.header__navi_list-last {
  list-style-type: none;
}

/* --------------------- contents --------------------- */
.contents {
}

/* responsible ---------------------------------------------
  ----------------------------------------------------------
 ★ 737px以上 -----------PC---------------------------------
  ----------------------------------------------------------
 -------------------------------------------------------- */
@media only screen and (min-width: 1001px) 
{ /* PC start */
body{
  background: #fff;
  overflow-x: hidden;
}

/*----------------------------------------
    header pc
-----------------------------------------*/
header {
  background-color: rgba(255,255,255,1);
  padding: 0;
  z-index: 200;
}

.header__logo a {
  display: inline-block;
  vertical-align: middle;
  margin: 20px 0 0 20px;
}
.header__logo a img {
  height: 50px;
  width: auto;
}


/*----------------------------------------
    footer pc
-----------------------------------------*/
/* --------------------- footer --------------------- */
footer {
  clear: both;
  min-width: 1024px;
  z-index: 1;
  position: relative;
}
.footer {
  background: #333;
  font-size: 12px;
}
.footer__wrap {
  margin: 0 auto;
  max-width: 1160px;
  width: 1100px;
  padding: 20px 0 100px;
  overflow: hidden;
}
.footer__logo {
  width: 238px;
  margin-bottom: 20px;
  height: 45px;
}
.footer__logo img {
  width: 238px;
}

/*ナビ*/
.footer_01 {
  margin-right: 60px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  display: inline-block;
  vertical-align: top;
}
.footer__navi a:hover {
  text-decoration: underline;
}
.footer__navi li {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1.5;
  margin-right: 50px;
}

/*プライバシー等*/
.footer_02 {
  clear: both;
  text-align: center;
  margin-top: 120px;
}
.footer__navi_02 li {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1.5;
  margin-right: 20px;
}
.footer__navi_02 li:nth-child(-n+1) {
  border-right: 1px solid #fff;
  padding-right: 20px;
}
.footer__navi_02 a:hover {
  text-decoration: underline;
}

/*snsエリア*/
.footer__sns_area {
  float: right;
  color: #fff;
}
.footer__sns {
  font-size: 20px;
}
.tw:before {
  font-family: "FontAwesome";
  content: '\f099';
  font-weight: 900;
  font-size: 30px;
}
.fb:before {
  font-family: "FontAwesome";
  content: '\f230';
  font-weight: 900;
  font-size: 30px;
  margin-left: 20px;
}
.insta:before {
  font-family: "FontAwesome";
  content: '\f16d';
  font-weight: 900;
  font-size: 30px;
  margin-left: 20px;
}
.yt:before {
  font-family: "FontAwesome";
  content: '\f16a';
  font-weight: 900;
  font-size: 30px;
  margin-left: 20px;
}

/*hover*/
a#tw:hover {
  color: #1da1f2;
}
a#fb:hover {
  color: #3b5998;
}
a#insta:hover {
  color: #d93177;
}
a#yt:hover {
  color: #ef2b2b;
}

/*コピーライト*/
.footer_copyright {
  clear: both;
  text-align: center;
  color: #fff;
  font-size: 12px;
}

/* ページトップボタン */
.footer__btn_pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
}
.footer__btn_pagetop a {
  background: #fff;
  color: #d75e36;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 14px 20px;
  vertical-align: middle;
  opacity: 0.6;
  border-radius: 180px;
  width: 60px;
  height: 60px;
  display: block;
  text-align: center;
}
.footer__btn_pagetop a:before {
  font-family: "FontAwesome"; 
  font-weight: normal;
  content: "\f106";
  line-height: 25px;
  font-size: 25px;
  vertical-align: middle;
} 
.footer__btn_pagetop a:hover {
  text-decoration: none !important;
}



} /* PC end --------------------------- */












































/* responsible ---------------------------------------------
  ----------------------------------------------------------
 ★ 736px以下 -----------SP---------------------------------
  ----------------------------------------------------------
 -------------------------------------------------------- */
@media only screen and (max-width: 1000px) 
{ /* SP start */
body { background: #fff; }

input { 
  padding: 0;
} 

/*----------------------------------------
    header sp
-----------------------------------------*/
header {
  z-index: 300;
  padding: 20px 20px 0;
}

.header__logo a img {
  width: 60%;
}



/*----------------------------------------
    footer sp
-----------------------------------------*/
.footer {
  background: #333;
  font-size: 12px;
}
.footer {
  padding: 0 15px 100px;
}
.footer__inner {
  padding: 20px 0 20px;
}
.footer__logo {
  margin: 0 20% 20px;
  text-align: center;
}
.footer__logo img {
  width: 100%;
}

/*ナビ*/
.footer_01 {
  font-size: 4.3vw;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}
.footer__navi a:hover {
  text-decoration: underline;
}
.footer__navi ul {
  list-style: none;
  padding: 0;
}
.footer__navi li a {
  margin-bottom: 20px;
  display: inline-block;
  color: #fff;
}

/*プライバシー等*/
.footer_02 {
  text-align: center;
  margin-top: 40px;
}
.footer__navi_02 li {
  font-size: 3vw;
  font-weight: 400;
  margin-bottom: 10px;
  display: inline-block;
  color: #fff;
  line-height: 1.5;
  margin-right: 10px;
}
.footer__navi_02 li:nth-child(-n+1) {
  border-right: 1px solid #fff;
  padding-right: 10px;
}

/*snsエリア*/
.footer__sns_area {
  text-align: center;
  color: #fff;
}
.footer__sns {
  font-size: 20px;
}
.tw:before {
  font-family: "FontAwesome";
  content: '\f099';
  font-weight: 900;
  font-size: 30px;
}
.fb:before {
  font-family: "FontAwesome";
  content: '\f082';
  font-weight: 900;
  font-size: 30px;
  margin-left: 20px;
}
.insta:before {
  font-family: "FontAwesome";
  content: '\f16d';
  font-weight: 900;
  font-size: 30px;
  margin-left: 20px;
}
.yt:before {
  font-family: "FontAwesome";
  content: '\f16a';
  font-weight: 900;
  font-size: 30px;
  margin-left: 20px;
}

/*hover*/
a#tw:hover {
  color: #1da1f2;
}
a#fb:hover {
  color: #3b5998;
}
a#insta:hover {
  color: #d93177;
}
a#yt:hover {
  color: #ef2b2b;
}

/*コピーライト*/
.footer_copyright {
  font-size: 10px;
  text-align: center;
  color: #fff;
  padding:  10px 0 ;
}

/* ページトップボタン */
.footer__btn_pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 99;
}
.footer__btn_pagetop a {
  background: #fff;
  color: #d75e36;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 14px 20px;
  vertical-align: middle;
  opacity: 0.6;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
}
.footer__btn_pagetop a:before {
  font-family: "FontAwesome"; 
  font-weight: normal;
  content: "\f106";
  line-height: 18px;
  font-size: 18px;
  vertical-align: middle;
} 
.footer__btn_pagetop a:hover {
  text-decoration: none !important;
}
.br-sp {
  display: none;
}


} /* SP end --------------------------- */
