/*
font-family: 'Philosopher', sans-serif;
*/

/* 共通部分 */
html{
    font-size: 100%;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}
body{
    font-family: "Yu Gothic Medium","游ゴシック Medium","YuGothic","游ゴシック体","ヒラギノ角ゴ Pro W3","sans-serif";
    line-height: 1.7;
    color: #432;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}
.wrapper{
    max-width: 800px;
    margin: 0 auto;
    padding: 0 4%;
}


/************************/
/************** スマホ ******/
/************************/
@media screen and (max-width:600px),print{
/*************** header **/
.page-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.logo{
    width: 30px;
    margin-top: 30px;
}

/****** ナビゲーション ****/
.main-nav{
    display: flex;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-top: 34px;
}

.main-nav li{
    margin-left: 36px;
}

.main-nav a{
    color: #432;
}

.main-nav a:hover{
    color: #0bd;
}

/******** HOME ***********/
.home-content{
    text-align: center;
    margin-top: 10%;
}

.home-content p{
    font-size: 1.125rem;
    margin: 10px 0 42px;
}

/** 見出し **/
.page-title{
    font-size: 5rem;
    font-family: 'Philosopher', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
}

/** 大きな背景画像 **/
.big-bg{
    background-size: contain;
    background-position: center top;
}

#home{
    background-image: url(../img/topushi.png);
    min-height: 100vh;
}

#home .page-title{
    text-transform: none;
}

/** works.html? **********/
#news{
    background-image: url(../img/4205664_l.jpg);
    height: 270px;
    margin-bottom: 40px;
}

#news .page-title{
    text-align: center;
}

.news-contents{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

/** 記事部分 **/
article{
    width: 74%;
}

.post-info{
    position: relative;
    padding-top: 4px;
    margin-bottom: 40px;
}

.post-date{
    background: #0bd;
    border-radius: 50%;
    color: #fff;
    width: 100px;
    height: 90px;
    font-size: 1.625rem;
    text-align: center;
    position: absolute;
    top: 0;
    padding-top: 10px;
}

.post-date span{
    font-size: 1rem;
    border-top: 1px rgba(255,255,255,0.5) solid;
    padding-top: 6px;
    display: block;
    width: 60%;
    margin: 0 auto;
}

.post-title{
    font-family: "Yu mincho","Yumincho",serif;
    font-size: 2rem;
    font-weight: normal;
}

.post-title,
.post-cat{
    margin-left: 120px;
}

article img{
    margin-top: 20px;
}

article p{
    margin-bottom: 1rem;
}

/** サイドバー部分 **/
aside{
    width: 22%;
}
.sub-title{
    font-size: 1.375rem;
    padding: 0 8px 8px;
    border-bottom: 2px solid #0bd;
    font-weight: normal;
}
aside p{
    padding: 12px 10px;
}
.sub-menu{
    margin-bottom: 60px;
    list-style: none;
}
.sub-menu li{
    border-bottom: 1px solid #ddd;
}
.sub-menu a{
    color: #432;
    padding: 10px;
    display: block;
}
.sub-menu a:hover{
    color: #0bd;
}

/******works.html footer ？**/
footer{
    background: #432;
    text-align: center;
    padding: 26px 0;
}
footer p{
    color: #fff;
    font-size: 0.875rem;
}

@media (max-width: 600px){
    .page-title{
        font-size: 2.5rem;
    }
    /** header **/
    .main-nav{
        font-size: 1rem;
        margin-top: 10px;
    }
    .main-nav li{
        margin: 0 20px;
    }
    /** HOME **/
    .home-content{
        margin-top: 20%;
    }
    .page-header{
        flex-direction: column;
        align-items: center;
    }
    /** work **/
    .news-contents{
        flex-direction: column;
    }
    article,aside{
        width: 100%;
    }
}


/********** profile_area **/
#profile_area{
  margin: 50px 0 80px;
  color: #414a52;
  text-align: center;
  line-height: 2;
}

#profile_area img{
  width: 30%;
  height: auto;
}

#profile_area h2{
  font-size: 2rem;
}

