@charset "UTF-8";
/*
Theme Name : Qリードのテーマ
*/
html {
  overflow-x: hidden; }

body {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", 游明朝, 游明朝体, YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", HiraMinProN-W3, TakaoEx明朝, TakaoExMincho, MotoyaLCedar, "Droid Sans Japanese", serif;
  overflow-x: hidden; }
  body .scrollLock {
    animation: disableScroll 6s; }

/*******************動きの実装*******************/
.effect-fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 500ms; }

.effect-scroll {
  opacity: 1;
  transform: translate(0, 0); }

.pruun {
  animation: pruun 5s 0.8s ease infinite both;
  animation-play-state: running; }

@keyframes pruun {
  0% {
    transform: scale(1); }
  1.5% {
    transform: scale(0.93); }
  4.5% {
    transform: scale(1); }
  7.5% {
    transform: scale(0.96); }
  9.5% {
    transform: scale(1); }
  11.5% {
    transform: scale(0.99); }
  13% {
    transform: scale(1); }
  100% {
    transform: scale(1); } }
@keyframes topLoad {
  0% {
    transform: scale(0, 0.001); }
  50% {
    transform: scale(1, 0.001); }
  100% {
    transform: scale(1, 1); } }
@keyframes TfadeOut {
  0% {
    opacity: 1; }
  99% {
    z-index: 999; }
  100% {
    opacity: 0;
    z-index: -1; } }
@keyframes showText {
  0% {
    transform: translateY(100%); }
  100% {
    transform: translateY(0%); } }
@keyframes disableScroll {
  0% {
    overflow: hidden;
    pointer-events: none; }
  100% {
    overflow: hidden;
    pointer-events: none; } }
@keyframes bbb {
  0% {
    color: white;
    transform: scale(1); }
  100% {
    color: #232323;
    transform: scale(1.1); } }
@keyframes fadeInUP {
  0% {
    transform: translateX(100%); }
  100% {
    transform: translateX(0%); } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*******************first-view*******************/
#first-view {
  position: fixed;
  top: 0;
  z-index: 999;
  height: 100vh;
  width: 100vw;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden; }
  #first-view::before {
    content: "";
    position: fixed;
    display: block;
    background: linear-gradient(to right, #f8e580, #f7d931); }
  #first-view .textAnimation {
    width: 80%;
    text-align: center;
    font-size: 70px;
    font-weight: bold;
    color: white;
    letter-spacing: 0.3rem;
    margin: auto;
    animation: bbb 1s 5s ease forwards; }
    @media screen and (max-width: 992px) {
      #first-view .textAnimation {
        font-size: 60px; } }
    @media screen and (max-width: 767px) {
      #first-view .textAnimation {
        font-size: 50px; } }
    #first-view .textAnimation > span {
      overflow: hidden;
      display: inline-block; }
      #first-view .textAnimation > span > span {
        display: inline-block;
        animation: showText 2s both ease;
        transform: translateY(100%); }
  #first-view.hirogaru::before {
    width: 100vw;
    height: 100vh;
    animation-name: topLoad;
    animation-duration: 1s;
    animation-iteration-count: ease;
    animation-fill-mode: forwards; }
  #first-view.f-fadeOut {
    animation-name: TfadeOut;
    animation-delay: 6s;
    animation-duration: 1s;
    animation-fill-mode: forwards; }
  #first-view.fadeOut {
    animation-name: TfadeOut;
    animation-duration: 1s;
    animation-fill-mode: forwards; }

