@charset "utf-8";
/* CSS Document */


/*===============================

    common
    
    brand color
      twitter #1da1f2
      facebook #3b5998
      instagram #CF0073(仮)
      blog #12b170(仮)

================================*/
:root { font-size: 62.5%; }/* 1(r)em = 10px */

* { letter-spacing: 0; }

body {
  color: #3E3A39;
  font-family:YuGothic , '游ゴシック' , 'Hiragino Kaku Gothic ProN' , 'ヒラギノ角ゴ ProN' , Meiryo , 'メイリオ' , sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  height: 100%;
  text-align: left;
  width: 100%;
}

#base { width: 100%; }

.wrapper {
  margin: 20px auto 0;
  overflow:hidden;
  text-align: left;
  width: 1200px;
}

.container {
  float: right;
  width: 960px;
}

.headerTtl { margin-bottom: 20px; }

.snsContainer {}

/* 見出し */
.lineOnside {
  color: #333;
  display: table;
  font-size: 30px;
  font-weight: 500;
  margin: 72px 0 36px;
  text-align: center;
  white-space: nowrap;
}

.lineOnside::after,
.lineOnside::before {
  content: "";
  display: table-cell;
  width: 50%;
  /*background: -webkit-linear-gradient(transparent 50%, currentColor 50%, currentColor -webkit-calc(50% + 1px), transparent -webkit-calc(50% + 1px));
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, currentColor), color-stop(currentColor calc(50% + 1px)), to(transparent calc(50% + 1px)));*/
  background: linear-gradient(transparent 50%, currentColor 50%, currentColor calc(50% + 1px), transparent calc(50% + 1px));
  -webkit-background-clip: padding;
  background-clip: padding-box;
  background-size: 100% calc(100%);
  color: #000;
}

.lineOnside::after { border-left: 1.2em solid transparent; }
.lineOnside::before { border-right: 1.2em solid transparent; }

.lineOnside.inst { margin-top: 20px; }

.lineOnside > span {
  border-bottom: 5px solid #333;
  display: block;
  padding: 0 30px 10px;
  position: relative;
  text-align: center;
}

