@charset "utf-8";
/* CSS Document */
a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

main {
  background-color: #f1f1f1;
  display: flex;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-appearance: none;
}
@media screen and (min-width: 960px) {
 body {
  background-color:white;
  justify-content: center;
  overflow-x: hidden;
  }
} 
.footer {
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
  padding-bottom: 0;
  z-index: 999;
}
@media screen and (min-width: 960px) {
.footer {
  }
}
.footer p {
  font-size: 12px;
  margin: 10px 5%;
}
.footer2 {
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
  width: 100%;
  padding-bottom: 0;
  z-index: 999;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 960px) {
.footer2 {

  }
}
.footer2 p {
  font-size: 12px;
  margin: 10px 5%;
}


/* ヘッダー */
.header {
  background-color: none;
  width: 100%;
  height: 50px;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media screen and (min-width: 960px) {
  .header {
    width: 100%;
	margin: 0 auto;
	height: 200px;
  }
}

.header__inner {
  padding: 0;
  display: flex;
  position: relative;
  background-color: none;
}
@media screen and (min-width: 960px) {
  .header__inner {
    padding: 0;
  }
}

/* ヘッダーのロゴ部分 */
.header__title {
  width: 45px;
  height: 45px;
  margin: 5px 0 0 5px;
}

@media screen and (min-width: 960px) {
  .header__title {
    width: 160px;
	height: 160px;
	margin: 20px 0 0 20px;
  }
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 5px;
  top: 0;
  width: 60vw;
  height: auto;
  transform: translateX(calc(60vw + 5px));
  background-color: rgba( 255, 255, 255, 0.8 );
  transition: ease .4s;
  margin-top: 45px;
  display: none;
}
@media screen and (min-width: 960px) {
	.header__nav {
  position: absolute;
  right: 20px;
  top: 0;
  width: 200px;
  height: auto;
  transform: translateX(220px);
  background-color: rgba( 255, 255, 255, 0.8 );
  transition: ease .4s;
  margin-top: 70px;
 
}
}
.nav__items {
    width: 100%;
  }

.nav-items__item {
  height: auto;
  border-bottom: 0.5px solid #000000;
}

.bt {
  height: auto;
  border-top: 0.5px solid #000000;
}

.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 12px;
  padding: 15px 0;
}

.nav-items__item a:hover {
    background-color: rgba( 216,12,24,0.8); 
  }




/* ハンバーガーメニュー */
.header__hamburger {
  width: 40px;
  height: 40px;
  margin: 5px 5px 0 auto;
}
@media screen and (min-width: 960px) {
  .header__hamburger {
	width: 50px;
    height: 50px;
    margin: 20px 20px 0 auto; 
  }
}

.hamburger {
  background-color:rgba(255,255,255,0.8);
  border: none;
  z-index: 9999;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .hamburger {
    
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
  display: block;
}

.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}

/*ディバイダー*/
.divider {
  width: 100%;
  margin: 50px auto 50px;
  border-bottom: #000000 solid 1px;
  height: 1px;
  
}
@media screen and (min-width: 960px) {
.divider {
  width: 1000px;
  }
}
.divider2 {
  width: 100%;
  margin: 50px auto 50px;
  border-bottom: #000000 solid 1px;
  height: 1px;
}
@media screen and (min-width: 960px) {
.divider2 {
  width: 1000px;
  display: none;
  }
}
.divider2-hide {
  width: 100%;
  margin: 50px auto 50px;
  border-bottom: #000000 solid 1px;
  height: 1px;
  display: none;
}
@media screen and (min-width: 960px) {
.divider2-hide {
  width: 1000px;
  
  }
}
/*スクロールダウン*/
/* スクロールダウンの位置 */
.scrolldown {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 35px;
  z-index: 999;
}
@media screen and (min-width: 960px) {
.scrolldown {
  bottom: 50px;
  }
}
/* 矢印のアニメーション部分 */
.scrolldown::before {
  animation: scroll-sp 2s infinite;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  content: "";
  height: 15px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 15px;
  border-radius: 0.5px;
}
@media screen and (min-width: 960px) {
.scrolldown::before {
  animation: scroll 2s infinite;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  content: "";
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  border-radius: 0.5px;
  }
}
/* 矢印のアニメーション */
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes scroll-sp {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  100% {
    opacity: 0;
  }
}

