@charset "UTF-8";
@import url("reset.css");
/* ---------------------------
  数値
--------------------------- */
/* ---------------------------
  カラー
--------------------------- */
/* ---------------------------
  スムーズスクロール
--------------------------- */
html {
  scroll-behavior: smooth;
}

/* ---------------------------
  フォント
--------------------------- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Roboto", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
}

/* ---------------------------
  フッター下付け
--------------------------- */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* ---------------------------
  その他
--------------------------- */
/* --- 画像表示 --- */
img {
  width: 100%;
  height: auto;
}

/* --- リンクホバー --- */
a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

/* --- PCのみ表示 --- */
.pc-view {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-view {
    display: none;
  }
}

/* --- SPのみ表示 --- */
.sp-view {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-view {
    display: block;
  }
}

/* --- PC表示にてTELリンク無効化 --- */
@media (min-width: 1024px) {
  /* PCサイズ */
  a[href^=tel] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
  }
}
/* --- スクロールアニメーション（フェードアップ） --- */
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --- to-topボタン --- */
.to-top {
  position: fixed;
  right: 30px;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .to-top {
    right: 15px;
  }
}
.to-top.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.to-top img {
  width: 70px;
}
@media screen and (max-width: 768px) {
  .to-top img {
    width: 50px;
  }
}

/* ----------------------------------------
  セクションタイトル（共通）
---------------------------------------- */
.section__title {
  font-weight: bold;
  text-align: center;
  margin-top: 174px;
}
@media screen and (max-width: 768px) {
  .section__title {
    margin-top: 16vw;
  }
}
.section__title p {
  font-size: 18px;
  color: #ae8f1e;
}
@media screen and (max-width: 768px) {
  .section__title p {
    font-size: 3.5vw;
  }
}
.section__title h2 {
  font-size: 36px;
  color: #0b613f;
}
@media screen and (max-width: 768px) {
  .section__title h2 {
    font-size: 6.4vw;
  }
}
.section__title img {
  width: 100px;
}
@media screen and (max-width: 768px) {
  .section__title img {
    width: 18.7vw;
  }
}

