@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap');

:root {
	--red: #9b2c2c;
	--white: #f3f0ec;
}

p {
	font-size: 18px;
	margin: 0;
	text-align: justify;
}

body {
	margin: 0;
	color: #222;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	background-color: var(--white);
}

body::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

body::-webkit-scrollbar-track {
  background-color: #eee;
}

body::-webkit-scrollbar-thumb {
  background: var(--red);
}

.btn {
    display: block;
    z-index: 2;
    position: relative;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    color: #222;
    background-color: var(--white);
    width: 220px;
    margin: 20px auto;
    padding: 20px;
    border: 3px solid var(--red);
    transition: .5s;
}
.btn::before, .btn::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    transition: .5s;
}
.btn::before {
    z-index: 2;
    background: linear-gradient(45deg, var(--red) 25%, transparent 25%, transparent 75%, var(--red) 75%),
                linear-gradient(45deg, var(--red) 25%, transparent 25%, transparent 75%, var(--red) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}
.btn:hover {
    opacity: 1!important;
    color: var(--white);
    background-color: var(--red);
    transition: .5s;
}
.btn:hover::before {
    transform: rotate(90deg);
    transition: .5s;
}
.btn:hover::after {
    z-index: 0;
    transition: .5s;
    background-color: var(--white);
}

.disabled, .disabled a {
    opacity: .5;
}
.disabled:hover, .disabled a:hover {
    color: #FFF!important;
    opacity: .5!important;
}

.at::before {
    content: '@';
}

/* header */

header {
	position: fixed;
	z-index: 100000;
	top: 0;
	height: 30px;
	width: 100%;
	padding: 15px 0;
	color: #FFF;
	background-color: rgba(155, 44, 44, .9);
}

header h1 {
	margin: 0;
    margin-left: 20px;
	font-weight: 300;
	font-size: 20px;
}

header a {
	color: #FFF;
	text-decoration: none;
}

header a:hover {
	opacity: .8;
}

.menu {
	display: none;
}

.menuBtn {
    position: absolute;
    cursor: pointer;
    top: 5px;
    right: 10px;
    width: 65px;
    height: 50px;
}

.menuBtn_line_01,
.menuBtn_line_02,
.menuBtn_line_03 {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 3px;
    background: #FFF;
    transition: all 0.3s ease-out;
}

.menuBtn_line_01 {
    top: 15px;
    left: 10px;
    width: 50px;
}

.menuBtn_line_02 {
    top: 25px;
    left: 25px;
    width: 35px;
}

.menuBtn_line_03 {
    top: 35px;
    left: 40px;
    width: 20px;
}

.menuBtn.is-active .menuBtn_line_01 {
    top: 25px;
    transform: rotate(45deg);
    width: 20px;
    left: 25px;
}

.menuBtn.is-active .menuBtn_line_02 {
    opacity: 0;
    width: 20px;
    left: 25px;
}

.menuBtn.is-active .menuBtn_line_03 {
    top: 25px;
    transform: rotate(135deg);
    width: 20px;
    left: 25px;
}

.menu-contents{
    text-align: center;
}

.menu-sp-content {
    background-color:rgba(170, 149, 119, .95);
    width: 100%;
    position: fixed;
    top: 60px;
    display: none;
    z-index: 99998;
    height: 80%;
    padding: 0 30px;
}

.menu-sp-content-h1 {
    color:white;
    padding:20px 0px;
    font-size: 30px;
    margin-bottom: -3px;
    margin-top: -2px;
}  

.menu-sp-content-2-box {
    width:100%;
    color:white;
    padding-top:10px;
    padding-bottom: 10px;
    position:relative;
    text-align: center;
}
  
.menu-sp-content-2-box a {
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}

.menu-sp-content-2-box p {
    margin:0 20px;
    font-size:21px;
}

/* index */

.indeximg {
    position: fixed;
    z-index: -10;
    top: 0;
    width: 100%;
    height: 100vh;
    background-image: url("https://ikkyosai.com/committee/57/img/index_top.png");
    background-position: center;
    background-size: cover;
}

/*スクロールダウン全体の場所*/
#scrolldown{
    display: none;
  position: absolute;
  left:50%;
  bottom:50px;
  height:50px;
  text-shadow: #222 1px 0 10px;
}

