/*
Theme Name:amie2019

*/

.width20{
	width: 20%;
	box-sizing: border-box;
}
.width40{
	width: 40%;
	box-sizing: border-box;
}
.width55{
	width: 55%;
	box-sizing: border-box;
}
.width60{
	width: 60%;
	box-sizing: border-box;
}
/*---マージン---*/
.mt-0{
    margin-top: 0 !important;
}
.mt-10{
    margin-top: 10px;
}
.mt-20{
    margin-top: 20px !important;
}
.mt-30{
    margin-top: 30px;
}
.mt-40{
    margin-top: 40px !important;
}
.mt-50{
    margin-top: 50px;
}
.mb-0{
    margin-bottom: 0;
}
.mb-10{
    margin-bottom: 10px;
}

.mb-20{
    margin-bottom: 20px !important;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-40{
    margin-bottom: 40px !important;
}
.mb-50{
    margin-bottom: 50px !important;
}
.mr-10{
    margin-right: 10%;
}
.ml-10{
    margin-left: 10%;
}

.mtb-40{
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

/*---フォントサイズ、ウェイト---*/

.font-8{
    font-size: 8px;
    font-size: 0.8rem;
}
.font-10{
    font-size: 10px;
    font-size: 1rem !important;
}
.font-11{
    font-size: 11px;
    font-size: 1.1rem !important;
}
.font-12{
    font-size: 12px;
    font-size: 1.2rem !important;
}
.font-14{
    font-size: 14px;
    font-size: 1.4rem;
}
.font-16{
    font-size: 16px;
    font-size: 1.6rem !important;
}
.font-18{
    font-size: 18px;
    font-size: 1.8rem;
}
.font-20{
    font-size: 20px;
    font-size: 2rem;
}
.font-24{
    font-size: 24px;
    font-size: 2.4rem;
}
.font-28{
    font-size: 28px;
    font-size: 2.8rem;
}
.font-36{
    font-size: 36px;
    font-size: 3.6rem;
}
.font-bold{
    font-weight: 700;
}
.font-nomal{
    font-weight: 400 !important;
}
.l-height-16{
    line-height: 1.6 !important;
}
.l-height-18{
    line-height: 1.8;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}

/* footerナビ---------*/
.footerNavi{
	margin: 15px auto;
}
.footerNavi ul li{
	display: inline-flex;
    margin-right: 20px;
}
#footer {
    background-color: #fafafa;
    padding: 30px 0 60px;
    text-align: center;
}


/*-------------topへボタン*/
#pageTop {
    position: fixed;
    bottom: 150px;
    right: 5%;
    opacity: 0;
    z-index: 99999;
    -webkit-transition: all .3s;
    transition: all .3s;
}
#pageTop.active {
    opacity: 0.7;
}
#pageTop a {
    display: block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #2ec2c8;
	background-image: linear-gradient(to right, #353EB1 0%, #89ceeb 100%);
    color: #fff;
    text-decoration: none;
    text-align: center;
    outline: none;
}
#pageTop a i {
    font-size: 1rem;
    line-height: 37px;
    vertical-align: middle;
    display: inline-block;
}*/
/*------------------ここまでtopへボタン*/

.p-relative{
    position: relative;
}


/*---------------------------------
ここから、サイト独自css
------------------------------*/
/*------topページtop（front-page）*/
.site-logo{
	font-family: 'Montserrat', sans-serif;
	font-size: 2.8rem;
}

h2.m-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #89ceeb;
	width: 300px;
	padding-bottom: 20px;
	border-bottom: 5px solid;
    border-image: linear-gradient(to right, #353EB1 0%, #89ceeb 100%) 1/0 0 5px 0;
	border-style: solid;
    border-image-slice: 1;
	margin: 30px auto;
	text-align: center;
}

header.sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 99;
  border-bottom: 2px solid #eee;
}

