html{
  scroll-behavior:smooth;
}

body {
  color: #111;
  font-family: "LINE Seed JP","Noto Sans JP", "Yu Gothic", sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.topInner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* ぱんくず*/
.breadcrumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;

  padding:24px 0;

  font-size:13px;
  color:#777;
}

.breadcrumb a{
  color:#777;
  text-decoration:none;
}

.breadcrumb span{
  position:relative;
  padding-left:16px;
}

.breadcrumb span::before{
  content:"/";
  position:absolute;
  left:0;
  top:0;
}

/* header */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fdfdfd;
}

.siteHeader__inner {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
}

.siteHeader__logo {
  width: 115px;
  flex-shrink: 0;
  margin-right: auto;
}

.headerLoginBtn {
  flex-shrink: 0;
}

.headerLoginBtn img {
  height: 35px;
  width: auto;
  display: block;
}

.globalNav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.globalNav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  flex-wrap: nowrap;
}

.globalNav li {
  flex-shrink: 0;
}

.globalNav a {
  color: #111;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #111;
  margin: 7px auto;
  border-radius: 999px;
}

/* 横幅が足りなくなる前にハンバーガーへ */
@media (max-width: 1200px) {
  .hamburger {
    display: block;
    position: relative;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    background: transparent;
    z-index: 1002;
  }

  .hamburger span {
    position: absolute;
    left: 7px;
    width: 28px;
    height: 2px;
    background: #111;
    border-radius: 999px;
    transition: .3s;
  }

  .hamburger span:nth-child(1) {
    top: 12px;
  }

  .hamburger span:nth-child(2) {
    top: 20px;
  }

  .hamburger span:nth-child(3) {
    top: 28px;
  }

  .hamburger.is-active span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }

  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }

  .globalNav {
    position: fixed;
    top: 80px;
    right: 0;
    width: min(360px, 82vw);
    height: calc(100vh - 80px);
    background: #fdfdfd;
    padding: 40px 32px;
    /*box-shadow: -10px 0 24px rgba(0,0,0,.08);*/
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1001;
    display: block;
    overflow-y: auto;
  }

  .globalNav.is-open {
    transform: translateX(0);
  }

  .globalNav .globalNav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .globalNav .globalNav__list li {
    width: 100%;
  }

  .globalNav .globalNav__list li + li {
    margin-top: 18px;
  }

  .globalNav .globalNav__list a {
    display: block;
    font-size: 15px;
    white-space: normal;
  }
  
  .globalNav .headerLoginBtn {
    display: inline-block;
    margin-top: 32px;
  }
}

/* 枠 */

.waku_mypage {
    padding: 0.5em 1em;
    margin: 2em 2em;
    /*font-weight: bold;*/
    color: #535353;/*文字色*/
    background: #FFF;
    border: solid 1px #535353;/*線*/
    border-radius: 10px;/*角の丸み*/
    text-align: center;
}
.waku_mypage p {
    margin: 0;
    padding: 0;
}

.waku_mypage2 {
    color: #535353;/*文字色*/
    background: #FFF;
    text-align: center;
    padding-bottom: 20px;
}
.waku_mypage2 p {
    margin: 0;
    padding: 0;
}

/*title */

.sectionTitle {
  text-align: center;
  font-size: clamp(28px, 4vw, 56px);
  margin-bottom: 64px;
  font-weight: 800;
}
.sectionTitle::after{
    content:"";
    display:block;
    width:28px;
    height:3px;
    background:#578AC9;
    margin: 18px auto 0;
    transform: none;
}




/* CTA */
.entryCta {
  background: linear-gradient(#fff 0 70%, #eee 70% 100%);
  padding: 110px 0 80px;
}

.entryCta__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 90px;
}

.entryCard {
  display: block;
  padding: 52px 42px 90px;
  border-radius: 14px;
  text-align: center;
  color: #111;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  position:relative;
}

.entryCard--trial {
  background: #fffaf0;
}

