* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
}

a {
  text-decoration: none;
}

.clear {
  clear: left;
}

.container {
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.top-wrapper {
  padding: 250px 0 100px 0;
  background-image: url(./TopImg.jpg?20221116);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  text-align: left;
  height:auto;
}

.top-wrapper h1 {
  opacity: 0.7;
  font-size: 45px;
  letter-spacing: 5px;
}

.top-wrapper p {
  opacity: 0.7;
}

.btn-wrapper {
  text-align: center;
  margin: 20px 0;
}

.btn-wrapper p {
  margin: 10px 0;
}

.signup {
  background-color: #239b76;
}

.facebook {
  position: relative;
  background-color: #3b5998;
  margin-right: 10px;
  box-shadow: 0 6px #17184b;
}

.facebook:active {
  top: 7px;
  box-shadow: none;
}

.Instagram {
  position: relative;
  margin-right: 10px;
  background-color: #E5004F;
  box-shadow: 0 6px #a22041;
}
.Instagram:active {
  top: 7px;
  box-shadow: none;
}

.AmebaBlog {
  position: relative;
  background-color: #008000;
  box-shadow: 0 6px #006400;
}
.AmebaBlog:active {
  top: 7px;
  box-shadow: none;
}

.OKMail {
  position: relative;
  background-color: #1e50a2;
  box-shadow: 0 6px #0f2350;
}
.OKMail:active {
  top: 7px;
  box-shadow: none;
}

.btn {
  padding: 8px 24px;
  color: white;
  display: inline-block;
  opacity: 0.8;
  border-radius: 4px;
  text-align: center;
}

.btn:hover {
  opacity: 1;
}

.fa {
  margin-right: 5px;
}

header {
  height: 80px;
  width: 100%;
  background-color: rgba(255,255,0,1);
  position :fixed;
  top: 0;
  z-index: 10;
}

.logo {
  margin-top: 5px;
}

.header-left {
  float: left;
}

.header-right {
  float: right;
  margin-right: -25px;
}

.header-right a {
  line-height: 65px;
  padding: 0 25px;
  color: white;
  display: block;
  float: left;
  transition: all 0.5s;
}

.header-right a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.menu-icon{
  color: white;
  float: right;
  font-size: 25px;
  padding: 21px 0;
  display: none;
}

.lesson-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 5%;
  padding-right: 5%;
  background-color: #ffffff;
  text-align: center;
}

.heading {
  padding-top: 80px;
  padding-bottom: 50px;
  color: #5f5d60;
}

.heading h2 {
  font-weight: normal;
}

.lesson {
  float: left;
  width: 25%;
}

.lesson-icon {
  position: relative;
}

.lesson-icon p {
  position: absolute;
  top: 50%;
  width: 90%;
  color: white;
  font-size: 20px;
}

.text-contents {
  width: 80%;
  display: inline-block;
  margin-top: 15px;
  font-size: 13px;
  color: #b3aeb5;
}

.heading h3 {
  font-weight: normal;
}

.message-wrapper {
  border-bottom: 1px solid #eee;
  padding-bottom: 80px;
  text-align: center;
}

.message {
  position: relative;
  padding: 15px 40px;
  background-color: #5dca88;
  cursor: pointer;
  box-shadow: 0 6px #1a7940;
}

.message:active {
  top: 7px;
  box-shadow: none;
}

footer img {
  width: 250px;
}

footer p {
  color: #b3aeb5;
  font-size: 12px;
}

footer {
  background-color: rgba(255,255,0,1);
  padding-top: 10px;
  padding-bottom: 10px;
  width: auto;
}

/*500px以下のとき下記CSSを適用*/
@media screen and (max-width: 500px) {
	
	body {
		font-size:0.8rem;
	}
	
	.lessons {
		display:flex;
    	flex-direction: column;	
  	}
	
	.lesson {
		width: auto;
	}

}