@charset "UTF-8";

html {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  font-family: "Just Me Again Down Here", "Rock Salt", "Libre Baskerville", "Sawarabi Mincho", serif;
  font-size: 1.4rem;
  letter-spacing: 1.2px;
  line-height: 2.1;
  margin: 0;
  padding: 0;
  text-align: center;
  letter-spacing: 0.1em;
  background-image: url(images/bg01.jpg);
}

*, *::before, *::after {
  box-sizing: border-box;
}

a {
  transition: opacity 0.3s;
  text-decoration: none;
  color: #D2D0CC;
}

a:hover{
  color: #aa7e45;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Just Me Again Down Here", "Rock Salt", "Libre Baskerville", "Sawarabi Mincho", serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

header .inner{
  margin-top: 50px;
  margin-bottom: 30px;
}

header .logo a{
  font-size: 6rem;
  color: #D2D0CC;
}

footer {
  font-family: "Just Me Again Down Here"  serif;
  font-size: 3rem;
  padding-top: 100px;
  padding-bottom: 30px;
  color: #D2D0CC;
}

#links{
  margin: 0 auto;
  width: 30vw;
}

.container{
  display: flex;
  flex-direction:column;
  width: 30vw;
}

.text{
    text-align: left;
}

.text h2{
  font-family: "Rock Salt",  serif;
  font-size: 3rem;
  color: #D2D0CC;
  text-align: center;
  padding-bottom: 20px;

}
.text h3{
  font-family: "Just Me Again Down Here", serif;
  font-size: 2.5rem;
  color: #D2D0CC;
  text-align: center;
  padding-bottom: 20px;
}

.text h4{
  font-family:"Libre Baskerville", "Sawarabi Mincho", serif;
  font-size: 1.4rem;
  color: #D2D0CC;
  line-height: 0.5;
}

i{
	float: left;
  font-size: 3.5rem;
  padding-left: 15px;
  padding-right: 20px;
}

.text p{
  font-family: "Libre Baskerville", "Sawarabi Mincho", serif;
  font-size: 1.2rem;
  color: #D2D0CC;
  line-height: 1.2;
}

a.btn {
	display: block;
	text-align: left;
	width: 30vw;
  margin-top: 20px;
	padding: 2rem 1rem 0.5rem 1rem ;
	font-weight: 400;
	border-radius: 1.5rem;
	color: #D2D0CC;
  border: 2px solid #D2D0CC;
	box-shadow: 0 2px 5px rgba(255, 255, 255, 0.582);
	-webkit-box-shadow: 0 2px 5px rgba(255, 255, 255, 0.582);
	transition: 0.5s;
}

a.btn:hover {
	color: #D2D0CC;
	opacity: 0.5;
}

.profile {
	display: block;
	text-align: left;
	width: 30vw;
  margin-top: 20px;
	padding: 2rem 1rem 0.5rem 1rem ;
	font-weight: 400;
	border-radius: 1.5rem;
	color: #D2D0CC;
}

.avatar{
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
	opacity: 0.5;
	border-radius: 50%;
  width: 30%;
}

#page-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  font-size: 6rem;
  line-height: 1;
  z-index: 99;
}

#page-top a {
  background: #aa7e45;
  color: #fff;
  width: 60px;
  height: 60px;
  text-align: center;
  padding-top: 12px;
  display: block;
  border-radius: 55%;
  opacity: 0.9;
  transition: all .5s ease;
}
#page-top a:hover {
  opacity: .5;
}

.fadeIn {
  transform: translate3d(0, 50px, 0);
  transition: 1s;
  opacity: 0;
}
.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/*-----------------------------------
PC media Queries 1280
-----------------------------------*/
@media screen and (max-width: 1280px) {

  .inner {
    margin: 0 auto;
    text-align: center;
 }
 
#links{
  width: 40vw;
}

.container{
  width: 40vw;
}

a.btn {
	width: 40vw;
}

.profile {
	width: 40vw;
}

}

/*-----------------------------------
PC media Queries 1024
-----------------------------------*/
@media screen and (max-width: 1024px) {

  .inner {
    margin: 0 auto;
    text-align: center;
 }
 
#links{
  width: 50vw;
}

.container{
  width: 50vw;
}

a.btn {
	width: 50vw;
}

.profile {
	width: 50vw;
}

}


/*-----------------------------------
タブレット media Queries 768
-----------------------------------*/
@media screen and (max-width: 768px) {

  .inner {
    margin: 0 auto;
    text-align: center;
 }

 #links{
   width: 65vw;
 }
 
 .container{
   width: 65vw;
 }
 
 a.btn {
   width: 65vw;
 }

 .profile {
   width: 65vw;
 }

}

/*-----------------------------------
スマホ media Queries 430
-----------------------------------*/
@media screen and (max-width: 430px) {

  .inner {
    margin: 0 auto;
    text-align: center;
 }

 #links{
   width: 90vw;
 }
 
 .container{
   width: 90vw;
 }
 
 a.btn {
   width: 90vw;
 }

 .profile {
   width: 90vw;
 }



}