/* ----------------------------------------
  ボタン
---------------------------------------- */
.btn-common {
  width: 460px;
  max-width: 95%;
}
@media screen and (max-width: 768px) {
  .btn-common {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.btn-common p {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .btn-common p {
    font-size: 3.2vw;
    margin-bottom: 10px;
  }
}
.btn-common p span {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .btn-common p span {
    font-size: 5.3vw;
  }
}
.btn-common a {
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  height: 70px;
  text-align: center;
  line-height: 75px;
  display: block;
  border-radius: 100px;
  color: #4e493a;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, right top, from(#f5e42f), to(#f1b24c));
  background: linear-gradient(to right, #f5e42f, #f1b24c);
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  cursor: pointer;
  margin-top: 5px;
  -webkit-box-shadow: 3px 5px 0px 0px #d8d3af;
          box-shadow: 3px 5px 0px 0px #d8d3af;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn-common a {
    width: 73.1vw;
    max-width: 100%;
    height: 12.3vw;
    line-height: 12.8vw;
    font-size: 4.3vw;
    margin: 0 auto;
  }
}
.btn-common a::after {
  content: "";
  background: url(../img/btn-arrow.png) center center/cover no-repeat;
  position: absolute;
  width: 12px;
  height: 18px;
  top: 52%;
  right: 7%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn-common a .sparkle {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  -webkit-animation: sparkle 1.5s forwards;
          animation: sparkle 1.5s forwards;
  opacity: 0;
}
@-webkit-keyframes sparkle {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
@keyframes sparkle {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
@media screen and (max-width: 900px) {
  .btn-common.floating__btn a::after {
    width: 2.1vw;
    height: 3.2vw;
    right: 8%;
  }
}
.btn-common.line a {
  background: #06c755;
  color: #fff;
}
.btn-common.line a::after {
  background: url(../img/btn-arrow-white.png) center center/cover no-repeat;
}
.btn-common.line a::before {
  content: "";
  background: url(../img/line-icon.png) center center/cover no-repeat;
  position: absolute;
  width: 45px;
  height: 45px;
  top: 52%;
  left: 7%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .btn-common.line a::before {
    width: 7.5vw;
    height: 7.5vw;
  }
}
.btn-common.line.center {
  margin: 0 auto;
  width: 70%;
}

/* ----------------------------------------
 BG
---------------------------------------- */
.bg1 {
  background: url(../img/bg1.png) top center/cover no-repeat;
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 230px;
}
@media screen and (min-width: 1540px) {
  .bg1 {
    margin-bottom: 16vw;
  }
}
.bg1::before {
  content: "";
  background: #fff;
  width: 58%;
  height: 750px;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .bg1::before {
    width: 40%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 90% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 90% 100%);
    height: 162.7vw;
  }
}
.bg1::after {
  content: "";
  background: url(../img/bg1_bottom.png) center center/cover no-repeat;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  position: absolute;
  width: 100%;
  height: 230px;
}
@media screen and (min-width: 1540px) {
  .bg1::after {
    height: 16vw;
  }
}
@media screen and (max-width: 920px) {
  .bg1::after {
    height: 16vw;
  }
}

/* ----------------------------------------
 ヘッダー
---------------------------------------- */
.header {
  position: relative;
  z-index: 10;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 980px;
  max-width: 95%;
  margin: 0 auto;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .header.sub .header__inner {
    height: 90px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.header__logo {
  width: 350px;
  min-width: 150px;
}
@media screen and (max-width: 950px) {
  .header__logo {
    width: 35.7vw;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 42.7vw;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 950px) {
  .header__nav {
    gap: 2.4vw;
  }
}
.header__nav--item {
  white-space: nowrap;
  font-size: clamp(14px, 1.6vw, 16px);
}
.header__nav--item:last-child {
  width: 230px;
}
@media screen and (max-width: 950px) {
  .header__nav--item:last-child {
    width: 25.5vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav--item {
    display: none;
  }
  .header__nav--item:last-child {
    display: block;
    width: 40vw;
    max-width: 200px;
  }
}
.header__sp-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__sp-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4vw;
  }
}
.header__btn {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .header__btn {
    width: 42.7vw;
  }
}
.header__btn a {
  height: 55px;
  line-height: 58px;
}
@media screen and (max-width: 768px) {
  .header__btn a {
    font-size: 2.9vw;
    height: 9.3vw;
    line-height: 10.1vw;
  }
}

/* ----------------------------------------
 FV
---------------------------------------- */
.fv {
  margin-top: 75px;
  position: relative;
  z-index: 10;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    margin-top: 5.3vw;
  }
}
.fv__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 980px;
  max-width: 90%;
  margin: 0 auto;
}
.fv__inner img:first-child {
  width: 533px;
}
@media screen and (max-width: 768px) {
  .fv__inner img:first-child {
    width: 77.9vw;
  }
}
.fv__inner img:nth-child(2) {
  width: 504px;
  margin-top: 41px;
}
@media screen and (max-width: 768px) {
  .fv__inner img:nth-child(2) {
    width: 77.9vw;
    margin-top: 2.7vw;
  }
}
.fv__inner img:last-child {
  position: absolute;
  width: 508px;
  left: 60%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .fv__inner img:last-child {
    left: 50%;
    top: 40%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 66.7vw;
  }
}
.fv__btn {
  margin-top: 60px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .fv__btn {
    margin: 64vw auto 0;
  }
}
/* ----------------------------------------
 FEATURE
---------------------------------------- */
.feature__inner {
  width: 980px;
  max-width: 90%;
  margin: 0 auto;
}
.feature__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .feature__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.3vw;
  }
}
.feature__content img {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .feature__content img {
    width: 100%;
  }
}

/* ----------------------------------------
 SERVICE
---------------------------------------- */
.service__inner {
  width: 980px;
  max-width: 90%;
  margin: 48px auto 0;
}
.service__img1 {
  width: 616px;
  margin: 40px auto 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .service__img1 {
    width: 85.3vw;
    margin-top: 8vw;
  }
}
.service__box {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  -webkit-box-shadow: 0px 10px 0px 0px rgb(11, 97, 63);
          box-shadow: 0px 10px 0px 0px rgb(11, 97, 63);
  padding: 32px 0 56px;
  position: relative;
  margin: 48px auto 0;
}
@media screen and (max-width: 768px) {
  .service__box {
    margin-top: 8vw;
    padding: 6.4vw 0 51.7vw;
  }
}
.service__box img {
  width: 360px;
}
@media screen and (max-width: 768px) {
  .service__box img {
    width: 80vw;
  }
}
.service__box--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 605px;
  margin: 25px auto 0;
}
@media screen and (max-width: 768px) {
  .service__box--list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 80vw;
  }
}
.service__box--list-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  width: 50%;
}
.service__box--list-flex img {
  width: 25px;
}
@media screen and (max-width: 768px) {
  .service__box--list-flex img {
    width: 6.7vw;
  }
}
.service__box--list-flex p {
  font-size: 18px;
  white-space: nowrap;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .service__box--list-flex p {
    font-size: 4.8vw;
    margin-left: 2.7vw;
  }
}
.service__illustration {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .service__illustration {
    right: inherit;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 6.4vw;
  }
}
.service__illustration img {
  width: 168px;
}
@media screen and (max-width: 768px) {
  .service__illustration img {
    width: 44.8vw;
  }
}
.service__img2 {
  width: 300px;
  margin: 100px auto 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .service__img2 {
    margin-top: 16vw;
  }
}
.service__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 920px) {
  .service__point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 14.7vw auto 0;
    width: 100%;
    padding: 10.7vw 4.3vw;
    gap: 10.7vw !important;
  }
}
.service__point--text {
  position: relative;
}
@media screen and (max-width: 920px) {
  .service__point--text {
    width: 100%;
  }
}
.service__point--no {
  position: absolute;
  top: -75px;
  left: -25px;
}
@media screen and (max-width: 920px) {
  .service__point--no {
    left: 0;
    top: -20vw;
  }
}
.service__point--head {
  font-size: 22px;
  background: #ae8f1e;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 920px) {
  .service__point--head {
    font-size: 5.9vw;
    padding: 2.7vw 5.9vw;
  }
}
.service__point--explanation {
  margin-top: 16px;
  width: 420px;
  max-width: 100%;
}
@media screen and (max-width: 920px) {
  .service__point--explanation {
    font-size: 4vw;
    width: 100%;
    margin-top: 4.3vw;
  }
}
.service__point--check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 14px;
}
@media screen and (max-width: 920px) {
  .service__point--check {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 4.5vw;
  }
}
.service__point--check img {
  width: 25px;
}
@media screen and (max-width: 920px) {
  .service__point--check img {
    width: 6.7vw;
  }
}
.service__point--check p {
  font-size: 18px;
  color: #0b613f;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1.4;
}
@media screen and (max-width: 920px) {
  .service__point--check p {
    white-space: wrap;
    text-indent: 0;
    hanging-punctuation: first;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 920px) {
  .service__point--img {
    margin: 0 auto;
  }
}
.service__point.first {
  gap: 53px;
}
.service__point.first .service__point--text .service__point--no {
  width: 75px;
}
@media screen and (max-width: 920px) {
  .service__point.first .service__point--text .service__point--no {
    width: 20vw;
  }
}
.service__point.first .service__point--img {
  width: 220px;
  height: 155px;
}
@media screen and (max-width: 920px) {
  .service__point.first .service__point--img {
    width: 58.1vw;
    height: 41.1vw;
  }
}
.service__point.second {
  gap: 136px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: auto;
}
@media screen and (max-width: 920px) {
  .service__point.second {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.service__point.second .service__point--text .service__point--no {
  width: 85px;
}
@media screen and (max-width: 920px) {
  .service__point.second .service__point--text .service__point--no {
    width: 21.3vw;
  }
}
.service__point.second .service__point--img {
  width: 161px;
  height: 144px;
}
@media screen and (max-width: 920px) {
  .service__point.second .service__point--img {
    width: 42.7vw;
    height: 38.4vw;
  }
}
.service__point.third {
  gap: 92px;
}
.service__point.third .service__point--text .service__point--no {
  width: 86px;
}
@media screen and (max-width: 920px) {
  .service__point.third .service__point--text .service__point--no {
    width: 21.6vw;
  }
}
.service__point.third .service__point--img {
  width: 190px;
  height: 152px;
}
@media screen and (max-width: 920px) {
  .service__point.third .service__point--img {
    width: 50.7vw;
    height: 40.3vw;
  }
}

/* ----------------------------------------
 ROOT
---------------------------------------- */
.root {
  background: url(../img/bg2.png) top center/cover no-repeat;
  margin-top: -170px;
}
.root__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 150px;
  margin-bottom: 80px;
}
@media screen and (max-width: 920px) {
  .root__inner {
    margin-top: 5.3vw;
  }
}
.root__img {
  display: block;
}
@media screen and (max-width: 768px) {
  .root__img {
    display: none;
  }
}
.root__img.left {
  width: 169px;
  height: 245px;
  margin-right: -80px;
}
.root__img.right {
  width: 139px;
  height: 232px;
  margin-left: -80px;
}
.root__img-sp {
  width: 48vw;
  margin: 3.2vw auto 0;
}
.root__message {
  width: 851px;
}
@media screen and (max-width: 768px) {
  .root__message {
    width: 88vw;
  }
}
.root__btn {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .root__btn {
    margin-top: 8vw;
  }
}

/* ----------------------------------------
 LECTURE
---------------------------------------- */
.lecture {
  background: url(../img/bg3.png) top center/cover no-repeat;
  padding-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .lecture {
    padding-bottom: 8vw;
  }
}
.lecture__inner {
  width: 915px;
  max-width: 90%;
  margin: 0 auto;
}
.lecture__title {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .lecture__title {
    margin-top: 8vw;
  }
}
.lecture__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .lecture__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 6.4vw;
  }
}
.lecture__flex--item {
  width: 23.5%;
  height: 23.5%;
}
@media screen and (max-width: 768px) {
  .lecture__flex--item {
    width: 40vw;
  }
}
.lecture__flex--item:last-child {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .lecture__flex--item:last-child {
    width: 36.8vw;
  }
}
.lecture__img1 {
  width: 410px;
  margin: 40px auto 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .lecture__img1 {
    margin-top: 16vw;
    width: 75.2vw;
  }
}
.lecture__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .lecture__check {
    margin-top: 8vw;
  }
}
.lecture__check img {
  width: 25px;
  height: 25px;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .lecture__check img {
    width: 6.7vw;
    height: 6.7vw;
  }
}
.lecture__check p {
  font-size: 18px;
  margin-left: 12px;
}
@media screen and (max-width: 768px) {
  .lecture__check p {
    font-size: 4.3vw;
    margin-left: 3.2vw;
  }
}
.lecture__check p span {
  text-decoration: underline;
  text-decoration-color: #fff643;
  text-decoration-thickness: 0.3em;
  text-underline-offset: 0.2em;
  font-weight: bold;
}
.lecture__check.mt24 {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .lecture__check.mt24 {
    margin-top: 4.3vw;
  }
}
.lecture__img2 {
  margin: 38px auto 0;
  width: 660px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .lecture__img2 {
    margin-top: 8vw;
  }
}