/*コンテイナー*/
.container-top {
  width: 100%;
  display:flex;
  flex-flow: column;
  gap: 0px;


}
@media screen and (min-width: 960px) {
.container-top {
  display:flex;
  flex-flow: column;

  }
}
.container-less {
  width: 100%;
  min-height: 100vh;
  display:flex;
  flex-flow: column;
  gap: 0px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
.container-less {
  display:flex;
  flex-flow: column;
  }
}
.contents-full {
  background-color:#FFFFFF;
  overflow: hidden;

  padding: 0 0 30px;
}
@media screen and (min-width: 960px) {
.contents-full {

  padding: 0 0 50px;
  }
}
.contents-full-b {
  background-color:cadetblue;
  overflow: hidden;
  margin: 0;
  
}
@media screen and (min-width: 960px) {
.contents-full-b {
  margin: 0;
  }
}
.buttonarea {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px auto 40px;
  width: 100%;
}
@media screen and (min-width: 960px) {
.buttonarea {
  justify-content: flex-end;
  width: 1000px;
  margin: 100px auto 50px;
  }
}
.listbutton {
  padding: 10px;
  background-color: black;
  border: none;
  width: 150px;
  cursor: pointer;
  transition: .3s;
}
@media screen and (min-width: 960px) {
.listbutton {

  }
}
.listbutton:hover {
  background-color: #999;
}
.listbutton p {
  color: white;
}
@media screen and (min-width: 960px) {
.listbutton p {

  }
}
.contents-full-bottom {
  background-color:#FFFFFF;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 960px) {
.contents-full-bottom {
  margin: 0;
  padding: 0;
  }
}
.contents-top {
  background-color: none;
  margin: 20px 5% 0;
  overflow: hidden;
  max-height: 100%;
}
@media screen and (min-width: 960px) {
.contents-top {
	margin: 50px auto 0;
	width: 1000px;
  }
}

/* アニメーション */
.anime {
	transition: 5s;
    opacity: 0;
}
 
.anime.move{
    opacity: 1;
}

/* コンテンツ */
.contents {
  background-color: none;
  margin: 0 5% 0;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
.contents {
	margin: 0 auto 0;
	width: 1000px;
  }
}

.content-container {
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}	
@media screen and (min-width: 960px) {
.content-container {
	margin: 0;
  }
}
.content-container-link {
    background-color: none;
    display: grid;
	grid-auto-rows: 100px;
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
	justify-content: center;
}	
@media screen and (min-width: 960px) {
.content-container-link {
	display: grid;
	grid-auto-rows: 100px;
	grid-template-columns: repeat(4, 1fr);
	width: 1000px;
	justify-content: center;
  }
}
.link-gazo {
  display: flex;
  justify-content: center;
  align-items: center;
}	
@media screen and (min-width: 960px) {
.link-gazo {
  
  }
}
.link-gazo img{
  width: 90%;
  padding: 0;
}	
@media screen and (min-width: 960px) {
.link-gazo img {
	width: 235px;
	height: 45px;
	padding: 0;
  }
}

/*タイトル*/
.contenttitle {
  color: black;
  font-size: 18px;
  margin: 0 0 20px;
  text-align: center;
  line-height: 1.6;
  font-family: "din-2014", corporate-logo-ver2, sans-serif;
  font-style: normal;
  font-weight: 500;
}	
@media screen and (min-width: 960px) {
.contenttitle {
  font-size: 24px;
  margin: 0 0 30px;
  text-align: left;
  }
}

.contenttitle-full {
  color: black;
  font-size: 22px;
  margin: 0 0 20px;
  text-align: center;
  line-height: 1.6;
  font-family: "din-2014", corporate-logo-ver2, sans-serif;
  font-style: normal;
  font-weight: 500;
}	
@media screen and (min-width: 960px) {
.contenttitle-full {
  font-size: 30px;
  margin: 0 0 30px;
  text-align: left;
  width: 1000px;
  }
}

.contenttitle-small {
  color: black;
  font-weight: bold;
  font-size: 17px;
  margin: 0 0 20px;
  text-align: center;
  line-height: 1.6;
}	
@media screen and (min-width: 960px) {
.contenttitle-small {
  font-size: 20px;
  margin: 0 0 30px;
  text-align: left;
  }
}