.entryCard--signup {
  background: #eefbff;
}

.entryCard h2 {
  font-size: 28px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.entryCard span {
  display: block;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.entryCard p {
  font-size: 14px;
  margin-bottom: 20px;
}

.entryCard__btn{
    position:absolute;
    right:32px;
    bottom:28px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:180px;
    height:36px;
    padding:0 18px;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
}

.entryCard--trial .entryCard__btn{
    background:#f0b24b;
}

.entryCard--signup .entryCard__btn{
    background:#2f80ed;
}

.entryCard__btn i{
    font-size:13px;
}



@media screen and (max-width: 768px){

  .entryCta {
    background: linear-gradient(#fff 0 70%, #eee 70% 100%);
    padding: 110px 0 30px;
  }
  .entryCard{
    min-height: 220px;
    padding: 56px 24px 40px;

    display:flex;
    flex-direction:column;
  }

  .entryCard__btn{
    margin-top:auto;
  }

}


/* footer */
.siteFooter {
  background: #eee;
  padding: 70px 0 0;
}

.siteFooter__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 298px 1fr;
  gap: 90px;
}

.siteFooter__logo{
  background-color: #fff;
  display: block;
  text-align: center;
}

.siteFooter__info img {
  width: 120px;
  padding: 10px;
}

.siteFooter__info p {
  font-size: 13px;
  padding-top: 20px;
}

.siteFooter__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 36px;
  list-style: none;
}

.siteFooter__nav a {
  color: #111;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}


.siteFooter__nav li{
  margin-bottom:14px;
}


.copyright {
  background: #fff;
  text-align: center;
  padding: 28px 0;
  margin-top: 60px;
  font-size: 12px;
  color: #666;
}

/* cta */
.lessonFixedBtn{
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    /*height: 265px;*/
    height: 215px;
    background: #d8ff00;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 22px;
    z-index: 100;
    text-decoration: none;
    transition: .3s ease;
}

.lessonFixedBtn:hover{
    transform: translateY(-50%) scale(1.04);
}

.lessonFixedBtn__text{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: .08em;
}

.lessonFixedBtn__icon{
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 16px;
}

@media screen and (max-width: 768px){
  .lessonFixedBtn {
     display: none;
  }
}

/* responsive */
@media (max-width: 900px) {
  .hamburger {
    display: block;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
  }

  .hamburger span {
    display: block;
    height: 2px;
    background: #111;
    margin: 8px 0;
  }

  .globalNav {
    display: none;
    position: absolute;
    left: 0;
    top: 64px;
    width: 100%;
    background: #fff;
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
  }

  .globalNav.is-open {
    display: block;
  }

  .globalNav ul {
    display: block;
  }

  .globalNav li + li {
    margin-top: 16px;
  }

  .loginBtn {
    display: inline-flex;
    margin-top: 20px;
  }
  .entryCard {
    padding: 40px 24px;
  }
  .entryCta__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .siteFooter__inner {
    grid-template-columns: 1fr;
  }
  .siteFooter__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 30px;
  }
}

/* pagetop */
.pageTop{
  position:fixed;
  right:30px;
  bottom:30px;
  z-index:999;

  opacity:0;
  visibility:hidden;
  transform:translateY(20px);

  transition:
    opacity .4s,
    visibility .4s,
    transform .4s;
}

.pageTop.isShow{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.pageTop a{
  display:flex;
  align-items:center;
  justify-content:center;

  width:64px;
  height:64px;

  border-radius:50%;
  background:#0b132b;

  color:#fff;
  text-decoration:none;
  font-size:22px;
  font-weight:700;

  box-shadow:0 8px 20px rgba(0,0,0,.18);
  transition:.3s;
}

.pageTop a:hover{
  transform:translateY(-4px);
}

@media screen and (max-width:768px){

  .pageTop{
    right:16px;
    bottom:16px;
  }

  .pageTop a{
    width:52px;
    height:52px;
    font-size:18px;
  }

}