#profile_area p{
  font-size: 1rem;
}


/********** works_area **/

#works_area{
	width: 100%;
	background-color: #f4f6f9;
	margin: 10px 0 0;
	padding-bottom: 50px;
	color: #414a52;
}

.content_title{
  width: 84%;
  margin: 0 auto;
  padding: 50px 0;
}

.content_title h2{
  font-size: 18px;
  width: 100px;
}

.content_title h2:after{
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fc0;
  content: "";
  margin-top: 10px;
}


/******* works_item *****/

#works{
  width: 84%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.works_item{
  position: relative;
  width: 264px;
  height: 200px;
}

.works_img img{
  width: 100%;
  height: auto;
}

.works_txt{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(230,216,224,0.65);
  color: #fff;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.works_name{
  font-size: 22px;
  padding: 10px 20px;
}

.works_pr{
  font-size: 16px;
  padding: 0 20px;
}

.works_item:hover .works_txt{
  opacity: 1;
}

/******** 最新記事 ******/

.contents_title{
	width: 84%;
	margin: 0 auto;
	padding: 50px 0 0;
}

.contents_title h3{
	font-size: 16px;
	width: 100px;
}

.contents_title h3:after{
	display: block;
	width: 30px;
	height: 2px;
	background: #fc0;
	margin-top: 10px;
	content: "";
}
#article_inner{
		display: flex;
		flex-direction: column;
		width: 84%;
		margin: 0 auto;
		justify-content: space-between;
	}
	
.article_item{
		margin: 30px 0;
	    height: 300px;
	    width: 300px;
		justify-content: space-between;
	}
.article_item img{
       width: 84%;
	　　height: 300px;
	　　width: 300px;
	　　justify-content: space-between;
	}


/******* form_area **/

#form_area{
  width: 100%;
  background-color: #deecf0;
}

#form_area_box{
  display: flex;
  justify-content: space-between;
  width: 84%;
  margin: 0 auto;
}

form{
  width: 45%;
  padding: 50px 0;
}

.form_item{
  display: flex;
  width: 100%;
  background-color: #414a52;
  border-radius: 5px;
  padding: 10px;
  margin: 10px 0;
}

.form_item label{
  width: 100px;
  color: #fff;
  padding: 7px 5px 0 0;
}

.form_item label img{
  margin: -3px 5px 0;
  width: 20px;
  height: auto;
}

.form_item label span{
  font-size: 12px;
}

.form_item input{
  width: calc(100% - 130px);
  background-color: #999;
  padding: 5px;
  border: none;
}

.form_item textarea{
  width: calc(100% - 130px);
  height: 100px;
  background-color: #999;
  padding: 5px;
  border: none;
}

.send_item input{
  background-color: #414a52;
  border-radius: 5px;
  padding: 10px 50%;
  margin: 10px 0;
  text-align: center;
  cursor: pointer;
}




/******* message_area **/

.message_area{
　width: 50%;
}

.message_area p{
 font-size: 14px;
 line-height: 2;
}

	
#attention_area{
  width: 45%;
  padding: 60px 0;
}

#attention_area p{
  font-size: 14px;
  line-height: 2;
}


/************ footer **/

footer{
  width: 100%;
  background-color: #414a52;
  color: #fff;
}

#footer_box{
  width: 84%;
  margin: 0 auto;
  padding-top: 80px;
}

#foot_logo_area{
  border-bottom: 1px solid #333;
  padding-bottom: 50px;
}

#foot_logo_area h1 a{
  color: #fff;
  font-size: 14px;
  display: block;
}

#foot_logo_area h1 a span{
  letter-spacing: 10px;
}

.foot_logo_img{
  width: 36px;
  height: auto;
  margin: -10px 12px 0 0;
}

#foot_logo_area p{
  color: #fff;
  font-size: 8px;
  padding-left: 48px;
  line-height: 4;
}