.contenttitle-sub {
  background-color: none;
  line-height: 1.6;
  font-size: 16px;
  text-align: justify;
  margin: 0 0 20px;
  font-style: normal;
}	
@media screen and (min-width: 960px) {
.contenttitle-sub {
	width: 100%;
	margin: 0 0 30px;
  }
}
/*フォト、画像*/
.content-photo {
  background-color: none;
  margin: 0 0 20px;
}	
@media screen and (min-width: 960px) {
.content-photo {
  width: 30%;
  }
}
.content-photo img {
  width: 100%
}	
@media screen and (min-width: 960px) {
.content-photo img {
  }
}

/*ワード、文章*/
.content-words {
  background-color: none;
  line-height: 1.6;
  font-size: 16px;
  text-align: justify;
  margin: 0;
}	
@media screen and (min-width: 960px) {
.content-words {
	width: 70%;
  }
}
.content-words p {
    margin: -3.8px 0 0;
}	
@media screen and (min-width: 960px) {
.content-words p {
	padding: 0 0 0 20px;
  }
}
.content-words-full {
  background-color: none;
  line-height: 1.6;
  font-size: 16px;
  text-align: justify;
  margin: 0;
}	
@media screen and (min-width: 960px) {
.content-words-full {
	width: 100%;
  }
}
.content-name {
    margin: 20px 0 0;
	text-align: right;
}	
@media screen and (min-width: 960px) {
.content-name {
  }
}

.content-link {
    margin: 20px 0 0;
	text-align: left;
}	
@media screen and (min-width: 960px) {
.content-link {
  }
}

/*トップページお知らせ*/
.news_list {
  margin: 0;
  width: 100%;
  border-bottom: 1px solid #E6E6E6;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 20px;
  align-items: center;
}
@media screen and (min-width: 960px) {
.news_list {
	width: 1000px;
  }
}
.news_list:first-child {
  border-top: 1px solid #E6E6E6;
}
.news_list a {
 color: #000000;
 width: 100%;
 position: relative;
 margin: 10px 0 0;
}
@media screen and (min-width: 960px) {
.news_list a {
	width: 70%;
	margin: 0;
  }
}
.news_list a:hover {
  color: rgba(216,12,24,1);
}
.news_list a:hover .arrow  {
  background: rgba(216,12,24,1);
}
.news_list a:hover .arrow::after  {
  background: rgba(216,12,24,1);
}
.news_title {
  text-align: center;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 960px) {
.news_title {
	width: 30%;
  }
}
.news_label {
  text-align: center;
  color: white;
  background-color: rgba(216,12,24,1);
  font-size: 10px;
  height: 25px;
  line-height: 25px;
  width: 120px;
  
}
@media screen and (min-width: 960px) {
.news_label {
	
  }
}
.news_date {
  margin: 0 0 0 20px;
  height: 25px;
  line-height: 25px;
}
@media screen and (min-width: 960px) {
.news_date {
	
  }
}
.news_main {
  display: flex;
  width: 90%;
  
}
@media screen and (min-width: 960px) {
.news_main {
	
  }
}
.arrow_box {
  width: 25px;
  height: 25px;
  
}
.arrow {
  width: 25px;
  height: 1px;
  background: #707070;
  position: absolute;
  top: 50%;
  right: 0;
}

.arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #707070;
  transform: rotate(45deg);
  position: absolute;
  right: 0px;
  bottom: 2px;
}

/*designecircuit*/
.content-info-photo {
  background-color: none;
  margin: 0 0 20px;
}	
@media screen and (min-width: 960px) {
.content-info-photo {
  width: 50%;
  }
}
.content-info-photo img {
  width: 100%
}	
@media screen and (min-width: 960px) {
.content-info-photo img {
	width: 100%
  }
}

.content-info-words {
  background-color: none;
  line-height: 1.6;
  font-size: 16px;
  text-align: justify;
  margin: 0;
  width: 100%;
}	
@media screen and (min-width: 960px) {
.content-info-words {
	width: 50%;
  }
}
.content-info-words p {
    margin: -3.8px 0 0;
}	
@media screen and (min-width: 960px) {
.content-info-words p {
	padding: 0 0 0 20px;
  }
}
.tbl {
  width: 100%;
  margin: 0;
}

