@charset "utf-8";

/*共通の設定*/
*{
	box-sizing: border-box;
	font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
html{
  scroll-behavior: smooth;
}
body{
	display: none;
	background-color: #D2CDC9;
}
.center {
	text-align: center;
}
.clear {
	clear: both;
}
.contener{
	width:980px;
	margin:0 auto;
}
.linkhover a:hover{
	opacity: 0.5 ;
}

/*メインイメージ*/
.mainimage {
  height: 100vh; /* 全画面表示 */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../image/main01.jpg");
  position: relative;
}

.btn{    
    padding:20px 25px;
    text-align: center;
}
.gmenu {
	position: fixed;
	top: 0;
	left: 0;
	height:63px;
	width: 100vw;
	background-color: #D2CDC9;
	border-bottom: 5px solid #99BCB2;
	z-index: 10000;
}
.gmenu img{
	width:auto;
	height:50px;
	margin:5px 0 0 15px;
}
header ul{
	position: fixed;
	top:0;
	right:0;
    list-style: none;
    display:flex;
	justify-content: flex-end;
	font-size: 1.0em;
}
header ul a{
	text-decoration: none;
	color:#000000;
	font-weight: bold;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}
header ul a:hover{
	color:#99BCB2;
	font-weight: bold;
}
.catch01 p{
	font-size: 8.0vw;
	position: absolute;
    left: 80px;
    top: calc(50% - 100px);
	z-index: 9999;
	font-family: 'Nunito', cursive;
}
.catch01 img{
	width: 39vw;
	max-width: 440px;
	height:auto;
	position: absolute;
    left: 50px;
    top: calc(50% - 150px);
	z-index: 9999;
	font-family: 'Nunito', cursive;
}
.catch02 p{
	font-size: 2.3vw;
	position: absolute;
    left: 80px;
    top: calc(50% + 70px);
	z-index: 9999;
	padding:0 0 0 5px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color: #676767;
}
.catch03 p{
	font-size: 1.2vw;
	line-height: 2em;
	position: absolute;
    left: 80px;
    top: calc(50% + 120px);
	z-index: 9999;
	padding:0 0 0 5px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color: #676767;
}

.snsicon img{
	width:60px;
	height:auto;
	position: absolute;
    right: 20px;
    bottom:20px
}


/*about*/
#about {
	background-image: url("../image/main_illust.png");
	background-repeat: no-repeat;
	background-position: right 50% bottom 50%;
	background-size: 100vw auto;
}
#about h2{
	text-align: center;
	font-size: 3.0em;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	padding:100px 0 20px;
	letter-spacing: 0.15em;
}
h3{
	text-align: center;
	font-size: 0.9em;
	padding:10px 0 30px 0;
}
.abouttext{
	width:650px;
	padding:40px 50px;
	text-align: center;
	line-height:2em;
	margin:0 auto 30px;
}
.abouttext01{
	letter-spacing: 0.14em;
	font-size:1.4em;
}
.abouttext02{
	font-size:0.9em;
	margin:20px 0 0 0;
}
#about a{
	text-decoration: none;
	display: inline-block;
	background-color: #99BCB2;
	text-align: center;
	color:#000;
	padding:9px 10px 15px 10px;
	width:150px;
	height:50px;
	margin:0px 10px 30px 0;
}
#about a:hover{
	background-color: #898989;
	color:#000;
}
.snslink {
	padding:20px 0 0 0;
	font-weight: bold;
}
.sekouhanni{
	font-size: 0.9em;
	text-align: center;
	margin:0 0 15px 0;
	color: #252525;
}

/*works*/
#works h2{
	text-align: center;
	font-size: 2.5em;
	padding:120px 0 0px;
	letter-spacing: 0.14em;
}

.workscontent {
  margin: 0 auto;
  /* 外枠の大きさ */
  max-width: 1080px;
  /* border: 1px solid black; */
  min-height: 600px;
}

/* 記事全ての枠の設定 */
.workscontainer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  /* 記事折り返し設定 */
  margin: 20px auto 0 auto;
}
.article-item {
  /* 記事アイテムの一つの大きさ */
  width: 24%;
  height: auto;
  margin-bottom: 30px;
}
.article-item img {
  /* 画像は親要素に対して100%にする */
  width: 100%;
  height: 100%;
}
.article-item p {
  padding: 0px 10px;
}
.article-item a {
	text-decoration: none;
	font-size: 0.9em;
	color:#000;
}
.article-item a:hover {
	opacity: 0.6;
}
@media screen and (max-width: 960px) {
  /* 記事アイテムを大きくして3列にする */
  .article-item {
    width: 30%;
  }
  .article-item p {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 620px) {
  .article-item {
    width: 50%;
    /* margin-bottom: -100px; */
  }
}

/*5列*/
.article-item02 {
  /* 記事アイテムの一つの大きさ */
  width: 19%;
  height: auto;
  margin-bottom: 30px;
}
.article-item02 img {
  /* 画像は親要素に対して100%にする */
  width: 100%;
  height: 100%;
}
.article-item02 p {
  padding: 0px 10px;
}
.article-item02 a {
	text-decoration: none;
	font-size: 0.9em;
	color:#000;
}
.article-item02 a:hover {
	opacity: 0.6;
}

/*contact*/
#contact h2{
	text-align: center;
	font-size: 2.0em;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	padding:140px 0 20px;
	letter-spacing: 0.1em;
}
h3{
	text-align: center;
	font-size: 0.9em;
	padding:10px 0 30px 0;
}
.contacttext{
	margin:0 auto 60px;
	padding:10px 50px 20px;
	line-height:2em;
}
#contact a{
	text-decoration: none;
	display: block;
	background-color: #99BCB2;
	text-align: center;
	color:#000;
	padding:9px 10px 15px 10px;
	width:280px;
	height:50px;
	margin:0px auto;
	font-size: 1.5em;
}
#contact a:hover{
	background-color: #898989;
	color:#000;
}
.snslink {
	padding:20px 0 0 0;
	font-weight: bold;
}

/*footer*/
footer{
	height:140px;
	background-color: #616161;
	color: #D4D4D4;
}
.footertext{
	padding:10px 0 0 20px;
}
.footertext ul dt{
	font-size: 1.3em;
}
.footertext ul dd{
	font-size: 0.8em;
}
small p{
	text-align: left;
	padding:15px 20px 0 20px;
	font-size: 0.8em;
}

/*TOPへ戻るボタン*/
.page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
}
.page-top a {
	background-color: #888;
	text-decoration: none;
	color: white;
	width: 60px;
	height:60px;
	padding-top:19px;
	text-align: center;
	display: block;
	border-radius:30px;
}
.page-top a:hover {
    text-decoration: none;
	color: #fff;
    background: rgba(55,55,55,1.00);
}
/*pcとmobileの表示非表示設定*/
.pcmenu{display:inherit;}
.mobilemenu{display:none;}