/* ----------------------------------------
 METHOD
---------------------------------------- */
.method {
  padding: 70px 0 100px;
}
@media screen and (max-width: 768px) {
  .method {
    padding: 16vw 0;
  }
}
.method__inner {
  width: 980px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}
.method__img1 {
  width: 410px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .method__img1 {
    width: 75.2vw;
  }
}
.method__img2 {
  width: 174px;
  position: absolute;
  top: 0;
  left: 93px;
}
@media screen and (max-width: 950px) {
  .method__img2 {
    left: 3.2vw;
  }
}
@media screen and (max-width: 768px) {
  .method__img2 {
    width: 31.5vw;
    top: 2.9vw;
    left: 2.7vw;
  }
}
.method__img3 {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .method__img3 {
    margin-top: 19.7vw;
  }
}
.method__img4 {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .method__img4 {
    margin-top: 8vw;
  }
}
.method__btn {
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .method__btn {
    margin-top: 8vw;
  }
}

/* ----------------------------------------
 PLANS
---------------------------------------- */
.plan {
  background: url(../img/bg4.png) top center/cover no-repeat;
  padding: 90px 0 100px;
}
@media screen and (max-width: 768px) {
  .plan {
    padding: 8vw 0 10.7vw;
  }
}
.plan__inner {
  width: 980px;
  max-width: 90%;
  margin: 0 auto;
}
.plan__title {
  margin-top: 0;
}
.plan__list {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .plan__list {
    margin-top: 2.7vw;
  }
}
.plan__list2 {
  width: 506px;
  margin: 10px auto;
}
@media screen and (max-width: 768px) {
  .plan__list2 {
    margin-top: -2.7vw;
    width: 100%;
  }
}
.plan__btn {
  margin: 30px auto;
}
@media screen and (max-width: 768px) {
  .plan__btn {
    margin-top: 5.3vw;
  }
}
.plan__tips {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .plan__tips {
    margin-top: 16vw;
  }
}