/*Scrollテキストの描写*/
#scrolldown span{
  position: absolute;
  left:-22.5px;
  top: -20px;
  color: #eee;
  font-size: 18px;
  font-weight: 400;
  user-select: none;
}

/* 線の描写 */
#scrolldown::after{
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}

.indextArea {
    display: flex;
    margin: 0 auto;
    height: 100vh;
}

#indextitle {
    opacity: 0;
    display: flex;
    align-items: flex-end;
    font-weight: 400;
    font-size: 30px;
    margin: auto;
    color: #FFF;
    text-shadow: #222 1px 0 10px;
    user-select: none;
}

.iArea01 {
    padding: 20px 0;
    background-color: var(--white);
}

.recommend {
    min-width: 300px;
    margin: 25px;
    padding: 15px;
    height: 400px;
    background-color: rgba(155, 44, 44, .1);
}

.recommend h4 {
    font-weight: 400;
    font-size: 22px;
    text-align: center;
}

/* slick */
#slick, #slick img {
    display: block;
    margin: 0 auto;
    width: 85%;
    max-width: 400px;
}
.slick-slide {
    height: 300px!important;
    max-height: 66vw!important;
  position: relative;
}
.slick-slide .caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
  opacity: 0;
  /*transition: .3s ease;*/
}
.slick-current .caption {
  opacity: 1;
  /*transition-delay: .5s;*/
}
.caption a {
    margin-top: 10px;
    display: inline-block;
    text-align: justify;
    text-decoration: none;
    font-size: 12px;
    color: #222;
}
.caption a:first-child{
    margin-top: 0;
    font-size: 14px;
}
.caption i {
    color: #999;
    margin-left: 10px;
}
.slick-prev:before, .slick-next:before {
    font-size: 30px!important;
}
.slick-next {
    right: -27px!important;
}
.slick-prev {
    left: -37px!important;
}

/*WEBSITE*/
.webnews{
    max-width: 300px;
    margin:50px auto;
}
.webnews p {
    text-align: left;
}
.website1{
    clear: both;
}
.website1 a{
    color: black;
}
.website1 a:hover .daruma{
    transform: scale(1.2, 1.2);
    cursor: pointer;
}
.weblink:hover {
    opacity: .5;
}
.web{
    position: relative;
    float:left;
    height: 100px;
    width: 300px;
    display: flex;
    align-items: center;
    margin:0;
}
.website1 a :hover .web-mouse{
    display: block;
}
.logo{
    float: left;
    width: 90px;
    margin:0;
    padding:0;
}
.web p{
    float: left;
    margin-left: 22px;
    font-size: 18px;
}
.web i {
    color: #999;
    margin-left: 10px;
}
.magazine{
    float: left;
    width: 66px;
    padding: 0 12px;
}
.daruma{
    float: left;
    width: 70px;
    padding: 0 10px;
    margin:0;
}

.instagramLink {
    width: 100%;
    height: 50px;
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
    color: white;
    margin: 10px 0;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease-out;
    background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  }
.twitterLink {
    width: calc(49.9% - 5px);
    height: 50px;
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
    background-color: white;
    color: black;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    vertical-align: top;
    transition: all 0.3s ease-out;
}
.facebookLink {
    width: calc(49.9% - 5px);
    background-color: #3B5998;
    height: 50px;
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease-out;
}
.twitterLink:hover,
.instagramLink:hover,
.facebookLink:hover {
    opacity: .5;
}
.twitterLink i,
.instagramLink i,
.facebookLink i {
    font-size: 28px;
    margin: 3px 0 1px 0;
}
.twitterLink,
.instagramLink,
.facebookLink {
    position: relative;
}
.twitterLink a,
.instagramLink a,
.facebookLink a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.twitterLink p,
.instagramLink p,
.facebookLink p {
    text-align: center;
    font-size: 14px;
}

.iArea02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% - 10vw);
    padding: 45px 5vw 0;
    background-color: #F4E7CB;
}

