@charset "UTF-8";
body {
  color: #333333;
}

body {
  letter-spacing: 0.1em;
}

/*ヘッダー*/
.l-header {
  position: relative;
}
.l-sectionArea {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  
  align-items: flex-end;
  
}
.l-header__logo {
  margin-left: 40px;
  height: 100px;
  display: flex;
  align-items: flex-end;
}

.l-header__logoImg {
  width: 100px;
  display: block;
}

.l-header__hamburger {
  width: 100px;
  height: 100px;
  background-color: #FF2A2A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.l-header__hamburgerSpan {
  display: block;
  width: 50px;
  height: 2px;
  background-color: #FFFFFF;
  margin: 6px 0;
}

/*メインビジュアル*/

.l-mainVisual {
  position: relative;
  height: 720px;
  margin-bottom: 120px;
}

.p-main__text {
  position: absolute;
  top: 330px;
  left: 10%;
  z-index: 10;
}

.p-main__h2 {
  font-size: 46px;
  font-weight: 500;
  line-height: 73.6px;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 6px #fff;
}

.p-main__btn {
  display: block;
  background-color: #FF2A2A;
  border-bottom: 6px solid #9a0413;
  color: #FFFFFF;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 15px 30px;
  margin-top: 40px;
  border-radius: 10px;
}


.p-main__mainvisualSlider {
  width: 75%;
  position: absolute;
  top: 10;
  right: 0;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.6); 
}

/*セクション1*/
.p-section__h3 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 100px;

}

.p-section__red {
  background-color: #FF2A2A;
  padding: 100px 0;
  display: flex;
  flex-direction: column;  /*縦に並べる*/
  align-items: flex-start; /*最初は左寄せになるけど大丈夫*/
  gap: 40px;
}

.p-section__whiteLeft {
  width: 50%;
  background-color: #FFFFFF;
  padding: 5%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  justify-content: center;
}

.p-section__whiteRight {
  width: 50%;
  background-color: #FFFFFF;
  padding: 5%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  justify-content: center;
  align-self: flex-end;  /*ここで右寄せにするよ*/
}

.p-section__whiteIconImg {
  height: 60px;
  width: auto;
  margin-right: 20px;
}

.p-section__whiteH4 {
  color: #FF2A2A;
  font-size: 28px;
  font-weight: bold
  
}

/*セクション2 受講生の声*/

.l-section2 {
  width: 60%;
  padding-top: 150px;
  margin: 0 auto 100px;
}

.p-section2__voiceLeft {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.p-section2__voiceRight {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.p-section2__voiceProfile {
  margin-right: 20px;
}

.p-section2__voiceProfileImg {
  background-color: #cccccc;
  width: 120px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.p-section2__voiceProfileName {
  font-size: 12px;
  text-align: center;
}

.p-section2__voiceProfileText {
  font-size: 16px;
  background-color: #e9f1fb;
  padding: 20px;
  border-radius: 15px;
  margin: 0 auto;
}

/*スクールの概要*/

.l-section3 {
  background-image: url(imgs/bg.gif);
  padding-top: 80px;
  padding-bottom: 50px;
}

.p-section3__container {
  width: 50%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.p-section3__list {
  width: 45%;
  background-color: #FFFFFF;
  padding: 60px;
  border-radius: 20px;
  margin: 15px;
}

.p-section3__listTitle {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.p-section3__listTitleSpan {
  display: block;
  text-align: center;
  font-size: 18px;
  margin-top: 15px;
}

.p-section3__listText {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.8;
}

/*無料体験に申し込む*/
.l-entry {
  margin-top: 150px;
  margin-bottom: 120px;
  text-align: center;
}

.p-entry__Title {
  font-size: 37px;
  margin-bottom: 30px;
}

.p-entry__Text {
  font-size: 18px;
  margin-bottom: 80px;
}

.p-entry__btn {
  background-color: #FF2A2A;
  color: #FFFFFF;
  font-size: 28px;
  border-radius: 50px;
  padding: 20px 350px;
  
}

/*フッター*/

.l-footer {
  padding-top: 50px;
  padding-bottom: 10px;
  background-color: #e8e8e8;
}

.l-footer__container {
  width: 40%;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
}

.l-footer__ListTitle {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.l-footer__ListItem {
  font-size: 14px;
  line-height: 2.5;
}

.p-footer__Copy {
  font-size: 10px;
  text-align: center;
}