@charset "UTF-8";
/* CSS Document */
/*basic*/
body {
  background: #fff;
  font-family: var(--font-hi);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: #000;
  text-align: center;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  -webkit-font-smoothing: subpixel-antialiased;
}
a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
  color: inherit;
}
a img, input[type=submit] input[type=reset], input[type=button] {
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
a:hover img, input[type=submit]:hover input[type=reset]:hover, input[type=button]:hover {
  opacity: 0.7;
}
#container {
  /*overflow-x: hidden;*/
}
.wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
/*Color*/
.white {
  color: #fff;
}
.blue {
  color: #008cd6;
}
.blue2 {
  color: #0a3595;
}
.orange {
  color: #f05a24;
}
.green {
  color: #009045;
}
.grey {
  color: #494949;
}
h2, h3, .hiragino {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
/*============================
.sticky-btn
============================*/
.sticky-btn {
  position: fixed;
  top: 90px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 20px;
  z-index: 1000;
}
/*============================
#nav
============================*/

#nav {
  height: 70px;
  border-bottom: 1px solid #bbbdbe;
}

.logo img {
  height: 70px;
  float: left;
}
/*============================
#mv
============================*/
.mv-list {
  margin-top: -216px;
  margin-left: -150px;
  background-size: contain;
}
.mv-list li {
  text-align: left;
  padding: 8px 10px 8px 45px;
  border-bottom: 1px dotted #000;
  position: relative;
}
.mv-list li::before {
  content: "";
  width: 23px;
  height: 18px;
  background: url(img/check.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 15px;
  left: 10px;
}
.mv-list li .pc {
  display: inline-block;
}
.under-firstview_copy {
  font-size: 16px;
  padding-left: 7.5%;
  padding-right: 7.5%;
  box-sizing: border-box;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 15px;
}
.deadline {
  font-size: 20px;
  background: linear-gradient(transparent 60%, rgba(212, 175, 55, 0.3) 60%);
  color: #eb2400;
  font-weight: bold;
}
.deadline2 {
  font-size: 17.5px;
  background: linear-gradient(transparent 60%, rgba(212, 175, 55, 0.3) 60%);
  color: #eb2400;
  font-weight: bold;
}
.banner {
  padding: 45px 0;
}
.banner a {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.cp_bnr {
  margin: 50px auto;
  width: 700px;
}
.bg {
  background: #f8ebe1;
}
.bg_02 {
  background: #ffd5b5;
}
.cta {
  padding: 45px 0;
  background: #f8f6ee;
}
.mid-cta {
  padding: 45px 0;
  background: #f05a24;
}
.cta-top {
  padding: 45px 0 0;
  margin-bottom: 110px;
  background: #f05a24;
  position: relative;
}
.cta-top::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 80px solid #f05a24;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
}
.cta-top .wrap {
  position: relative;
}
.cta-top .wrap::before {
  content: "";
  width: 220px;
  height: 262px;
  background: url(img/cta-img2.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -160px;
  left: 0;
}
.cta h2 {
  line-height: 1.5;
}
.price-card {
  background: #fff;
  padding: 20px 15px 10px;
  width: 305px;
  flex: 0 0 305px; /* 「伸びない、縮まない、幅は305px固定」という指示 */
  box-sizing: border-box; /* paddingで幅が膨らむのを防ぐ */
  display: grid;
  grid-template-rows: 75px 2px 85px 2px 70px;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
.price-card p {
  font-size: 16px;
  font-family: 'Oswald';
  color: #aeaeae;
  font-weight: normal;
}
.price-card::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 25px 25px 0;
  border-color: transparent #f05a24 transparent transparent;
  position: absolute;
  top: 0;
  right: 0;
}
.price-card > * {
  grid-column: 1;
}
.price-card h3 {
  grid-row: 1;
  line-height: 1.56;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
}
@media screen and (max-width: 768px) {
  .price-card {
    margin-bottom: 20px;
  }
  .price-card:last-of-type {
    margin-bottom: 0;
  }
  .cp_bnr {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.price-hr {
  width: 100%;
  border: none;
  border-top: 1px dashed #000;
}
.price-card hr:first-of-type {
  grid-row: 2;
}
.price-card span.f28, .price-card span.f20 {
  grid-row: 3;
  line-height: 1;
  font-weight: bold;
}
.price-card hr:last-of-type {
  grid-row: 4;
}
.price-card span.f18 {
  grid-row: 5;
  line-height: 1.38;
}
.video-wrap {
  width: 58.3%;
  height: 0;
  padding-top: 32.79%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.video-wrap video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.l-siteHeader {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
}
.l-siteHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  height: 58px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 4%);
  gap: 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
}
.l-siteHeader__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  text-decoration: none;
}
.l-siteHeader__logo {
  font-size: 0;
  line-height: 1;
  margin: 0;
}
.l-siteHeader__logoSvg {
  display: block;
  height: 56px;
  width: auto;
}
.l-siteHeader__serviceName {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.l-siteHeader__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.l-siteHeader__navBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 35px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: opacity 0.18s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.l-siteHeader__navBtn:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}
.l-siteHeader__navBtn--outline {
  background: #fff;
  color: #333;
  border: 1.5px solid #f05a24;
}
.l-siteHeader__navBtn--fill {
  background: #f05a24;
  color: #fff;
}
.mv_h1_wrap {
  padding-left: 6vw;
}
@media screen and (max-width: 768px) {.l-siteHeader__brand {
  display: flex;
  align-items: center;
  gap: 1vw;
  flex-shrink: 0;
  text-decoration: none;
}
	.l-siteHeader__logo {
  font-size: 0;
  line-height: 1;
  margin: 0;
}
.l-siteHeader__logoSvg {
  display: block;
  height: 31px;
  width: auto;
}
  .l-siteHeader__inner {
    max-width: 100%;
    gap: 0.5vw;
    padding: 0 2vw;
  }
  .l-siteHeader__navBtn {
    padding: 0 1.2vw;
    font-size: 2.7vw;
  }
  .l-siteHeader__nav {
    gap: 1vw;
  }
  .l-siteHeader__serviceName {
    font-size: 3.2vw;
    line-height: 1.1;
  }
  .mv_h1_wrap {
    padding-left: 0;
  }
}
/*============================
#sec1
============================*/
#sec1 {
  padding: 50px 0 70px;
}
#sec1 h2 {
  line-height: 1.5;
}
.table-wrap {
  background: #fff;
  color: #4d4d4d;
}
.table-wrap h3 {
  padding: 20px 0;
}
.table-wrap table {
  width: 100%;
  border-top: 1px solid #f05a24;
  border-collapse: collapse;
}
.table-wrap table th {
  padding: 20px 25px;
  border-bottom: 1px solid #f05a24;
  border-right: 1px solid #f05a24;
}
.table-wrap table td {
  padding: 10px 15px;
  border-bottom: 1px solid #f05a24;
  border-right: 1px solid #f05a24;
  vertical-align: middle;
  line-height: 1.375;
}
.table-wrap table tr:last-of-type th, .table-wrap table tr:last-of-type td {
  border-bottom: none;
}
.table-wrap table td:last-of-type {
  border-right: none;
}
.table-wrap table tr:first-of-type th:nth-of-type(2) {
  padding: 10px;
  background: #f05a24;
}
.table-wrap table tr:first-of-type th:nth-of-type(3) {
  padding: 10px;
  background: #b1b1b1;
}
.ylw-bg {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #ffff00));
  background: linear-gradient(transparent 40%, #ffff00 40%);
}
/*============================
#sec2.bg
============================*/
#sec2 {
  padding: 30px 0 50px;
}
.reason-each {
  width: 33.3333333333%;
  padding: 25px 25px 40px;
  background: #f8f6ee;
  position: relative;
}
.reason-each::before {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
}
/*============================
#sec3
============================*/
#sec3 {
  padding: 70px 0 80px;
}
.sec3-box {
  background: #f8f6ee;
  padding: 20px 30px 30px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 90px auto;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  position: relative;
}
.sec3-box::before {
  content: "";
  width: 95px;
  height: 95px;
  position: absolute;
  top: 0;
}
.sec3-box:nth-of-type(1):before {
  background: url(img/reason1.svg) center center no-repeat;
  background-size: contain;
  left: 0;
}
.sec3-box:nth-of-type(2):before {
  background: url(img/reason2.svg) center center no-repeat;
  background-size: contain;
  right: 0;
}
.sec3-box:nth-of-type(3):before {
  background: url(img/reason3.svg) center center no-repeat;
  background-size: contain;
  left: 0;
}
.sec3-box h3 {
  grid-column: 1;
  grid-row: 1;
  line-height: 1.45;
  padding-left: 90px;
}
.sec3-box:nth-of-type(2) h3 {
  padding: 0;
}
.sec3-box p {
  grid-column: 1;
  grid-row: 2;
  align-self: flex-start;
}
.sec3-box img {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  justify-self: center;
}
.sec3-box:nth-of-type(even) h3, .sec3-box:nth-of-type(even) p {
  grid-column: 2;
}
.sec3-box:nth-of-type(even) img {
  grid-column: 1;
}
/*============================
#sec4.bg
============================*/
#sec4 {
  padding: 30px 0 55px;
}
.style-box {
  background: #fff;
  padding: 20px 30px;
}
.style-each {
  width: 33.3333333333%;
  padding: 15px 20px;
  grid-template-rows: 40px auto auto;
  grid-row-gap: 20px;
}
.style-each + .style-each {
  border-left: 1px dashed #f05a24;
}
.style-each h3 {
  line-height: 1.33;
}
.style-each img {
  -ms-flex-item-align: center;
  align-self: center;
  justify-self: center;
}
/*============================
#sec5
============================*/
#sec5 {
  padding: 50px 0 75px;
}
.slick-list {
  padding-top: 15px;
}
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.voice-each {
  background: #f8f6ee;
  padding: 15px 20px 30px;
  position: relative;
  margin: 0 15px;
  height: auto !important;
}
.voice-each img {
  position: absolute;
  top: -15px;
}
.voice-each p.green {
  margin-left: 105px;
  line-height: 1.2;
}
.voice-each h3 {
  line-height: 1.33;
  letter-spacing: 0;
  white-space: nowrap;
}
.slick-prev, .slick-next {
  width: 30px;
  height: 30px;
  z-index: 5;
}
.slick-prev:before, .slick-next:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.slick-prev:before {
  border-top: 1px solid #f05a24;
  border-left: 1px solid #f05a24;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.slick-next:before {
  border-top: 1px solid #f05a24;
  border-right: 1px solid #f05a24;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*============================
#sec6
============================*/
#sec6 {
  padding: 60px 0 75px;
}
.faq-wrap {
  background: #fff;
  padding: 40px 50px;
}
.faq dt {
  padding: 10px 50px;
  background: #f05a24;
  position: relative;
}
.faq dt::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(img/question.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 13px;
  left: 12px;
}
.faq dt::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.faq dt.open::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.faq dd {
  display: none;
}
.faq dd.open {
  display: block;
}
/*============================
#sec7
============================*/
#sec7 {
  padding: 65px 0;
  background: #f8f6ee;
}
#sec7 .price-card {
  width: 323px;
  height: 283px;
  background: url(img/price-frame.png) center center no-repeat;
  background-size: contain;
  font-family: "Lato";
}
#sec7 .price-card::before {
  content: none;
}
.sec7-copy {
  width: 100%;
  height: 377px;
  background: url(img/sec7-frame.svg) center top no-repeat;
  background-size: contain;
  padding-top: 130px;
}
.copy-inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-right: 20px;
}
.oiwai li {
  padding-left: 28px;
  position: relative;
}
.oiwai li::before {
  content: "";
  width: 23px;
  height: 18px;
  background: url(img/check.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 0;
}
/*============================
#footer
============================*/
#footer {
  padding: 30px 0;
}
#pageTop {
  display: none;
  width: 70px;
  height: 70px;
  border-radius: 35px;
  background: #fff;
  border: 2px solid #f05a24;
  position: fixed;
  bottom: 12px;
  right: 3vw;
  z-index: 999;
  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;
}
@media (max-width: 1000px) {
  /*basic*/
  body {
    font-size: 1.6vw;
  }
  .wrap {
    max-width: 93.33vw;
  }
  /*============================
  .sticky-btn
  ============================*/
  .sticky-btn {
    top: 9vw;
    row-gap: 2vw;
  }
  /*============================
  #nav
  ============================*/
  #nav {
    height: 7vw;
  }
  .logo img {
    height: 7vw;
  }
  /*============================
  #mv
  ============================*/
  .mv-list {
    margin-top: -21.6vw;
    margin-left: -12vw;
  }
  .mv-list li {
    padding: 0.8vw 1vw 0.8vw 4.5vw;
  }
  .mv-list li::before {
    width: 2.3vw;
    height: 1.8vw;
    top: 1.5vw;
    left: 1vw;
  }
  .banner {
    padding: 4.5vw 0;
  }
  .banner img {
    width: 70vw;
  }
  .cta {
    padding: 4vw 0 4.5vw 0;
  }
  .mid-cta {
    padding: 4.5vw 0;
  }
  .cta-top {
    padding: 4.5vw 0 0;
    margin-bottom: 11vw;
  }
  .cta-top::before {
    border-top: 8vw solid #f05a24;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
  }
  .cta-top .wrap::before {
    width: 22vw;
    height: 26.2vw;
    bottom: -16vw;
  }
  .price-card {
    padding: 2.5vw 1.5vw 1vw;
    width: 30.5vw;
    grid-template-rows: 7.5vw 0.2vw 8.5vw 0.2vw 7vw;
  }
  .price-card::before {
    border-width: 0 2.5vw 2.5vw 0;
  }
  .price-card img {
    width: 13.4vw;
  }
  /*============================
  #sec1
  ============================*/
  #sec1 {
    padding: 5vw 0 7vw;
  }
  .table-wrap h3 {
    padding: 2vw 0;
  }
  .table-wrap table th {
    padding: 2vw 2.5vw;
  }
  .table-wrap table td {
    padding: 1vw 1.5vw;
  }
  .table-wrap table tr:first-of-type th:nth-of-type(2) {
    padding: 1vw;
  }
  .table-wrap table tr:first-of-type th:nth-of-type(3) {
    padding: 1vw;
  }
  .sec1-copy {
    width: 57.4vw;
  }
  /*============================
  #sec2.bg
  ============================*/
  #sec2 {
    padding: 3vw 0 5vw;
  }
  #sec2 h2 img {
    width: 80.5vw;
  }
  .reason-each {
    padding: 2.5vw 2.5vw 4vw;
  }
  .reason-each::before {
    width: 7vw;
    height: 7vw;
  }
  .reason1::after {
    width: 19.2vw;
    height: 24vw;
    right: 2vw;
  }
  .reason2::after {
    width: 18vw;
    height: 20.2vw;
    right: 2vw;
  }
  .reason3::after {
    width: 20.3vw;
    height: 16.8vw;
    right: 2vw;
  }
  /*============================
  #sec3
  ============================*/
  #sec3 {
    padding: 7vw 0 0vw;
  }
  #sec3 .w_container {
    padding-left: 0;
    padding-right: 0;
  }
  #sec3 .w_container .w_container_inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  #sec3 h2 img {
    width: 76.9vw;
  }
  .sec3-box {
    padding: 2vw 3vw 3vw;
    grid-template-rows: 9vw auto;
    -webkit-column-gap: 6vw;
    -moz-column-gap: 6vw;
    column-gap: 6vw;
  }
  .sec3-box::before {
    width: 9.5vw;
    height: 9.5vw;
  }
  .sec3-box h3 {
    padding-left: 9vw;
  }
  .sec3-box:nth-of-type(1) img {
    width: 33.6vw;
  }
  /*============================
  #sec4.bg
  ============================*/
  #sec4 {
    padding: 3vw 0 5.5vw;
  }
  #sec4 h2 img {
    width: 75.8vw;
  }
  .style-box {
    padding: 2vw 3vw;
  }
  .style-each {
    padding: 1.5vw 2vw;
    grid-template-rows: 4vw auto auto;
    grid-row-gap: 2vw;
  }
  /*============================
  #sec5
  ============================*/
  #sec5 {
    padding: 5vw 0 7.5vw;
  }
  #sec5 h2 + figure img {
    width: 49.2vw;
  }
  .slick-list {
    padding-top: 1.5vw;
  }
  .voice-each {
    padding: 1.5vw 2vw 3vw;
    margin: 0 1.5vw;
  }
  .voice-each img {
    top: -1.5vw;
    width: 8vw;
  }
  .voice-each p.green {
    margin-left: 10.5vw;
  }
  .slick-prev, .slick-next {
    width: 3vw;
    height: 3vw;
  }
  /*============================
  #sec6
  ============================*/
  #sec6 {
    padding: 6vw 0 7.5vw;
  }
  .faq-wrap {
    padding: 4vw 5vw;
  }
  .faq dt {
    padding: 1vw 5vw;
  }
  .faq dt::before {
    width: 2.5vw;
    height: 2.5vw;
    top: 1.3vw;
    left: 1.2vw;
  }
  .faq dt::after {
    width: 1.2vw;
    height: 1.2vw;
    right: 2.5vw;
  }
  /*============================
  #sec7
  ============================*/
  #sec7 {
    padding: 6.5vw 0;
  }
  #sec7 h2 img {
    width: 76.3vw;
  }
  #sec7 .price-card {
    width: 32.3vw;
    height: 28.3vw;
  }
  .sec7-copy {
    height: 37.7vw;
    padding-top: 13vw;
  }
  .copy-inner {
    padding-right: 2vw;
  }
  .oiwai li {
    padding-left: 2.8vw;
  }
  .oiwai li::before {
    width: 2.3vw;
    height: 1.8vw;
    top: 0.5vw;
  }
  /*============================
  #footer
  ============================*/
  #footer {
    padding: 3vw 0;
  }
  #totop {
    bottom: 10vw;
  }
}
@media (max-width: 768px) {
  .mv-list {
    margin: -48vw auto 0;
    width: 90vw;
    padding: 3vw 3vw 5vw 15vw;
  }
  .mv-list li {
    padding: 3vw 1vw 2vw 6.5vw;
    line-height: 1.28;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .mv-list li::before {
    width: 5vw;
    height: 4vw;
    top: 3.4vw;
  }
  #nav {
    height: 45px;
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  #nav .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }
  .logo img {
    width: 23.73vw;
    height: auto;
  }
  .sticky-btn {
    top: 5px;
    right: 3.33vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-column-gap: 2.66vw;
    -moz-column-gap: 2.66vw;
    column-gap: 2.66vw;
  }
  .sticky-btn img {
    height: 35px;
  }
  .banner img {
    width: 80vw;
  }
  .banner {
    padding: 6vw 0;
  }
  .price-card {
    width: 43.7vw;
    /* grid-template-rows: 10.66vw 1px 11.33vw 0.2vw 10vw; */
    grid-template-rows: 16.66vw 1px 15.33vw 0.2vw 10vw;
  }
  .price-card:first-of-type {
    width: 64vw;
    margin: 0 auto 3vw;
  }
  .video-wrap {
    width: 100%;
    padding-top: 56.25%;
  }
  .cta {
    padding: 12.66vw 0;
  }
  .cta a img {
    width: 80vw;
  }
  .cta-top {
    padding-top: 7.2vw;
    margin-bottom: 16.8vw;
  }
  .cta-top .wrap::before {
    width: 30vw;
    height: 35.93vw;
    bottom: -22vw;
  }
  #sec1 {
    padding: 6.66vw 0 11.33vw;
  }
  #sec1 h2 img {
    width: 84.26vw;
  }
  .price-card img {
    width: 17.86vw;
  }
  .sec1-copy {
    width: 95%;
  }
  .sec1-box-each {
    width: 100%;
  }
  .table-wrap table td {
    padding: 2vw 1.5vw;
  }
  .table-wrap table tr:first-of-type th:nth-of-type(2), .table-wrap table tr:first-of-type th:nth-of-type(3) {
    width: 36.66vw;
  }
  .table-wrap h3 {
    padding: 3vw 0;
  }
  .table-wrap h3 img {
    width: 47.33vw;
  }
  #sec2 {
    padding: 7.33vw 0;
  }
  #sec2 h2 img {
    width: 78.8vw;
    margin-right: 15vw;
    margin-bottom: -3vw;
  }
  .reason-each {
    width: 100%;
    padding: 2.66vw 2.66vw 6vw;
  }
  .reason-each::before {
    width: 10vw;
    height: 10vw;
  }
  .reason1::after {
    width: 25.46vw;
    height: 32vw;
    top: 4.66vw;
    right: 2.66vw;
    margin-top: 0;
  }
  .reason2::after {
    width: 26.26vw;
    height: 29.46vw;
    top: 3vw;
    right: 2.66vw;
    margin-top: 0;
  }
  .reason3::after {
    width: 26.93vw;
    height: 22.26vw;
    top: 4.66vw;
    right: 1vw;
    margin-top: 0;
  }
  .mid-cta {
    padding: 7vw 0;
  }
  #sec3 h2 img {
    width: 90.26vw;
    margin-right: 3vw;
  }
  .sec3-box {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    position: relative;
    padding: 3.2vw 3vw;
  }
  .sec3-box:nth-of-type(2):before {
    right: unset;
    left: 0;
  }
  .sec3-box h3, .sec3-box:nth-of-type(even) h3 {
    grid-column: 1;
    grid-row: 1;
    padding-left: 9vw;
  }
  .sec3-box img {
    grid-column: 1;
    grid-row: 3;
  }
  .sec3-box p, .sec3-box:nth-of-type(even) p {
    grid-column: 1;
    grid-row: 2;
  }
  .sec3-box:nth-of-type(1) img {
    width: 52.4vw;
    margin: 2em auto 1em;
  }
  .sec3-box:nth-of-type(2) img {
    width: 71.73vw;
    margin: 2em auto 1em;
  }
  .sec3-box:nth-of-type(3) img {
    width: 70.53vw;
    margin: 5.33vw auto 5.33vw;
  }
  .sec3-price {
    width: 42vw;
    height: 9.33vw;
  }
  .sec3-box::before {
    width: 10vw;
    height: 10vw;
  }
  #sec4 {
    padding: 5vw 0 10vw;
  }
  #sec4 h2 {
    margin-right: 0;
    -moz-text-align-last: left;
    text-align-last: left;
  }
  #sec4 h2 img {
    width: 72.53vw;
    margin-left: 3vw;
  }
  .style-each {
    width: 100%;
    padding: 7vw 4vw;
    grid-template-rows: auto;
  }
  .style-each + .style-each {
    border-left: none;
    border-top: 1px dashed #f05a24;
  }
  .style-each:nth-of-type(1) img {
    width: 46vw;
  }
  .style-each:nth-of-type(2) img {
    width: 68vw;
  }
  .style-each:nth-of-type(3) img {
    width: 25.33vw;
  }
  #sec5 {
    padding: 10vw 0;
  }
  #sec5 h2 + figure img {
    width: 69.06vw;
  }
  .slick-list {
    padding-top: 4vw;
  }
  .voice-each {
    width: 90%;
    padding: 2.93vw 3.33vw 10vw;
    margin: 0 6vw;
  }
  .voice-each p.green {
    margin-left: 18vw;
  }
  .voice-each img {
    width: 16.26vw;
    height: 16.26vw;
    top: -4vw;
    left: 2vw;
  }
  .voice-each p.orange {
    margin-left: 16.26vw;
  }
  .slick-prev {
    left: 0;
  }
  .slick-next {
    right: 0;
  }
  .slick-prev, .slick-next {
    width: 5vw;
    height: 5vw;
  }
  #sec6 {
    padding: 8vw 0 11.33vw;
  }
  .faq dt {
    padding: 2.66vw 10vw;
    line-height: 1.41;
  }
  .faq dt::before {
    width: 4.26vw;
    height: 4.26vw;
    top: 0;
    bottom: 0;
    left: 3vw;
    margin: auto;
  }
  #sec7 {
    padding: 8vw 0 10vw;
  }
  #sec7 h2 img {
    width: 68.26vw;
  }
  #sec7 .price-card {
    background: #fff;
    width: 43.7vw;
    height: auto;
  }
  #sec7 .price-card:first-of-type {
    width: 64vw;
    margin: 0 auto 4vw;
  }
  #sec7 .price-card::before {
    content: "";
    border-color: transparent #f8f6ee transparent transparent;
  }
  .sec7-copy {
    height: 106vw;
    background: url(img/sp/sec7-copy.svg) center top no-repeat;
    background-size: contain;
    padding-top: 33vw;
  }
  .sec7-copy p {
    letter-spacing: 0.025em;
    line-height: 1.5;
  }
  .oiwai li {
    padding: 1vw 0 1vw 5.33vw;
    white-space: nowrap;
  }
  .oiwai li::before {
    top: 2vw;
    width: 4.26vw;
    height: 3.33vw;
  }
  #totop {
    bottom: 3vw;
    right: 3vw;
    line-height: 1.2;
  }
}
/********************************
** 追加CSS
*********************************/
/********************************
** 全体
*********************************/ :root {
  --font-en: "Oswald", sans-serif;
  --font-hi: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.w_container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.mdLg_only {
  display: block;
}
@media screen and (max-width: 768px) {
  .mdLg_only {
    display: none;
  }
}
.sm_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sm_only {
    display: block;
  }
}
/********************************
** mv
*********************************/
#mv {
  padding-top: min(calc(80 / 1440 * 100vw), 80px);
  padding-bottom: min(calc(40 / 1440 * 100vw), 40px);
  background-image: url(img/fv_pc.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 1440/760;
}
@media screen and (max-width: 768px) {
  #mv {
    padding-top: 0;
    padding-bottom: min(calc(24 / 375 * 100vw),24px);
    background-image: url(img/fv_sp.webp);
    aspect-ratio: 375/400;
    margin-top: min(calc(44 / 375 * 100vw),44px);
  }
}
.mv_inner {
  padding-top: 20px;
  font-family: var(--font-hi);
  text-align: left;
}
.txtWithPen {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  -webkit-transform: translateX(-1em);
  transform: translateX(-1em);
}
.txtWithPen::after {
  position: absolute;
  left: -0.5em;
  bottom: 0.1em;
  content: "";
  width: calc(100% + 3em);
  height: calc(100% + 0.3em);
  background-image: url(./img/r1-mv-pen.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.txtWithPen .mv_ttl {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .txtWithPen {
    font-size: 3.5vw;
  }
}
.mv_ttl2 {
  margin-top: 10px;
  font-size: 40px;
  font-weight: bold;
  color: #f05a24;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.1em;
}
.mv_ttl_inner {
  display: inline-block;
  font-size: min(calc(27 / 1440 * 100vw), 27px);
  padding: 6px 10px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 12px;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .mv_ttl2 {
    margin-right: 0;
    margin-left: 0;
  }
  .mv_ttl_inner {
    display: block;
    font-size: min(calc(16 / 375 * 100vw), 16px);
    padding: 0;
    font-weight: bold;
    margin-bottom: 6px;
    background: none;
 }.mv_ttl_inner p {
    background: #fff;
    display: inline-block;
    padding: min(calc(5 / 375 * 100vw), 5px);
}
}
.mv_ttl2 span {
  color: #333;
  padding: 1vw;
  line-height: 1;
}
.ttl12_small {
  font-size: 40%;
}
.ttl12_big {
  display: inline-block;
  font-size: min(calc(47 / 1440 * 100vw), 47px);
  padding: 10px 15px;
  text-align: left;
  line-height: 1;
  font-weight: bold;
  background: #ffffff;
}
.ttl12_big .orange {
  color: #f05a24;
}
.txtWithLine {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.txtWithLine::before, .txtWithLine::after {
  position: relative;
  display: inline-block;
  content: "";
  background: #333;
  width: 2px;
  height: 1.5em;
  margin: 0 0.5em;
  margin-top: -0.1em;
  vertical-align: middle;
}
.txtWithLine::before {
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
}
.txtWithLine::after {
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}
.mv_ttl3 {
  margin-top: 10px;
  font-size: 33px;
  font-weight: bold;
  color: #333;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mv_ttl3 {
    font-size: 5.8666666667vw;
  }
  .ttl12_big {
    display: inline-block;
    font-size: min(calc(27 / 375 * 100vw), 27px);
    padding: 1vw;
    text-align: left;
    font-weight: bold;
  }
}
.mv_ttl4 {
  padding-top: 40px;
}
.mv_ttl4 .mv_ttl4_01 {
  margin-top: 13px;
  color: #ffffff;
  font-size: min(calc(54 / 1440 * 100vw), 54px);
  line-height: 1.2;
  text-shadow: #0000008f 1px 0 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 3px;
}
.mv_ttl4 .mv_ttl4_02 {
  margin-top: 13px;
  color: #333;
  font-size: min(calc(60 / 1440 * 100vw), 60px);
  background: #F6DE00;
  line-height: 1.2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  padding: 6px 13px;
  width: fit-content;
  letter-spacing: 4px;
}

@media screen and (max-width: 768px) {
  .mv_ttl4 {
    padding-top: min(calc(15 / 375 * 100vw), 15px);
  }.mv_ttl4 .mv_ttl4_01 {
    font-size: min(calc(24 / 375 * 100vw), 24px);
    margin-top: 6px;
    letter-spacing: 1px;
  }
  .mv_ttl4 .mv_ttl4_02 {
    font-size: min(calc(32 / 375 * 100vw), 32px);
    margin-top: 6px;
    letter-spacing: 1px;
  }
}
.mv_ttl5 {
  margin-top: 18px;
  color: #333;
  font-size: 36px;
  line-height: 1.26;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mv_ttl5 {
    font-size: 6.1vw;
  }
}
.mv_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: 0;
}



@media screen and (max-width: 768px) {
  .mv_cont {
    display: block;
    margin-top: 5vw;
  }
}
@media screen and (max-width: 400px) {
  .mv_cont {
    display: block;
    margin-top: 5vw;
  }
}

.mv_cont_img1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 21.1764705882%;
  flex: 0 0 17.176471%;
  margin-top: 40px;
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}
@media screen and (max-width: 768px) {
  .mv_cont_img1 {
    margin-top: 0;
    position: absolute;
    width: 24%;
    bottom: -20px;
    left: -70px;
  }
}
.mv_list {
  position: absolute;
  left: 22%;
  bottom: 28%;
  width: 46%;
  text-align: left;
  padding-left: 3em;
  font-size: clamp(0.875rem, -0.0523rem + 1.9293vw, 1.25rem);
}
@media screen and (max-width: 768px) {
  .mv_list {
    left: 11%;
    width: 63%;
    font-size: 3.7vw;
    line-height: 1.2;
    bottom: clamp(0.5625rem, -2.5983rem + 13.486vw, 3.875rem);
  }
}
.mv_list li {
  position: relative;
  border-bottom: 1px dotted #000;
  padding: 12px 10px 12px 0px;
  line-height: 1;
}
.mv_list li::before {
  content: "";
  width: 23px;
  height: 18px;
  background: url(img/check.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 15px;
  left: -1.5em;
}
@media screen and (max-width: 768px) {
  .mv_list li {
  padding: 8px 10px 8px 0px;
  line-height: 1.2;
  }
  .mv_list li::before {
    top: 10px;
    width: 5vw;
    height: 4vw;
  }
}
/**********
スキマ時間で合格できるスタディング簿記２級・３級講座
**********/
.sec1_inner {
  position: relative;
  font-family: var(--font-hi);
}
.sec1_ttl {
  color: #f05a24;
  font-size: 38px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec1_ttl {
    font-size: 6.2vw;
  }
}
.sec1_ttl span {
  display: block;
  font-size: 26px;
  color: #333;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sec1_ttl span {
    font-size: 4.2666666667vw;
  }
}
.sec1_voiceCont {
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec1_voiceCont {
    margin-top: 8vw;
  }
}
.sec1_img1 {
  width: 165px;
  padding-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .sec1_img1 {
    padding-top: 18.6666666667vw;
    width: 21.3333333333vw;
  }
}
.sec1_voice {
  position: absolute;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec1_voice {
    font-size: 4vw;
  }
}
.sec1_voice--1 {
  top: 7px;
  right: 50px;
}
@media screen and (max-width: 768px) {
  .sec1_voice--1 {
    top: -4.3vw;
    right: 9vw;
    white-space: nowrap;
  }
}
.sec1_voice--2 {
  top: 48px;
  right: clamp(26.3125rem, -5.8322rem + 66.881vw, 39.3125rem);
}
@media screen and (max-width: 768px) {
  .sec1_voice--2 {
    top: 9vw;
    right: 45vw;
    width: 46vw;
  }
}
.sec1_voice--3 {
  top: 107px;
  right: clamp(-3.625rem, -25.7245rem + 45.9807vw, 5.3125rem);
}
@media screen and (max-width: 768px) {
  .sec1_voice--3 {
    top: 8.5333333333vw;
    right: 1vw;
    width: 35vw;
  }
}
.sec1_voice--4 {
  top: 191px;
  right: clamp(25.1875rem, -6.8027rem + 71.5595vw, 38.125rem);
}
@media screen and (max-width: 768px) {
  .sec1_voice--4 {
    top: 32.2vw;
    right: 62vw;
    width: 28vw;
  }
}
.sec1_voice--5 {
  top: 246px;
  right: clamp(-4.1875rem, -24.587rem + 42.4437vw, 4.0625rem);
}
@media screen and (max-width: 768px) {
  .sec1_voice--5 {
    top: 40vw;
    right: 0;
    width: 30vw;
  }
}
.sec1_txt {
  margin-top: 45px;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .sec1_txt {
    margin-top: 12vw;
    font-size: 4vw;
    text-align: left;
  }
}
.sec1_cont {
  background-color: #ffffff;
  margin-top: 48px;
  padding: 34px 0px 52px 200px;
  max-width: 816px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec1_cont {
    margin-top: 12.8vw;
    padding: 5.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
    margin-bottom: 20px;
  }
}
.sec1_cont_ttl {
  color: #f05a24;
  font-size: 27px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 5em;
  border-bottom: 4px solid #f05a24;
}
@media screen and (max-width: 768px) {
  .sec1_cont_ttl {
    font-size: 6.2vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.sec1_cont_txt {
  margin-top: 1em;
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap
}
@media screen and (max-width: 768px) {
  .sec1_cont_txt {
    font-size: 4vw;
    text-align: left;
    white-space: inherit;
  }
}
.sec1_cont_txt span {
  color: #f05a24;
}
.sec1_cont_img {
  position: absolute;
  top: -22px;
  left: -45px;
  width: 231px;
}
@media screen and (max-width: 768px) {
  .sec1_cont_img {
    top: -8vw;
    left: 0px;
    width: 21.3333333333vw;
  }
}
/**********
スタディング簿記講座が選ばれる３つの理由
**********/
.sec3_ttl {
  max-width: 819px;
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec3_ttl {
    padding-left: 0;
  }
}
.sec3_ttl_txt {
  position: absolute;
  top: 26%;
  left: 32%;
  color: #f05a24;
  letter-spacing: 0.1em;
  font-size: clamp(1.6875rem, 1.2239rem + 0.9646vw, 1.875rem);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec3_ttl_txt {
    font-size: 4.5vw;
    white-space: nowrap;
    top: 22%;
    left: 30%;
  }
}
.sec3_ttl_txt .small {
  font-size: 0.7222222222em;
}
.sec3_ttl_txt .large {
  font-size: 1.3888888889em;
}
.sec3_txt {
  margin-top: 2em;
  text-align: center;
  font-size: 20px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .sec3_txt {
    font-size: 4vw;
    text-align: left;
  }
}
.sec3_txt span {
  color: #f05a24;
}
.sec3_img {
  margin-top: 2em;
}
.sec3_reasonCont {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .sec3_reasonCont {
    margin-top: 13.3333333333vw;
    gap: 8vw;
    margin-bottom: 20px;
  }
}
.sec3_reason_item {
  background-color: #f8ebe1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8%;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  font-family: var(--font-hi);
}
@media screen and (max-width: 768px) {
  .sec3_reason_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.6666666667vw;
  }
}
.sec3_reason_item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .sec3_reason_item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.6666666667vw;
  }
}
.sec3_reason_item:nth-of-type(even) .sec3_reason_item_1_head {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sec3_reason_item:nth-of-type(even) .sec3_reason_item_1_head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 3.7333333333vw;
    padding-right: 3.7333333333vw;
  }
}
.sec3_reason_item:nth-of-type(even) .sec3_reason_item_1_body {
  padding: 0 40px 30px 0px;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .sec3_reason_item:nth-of-type(even) .sec3_reason_item_1_body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0 5.3333333333vw;
    font-size: 4vw;
  }
}
.sec3_reason_item:nth-of-type(even) .sec3_reason_item_2 {
  padding: 60px 0px 60px 60px;
}
@media screen and (max-width: 768px) {
  .sec3_reason_item:nth-of-type(even) .sec3_reason_item_2 {
    padding: 0 5.3333333333vw 5.3333333333vw;
  }
}
.sec3_reason_item_1 {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 25px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
}
@media screen and (max-width: 768px) {
  .sec3_reason_item_1 {
    gap: 2.6666666667vw;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.sec3_reason_item_1_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .sec3_reason_item_1_head {
    gap: 3.7333333333vw;
    padding-right: 3.7333333333vw;
  }
}
.sec3_reason_num {
  aspect-ratio: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 112px;
  flex: 0 0 112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  background-color: #f05a24;
  font-size: 19px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .sec3_reason_num {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 13.3333333333vw;
    flex: 0 0 16vw;
    font-size: 3vw;
  }
}
.sec3_reason_num span {
  font-family: var(--font-en);
  font-size: 47px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .sec3_reason_num span {
    font-size: 5.8vw;
  }
}
.sec3_reason_item_ttl {
  color: #f05a24;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .sec3_reason_item_ttl {
    font-size: 4.2vw;
    margin-top: inherit;
  }
}
.sec3_reason_item_1_body {
  padding: 0 0 30px 40px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .sec3_reason_item_1_body {
    padding: 0 5.3333333333vw;
    font-size: 4vw;
  }
}
.sec3_reason_item_2 {
  padding: 60px 60px 60px 0px;
}
.sec3_reason_item_2 figure img {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .sec3_reason_item_2 {
    padding: 0 5.3333333333vw 5.3333333333vw;
  }
}
.sec3_subTtl {
  margin-top: 90px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #f05a24;
}
@media screen and (max-width: 768px) {
  .sec3_subTtl {
    margin-top: 13.3333333333vw;
    font-size: 4.6vw;
  }
}
.sec3_subTxt {
  margin-top: 10px;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .sec3_subTxt {
    margin-top: 2.3333333333vw;
    font-size: 4vw;
    text-align: left;
  }
}
.recommend_table {
  margin-top: 40px;
  line-height: 1.3;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .recommend_table {
    margin-top: 8vw;
  }
}
.recommend_table tr {
  border-bottom: 1px solid #a5a5a5;
}
.recommend_table tr:first-of-type {
  border-top: 1px solid #a5a5a5;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .recommend_table tr:first-of-type {
    height: 10.6666666667vw;
  }
}
.recommend_table tr:first-of-type th:nth-of-type(1) {
  width: 25.5434782609%;
}
@media screen and (max-width: 768px) {
  .recommend_table tr:first-of-type th:nth-of-type(1) {
    width: 19.4666666667%;
  }
}
.recommend_table tr:first-of-type th:nth-of-type(2) {
  width: 37.6086956522%;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .recommend_table tr:first-of-type th:nth-of-type(2) {
    width: 40.5333333333%;
  }
}
.recommend_table tr:first-of-type th:nth-of-type(2) img {
  width: 186px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .recommend_table tr:first-of-type th:nth-of-type(2) img {
    width: 26.6666666667vw;
  }
}
.recommend_table tr:first-of-type th:nth-of-type(3) {
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .recommend_table tr:first-of-type th:nth-of-type(3) {
    font-size: 3.2vw;
  }
}
.recommend_table th, .recommend_table td {
  border-right: 1px solid #a5a5a5;
}
.recommend_table th:first-of-type, .recommend_table td:first-of-type {
  border-left: 1px solid #a5a5a5;
}
.recommend_table .bgOrange {
  background-color: #f8b641;
}
.recommend_table .bgBlue {
  background-color: #a9d8ea;
}
.recommend_table .bgGray {
  background-color: #efefef;
  text-align: center;
  vertical-align: middle;
  height: 90px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .recommend_table .bgGray {
    height: 13.3333333333vw;
    font-size: 3.2vw;
  }
}
.recommend_table .bgYellow {
  background-color: #fcf7df;
  vertical-align: middle;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  background-image: url(./img/r1-table_maru.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18%;
}
@media screen and (max-width: 768px) {
  .recommend_table .bgYellow {
    padding: 2.1333333333vw;
    font-size: 3.6vw;
    background-image: url(./img/r1-table_maru_sp.webp);
    background-size: 30%;
  }
}
.recommend_table .bgSky {
  background-color: #e4f3f8;
  vertical-align: middle;
  font-size: 18px;
  padding: 20px;
  background-image: url(./img/r1-table_batu.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18%;
}
.recommend_table .bgSky .letter_sp_w {
  letter-spacing: 8px;
}
@media screen and (max-width: 768px) {
  .recommend_table .bgSky {
    font-size: 3.6vw;
    padding: 2.1333333333vw;
    background-image: url(./img/r1-table_batu_sp.webp);
    background-size: 30%;
  }
}
.bellCont {
  border-bottom: 1px dashed #f05a24;
}
.sec3_messageCont {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .sec3_messageCont {
    margin-top: 10.6666666667vw;
  }
}
.bellCont_head {
  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;
  gap: 2%;
}
.bellCont_head hr {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px dashed #f05a24;
}
@media screen and (max-width: 768px) {
  .bellCont_head img {
    width: 5.3333333333vw;
  }
}
.sec3_message {
  margin-top: 0.3em;
  margin-bottom: 0.8em;
  font-family: var(--font-hi);
  color: #f05a24;
  font-size: 27px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec3_message {
    font-size: 4.2666666667vw;
  }
}
.sec3_messageImg {
  margin-top: 50px;
  width: 387px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .sec3_messageImg {
    margin-top: 6.6666666667vw;
    width: 53.3333333333vw;
  }
}
.sec3_userVoiceSect {
  margin-top: 50px;
  background-color: #f8ebe1;
  padding: 70px 6%;
}
@media screen and (max-width: 768px) {
  .sec3_userVoiceSect {
    margin-top: 6.6666666667vw;
    padding: 7.6vw 5.33vw;
  }
}
.sec3_userVoiceSect_ttlImg {
  width: 198px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .sec3_userVoiceSect_ttlImg {
    width: 26.6666666667vw;
  }
}
.sec3_userVoiceSect_ttl {
  margin-top: 15px;
  font-size: 38px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .sec3_userVoiceSect_ttl {
    margin-top: 2.6666666667vw;
    font-size: 5.8666666667vw;
  }
}
.sec3_userVoiceSect_ttl .strong {
  color: #f05a24;
  font-size: 30px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 4px solid #f05a24;
}
@media screen and (max-width: 768px) {
  .sec3_userVoiceSect_ttl .strong {
    font-size: 4.8vw;
    border-bottom: 3px solid #f05a24;
  }
}
.sec3_userVoiceSect_ttl .large {
  font-size: 59px;
  font-family: var(--font-en);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec3_userVoiceSect_ttl .large {
    font-size: 9.3333333333vw;
  }
}
.userVoiceCont {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .userVoiceCont {
    margin-top: 8vw;
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
    margin-bottom: 20px;
  }
}
.userVoiceCont_item {
  padding: 38px 30px 45px 36px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 9%);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .userVoiceCont_item {
    padding: 5.3333333333vw 4vw 6.6666666667vw 4vw;
  }
}
.userVoiceCont_item_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d1d1d1;
}
.userVoiceCont_item_head_img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83px;
  flex: 0 0 83px;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .userVoiceCont_item_head_img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16vw;
    flex: 0 0 16vw;
    padding-left: 0;
  }
}
.userVoiceCont_item_head_name {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .userVoiceCont_item_head_name {
    font-size: 4.2666666667vw;
  }
}
.userVoiceCont_item_head_desc {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .userVoiceCont_item_head_desc {
    font-size: 3.2vw;
  }
}
.userVoiceCont_item_txt1 {
  margin-top: 20px;
  color: #f05a24;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .userVoiceCont_item_txt1 {
    margin-top: 2.7vw;
    font-size: 4vw;
  }
}
.userVoiceCont_item_txt2 {
  margin-top: 0.6em;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .userVoiceCont_item_txt2 {
    margin-top: 1.3333333333vw;
    font-size: 3.8vw;
  }
}
/***********************
スタディング簿記2級・3級講座ラインナップ
*************************/
#sec7 h2.mb60 img {
  margin-left: auto;
  margin-right: auto;
}
.bellCont--sec7 {
  position: relative;
  padding-bottom: 4em;
  padding-top: 5em;
}
.sec7_ttl {
  font-size: 34px;
  letter-spacing: 0.1em;
  -webkit-transform: translateX(-0.4em);
  transform: translateX(-0.4em);
  margin-bottom: 50px;
  color: #f05a24;
}
@media screen and (max-width: 768px) {
  .sec7_ttl {
    font-size: 5.3333333333vw;
    margin-bottom: 8vw;
  }
}
.sec7_ttl::after {
  background-image: url(./img/r1-sec7_ttl.svg);
  bottom: -0.2em;
  left: -0.3em;
  width: calc(100% + 1.5em);
}
@media screen and (max-width: 768px) {
  .sec7_ttl::after {
    background-image: url(./img/r1-sec7_ttl_sp.svg);
    bottom: -1.2em;
    left: -0.3em;
    width: calc(100% + 1.5em);
  }
}
.sec7_txt1 {
  color: #f05a24;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .sec7_txt1 {
    margin-top: 0.5em;
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
}
.sec7_txt2 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec7_txt2 {
    margin-top: 1em;
    font-size: 3.9vw;
    line-height: 1.5;
  }
}
.sec7_list {
  margin-top: 20px;
  padding-left: 12%;
}
@media screen and (max-width: 768px) {
  .sec7_list {
    margin-top: 2.6666666667vw;
    padding-left: 5%;
  }
}
.sec7_desc {
  padding-left: 12%;
  padding-right: 20%;
}
@media screen and (max-width: 768px) {
  .sec7_desc {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.sec7_list_img {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .sec7_list_img {
    width: 13.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .sec7_txt1.txtWithLine::before, .sec7_txt1.txtWithLine::after {
    position: absolute;
    height: 80%;
  }
  .sec7_txt1.txtWithLine::before {
    top: 22%;
    left: -13%;
  }
  .sec7_txt1.txtWithLine::after {
    top: 22%;
    right: -13%;
  }
}
.function-ai {
  max-width: 900px;
  background: #f8f0e3;
  margin: 80px auto;
  border-radius: 4px;
}
.function-ai .title {
  position: relative;
}
.function-ai .title h2 {
  font-size: 26px;
  color: #f05a24;
  padding-top: 50px;
}
.function-ai p {
  text-align: center
}
.function-ai .inner {
  padding: 20px 40px 40px;
  display: flex;
  gap: 30px;
  background: #f8f0e3;
}
.function-ai .inner .sec_txt {
  text-align: left;
  font-size: 18px;
  line-height: 1.8;
}
.function-ai .inner .sec_txt a {
  color: #0182C5;
}
.function-ai .span-red-tag {
  color: #fff;
  padding: 2px 20px;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #f05a24;
  border-radius: 2px;
  font-size: 20px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .function-ai .inner {
    padding: 10px 5% 30px;
    display: block;
  }
  .function-ai .title h2 {
    font-size: 5vw;
    line-height: 1.4;
    padding: 30px 5% 0;
  }
  function-ai .inner .sec_txt {
    text-align: left;
    font-size: 18px;
  }
  .function-ai .inner .img {
    padding-bottom: 20px;
  }
  .function-ai .inner .sec_txt {
    font-size: 4vw;
  }
  .function-ai {
    margin: 40px auto 20px;
  }
  .function-ai .span-red-tag {
    font-size: clamp(14px, 4vw, 18px);
  }
}.fixed_nav {
  background-color: rgba(255, 255, 255, 0.85);
  bottom: 0;
  height: 100px;
  left: 0;
  position: fixed;
  transition: visibility 0.3s;
  width: 100%;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .fixed_nav {
    height: 65px;
  }
}

.fixed_nav_inner {
  align-items: center;
  display: flex;
  gap: 40px;
  height: 100%;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .fixed_nav_inner {
    gap: 20px;
  }
}

.btn_dic_box {
  max-width: 400px;
  margin: 0 auto;
}

.btn_dic {
  position: relative;
  margin-top: 110px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.btn_dic a {
  display: block;
}

.btn_dic .sub {
  position: absolute;
  z-index: 1;
  top: -54px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.btn_dic .sub .coupon {
  background: #fff;
  z-index: 1;
  border-radius: 50px;
  padding: 2px 20px;
  white-space: nowrap;
  color: #f05a24;
  border: 2px solid #f05a24;
}

.btn_dic picture {
  opacity: 2;
}

@media screen and (max-width: 767px) {
  .btn_dic {
    font-size: 14px;
  }

  .btn_dic .sub {
    top: -45px;
  }
}

.btn_round {
  background-color: #1B9F39;
  border-radius: 999px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 18px 0;
  text-align: center;
  width: 246px;
}

@media screen and (max-width: 767px) {
  .btn_round {
    font-size: 13px;
    padding: 12px 0;
    width: 168px;
  }
}

.btn_round--red {
  background-color: #fb4b07;
}

@media screen and (max-width: 767px) {
  #pageTop {
    right: 11px;
    bottom: 70px;
  }
}


/*------　日付入りバナー用css　------*/
.bnr_campaign_date {
  position: relative;
  max-width: 690px;
  margin: 0 auto;
}
.bnr_campaign_date .date_in_bnr {
  background: #bfe8ff;
  position: absolute;
  bottom: 27px;
  padding: 1px 40px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #333;
  font-weight: bold;
  font-size: 22px;
}
.date_in_bnr_10 .date_in_bnr {
  background: #ffe29f !important;
}
.bnr_campaign_date .date_in_bnr span {
  font-size: 14px;
}
.bnr_campaign_date img {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .bnr_campaign_date .date_in_bnr {
    bottom: 2.85vw;
    font-size: 2.8vw;
  }
  .bnr_campaign_date .date_in_bnr span {
    font-size: 1.8vw;
  }
}


/*==================================================
 Utility
================================================== */
/* 表示/非表示切り替え
--------------------------------------------- */
.u-sm-only {
  display: none;
}
@media (width <=767px) {
  .u-sm-only {
    display: block;
  }
}
.u-md-only {
  display: none;
}
@media (768px <=width <=1023px) {
  .u-md-only {
    display: block;
  }
}
.u-lg-only {
  display: none;
}
@media (1024px <=width) {
  .u-lg-only {
    display: block;
  }
}
.u-mdLg-only {
  display: none;
}
@media (768px <=width) {
  .u-mdLg-only {
    display: block;
  }
}
.u-smMd-only {
  display: none;
}
@media (width <=1023px) {
  .u-smMd-only {
    display: block;
  }
}