.activity{
    width: 300px;
    padding: 10px 0;
    margin: 10px 30px;
}
.activity-img {
    width: 300px;
    height: 150px;
    margin: auto;
    background-image: url("https://ikkyosai.com/committee/57/img/top.png");
    background-position: center;
    background-size: cover;
}
.activity p{
    color: #222;
    width: 300px;
    height: 120px;
    font-size: 16px;
    margin:0;
}
.activity .midashi-mini{
    text-align: center;
    margin: 5px 0 10px;
    height: 40px;
    font-size: 20px;
    font-weight: 400;
    background-image: linear-gradient(90deg, transparent 0% 40%, var(--red) 40% 60%, transparent 60%);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: center 100%;
    line-height: 2;
}
.activity a {
    text-decoration: none;
    transition: .5s;
}
.activity a:hover{
    opacity: .7;
    transition: .5s;
}
.image-box{
    width: 300px;
    height: 300px;
    overflow: hidden;
}

.iArea03 {
    background-color: var(--white);
    padding: 30px 8%;
    margin: 0 auto;
}

.embedFB {
    margin: 20px auto;
    padding-bottom: 45px;
}

.embedFB iframe {
    margin: 0 auto;
}

.spFB {
    display: block;
    margin: 0 auto;
}

.pcFB {
    display: none;
}

.embedMZ {
    margin: 0 auto;
}


/* contents */

.topimg {
	position: fixed;
	z-index: -10;
	top: 60px;
	width: 100%;
	height: calc(100vh - 60px);
	background-image: url("https://ikkyosai.com/committee/57/img/top.png");
	background-position: center;
	background-size: cover;
}

.tArea {
	display: table;
	padding: 100px 20px;
	margin-top: 60px;
	height: calc(100vh - 260px);
}

.title {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	height: 60px;
	font-weight: 400;
	font-size: 30px;
	padding: 60px;
	background-color: rgba(255, 255, 255, .8);
    background-image: linear-gradient(90deg, transparent 0% 40%, var(--red) 40% 60%, transparent 60%);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: center 65%;
}

.cArea {
	padding: 20px 10vw 40px;
	margin-bottom: 30px;
	background-color: var(--white);
}

.c-h4 {
	font-size: 22px;
	font-weight: 400;
	width: 60vw;
	margin: 20px 0;
	padding: 0.25em 2.5vw;
	background-color: rgba(155, 44, 44, .05);
	border-left: solid 5px rgba(155, 44, 44, .9);
}

.cArea01, .cArea03, .cArea05 {
	margin-right: 5vw;
  margin-left: 5vw;
}

.cArea02, .cArea04, .cArea06 {
	margin-left: 5vw;
  margin-right: 5vw;
}

.sponsorimg{
    width: 100%;
    padding-top: 12%;
    padding-bottom: 12%;

}

.cImg {
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 500px;
}

.communityWrap {
  font-size: 0;
  margin: 0 0 0 0;
  padding: 10px 0 0 0;
  display: flex;
  flex-direction: column;
}

.community_card {
  display: inline-block;
  text-align: center;
  width: 100%;
  height: auto;
  background-color: #fff;
  border: 1px dashed #444;
  margin-bottom: 20px;
}

.community_card p {
  font-size: 14px;
  padding: 0 10px 10px 10px;
}

.community_card img {
  width: -webkit-calc(99.9% - 20px);
  width: calc(99.9% - 20px);
  margin: 10px auto;
}

.card_1 {
  margin: 0 20px 20px 0;
}

/* footer */

.share-area {
  text-align: right;
  margin: 20px auto;
  width: 340px;
}

.share-area a, .share-area div, .share-area iframe {
  display: inline-block;
  vertical-align: text-bottom;
}

footer {
  background-color: #555;
  padding-top: 10px;
  width:100%;
}

.footer_banner {
}

.footer_banner img {
  width: 100%;
}

.footer_banner a {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.footerColumn-1 a,
.footerColumn-2 a,
.footerColumn-3 a,
.footerColumn-4 a {
  color: #fff;
  text-decoration: none;
}

.footerColumn-1 p,
.footerColumn-2 p,
.footerColumn-3 p,
.footerColumn-4 p  {
  color: #fff;
  text-decoration: none;
}

.footerColumn-1,
.footerColumn-2,
.footerColumn-3,
.footerColumn-4 {
  padding: 5px 0;
}

.footerColumn-h2 {
  font-size: 16px;
  padding: 5px 30px;
}

.footerColumn-h2, .footerColumn-h2 a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.footerColumn-h3 {
  font-size: 16px;
  padding: 5px 50px;
}

.footerColumn-h3, .footerColumn-h3 a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.footerColumn {
  padding: 20px 0px 10px 0px;
}

.copyrights {
    background-color: #555;
    font-size: 12px;
    margin-top: 40px;
    padding: 0px 0 20px 0;
    color: #fff;
    text-align: center;
}

#page-top {
    display: none;
    position: fixed;
    z-index: 10;
    bottom: 20px;
    right: 20px;
}