.tbl p {
  font-size: 16px;
  text-align: left;
  }
@media screen and (min-width: 960px) {
.tbl p {
	
  }
}
.tbl tr{
    
}
@media screen and (min-width: 960px) {
.tbl tr {
	display: flex;
	padding: 0 0 10px 20px;
  }
}
.tbl th{
	text-align: left;
    display: block;
    width: 100%;
  }
@media screen and (min-width: 960px) {
.tbl th {
    width: 30%;
	text-align: left;
  }
}
.tbl td {
    display: block;
    width: 100%;
	padding: 0 0 20px;
  }
@media screen and (min-width: 960px) {
.tbl td {
    width: 70%;
	padding: 0;
  }
}

/*会員リスト*/
.content-boxleft {
  width: 100%;
  display: flex;
}	
@media screen and (min-width: 960px) {
.content-boxleft {
	width: 49%;
	margin: 0;
  }
}
.content-boxright {
  width: 100%;
  display: flex;
}	
@media screen and (min-width: 960px) {
.content-boxright {
	width: 49%;
	margin: 0;
  }
}
.content-boxleft a,
.content-boxright a {
  color: #000000;
}
.content-boxleft a:hover,
.content-boxright a:hover {
  color: rgba(216,12,24,1);
}

.content-boxleft table td {
	background: #FFFFFF;
}
.content-boxleft table tr:nth-child(odd) td {
    background: #DADADA;
}
.content-boxright table td {
	background: #FFFFFF;
}
@media screen and (min-width: 960px) {
.content-boxright table td {
	background: #DADADA;
  }
}
.content-boxright table tr:nth-child(even) td {
    background: #DADADA;
}
@media screen and (min-width: 960px) {
.content-boxright table tr:nth-child(even) td {
	background: #FFFFFF;
  }
}
.content-boxleft table,
.content-boxright table {
  width: 100%;
}	
.content-boxleft table tr,
.content-boxright table tr {
  width: 100%;
}	
.content-boxleft .left,
.content-boxright .left {
    width: 30%;
	font-size: 12px;
    line-height: 1.6;
}
@media screen and (min-width: 960px) {
.content-boxleft .left,
.content-boxright .left {
  font-size: 14px;
  line-height: 1.6;
  }
}
.content-boxleft .right,
.content-boxright .right {
    width: 70%;
	font-size: 12px;
    line-height: 1.6;
}
@media screen and (min-width: 960px) {
.content-boxleft .right,
.content-boxright .right {
  font-size: 14px;
  line-height: 1.6;
  }
}
.content-boxleft .lefts,
.content-boxright .lefts {
    width: 30%;
	font-size: 9px;
    line-height: 1.6;
}
@media screen and (min-width: 960px) {
.content-boxleft .lefts,
.content-boxright .lefts {
  font-size: 14px;
  line-height: 1.6;
  }
}

.content-boxleft .rights,
.content-boxright .rights {
  width: 70%;
  font-size: 9px;
  line-height: 1.6;
}
@media screen and (min-width: 960px) {
.content-boxleft .rights,
.content-boxright .rights {
  font-size: 14px;
  line-height: 1.6;
  }
}