.sticky02 {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 65px;
  background-color: rgba(255, 255, 255, 1.0);
  z-index: 99;
  padding: 10px 0;
}

/*--ホバーで画像を拡大--*/
.scale-img{
    width:100%;
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;

    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -o-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
}
.scale-img:hover{
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -o-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}
.scale-box {
　overflow: hidden; /*画像拡大時にはみ出た部分を隠す*/
}


/*------個人ページtop（archive-work）*/
.prof-img > img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
}
/*------個人ページ作品詳細（single-work）*/
h1.work-title {
	font-size: 1.6rem !important;
	font-weight: 700;
	color: #89ceeb;
	width: 300px;
	padding-bottom: 20px;
	border-bottom: 5px solid;
    border-image: linear-gradient(to right, #353EB1 0%, #89ceeb 100%) 1/0 0 5px 0;
	border-style: solid;
    border-image-slice: 1;
	margin: 30px auto;
	text-align: center;
}

/*------BLUMA調整*/
.navbar-item, .navbar-link {
    padding: 0 0.75rem;
}


/* #mainImg {
    background-image: url(../images/about-img.png) ;
    background-repeat:  no-repeat;
    background-position: center;
    width: 100%;
    height: 250px;
    position: relative;
    padding: 50px;
    box-sizing: border-box;
    margin: 50px 0 0;
}
 #mainImg:before {
    z-index: 0;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   background-color:rgba(255, 255, 255, 0.25);
  }*/



/*装飾背景*/
/*--
.border01{
	 background:repeating-linear-gradient(-60deg, #89ceeb 0, #89ceeb 22px, #fff 22px, #fff 40px);
	height: 25px;
	width: 100%;	
}
.border01 > .container {
	position: relative;
}
.border01 img{
	position: absolute;
	left: 0;
	top: -20px;
}
.add.forPC {
    display: flex;
}

h2.m-title {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: 700;
	color: #89ceeb;
	padding-bottom: 20px;
	border-bottom: 10px solid;
    border-image: linear-gradient(to right, #f9ffaa 0%, #89ceeb 100%);
    border-image-slice: 1;
	margin: 70px 0;
}
h2.m-title-w {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: 700;
	color: #fff;
	padding-bottom: 20px;
	border-bottom: 10px solid;
    border-image: linear-gradient(to right, #f9ffaa 0%, #89ceeb 100%);
    border-image-slice: 1;
	margin-bottom: 50px;
}

h3.generic ,
.generic {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #333;
}
.btn a{
	display: block;
    margin: 0 auto;
    background: #ffffff;
    text-align: center;
    color: #333;
    width: 220px;
    height: 40px;
    padding: 10px;
    border-radius: 20px;
    font-weight: normal;
    border: solid 1px #89ceeb;
    box-sizing: border-box;
    line-height: 1;
    font-size: 16px;
    font-size: 1.6rem;
}


.card3clm .card {
    width: calc(32% - 20px);
    width: 36%;
    margin: 0 5px 10px;
    border: solid 25px #89ceeb;
    box-sizing: border-box;
}

.card4clm .card {
    width: calc(24% - 20px);
	max-width: 220px;
	height: 170px;
    margin: 15px 30px 100px;
    background: #e5ddd6;
	border-radius: 5px;
	padding: 20px;
	box-sizing: border-box;
}
.card-bw {
	border: solid 25px #fff !important;
}
.bg-blue{
	background-color: #89ceeb;
}

--*/


/*---mobile用共通---*/
@media screen and (max-width:768px) {
    .forpc {
        display: none !important;
    }
    .forsp {
        display: block;
    }    
    
}

/*---PC用---*/
@media screen and (min-width:769px) {
    /*---PC用共通---*/
    .forpc {
        display: block;
    }
    .forsp {
        display: none;
    }
	/* float-----------*/
	.float-l-pc{
		float: left;
	}
	.float-r-pc{
		float: right;
	}
	

}