/*******************header*******************/
header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  width: 100%;
  background-color: white; }
  @media screen and (max-width: 992px) {
    header {
      padding: 0 30px;
      height: 70px; } }
  @media screen and (max-width: 767px) {
    header {
      padding: 0 10px;
      height: 53px; } }
  header .header-logo {
    width: 180px;
    margin: 20px 0 20px 0;
    cursor: pointer; }
    @media screen and (max-width: 992px) {
      header .header-logo {
        width: 120px; } }
    header .header-logo img {
      width: 100%; }
      @media screen and (max-width: 767px) {
        header .header-logo img {
          height: 35px;
          width: 90px; } }
  header div.blue {
    font-size: 24px;
    color: #0573ED; }
    @media screen and (max-width: 992px) {
      header div.blue {
        font-size: 18px; } }
    @media screen and (max-width: 767px) {
      header div.blue {
        display: none; } }
  header h1#title {
    font-size: 30px;
    color: black;
    padding: 0; }
    @media screen and (max-width: 992px) {
      header h1#title {
        font-size: 25px; } }
    @media screen and (max-width: 767px) {
      header h1#title {
        font-size: 18px;
        margin: 0; } }
    header h1#title span {
      color: #F68700; }

nav.header-list {
  width: 100%;
  height: 80px;
  position: relative;
  background-color: white;
  display: flex;
  box-shadow: 0 1px 2px 1px #D5D5D5;
  animation: fadeInUP .5s ease backwards; }
  nav.header-list.fixed {
    position: fixed;
    z-index: 100;
    top: 0;
    animation: fadeIn .3s; }
  @media screen and (max-width: 992px) {
    nav.header-list {
      height: 60px; } }
  @media screen and (max-width: 767px) {
    nav.header-list {
      height: 53px; } }
  nav.header-list.f-hlistAnimation {
    animation: fadeInUP .5s 10s ease backwards; }
  nav.header-list > ul {
    width: 100%;
    padding: 0;
    z-index: 20; }
    @media screen and (max-width: 992px) {
      nav.header-list > ul {
        margin: 0;
        width: 80%; } }
    nav.header-list > ul #navigation {
      display: flex;
      justify-content: center; }
      @media screen and (max-width: 992px) {
        nav.header-list > ul #navigation {
          position: absolute;
          right: 0;
          right: -100%;
          width: 100%;
          display: block;
          background-color: white;
          border: 1px solid #EAEAEA;
          height: auto;
          transition: .7s; }
          nav.header-list > ul #navigation.in {
            transform: translateX(-100%); } }
      nav.header-list > ul #navigation li {
        list-style: none;
        position: relative; }
        nav.header-list > ul #navigation li:hover > ul > li {
          height: 79px;
          overflow: visible; }
          @media screen and (max-width: 992px) {
            nav.header-list > ul #navigation li:hover > ul > li {
              height: 0;
              overflow: hidden; } }
        nav.header-list > ul #navigation li a {
          display: block;
          text-align: center;
          font-size: 17px;
          font-weight: bold;
          width: 100%;
          padding: 27px 30px; }
          @media screen and (max-width: 992px) {
            nav.header-list > ul #navigation li a {
              padding: 1.5em;
              height: 4em; } }
          nav.header-list > ul #navigation li a:link {
            color: inherit;
            text-decoration: none; }
          nav.header-list > ul #navigation li a:visited {
            color: inherit; }
        nav.header-list > ul #navigation li li {
          height: 0;
          width: 100%;
          transition: .5s;
          overflow: hidden;
          background-color: white; }
        nav.header-list > ul #navigation li > ul {
          padding: 0; }
          @media screen and (max-width: 992px) {
            nav.header-list > ul #navigation li > ul::before {
              content: "";
              position: absolute;
              width: 10px;
              height: 10px;
              margin-top: -5px;
              border-top: solid 2px #E98601;
              border-right: solid 2px #E98601;
              transform: rotate(135deg);
              transition: .5s;
              top: 2rem;
              right: 2.5rem; } }
          nav.header-list > ul #navigation li > ul > li {
            width: 100%; }
        nav.header-list > ul #navigation li > a {
          padding: 27px 30px; }
      @media screen and (max-width: 992px) {
        nav.header-list > ul #navigation > li:not(:first-of-type) > a {
          pointer-events: none; } }
      nav.header-list > ul #navigation > li a:hover {
        color: #ffd700;
        border-bottom: 1px solid #ffd700; }
      nav.header-list > ul #navigation > li > ul {
        /*クリック時に回転させる*/ }
        @media screen and (max-width: 992px) {
          nav.header-list > ul #navigation > li > ul.r-45deg::before {
            transform: rotate(-45deg) !important; } }
        @media screen and (max-width: 992px) {
          nav.header-list > ul #navigation > li > ul > li.open-submenu {
            height: 4.2em;
            overflow: visible;
            background-color: #DEDEDE; } }
  nav.header-list div.blue {
    display: none; }
    @media screen and (max-width: 767px) {
      nav.header-list div.blue {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        font-size: 18px;
        display: block;
        color: #0573ED; } }
  nav.header-list #hamburger {
    display: none; }
    @media screen and (max-width: 992px) {
      nav.header-list #hamburger {
        display: block;
        position: absolute;
        z-index: 50;
        top: 15px;
        right: 25px;
        width: 40px;
        height: 30px;
        cursor: pointer;
        transition: 1s; } }
    @media screen and (max-width: 767px) {
      nav.header-list #hamburger {
        top: 15px;
        right: 15px;
        width: 30px;
        height: 25px; } }
    @media screen and (max-width: 992px) {
      nav.header-list #hamburger span.inner_line {
        display: block;
        position: absolute;
        right: 0;
        width: 30px;
        height: 3px;
        background-color: #7F7F7F;
        transition: 1s;
        border-radius: 4px; } }
    @media screen and (max-width: 992px) {
      nav.header-list #hamburger #line1 {
        top: 0px; } }
    @media screen and (max-width: 992px) {
      nav.header-list #hamburger #line2 {
        top: 13.5px; } }
    @media screen and (max-width: 767px) {
      nav.header-list #hamburger #line2 {
        top: 11px; } }
    @media screen and (max-width: 992px) {
      nav.header-list #hamburger #line3 {
        bottom: 0px; } }
    nav.header-list #hamburger .line_1, nav.header-list #hamburger .line_2, nav.header-list #hamburger .line_3 {
      background: #000000; }
    @media screen and (max-width: 992px) {
      nav.header-list #hamburger .line_1 {
        transform: translateY(13.5px) rotate(-45deg);
        top: 0; } }
    @media screen and (max-width: 767px) {
      nav.header-list #hamburger .line_1 {
        transform: translateY(11px) rotate(-45deg); } }
    @media screen and (max-width: 992px) {
      nav.header-list #hamburger .line_2 {
        opacity: 0; } }
    @media screen and (max-width: 992px) {
      nav.header-list #hamburger .line_3 {
        transform: translateY(-13.5px) rotate(45deg);
        bottom: 0; } }
    @media screen and (max-width: 767px) {
      nav.header-list #hamburger .line_3 {
        transform: translateY(-11px) rotate(45deg); } }