#page-top a {
    display: block;
    background: rgba(155,44,44, 0.85);
    color: #fff;
    text-align: center;
    text-decoration: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

#page-top p {
    position: relative;
    top: 18px;
    text-align: center;
    line-height: 2.2em;
    font-size: 16px;
}

img{
    /* PCの右クリック禁止 */
   
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

/* PC+tablet */

@media screen and (min-width:720px) {

.recommend {
    height: 440px;
}
.webnews{
    max-width: 600px;
    margin: 10px auto;
}
.pcFB {
    display: block;
}
.spFB {
    display: none;
}

}

/* PC */

@media screen and (min-width:1024px) {

  /* PCheader */

  header {
	height: 40px;
	padding: 15px 0;
  }

  header h1 {
    margin-left: 30px;
  	font-size: 30px;
  }

  .menuBtn, .menu-sp-content {
  	display: none;
  }

	.menu {
		display: flex;
		position: absolute;
		right: 10px;
		top: 0;
	}

	.menu li {
		list-style: none;
		font-size: 18px;
		padding: 8px;
	}

	.menu a {
		color: #FFF;
		text-decoration: none;
	}

	.menu a:hover {
		opacity: .8;
	}

  /* PCindex */
  #indextitle {
    font-size: 36px;
  }
  .caption a {
    font-size: 16px;
  }
  .caption a:first-child{
    font-size: 19px;
  }
  /*.iArea01 {
    display: flex;
  }*/
  .web {
    width: 250px;
  }
  .shikiri {
    height: 70px;
    width: 5px;
    margin: 15px 25px 15px 20px;
    background-color: #999;
    float: left;
  }
  .recommend {
    margin: 0 auto;
    width: 65%;
    /*min-width: 480px;
    margin-right: 25px;
    margin-left: 100px;
    margin: 0 auto;
    width: 45%;*/
}
  .iArea02 {
    width: calc(100% - 20vw);
    padding: 0 10vw;
  }
  .activity {
    margin: 30px 50px;
  }
  .activity .midashi-mini {
    margin-top: 25px;
  }
  .activity-img {
    width: 300px;
    height: 300px;
  }
  .iArea03 {
    display: flex;
  }

  .embedMZ {
    padding-left: 50px;
  }

  /* PCcontents */

  .topimg {
	top: 70px;
	height: calc(100vh - 70px);
  }

  .tArea {
  	padding: 60px;
    margin-top: 70px;
    height: calc(100vh - 170px);
  }

  .title {
	height: 60px;
	padding: 60px;
    background-position: center 56%;
  }


  .cArea01, .cArea03, .cArea05 {
	margin-right: 10vw;
  margin-left: 10vw;
  }

  .cArea02, .cArea04, .cArea06 {
	margin-left: 10vw;
  margin-right: 10vw;
  }

  .sponsorimg{
  width: 50%;
    padding-left: 25%;
        padding-top: 3%;
    padding-bottom: 3%;

}

  .communityWrap {
    display: block;
  }

  .community_card {
    width: calc((99.9% - 20px - 4px)/2);
  }

  /* PCfooter */

  .share-area {
    width: 984px;
  }

  .footer_banner {
    /*display: none;*/
    width: 30%;
    margin: 0 auto;
  }

  .footerColumn a:hover {
    color: #DFB979;
  }

  .footerColumn-1,
  .footerColumn-2,
  .footerColumn-3,
  .footerColumn-4 {
    display: inline-block;
    vertical-align: top;
    width: 250px;
  }

  .footerColumn {
    display: block;
    width: 1024px;
    margin: 0 auto;
    padding: 20px 0 10px 0;
  }

  .footerColumn-h2, .footerColumn-h3 {
    padding-right: 0;
  }

  .footerColumnSpan {
  	display: block;
  	height: 31px;
  }

.zozo {
    height: 30px;
}
}