/*賛助会員リスト*/
.map {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1;
}	
@media screen and (min-width: 960px) {
.map {
	width: 1000px;
	height: 500px;
  }
}	
.gmap {
  width: 100%;
  height: 120%;
  margin: -20% 0 0;
}	
@media screen and (min-width: 960px) {
.gmap {
	width: 1000px;
	height: 570px;
	margin: -70px 0 0;
  }
}
.gmap-inq {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
}	
@media screen and (min-width: 960px) {
.gmap-inq {
	width: 1000px;
	height: 500px;
  }
}
.content-sanjo {
  width: 100%;
  display: flex;
  margin: 0 0 20px;
}	
@media screen and (min-width: 960px) {
.content-sanjo {
	width: 480px;
  }
}
.content-sanjo a {
  color: #000000;
}
.content-sanjo a:hover {
  color: rgba(216,12,24,1);
}
.content-sanjo-hidden {
  visibility: hidden;
}
.sanjophoto {
  width: 30%;
  margin: 0;
}	
@media screen and (min-width: 960px) {
.sanjophoto {
	margin: 0;
  }
}
.sanjophoto img {
  width: 90%;
  margin: 0;
  border: 0.5px solid #000;
}	
@media screen and (min-width: 960px) {
.sanjophoto img{
	width: 137px;
	margin: 0;
  }
}
.sanjoword {
  width: 70%;
  margin: 0;
}	
@media screen and (min-width: 960px) {
.sanjoword {
	margin: 0;
  }
}
.sanjoword-title {
  font-size: 13px!important;
  font-weight: bold;
  margin: -0.3px 0 3px;
}	
@media screen and (min-width: 960px) {
.sanjoword-title {
	font-size: 16px!important;
	font-weight: bold;
	margin: -2.2px 0 5px;
  }
}
.sanjoword p {
  font-size: 11px;
  line-height: 1.3;
}	
@media screen and (min-width: 960px) {
.sanjoword p {
	font-size: 13px;
	line-height: 1.5;
  }
}

/* kantodesigners tokutalk*/
.content-kd {
  background-color: none;
  margin: 0;
  width: 100%;
}	
@media screen and (min-width: 960px) {
.content-kd {
  width: 480px;
  }
}
.content-kd-hide {
  background-color: none;
  margin: 0;
  width: 100%;
  display: none;
}	
@media screen and (min-width: 960px) {
.content-kd-hide {
  width: 480px;
  visibility: hidden;
  }
}
.content-kd-photo {
  background-color: none;
  margin: 0;
  width: 100%;
}	
@media screen and (min-width: 960px) {
.content-kd-photo {
  
  }
}
.content-kd-photo img {
  width: 100%;
}	
@media screen and (min-width: 960px) {
.content-kd-photo img {
  width: 100%;
  }
}
.contenttitle-kd {
  color: black;
  font-size: 14px;
  margin: 20px 0 0;
  font-family: "din-2014", corporate-logo-ver2, sans-serif;
  font-style: normal;
  font-weight: 500;
}	
@media screen and (min-width: 960px) {
.contenttitle-kd {
  font-size: 18px;
  }
}
	
/*入会案内*/
.content-join-photo {
  background-color: none;
  margin: 0 0 20px;
  width: 100%;
}	
@media screen and (min-width: 960px) {
.content-join-photo {
  width: 50%;
  }
}
.content-join-photo img {
  width: 100%;
}	
@media screen and (min-width: 960px) {
.content-join-photo img {
  width: 100%;
  }
}

/* 問い合わせ */
.inq-meruado {
  width: 100%;
  height: 25.6px;
  display: flex;
  align-items: center;
}	
@media screen and (min-width: 960px) {
.inq-meruado {

  }
}
.inq-meruado img {
  width: 150px;
}	
@media screen and (min-width: 960px) {
.inq-meruado img{
   
  }
}
.inq-table {
  width: 100%;

}	
@media screen and (min-width: 960px) {
.inq-table {

  }
}
.inq-table tr{
    
}
@media screen and (min-width: 960px) {
.inq-table tr {
	display: flex;
	
  }
}
.inq-table th{
  width: 100%;
  vertical-align: top;
  text-align: left;
  display: block;
  padding: 0 0 10px;
}	
@media screen and (min-width: 960px) {
.inq-table th{
  width: 30%;
  }
}
.inq-table td{
  width: 100%;
  vertical-align: top;
  display: block;
}	
@media screen and (min-width: 960px) {
.inq-table td{
  width: 70%;
  }
}
.inq-title {
  background-color: none;
  margin: 0;
  width: 100%;
  display: inline-block;
}	
@media screen and (min-width: 960px) {
.inq-title {
  width: 100%; 
  vertical-align: top;
  }
}

.inq-input {
  background-color: none;
  font-size: 16px;
  margin: 0 0 20px;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}	