/******************swiper************************/
#swiper {
  animation: fadeIn 1s ease backwards;
  display: flex;
  margin-top: 1px; }
  @media screen and (max-width: 767px) {
    #swiper {
      flex-direction: column-reverse; } }
  #swiper.f-swiperAnimation {
    animation: fadeIn 4s 7s ease backwards; }
  #swiper.Topmargin {
    margin-top: 79px; }
    @media screen and (max-width: 992px) {
      #swiper.Topmargin {
        margin-top: 60px; } }
    @media screen and (max-width: 767px) {
      #swiper.Topmargin {
        margin-top: 53px; } }
  #swiper .rikei {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    background-image: url("qleadImg/kika.jpg");
    background-blend-mode: lighten; }
    @media screen and (max-width: 767px) {
      #swiper .rikei {
        padding: 16px; } }
    #swiper .rikei div > div {
      font-size: 40px;
      font-weight: bold; }
      @media screen and (max-width: 992px) {
        #swiper .rikei div > div {
          font-size: 32px; } }
      @media screen and (max-width: 767px) {
        #swiper .rikei div > div {
          font-size: 24px;
          text-align: center; } }
      @media screen and (max-width: 767px) {
        #swiper .rikei div > div.top {
          display: inline; } }
      @media screen and (max-width: 767px) {
        #swiper .rikei div > div.center {
          display: inline; } }
      @media screen and (max-width: 767px) {
        #swiper .rikei div > div.bottom {
          font-size: 40px; } }
      #swiper .rikei div > div span {
        font-size: 60px;
        color: #F68700; }
        @media screen and (max-width: 992px) {
          #swiper .rikei div > div span {
            font-size: 50px; } }
        @media screen and (max-width: 767px) {
          #swiper .rikei div > div span {
            font-size: 40px; } }
    #swiper .rikei div p {
      text-align: center;
      font-size: 25px;
      font-weight: bold;
      padding: 5px;
      border-radius: 10px;
      background-color: #F68700; }
      @media screen and (max-width: 992px) {
        #swiper .rikei div p {
          font-size: 20px; } }
      @media screen and (max-width: 767px) {
        #swiper .rikei div p {
          margin-bottom: 0; } }
  #swiper .swiper-container {
    height: 500px;
    overflow: hidden; }
    @media screen and (max-width: 992px) {
      #swiper .swiper-container {
        display: none; } }
    #swiper .swiper-container .swiper-slide > img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  #swiper #main0img {
    display: none; }
    @media screen and (max-width: 992px) {
      #swiper #main0img {
        display: block; } }
    #swiper #main0img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