/* ----------------------------------------
 STEP
---------------------------------------- */
.step {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .step {
    padding: 10.7vw 0;
  }
}
.step__inner {
  width: 980px;
  max-width: 90%;
  margin: 0 auto;
}
.step__head {
  width: 360px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .step__head {
    width: 89.6vw;
    max-width: 100%;
  }
}
.step__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .step__table {
    gap: 0;
    margin-top: 5.3vw;
  }
}
.step__table img {
  width: 237px;
  height: 408px;
}
@media screen and (max-width: 768px) {
  .step__table img {
    width: 161px;
    height: 306px;
  }
}
@media screen and (max-width: 600px) {
  .step__table img {
    width: 34.7vw;
    height: 65.9vw;
  }
}
.step__table--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.step__table--content img {
  width: 732px;
  height: 430px;
}
@media screen and (max-width: 768px) {
  .step__table--content img {
    width: auto;
    height: 322px;
  }
}
@media screen and (max-width: 600px) {
  .step__table--content img {
    height: 69.3vw;
  }
}
@media screen and (max-width: 1100px) {
  .step__table--content {
    width: 732px;
    overflow-x: scroll;
  }
}
@media screen and (max-width: 768px) {
  .step__table--content {
    width: auto;
    height: 342px;
  }
}
@media screen and (max-width: 600px) {
  .step__table--content {
    height: 74.7vw;
  }
}
.step__swipe {
  display: none;
}
@media screen and (max-width: 1100px) {
  .step__swipe {
    width: 18.7vw;
    display: block;
    margin: 30px 2.7vw 0 auto;
  }
}
.step__point {
  width: 748px;
  max-width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .step__point {
    margin-top: 8vw;
  }
}
.step__optimal {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .step__optimal {
    margin-top: 8vw;
  }
}
.step__btn {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .step__btn {
    margin-top: 8vw;
  }
}