#foot_nav_area{
  margin: 30px 0;
}
#foot_nav_area ul{
  display: flex;
}
#foot_nav_area ul li{
  padding: 1em 1em 1em 48px;
}
#foot_nav_area ul li a{
  display: block;
  font-size: 8px;
  color: #fff;
}
#copyright{
  font-size: 8px;
  padding: 0 0 1em 48px;
}
}








/************************/
/************** PC ******/
/************************/
@media screen and (min-width:600px),print{
/*************** header **/
.page-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.logo{
    width: 30px;
    margin-top: 30px;
}

/****** ナビゲーション ****/
.main-nav{
    display: flex;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-top: 34px;
}

.main-nav li{
    margin-left: 36px;
}

.main-nav a{
    color: #432;
}

.main-nav a:hover{
    color: #0bd;
}

/******** HOME ***********/
.home-content{
    text-align: center;
    margin-top: 10%;
}

.home-content p{
    font-size: 1.125rem;
    margin: 10px 0 42px;
}

/** 見出し **/
.page-title{
    font-size: 5rem;
    font-family: 'Philosopher', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
}

/** 大きな背景画像 **/
.big-bg{
    background-size: contain;
    background-position: center top;
}

#home{
    background-image: url(../img/topushi.png);
    min-height: 100vh;
}

#home .page-title{
    text-transform: none;
}

/** NEWS.html? **********/
#news{
    background-image: url(../img/4205664_l.jpg);
    height: 270px;
    margin-bottom: 40px;
}

#news .page-title{
    text-align: center;
}

.news-contents{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

/** 記事部分 **/
article{
    width: 74%;
}

.post-info{
    position: relative;
    padding-top: 4px;
    margin-bottom: 40px;
}

.post-date{
    background: #0bd;
    border-radius: 50%;
    color: #fff;
    width: 100px;
    height: 90px;
    font-size: 1.625rem;
    text-align: center;
    position: absolute;
    top: 0;
    padding-top: 10px;
}

.post-date span{
    font-size: 1rem;
    border-top: 1px rgba(255,255,255,0.5) solid;
    padding-top: 6px;
    display: block;
    width: 60%;
    margin: 0 auto;
}

.post-title{
    font-family: "Yu mincho","Yumincho",serif;
    font-size: 2rem;
    font-weight: normal;
}

.post-title,
.post-cat{
    margin-left: 120px;
}

article img{
    margin-top: 20px;
}

article p{
    margin-bottom: 1rem;
}

/** サイドバー部分 **/
aside{
    width: 22%;
}
.sub-title{
    font-size: 1.375rem;
    padding: 0 8px 8px;
    border-bottom: 2px solid #0bd;
    font-weight: normal;
}
aside p{
    padding: 12px 10px;
}
.sub-menu{
    margin-bottom: 60px;
    list-style: none;
}
.sub-menu li{
    border-bottom: 1px solid #ddd;
}
.sub-menu a{
    color: #432;
    padding: 10px;
    display: block;
}
.sub-menu a:hover{
    color: #0bd;
}

/******NEWS.html footer ？**/
footer{
    background: #432;
    text-align: center;
    padding: 26px 0;
}
footer p{
    color: #fff;
    font-size: 0.875rem;
}

@media (max-width: 600px){
    .page-title{
        font-size: 2.5rem;
    }
    /** header **/
    .main-nav{
        font-size: 1rem;
        margin-top: 10px;
    }
    .main-nav li{
        margin: 0 20px;
    }
    /** HOME **/
    .home-content{
        margin-top: 20%;
    }
    .page-header{
        flex-direction: column;
        align-items: center;
    }
    /** news **/
    .news-contents{
        flex-direction: column;
    }
    article,aside{
        width: 100%;
    }
}


/********** profile_area **/
#profile_area{
  margin: 50px 0 80px;
  color: #414a52;
  text-align: center;
  line-height: 2;
}

#profile_area img{
  width: 30%;
  height: auto;
}

#profile_area h2{
  font-size: 2rem;
}

#profile_area p{
  font-size: 1rem;
}


/********** works_area **/

#works_area{
	width: 100%;
	background-color: #f4f6f9;
	margin: 10px 0 0;
	padding-bottom: 50px;
	color: #414a52;
}

