@charset "utf-8";

/* CSS Document */







.cf:after {
  content: "";
  display: block;
  clear: both;
} 
.cf:before {
  content: "";
  display: block;
  clear: both;
} 
.cf {
  display: block;
}








/* -------------------- 全体のCSS -------------------- */

.mainContent {
    max-width: 1200px;
    margin: auto;
}






/* -------------------- header -------------------- */

/* 背景色変更 不要な場合は削除 */
header {
  background-color: #fffcf8; 
}












/* -------------------- swiper トップスライド -------------------- */






.swiper-slide img {

  width: 100%;
    height: auto;
	
}



.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}



/* -------------------- swiper スタイリング -------------------- */
/* ページネーションの余白 */
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 20px 20px;
}
/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
  background-color: red;
  height: 30px;
  width: 30px;
 z-index: 9999;
}




/* --------------------トップスライド-------------------- */









.intro {
    position: relative;
    margin-top: 45px;
}

.intro__title {
width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	z-index: 999;
}


.intro__title img {
width:100%;
}


@media (max-width: 764px) {

.intro__title {
    width: 80%;
}
}

/* --------------------コンセプトエリア-------------------- */




section#conceptSection {
    padding: 100px 0;
}


h2.concept__title {
    font-size: 3rem;
    text-align: center;
    margin: 25px 0;
}

p.conceptSection__text {
    text-align: center;
    font-size: 1rem;
}

.btn {
    position: relative;
    display: block;
    width: 277px;
    height: 50px;
    font-size: 1em;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.045em;
    margin: 20px auto;
}

.btn svg {
    position: absolute;
    top: 0;
    left: 0;
}

.btn svg rect {
    //stroke: #EC0033;
    stroke-width: 4;
    stroke-dasharray: 353, 0;
    stroke-dashoffset: 0;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
}

.btn span{
  background: rgb(255,130,130);
  background: -moz-linear-gradient(left,  rgba(255,130,130,1) 0%, rgba(225,120,237,1) 100%);
  background: -webkit-linear-gradient(left,  rgba(255,130,130,1) 0%,rgba(225,120,237,1) 100%);
  background: linear-gradient(to right,  rgba(255,130,130,1) 0%,rgba(225,120,237,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8282', endColorstr='#e178ed',GradientType=1 );
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn:hover svg rect {
    stroke-width: 4;
    stroke-dasharray: 196, 543;
    stroke-dashoffset: 437;
}


@media (max-width: 764px) {

.dn-sp {display: none}

section#conceptSection {
    padding: 100px 5%;
}

p.conceptSection__text {
    text-align: left;

}
}

/* --------------------スタイリングエリア-------------------- */

li.styling__list {
    width: 30%;
    margin: 1%;
    float: left;
}



.credit {
	overflow:		hidden;
	margin:			0;
	position:		relative;	/* 相対位置指定 */
}
.credit .caption {
	text-align: 		center;
	padding-top:		80px;
	color:			#fff;
}


.credit .caption li {
	font-size:		0.8rem;
}


.credit .caption a{
	color:			#fff;
}
.credit .mask {
	width:			100%;
	height:			100%;
	position:		absolute;	/* 絶対位置指定 */
	top:			0;
	left:			0;
	opacity:		0;	/* マスクを表示しない */
	background-color:	rgba(0,0,0,0.4);	/* マスクは半透明 */
	-webkit-transition:	all 0.2s ease;
	transition:		all 0.2s ease;
	z-index: 9999;
}
.credit:hover .mask {
	opacity:		1;	/* マスクを表示する */
}


span.caption_button {
    border: solid 1px;
    padding: 2px 4px;
    font-size: 0.7em;
    margin-left: 10px;

}







@media (max-width: 764px) {
li.styling__list {
    width: 100%;
}



.credit .mask {

    position: relative;

    opacity: 100;
    background-color: #FFF;
    padding: 0 10% ;
}

.credit .caption {
	font-size:		1rem;
	text-align: 		center;
	padding:		10%;
	color:			#000;
}
.credit .caption a{
	color:			#000;
}

span.caption_button {

    background-color: #e1f1f1;
}
    

    
}





/* -------------------- pagetop -------------------- */

/* ページの上部へ　右下固定版 */

#pagetop--fixed {
  position: fixed;
  bottom: 10vh;
  right: 1vw;
  background: #222;
  opacity: 0.7;
  border-radius: .2rem;
    z-index: 999;
}

#pagetop--fixed a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#pagetop--fixed a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 50px;
  height: 50px;
  margin: auto;
  text-align: center;
}