/* ----------------------------------------
 FAQ
---------------------------------------- */
.faq {
  padding: 60px 0 200px;
  background: #fdf9f0;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 8vw 0 24vw;
  }
}
.faq__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq__title {
  margin-top: 0;
}
.faq__content {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .faq__content {
    margin-top: 8vw;
  }
}
.faq__content--head {
  color: 18px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #0b613f;
}
@media screen and (max-width: 768px) {
  .faq__content--head {
    font-size: 4.3vw;
  }
}
.faq__list {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .faq__list {
    margin-top: 2.7vw;
  }
}
.faq__item {
  margin-bottom: 10px;
  background: #fff;
  padding: 0 10px;
}
.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
}
.faq__question::before {
  content: "Q";
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #0b613f;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 22px;
  top: 12px;
}
.faq__q-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  padding: 0 10px 0 35px;
}
.faq__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #0b613f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq__icon::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: white;
}
.faq__icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: white;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.faq__answer {
  display: none;
  padding: 0 0 20px 35px;
  position: relative;
  margin-top: 15px;
}
.faq__answer::before {
  content: "A";
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #ae8f1e;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 22px;
}
.faq__a-text {
  margin: 0;
  padding: 0 35px 0 0;
}
.faq__item.is-open .faq__icon {
  background-color: #ae8f1e;
}
.faq__item.is-open .faq__icon::after {
  opacity: 0;
}
.faq__btn {
  margin: 64px auto 0;
}
@media screen and (max-width: 768px) {
  .faq__btn {
    margin-top: 8vw;
  }
}