.content_title{
  width: 84%;
  margin: 0 auto;
  padding: 50px 0;
}

.content_title h2{
  font-size: 18px;
  width: 100px;
}

.content_title h2:after{
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fc0;
  content: "";
  margin-top: 10px;
}


/******* works_item *****/

#works{
  width: 84%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.works_item{
  position: relative;
  width: 264px;
  height: 200px;
}

.works_img img{
  width: 100%;
  height: auto;
}

.works_txt{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(230,216,224,0.65);
  color: #fff;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.works_name{
  font-size: 22px;
  padding: 10px 20px;
}

.works_pr{
  font-size: 16px;
  padding: 0 20px;
}

.works_item:hover .works_txt{
  opacity: 1;
}

/******** 最新記事 ******/

.contents_title{
	width: 84%;
	margin: 0 auto;
	padding: 50px 0 0;
}

.contents_title h3{
	font-size: 16px;
	width: 100px;
}

.contents_title h3:after{
	display: block;
	width: 30px;
	height: 2px;
	background: #fc0;
	margin-top: 10px;
	content: "";
}
#article_inner{
		display: flex;
		flex-direction: column;
		width: 84%;
		margin: 0 auto;
		justify-content: space-between;
	}
	
.article_item{
		margin: 30px 0;
	    height: 300px;
	    width: 300px;
		justify-content: space-between;
	}
.article_item img{
       width: 84%;
	　　height: 300px;
	　　width: 300px;
	　　justify-content: space-between;
	}


/******* form_area **/

#form_area{
  width: 100%;
  background-color: #deecf0;
}

#form_area_box{
  display: flex;
  justify-content: space-between;
  width: 84%;
  margin: 0 auto;
}

form{
  width: 45%;
  padding: 50px 0;
}

.form_item{
  display: flex;
  width: 100%;
  background-color: #414a52;
  border-radius: 5px;
  padding: 10px;
  margin: 10px 0;
}

.form_item label{
  width: 100px;
  color: #fff;
  padding: 7px 5px 0 0;
}

.form_item label img{
  margin: -3px 5px 0;
  width: 20px;
  height: auto;
}

.form_item label span{
  font-size: 12px;
}

.form_item input{
  width: calc(100% - 130px);
  background-color: #999;
  padding: 5px;
  border: none;
}

.form_item textarea{
  width: calc(100% - 130px);
  height: 100px;
  background-color: #999;
  padding: 5px;
  border: none;
}

.send_item input{
  background-color: #414a52;
  border-radius: 5px;
  padding: 10px 50%;
  margin: 10px 0;
  text-align: center;
  cursor: pointer;
}




/******* message_area **/

.message_area{
　width: 50%;
}

.message_area p{
 font-size: 14px;
 line-height: 2;
}

	
#attention_area{
  width: 45%;
  padding: 60px 0;
}

#attention_area p{
  font-size: 14px;
  line-height: 2;
}


/************ footer **/

footer{
  width: 100%;
  background-color: #414a52;
  color: #fff;
}

#footer_box{
  width: 84%;
  margin: 0 auto;
  padding-top: 80px;
}

#foot_logo_area{
  border-bottom: 1px solid #333;
  padding-bottom: 50px;
}

#foot_logo_area h1 a{
  color: #fff;
  font-size: 14px;
  display: block;
}

#foot_logo_area h1 a span{
  letter-spacing: 10px;
}

.foot_logo_img{
  width: 36px;
  height: auto;
  margin: -10px 12px 0 0;
}

#foot_logo_area p{
  color: #fff;
  font-size: 8px;
  padding-left: 48px;
  line-height: 4;
}


#foot_nav_area{
  margin: 30px 0;
}
#foot_nav_area ul{
  display: flex;
}
#foot_nav_area ul li{
  padding: 1em 1em 1em 48px;
}
#foot_nav_area ul li a{
  display: block;
  font-size: 8px;
  color: #fff;
}
#copyright{
  font-size: 8px;
  padding: 0 0 1em 48px;
}
}