@charset "UTF-8";
/*全体の設定*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: #555;
    font-family: 'Oswald','Noto Sans JP', sans-serif;
	cursor:default;
}
body{
	background-color: transparent;
	/*フッターを常に下部に固定する為のコード*/
	margin: 0;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}


/**********************

about/contactのスタイル

************************/
.about {
    background-color: #F9ED00;
}

.about-header {
    display: flex;
    justify-content: space-between;
}

.about-inner {
    margin: 100px 150px 50px;
}

/*h1とクローズbuttonは横並び*/
.about h1 {
    font-size: 1.9rem;
    font-weight: bold;
	  color: #333;
    letter-spacing: 0.01rem;
	  line-height: 1em;
    
}

/*クローズbuttonサイズ*/
.about-header img {
    width: 35px;
    height: 35px;
}

.about h2 {
    padding-top: 30px;
    padding-bottom: 20px;
    font-size: 1.5rem;
    color: #333;
    font-weight: 700;
}

address{
font-style:normal;
}

.about p {
    font-size: 0.8rem;
    color: #333;
	  max-width: 1000px;
}
.about .mail{
	  font-size: 1.2rem;
		text-decoration: underline;
		cursor: pointer;
		padding-bottom: 10px;
}


.mail:hover{
    color: #666;
}

/*仕切りライン*/
hr {
    width: 300px;
    margin-top: 30px;
    border: 0.5px solid #333;
}

.about {
    line-height: 1.5em;
}

/*アワードのdl ddは横並び*/
.about dt {
    float: left;
}

.about dd {
    margin-left: 50px;
}

.about-site__title {
	color: #333;
	padding-top: 80px;
	font-size: 0.75rem;
	font-weight: bold;
		
}
.about .about-site__detail{
	font-size: 0.5rem;
	line-height: 1.5;
}



/*aboutのレスポンシブ*/

@media screen and (max-width:768px) {
    .about-inner {
        width: 85%;
			  margin: 35px;
    }
	.about p{
		font-size: 0.4rem;
	}	
	
}

/**********************

  footerのスタイル

************************/
.footer{
	margin: 0 auto;
    text-align: center;
	background-color: #999;
	height: 20px;
}
.footer small{
	color: #fff;
	font-size: 0.8rem;
}