/*****************お知らせ***************************/
section.info {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center; }
  @media screen and (max-width: 992px) {
    section.info {
      margin-top: 30px;
      margin-bottom: 30px; } }
  @media screen and (max-width: 767px) {
    section.info {
      margin-top: 16px;
      margin-bottom: 26px; } }
  section.info > div {
    margin: auto;
    display: inline-block; }
  @media screen and (max-width: 767px) {
    section.info h2 {
      font-size: 24px; } }
  section.info p {
    text-align: left; }

/*****************文字バンド（帯）***************************/
.sentence_band {
  text-align: center;
  padding: 40px; }
  @media screen and (max-width: 992px) {
    .sentence_band {
      padding: 30px; } }
  @media screen and (max-width: 767px) {
    .sentence_band {
      padding: 16px; } }
  .sentence_band.nigate {
    display: flex;
    justify-content: center;
    padding-bottom: 0;
    width: 100%; }
  .sentence_band.kaiketsu {
    margin-top: 40px;
    background-color: #FFEFC1; }
  .sentence_band div.img_wrap {
    margin-right: 30px;
    width: 70px; }
    @media screen and (max-width: 992px) {
      .sentence_band div.img_wrap {
        width: 60px; } }
    @media screen and (max-width: 767px) {
      .sentence_band div.img_wrap {
        display: none; } }
    .sentence_band div.img_wrap img {
      width: 100%;
      object-fit: cover; }
  .sentence_band div {
    font-size: 40px;
    font-weight: bold; }
    @media screen and (max-width: 992px) {
      .sentence_band div {
        font-size: 32px; } }
    @media screen and (max-width: 767px) {
      .sentence_band div {
        font-size: 23px; } }
    .sentence_band div.double_line {
      display: inline-block;
      position: relative; }
      .sentence_band div.double_line::after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 4px;
        padding: 0.1rem 0;
        border-top: solid 1px #F68700;
        border-bottom: solid 3px #F68700; }
    .sentence_band div span {
      color: red; }
      .sentence_band div span.orange {
        color: #F68700; }

/*****************悩み&成績&選ばれる6つの理由***************************/
section.threeCol {
  margin-top: 80px;
  text-align: center; }
  @media screen and (max-width: 992px) {
    section.threeCol {
      margin-top: 60px; } }
  @media screen and (max-width: 767px) {
    section.threeCol {
      margin-top: 40px; } }
  section.threeCol div.up {
    width: 130px; }
    @media screen and (max-width: 992px) {
      section.threeCol div.up {
        width: 110px; } }
    @media screen and (max-width: 767px) {
      section.threeCol div.up {
        width: 90px; } }
    section.threeCol div.up img {
      width: 100%; }
  section.threeCol > h2 {
    margin-bottom: 60px; }
    @media screen and (max-width: 992px) {
      section.threeCol > h2 {
        margin-bottom: 40px; } }
    @media screen and (max-width: 767px) {
      section.threeCol > h2 {
        margin-bottom: 20px;
        font-size: 24px; } }
  section.threeCol > div {
    margin: 0 auto;
    display: flex;
    justify-content: center; }
    @media screen and (max-width: 767px) {
      section.threeCol > div {
        display: block; } }
    section.threeCol > div.background {
      padding: 50px 0;
      background: #f0f0f0; }
      @media screen and (max-width: 767px) {
        section.threeCol > div.background {
          padding: 20px 0; } }
    section.threeCol > div.reason_back {
      background: #f0f0f0; }
      section.threeCol > div.reason_back:nth-of-type(2) {
        padding-top: 50px; }
        @media screen and (max-width: 767px) {
          section.threeCol > div.reason_back:nth-of-type(2) {
            padding-top: 20px; } }
      section.threeCol > div.reason_back:nth-last-of-type(1) {
        padding-bottom: 50px; }
        @media screen and (max-width: 767px) {
          section.threeCol > div.reason_back:nth-last-of-type(1) {
            padding-bottom: 20px; } }
    @media screen and (max-width: 767px) {
      section.threeCol > div > div.unit {
        padding: 0; } }
    section.threeCol > div > div.unit div.step {
      font-size: 30px;
      font-weight: bold; }
      @media screen and (max-width: 992px) {
        section.threeCol > div > div.unit div.step {
          font-size: 25px; } }
      @media screen and (max-width: 767px) {
        section.threeCol > div > div.unit div.step {
          padding-top: 15px; } }
    @media screen and (max-width: 767px) {
      section.threeCol > div > div.unit .img_wrap {
        width: 120px;
        display: inline-block; } }
    section.threeCol > div > div.unit .img_wrap.imgw_seiseki {
      width: 150px;
      margin: auto; }
      @media screen and (max-width: 992px) {
        section.threeCol > div > div.unit .img_wrap.imgw_seiseki {
          width: 120px; } }
      @media screen and (max-width: 767px) {
        section.threeCol > div > div.unit .img_wrap.imgw_seiseki {
          width: 100px; } }
    section.threeCol > div > div.unit .img_wrap img {
      object-fit: cover;
      width: 100%; }
    section.threeCol > div h3 {
      margin-top: 8px;
      margin-bottom: 15px;
      font-size: 38px;
      color: #0573ED; }
      @media screen and (max-width: 992px) {
        section.threeCol > div h3 {
          font-size: 23px;
          margin-top: 13px; } }
      @media screen and (max-width: 767px) {
        section.threeCol > div h3 {
          display: inline-block;
          margin: 0 0 0 auto;
          width: 50%; } }
      section.threeCol > div h3.black {
        color: black;
        font-size: 35px;
        margin-bottom: 30px; }
        @media screen and (max-width: 992px) {
          section.threeCol > div h3.black {
            font-size: 22px;
            margin-bottom: 20px; } }
        @media screen and (max-width: 767px) {
          section.threeCol > div h3.black {
            font-size: 20px;
            margin-bottom: 0; } }
    section.threeCol > div p {
      font-size: 20px;
      min-height: 90px; }
      @media screen and (max-width: 992px) {
        section.threeCol > div p {
          font-size: 18px; } }
      @media screen and (max-width: 767px) {
        section.threeCol > div p {
          margin: 0;
          padding: 10px 0 20px;
          min-height: initial;
          font-size: 16px; } }
    section.threeCol > div div.stu_img_wrap {
      width: 180px;
      margin: auto;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3); }
      @media screen and (max-width: 992px) {
        section.threeCol > div div.stu_img_wrap {
          width: 130px; } }
      @media screen and (max-width: 767px) {
        section.threeCol > div div.stu_img_wrap {
          display: none; } }
      section.threeCol > div div.stu_img_wrap img {
        width: 100%;
        object-fit: cover; }

.yazirushi {
  margin: 40px auto 0;
  width: 60px;
  height: 90px;
  background-color: #F68700;
  clip-path: polygon(50% 0, 100% 30%, 50% 100%, 0 30%); }
  @media screen and (max-width: 992px) {
    .yazirushi {
      margin-top: 20px;
      width: 46px;
      height: 69px; } }
  @media screen and (max-width: 767px) {
    .yazirushi {
      width: 30px;
      height: 45px; } }

/*****************生徒写真***************************/
.seito_photo {
  display: none; }
  @media screen and (max-width: 767px) {
    .seito_photo {
      display: flex;
      justify-content: center;
      margin: 20px auto 0; } }
  .seito_photo div.stu_img_wrap {
    width: 90px; }
    .seito_photo div.stu_img_wrap img {
      width: 100%;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3); }

/*****************main1***************************/
section.content {
  margin-top: -70px;
  padding-top: 170px; }
  @media screen and (max-width: 992px) {
    section.content {
      margin-top: -20px;
      padding-top: 100px; } }
  @media screen and (max-width: 767px) {
    section.content {
      margin-top: -20px;
      padding-top: 80px; } }
  section.content.main3 {
    margin-top: 100px;
    padding-top: 0; }
    @media screen and (max-width: 992px) {
      section.content.main3 {
        margin-top: 80px; } }
    @media screen and (max-width: 767px) {
      section.content.main3 {
        margin-top: 60px; } }
  section.content .under-line {
    border-bottom: 5px solid #ffd700;
    margin: 0 auto;
    width: 40px; }
    @media screen and (max-width: 767px) {
      section.content .under-line {
        width: 25px;
        border-bottom: 3px solid #ffd700; } }
  section.content h2 {
    font-size: 40px;
    text-align: center; }
    @media screen and (max-width: 992px) {
      section.content h2 {
        font-size: 35px; } }
    @media screen and (max-width: 767px) {
      section.content h2 {
        font-size: 24px;
        margin-bottom: 37px; } }
  section.content div.m-wrapper {
    display: flex;
    justify-content: space-around;
    margin: 60px auto 0; }
    @media screen and (max-width: 992px) {
      section.content div.m-wrapper {
        display: block;
        margin: 40px auto 0; } }
    @media screen and (max-width: 767px) {
      section.content div.m-wrapper {
        margin: auto; } }
    @media screen and (max-width: 992px) {
      section.content div.m-wrapper .m1i-wrapper {
        width: 90%;
        max-width: 600px;
        margin: 0 auto;
        min-width: 0; } }
    @media screen and (max-width: 767px) {
      section.content div.m-wrapper .m1i-wrapper {
        width: auto; } }
    section.content div.m-wrapper .m1i-wrapper img {
      box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.7);
      width: 100%; }
    @media screen and (max-width: 992px) {
      section.content div.m-wrapper .m-right {
        margin: 40px auto 0; } }
    @media screen and (max-width: 767px) {
      section.content div.m-wrapper .m-right {
        margin: 0px auto;
        padding: 0; } }
    section.content div.m-wrapper .m-right h3#mcrc-m {
      font-size: 25px; }
      @media screen and (max-width: 992px) {
        section.content div.m-wrapper .m-right h3#mcrc-m {
          text-align: center;
          width: 100%; } }
      @media screen and (max-width: 767px) {
        section.content div.m-wrapper .m-right h3#mcrc-m {
          margin-top: 24px;
          font-size: 22px; } }
    section.content div.m-wrapper .m-right p.mcr-c {
      font-size: 20px;
      margin-top: 30px;
      color: #5D5F5F; }
      @media screen and (max-width: 992px) {
        section.content div.m-wrapper .m-right p.mcr-c {
          font-size: 16px; } }
      @media screen and (max-width: 767px) {
        section.content div.m-wrapper .m-right p.mcr-c {
          margin: 24px 0 0; } }

@media screen and (max-width: 1200px) {
  .main1 {
    height: auto; }

  .mc-right {
    margin-left: 90px; }

  .mci-wrapper {
    min-width: 400px; }

  .mcww {
    height: auto; }

  .mc-wrapper {
    margin: 60px 7% 0; } }
/********************main2************************/
/********************main3************************/
section.main3 {
  position: relative;
  height: 750px;
  background-image: url("qleadImg/kyositsu.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover; }
  @media screen and (max-width: 992px) {
    section.main3 {
      height: 1100px; } }
  @media screen and (max-width: 767px) {
    section.main3 {
      height: 697px; } }
  section.main3 #m3-color-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    z-index: 1; }
  section.main3 div.m3c-block {
    position: absolute;
    top: 40px;
    z-index: 3;
    width: 100%;
    padding: 0 10%; }
    @media screen and (max-width: 767px) {
      section.main3 div.m3c-block {
        padding: 15px; } }
    section.main3 div.m3c-block h2 {
      margin-bottom: 30px; }
    section.main3 div.m3c-block div.m3c-wrap {
      margin-top: 100px;
      display: flex; }
      @media screen and (max-width: 992px) {
        section.main3 div.m3c-block div.m3c-wrap {
          margin-top: 60px;
          display: block; } }
      @media screen and (max-width: 767px) {
        section.main3 div.m3c-block div.m3c-wrap {
          margin-top: 0;
          text-align: center; } }
      section.main3 div.m3c-block div.m3c-wrap .m3-c {
        width: 220px; }
        @media screen and (max-width: 767px) {
          section.main3 div.m3c-block div.m3c-wrap .m3-c {
            width: auto;
            margin: 0 0 0 0; } }
        section.main3 div.m3c-block div.m3c-wrap .m3-c .m3-img-wrap {
          border-radius: 50%;
          border: 1px solid #EAEAEA;
          width: 220px;
          height: 220px;
          overflow: hidden; }
          @media screen and (max-width: 767px) {
            section.main3 div.m3c-block div.m3c-wrap .m3-c .m3-img-wrap {
              width: 90px;
              height: 90px;
              margin: 0 auto; } }
          section.main3 div.m3c-block div.m3c-wrap .m3-c .m3-img-wrap img {
            width: 100%;
            height: 100%; }
        section.main3 div.m3c-block div.m3c-wrap .m3-c p {
          margin-top: 40px;
          font-size: 18px;
          font-weight: bold; }
          @media screen and (max-width: 767px) {
            section.main3 div.m3c-block div.m3c-wrap .m3-c p {
              font-size: 16px;
              margin-top: 16px;
              margin-bottom: 20px; } }
        section.main3 div.m3c-block div.m3c-wrap .m3-c.m3c-top {
          margin-left: auto; }
          @media screen and (max-width: 992px) {
            section.main3 div.m3c-block div.m3c-wrap .m3-c.m3c-top {
              margin: 0 auto; } }
      section.main3 div.m3c-block div.m3c-wrap .m3c-bottom {
        display: flex;
        margin-right: auto; }
        @media screen and (max-width: 992px) {
          section.main3 div.m3c-block div.m3c-wrap .m3c-bottom {
            margin: 0 auto;
            justify-content: center; } }
        @media screen and (max-width: 767px) {
          section.main3 div.m3c-block div.m3c-wrap .m3c-bottom {
            display: block; } }
        section.main3 div.m3c-block div.m3c-wrap .m3c-bottom div.m3-c-center {
          margin: 0 50px; }
          @media screen and (max-width: 992px) {
            section.main3 div.m3c-block div.m3c-wrap .m3c-bottom div.m3-c-center {
              margin: 0 50px 0 0; } }
          @media screen and (max-width: 767px) {
            section.main3 div.m3c-block div.m3c-wrap .m3c-bottom div.m3-c-center {
              margin: 0 0 0 0; } }
    section.main3 div.m3c-block > button {
      font-size: 30px;
      background-color: #E2F0D9;
      border-radius: 30px;
      padding: 15px 40px;
      display: block;
      border: none;
      outline: none;
      margin: 60px auto; }
      @media screen and (max-width: 767px) {
        section.main3 div.m3c-block > button {
          font-size: 16px;
          margin: 30px auto;
          font-weight: bold; } }

/********************main4************************/
/********************lesson************************/
.lesson {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  position: relative;
  height: 292.69px;
  background-color: #f0f0f0; }

.l-img-ww {
  display: flex;
  justify-content: flex-end; }

.l-img-wrap {
  position: absolute;
  width: 300px; }

.lesson img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.buttons-w {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%; }

.buttons {
  margin: auto; }

.buttons button {
  height: 67px;
  width: 350px;
  padding: 15px 30px;
  font-size: 25px;
  font-weight: bold;
  background-color: #75D335;
  color: white;
  border: none;
  border-radius: 5px;
  box-shadow: 0 7px #255715; }

.buttons button:first-child {
  margin-right: 50px;
  color: black;
  background-color: #F8BF0D;
  box-shadow: 0 7px #5D4803; }

.buttons button:hover {
  top: 7px;
  position: relative;
  outline: none;
  box-shadow: none; }

.buttons button > img {
  height: 25px;
  width: 25px;
  margin: 2% 10px 4% 0; }

@media screen and (max-width: 1200px) {
  .l-img-wrap {
    position: absolute;
    width: 200px; }

  .buttons button {
    width: 300px;
    font-size: 20px; }

  .lesson {
    height: 195.13px; } }
@media screen and (max-width: 992px) {
  .l-img-ww {
    display: none; } }
@media screen and (max-width: 768px) {
  .lesson {
    height: 250px; }

  .buttons button {
    display: block;
    width: 250px;
    height: 60px;
    font-size: 16px; }

  .buttons button:first-child {
    margin-right: 0;
    margin-bottom: 24px; } }
/********************main5************************/
.main5 {
  margin-top: 80px;
  background-image: url("qleadImg/qleadback.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover; }

.m5-c-wrap {
  display: flex;
  margin-top: 80px;
  color: #5D5F5F; }

.m5-c {
  font-size: 20px;
  line-height: 1.5em;
  padding: 0 10% 0 6%; }

.m5-img-wrap img {
  width: 100%; }

.m5-c-bottom {
  font-size: 20px;
  line-height: 1.5em;
  margin: 50px 10% 100px; }

.m5-c-wrap span {
  font-weight: bold;
  font-size: 50px;
  margin-right: 10px; }

@media screen and (max-width: 1200px) {
  .m5-c {
    font-size: 18px; }

  .m5-c-bottom {
    font-size: 18px; } }
@media screen and (max-width: 767px) {
  .main5 {
    margin-top: 0; }

  .m5-c-wrap {
    display: block;
    margin-top: 0; }

  .m5-c {
    font-size: 16px;
    margin-top: 30px;
    padding: 0 6% 0; }

  .m5-c-bottom {
    font-size: 16px;
    padding: 0 6%;
    margin: 20px 0 30px; } }
/********************footer************************/
.footer {
  border-top: 1px solid #dddddd;
  background-color: #FFEFC1;
  font-size: 16px;
  display: flex;
  padding: 70px 10%; }

.footer li {
  list-style: none;
  margin-top: 10px; }

.footer a {
  color: #5D5F5F;
  display: inline-block; }

.footer a > object {
  pointer-events: none; }

.sns-icon {
  display: flex;
  margin-top: 40px;
  padding-left: 40px; }

.snss2 {
  margin-left: 30px; }

@media screen and (max-width: 767px) {
  .footer {
    padding: 70px 6%; }

  .footer ul {
    padding: 0; }

  .sns-icon {
    padding: 0; }

  .f-right {
    padding-left: 20px; }

  .f-left {
    padding-left: 0; } }

/*# sourceMappingURL=style2.css.map */