.lineOnside.twi > span { border-bottom-color: #1da1f2; }
.lineOnside.fb > span { border-bottom-color: #3b5998; }
.lineOnside.inst > span { border-bottom-color: #CF0073; }
.lineOnside.blog > span { border-bottom-color: #12b170; }
.lineOnside.note > span { border-bottom-color: #41c9b4; }


.lineOnside.twi > span > img { transform: scale(1.5); }

.lineOnside > span::after,
.lineOnside > span::before {
    background-color: #000;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    width: 53px;
}

.lineOnside > span::before {
    left: -45px;
    top: 79%;
    transform: rotate(47deg);
}

.lineOnside > span::after {
    right: -45px;
    top: 79%;
    transform: rotate(-47deg);
}


.socialLinkW { font-weight: 700; }

/*===============================

    コンテンツ

================================*/

/*
    SNS MENU
================================*/
.snsMenu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%;
}

.snsMenu > li {
  height: 50px;
  width: 95%;
}

.snsMenu > li + li { margin-left: 6px; }

.snsMenu > li > a {
  color: #fff;
  display: block;
  height: 100%;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  transition: .3s;
}

.snsMenu > li > a:hover { opacity: .6; }

.snsMenu > li.snsMenu_twi > a { background-color: #1da1f2; }
.snsMenu > li.snsMenu_fb > a { background-color: #3b5998; }
.snsMenu > li.snsMenu_inst > a { background-color: #CF0073; }
.snsMenu > li.snsMenu_blog > a { background-color: #12b170; }
.snsMenu > li.snsMenu_note > a { background-color: #41c9b4; }

.snsMenu > li > a > img {
  margin-right: 10px;
  vertical-align: middle;
}

.snsMenu > li.snsMenu_twi img { transform: scale(1.2); }

/*
    Filter
================================*/
.filterContainer { position: relative; }

.filterContainer::before {
  content: url(../../img/contents/attention.svg);
  display: block;
  width: 156px;
  height: auto;
}

.filterCat {
  border-bottom: 2px solid #333;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.filterCat > li {
  cursor: pointer;
  font-weight: 700;
  padding: 10px;
  position: relative;
  text-align: center;
  width: 100%;
}

.filterCat > li.active { color: crimson; }


/* 伸びるライン */
.filterCat > li::before {
  background-color: #f96320;
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  height: 5px;
  width: 0;
  transition: .3s;
  transform: translateX(-50%);
}

.filterCat > li:hover::before {
  width: 100%;
}

.filterList {
  background-color: #fff;
  opacity: 1;
  padding: 15px 0;
  transition: .3s;
}

.filterList > ul::after {
  content: "";
  clear: both;
  display: block;
}

.filterList  li {
  float: left;
  margin-bottom: 5px;
  width: 33%;
}

.filterList  li  img {
  height: auto;
  margin-right: 5px;
  vertical-align: middle;
  width: 30px;
}
.filterList li .icon_x{
  width:29px; 
}

.filterContainer:hover .filterList { opacity: 1; }


/*
    Twitter
================================*/
.twiContainer {
  align-items: stretch;
  display: flex;
  flex-flow: row wrap;
  /*justify-content: space-between;*/
  margin: -18px;
}

.twiContainer_inner {
  /*width: 49%;*/
  padding: 18px;
}

.twiContainer_inner.sub {
  display: flex;
  flex-flow: column wrap;
  /*justify-content: space-between;*/
  margin-top: 36px;
  /*width: 23%;*/
}

.twiContainer_inner.sub > div { margin-bottom: 20px; }

.twiContainer_inner.sub > div > p:first-of-type { text-align: center; }

.twiContainer_inner.sub > div > p {
  line-height: 1.3;
  margin-bottom: 10px;
}


/*
    Facebook
================================*/
.fbContainer {
  align-items: stretch;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.fbContainer_inner { width: 48%; }

.fbContainer_inner.sub {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  margin-top: 36px;
  width: 23%;
}

.fbContainer_inner.sub > div { margin-bottom: 20px; }

.fbContainer_inner.sub > div > p:first-of-type { text-align: center; }

.fbContainer_inner.sub > div > p  {
  line-height: 1.4;
  margin-bottom: 10px;
}

.fbContainer_inner.sub_l  {
  margin-top: 36px;
  width: auto;
}

.fbContainer_inner.sub_l a { transition: .3s; }
.fbContainer_inner.sub_l a:hover { opacity: .6; }


.snsLink {
  background-color: #3b5998;
  border-radius: 3px;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 3px;
  text-align: center;
}

.snsLink::before {
  background-image: url("../../img/contents/FB-f-Logo__white_100.png");
  background-size: contain;
  content: "";
  display: inline-block;
  margin-right: 3px;
  height: 15px;
  vertical-align: -3px;
  width: 15px;
}

.snsLink:hover {
  background-color: #2d467b;
  color: #fff;
  /*opacity: .85;*/
  text-decoration: none;
}


/*
    Instagram
================================*/
.instContainer {
  position: relative;
}

.instContainer > p { line-height: 1.5; }

.msgBoard {
  background-color: #fff;
  border: 1px solid #999;
  font-size: 13px;
  margin: auto;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
  text-align: center;
  width: 50%;
  z-index: 5;
}

.msgBoard-move { top: -12%; }

.galleryContainer {
height: 400px;
overflow: hidden;
position: relative;
}

#gallery {
  align-items: stretch;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 20px 0;
}

.img_block {
  /*margin-bottom: 5px;*/
  overflow: hidden;
  position: relative;
  width: 192px;
}

.img_block img {
  height: auto;
  transition: .3s;
  vertical-align: bottom;
  width: 100%;
}

/*.img_block:hover img { filter: brightness(0.5); }*/


.caption {
  background-color: rgba(0,0,0,.7);
  box-sizing: border-box;
  color: #fff;
  font-size: 14px;
  height: 100%;
  line-height: 1.3;  
  opacity: 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .5s;
  width: 100%;
  word-wrap: break-word;
}

.img_block:hover .caption { opacity: 1; }



/*
    Blog
================================*/
.blogContainer {
  align-items: stretch;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.blogContainer_inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 48%;
}

.blogContainer_inner > div {
  line-height: 1.3;
  width: 50%;
}


/*
    note
================================*/
.noteContainer {
  align-items: stretch;
  display: flex;
  flex-flow: row wrap;
  /*justify-content: space-between;*/
  margin: -18px;
}

.noteContainer_inner.sub {
  padding: 18px;
}

.noteContainer_inner.sub {
  display: flex;
  flex-flow: column wrap;
  margin-top: 36px;
}

.noteContainer_inner.sub > div { margin-bottom: 20px; }

.noteContainer_inner.sub > div > p:first-of-type { text-align: center; }

.noteContainer_inner.sub > div > p {
  line-height: 1.3;
  margin-bottom: 10px;
}




/*
    Social Button
================================*/
.socialBtn {
  display: flex;
  float: right;
  justify-content: space-between;
  margin: 30px 0;
  /*width: 230px;*/
}

.socialBtn > li + li { margin-left: 10px; }

.socialBtn > li.socialLineBtn { transition: .3s; }
.socialBtn > li.socialLineBtn:hover { opacity: .6; }

.socialBtn_btn {/* aタグ */
  background-color: #333;
  border-radius: 20%;
  display: inline-block;
  height: 40px;
  position: relative;
  transition: .3s;
  vertical-align: middle;
  width: 40px;
  z-index: 1;
}

.socialBtn_btn::before {
  background-color: #999;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 1;
/*  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;*/
  transform: scale(1);
  transition: all .3s;
  z-index: -1;
}

.socialBtn_btn:hover::before {
  opacity: 0;
  transform: scale(0);
}

.socialBtn_icon {
  display: inline-block;
  height: 1.7em;
  line-height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.7em;
  z-index: 2;
}

.socialBtn_icon::before,
.socialBtn_icon::after {
content: "";
display: inline-block;
height: 1.7em;
vertical-align: text-top;
width: 1.7em;
}

.socialBtn_icon::after {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.socialBtn_btn:hover .socialBtn_icon::after {
  opacity: 1;
}

.socialBtn_icon.twi { height: 2.5em;width: 2.5em; }
.socialBtn_icon.blog { height: 2.2em;width: 2.2em; }


.socialBtn_btn.twi { background-color: #1da1f2; }
.socialBtn_btn.fb { background-color: #3b5998; }
.socialBtn_btn.inst { background-color: #CF0073; }
.socialBtn_btn.blog { background-color: #00a4de; }

.socialBtn_btn.twi:hover,
.socialBtn_btn.fb:hover,
.socialBtn_btn.inst:hover,
.socialBtn_btn.blog:hover {
  /*background-color: #fff;*/
  opacity: .6;
}

.socialBtn_icon.twi::before { content:url(../../img/contents/Twitter_Logo_White.svg);height: 2.5em;width: 2.5em; }
.socialBtn_icon.fb::before { content:url(../../img/contents/facebook_white.svg); }
.socialBtn_icon.inst::before { content:url(../../img/contents/Instagram_white.svg); }
.socialBtn_icon.blog::before { content:url(../../img/contents/hatenabookmark-logomark.svg);height: 2.2em;width: 2.2em; }

/*.socialBtn_icon.twi::after { content:url(../../img/contents/Twitter_Logo_Blue.svg); }
.socialBtn_icon.fb::after { content:url(../../img/contents/facebook_color.svg); }
.socialBtn_icon.inst::after { content:url(../../img/contents/instagram.png); }
.socialBtn_icon.blog::after { content:url(../../img/contents/hatenabookmark-logomark.svg); }*/


.facebook-wrapper {
  max-width: 500px;
  /*margin: 0 auto;*/
}
.facebook-wrapper > .fb-page {
  width: 100%;
}
.facebook-wrapper > .fb-page > span,
.facebook-wrapper iframe {
  width: 100% !important;
}


/**********
utility
**********/
/*横幅*/
.u_col1{width:8.333%;}
.u_col2{width:16.667%;}
.u_col25{width:20%;}
.u_col3{width:25%;}
.u_col4{width:33.333%;}
.u_col5{width:41.666%;}
.u_col6{width:50%;}
.u_col7{width:58.333%;}
.u_col8{width:66.666%;}
.u_col9{width:75%;}
.u_col10{width:83.33%;}
.u_col11{width:91.666%;}
.u_col12{width:100%;}
@media screen and (max-width:768px){
  .u_resMdCol1{width:8.333%;}
  .u_resMdCol2{width:16.667%;}
  .u_resMdCol3{width:25%;}
  .u_resMdCol4{width:33.333%;}
  .u_resMdCol5{width:41.666%;}
  .u_resMdCol6{width:50%;}
  .u_resMdCol7{width:58.333%;}
  .u_resMdCol8{width:66.666%;}
  .u_resMdCol9{width:75%;}
  .u_resMdCol10{width:83.33%;}
  .u_resMdCol11{width:91.666%;}
  .u_resMdCol12{width:100%;}
}
@media screen and (max-width:599px){
  .u_resSmCol1{width:8.333%;}
  .u_resSmCol2{width:16.667%;}
  .u_resSmCol3{width:25%;}
  .u_resSmCol4{width:33.333%;}
  .u_resSmCol5{width:41.666%;}
  .u_resSmCol6{width:50%;}
  .u_resSmCol7{width:58.333%;}
  .u_resSmCol8{width:66.666%;}
  .u_resSmCol9{width:75%;}
  .u_resSmCol10{width:83.33%;}
  .u_resSmCol11{width:91.666%;}
  .u_resSmCol12{width:100%;}
}



/*===============================

    ★★レスポンシブ

================================*/
@media screen and (max-width:768px) {
.wrapper { width: 100%; }

.container {
  float: none;
  width: 100%;
}

.filterList li {
  width: 100%;
}

.galleryContainer { height: auto; }
.caption { display: none; }
.img_block { width: 25%; }
.msgBoard {
  position: static;
  transform: none;
  width: 100%;
}
.msgBoard-move { top: 50%; } 

.fbContainer_inner { margin: 0 auto 20px;width: 100%; }
.fbContainer_inner iframe { width: 100%; }

.twiContainer_inner { margin: 0 auto 20px; }

.fbContainer_inner.sub { width: 45%; }
.twiContainer_inner.sub { width: 45%; }
.blogContainer_inner { width: 45%; }
.blogContainer_inner > div { width: 45%; margin-bottom: 20px; }

}/* @media */

@media screen and (max-width:500px) {
.filterCat {
  flex-flow: row wrap;
  justify-content: flex-start;
}

.filterCat > li { width: auto; }

.filterList li {
  float: none;
  width: 100%;
}

.img_block { width: 50%; }

.fbContainer_inner.sub { width: 100%; }
.twiContainer_inner.sub { width: 100%; }
.blogContainer_inner { width: 100%; }
.blogContainer_inner > div { width: 100%; margin-bottom: 20px; }

}/* @media */