/* ----------------------------------------
 FAQ
---------------------------------------- */
.footer {
  background: #0b613f;
}
.footer__inner {
  position: relative;
  color: #fff;
  padding: 48px 5% 30px;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5.3vw;
  }
}
.footer__nav--item a {
  white-space: nowrap;
}
.footer .copyright {
  text-align: center;
  margin-top: 57px;
  font-size: 10px;
}
.footer__management {
  position: absolute;
  right: 10px;
  bottom: 50px;
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .footer__management {
    font-size: 8px;
  }
}

/* ----------------------------------------
 FLOATING
---------------------------------------- */
.floating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 10px 0 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.floating.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 900px) {
  .floating {
    gap: 4vw;
    padding: 2.7vw;
  }
}
@media screen and (max-width: 900px) {
  .floating__btn {
    width: 42.7vw;
  }
  .floating__btn a {
    font-size: 3.2vw;
    height: 9.3vw;
    line-height: 9.9vw;
  }
  .floating__btn a span {
    display: none;
  }
}

/* ----------------------------------------
  ブロックエディタ共通
---------------------------------------- */
.block {
  margin: 50px 0 100px;
}
.block a {
  color: #0000ff;
  text-decoration: underline;
}
.block.mt0 {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .block {
    margin-bottom: 13.3vw;
  }
}
.block__inner {
  width: 1000px !important;
  max-width: 90%;
  margin: 0 auto;
  /* h3 (最上位見出し) - 左に太線 */
  /* h4 (中見出し) - インデント＋頭に横線 */
  /* h5 (小見出し) - バッジ風背景 */
}
.block__inner .wp-block-paragraph,
.block__inner .wp-block-heading,
.block__inner .wp-block-columns,
.block__inner .wp-block-image,
.block__inner .wp-block-list,
.block__inner .wp-block-quote,
.block__inner .wp-block-code,
.block__inner .wp-block-preformatted,
.block__inner .wp-block-verse,
.block__inner .wp-block-table,
.block__inner p {
  margin-top: 30px;
  margin-bottom: 30px;
}
.block__inner .section__title {
  font-size: 32px;
}
.block__inner h3.wp-block-heading {
  font-size: 24px;
  font-weight: bold;
  border-left: 6px solid #333;
  padding-left: 12px;
  margin: 30px 0 20px;
}
.block__inner h4.wp-block-heading {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 8px;
  font-weight: bold;
  padding-left: 40px; /* 約1文字分インデント */
  position: relative;
  margin: 15px 0 10px;
}
.block__inner h4.wp-block-heading::before {
  content: "– ";
  position: absolute;
  left: 20px;
}
.block__inner h5.wp-block-heading {
  font-size: 18px;
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 4px;
  padding-left: 40px; /* 約1文字分インデント */
  margin: 10px 0 5px;
  text-decoration: underline;
}
.block__title {
  font-size: 36px;
  background: #0b613f;
  color: #fff;
  margin-top: 0;
  padding: 50px 5%;
}
@media screen and (max-width: 768px) {
  .block__title {
    font-size: 6.4vw;
    padding: 13.3vw 0;
  }
}

.post-bottom-link {
  font-size: 24px;
  color: #fff !important;
  text-decoration: none !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 100px auto 0;
  background: #0b613f;
  padding: 10px 20px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .post-bottom-link {
    font-size: 4.8vw;
  }
}

.blog-bottom-btn {
  margin: 0 auto;
  margin-bottom: 100px;
}

.smb-tabs__tab[aria-selected=true] {
  background: #0b613f;
  color: #fff;
}

.smb-tabs__tab[aria-selected=false] {
  background-color: #fff;
  color: #0b613f;
  opacity: 1 !important;
}

@media screen and (max-width: 768px) {
  .smb-tabs[data-orientation=horizontal] > .smb-tabs__tabs .smb-tabs__tab {
    padding: 1.3vw 0.8vw !important;
    font-size: 2.7vw;
  }
}

.pt-cv-taxoterm a {
  cursor: initial;
}
.pt-cv-taxoterm a:hover {
  opacity: 1;
}