@media screen and (min-width: 960px) {
.inq-input {
	width: 100%;
  }
}
.inq-input p {
    margin: 0;
}	
@media screen and (min-width: 960px) {
.inq-input p {
	padding: 10px;
  }
}
.inq-input-text {
  background-color: none;
  line-height: 1.6;
  font-size: 16px;
  margin: 0 0 20px;
  width: 100%;
  box-sizing: border-box;
}	
@media screen and (min-width: 960px) {
.inq-input-text {
	width: 100%;
	height: 100px;
  }
}
.inq-input-text p {
    margin: 0;
}	
@media screen and (min-width: 960px) {
.inq-input-text p {
	padding: 10px;
  }
}
.inq-button {
  text-align: center;

}	
@media screen and (min-width: 960px) {
.inq-button {
	
  }
}
.warning {
  font-size: 12px;
  color: rgba(216,12,24,1);

}	
@media screen and (min-width: 960px) {
.warning {
	
  }
}
/* ポップアップ */
.c {
    text-align: center;
}
.c img{
	pointer-events: none;
}
@media screen and (min-width: 960px){
.c img {
  pointer-events:auto;
  cursor: pointer;
}
}
.overlay { /* グレーの背景 */
  position: fixed;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.5s 0s ease;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#pop-up {
  display: none;
}

#pop-up:checked + .overlay {
    visibility: hidden;
    opacity: 0;
}

@media screen and (min-width: 960px){
#pop-up:checked + .overlay {
  visibility: visible;
  opacity: 1;
  z-index: 100000;
  width: 100%;
}
}
.popWindow {
  overflow: hidden; /* スクロールバー用 */
  width: fit-content;
  position: fixed;
  top: 50%; /* 中央に */
  left: 50%; /* 中央に */
  transform: translate(-50%, -50%); /* 中央に */
  z-index: 100010;
  margin: 10px auto;
  transition: all 500ms ease-in-out;
}
.popWindow img{
  height: 80vh;
  vertical-align: top;
  border: none;
}

.popWindow .close {
  position: absolute;
  top: 8px;
  right: 10px;
  transition: all 300ms;
  font-size: 24px;
  line-height: inherit;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  padding: 2px;
  cursor: pointer;
}
.popWindow .close:hover {
  color: rgba(216,12,24,1);
}
/* SNS */
.snstitle {
  align-items: center; /* 横線を上下中央 */
  justify-content: center;
  display: flex; /* 文字と横線を横並び */
  margin: 0 0 20px;
  font-size: 18px;
}
.snstitle::before,
.snstitle::after {
  border-bottom: #000000 solid 1px;
  content: "";
  width: 50px;
  height: 1px; /* 横線の高さ */
}
.snstitle::before {
  margin-right: 15px; /* 文字との余白 */
}
.snstitle::after {
  margin-left: 15px; /* 文字との余白 */
}
.content-sns-boxleft {
  width: 100%;
}	
@media screen and (min-width: 960px) {
.content-sns-boxleft {
	width: 480px;
	margin: 0;
  }
}
.content-sns-boxright {
  width: 100%;
  display: flex;
  flex-flow: column;
}	
@media screen and (min-width: 960px) {
.content-sns-boxright {
	width: 480px;
	margin: 0;
  }
}

.facebook-wrapper {
    max-width: 480px;
    margin: 0 auto;
}
.facebook-wrapper > .fb-page {
    width: 100%;
}
.facebook-wrapper > .fb-page > span,
.facebook-wrapper iframe {
    width: 100% !important;
}
.insta_list{
    margin: 0;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
@media screen and (min-width: 960px){
.insta_list{
    margin: 0;
	width: 480px;
	}
}

.insta_list li{
	position: relative;
	display: flex;
    width: calc((100% - 10PX)/2);
	margin: 0 0 10px;
}

@media screen and (min-width: 960px){
    .insta_list li{
        width: 235px;
    }
}
.insta_list li::before{
	content: "";
	display: block;
	padding-top: 100%;
}
.insta_list a{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.insta_list img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta_btn{
    background-color: #000;
    width: fit-content;
	height: fit-content;
    margin: 0 auto;
    cursor: pointer;
    transition: .3s;
	padding: 8px 10px 10px;
	display: flex;
    align-items: center;
}

.insta_btn a{
    color: #fff;
    text-decoration: none;
}

.insta_btn:hover{
    background-color: #999;
}

.like {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  padding: 0 10px;
}
.like-container {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(0,0,0,0.5);
}
.like-container:hover {
  opacity: 1;
}