/* Reset
---------------------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

button, fieldset, form, input, label,
legend, select, textarea {
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: none;
  outline: none;
}

a:focus, *:focus {
  outline: none;
}

input[type=button], input[type=submit] {
  -webkit-appearance: none;
}

/* General
---------------------------------------------------------------------------*/
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
* {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
*:focus {
  outline: none;
}
*::before, *::after {
  box-sizing: border-box;
}

main {
  display: block;
}

hr {
  display: block;
  margin: 1em 0;
  border: 0;
  padding: 0;
  height: 1px;
  border-top: 1px solid #cccccc;
}

html {
  font-size: 10px;
}
@media (min-width: 768px) {
  html {
    overflow-x: auto;
  }
}

body {
  position: relative;
  z-index: 0;
  background: #FFEFF3;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #333;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 768px) {
  body {
    min-width: 1280px;
    font-size: 1.6rem;
  }
}
body._contentFixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  body._contentFixed {
    position: relative;
    width: auto;
    height: auto;
  }
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  color: #4A9EDE;
  text-decoration: underline;
  vertical-align: baseline;
}
a:hover, a:focus, a:active {
  text-decoration: none;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    color: inherit;
    text-decoration: inherit;
    pointer-events: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.sp {
  display: block !important;
}
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.pc {
  display: none !important;
}
@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
}

.global_inner {
  position: relative;
  padding: 0 20px;
  width: 100%;
  transition: padding 0.3s;
}
@media (min-width: 768px) {
  .global_inner {
    margin: 0 auto;
    padding: 0 60px;
    max-width: calc(960px + 120px);
  }
}

.login_container {
  padding: 48px 0 0;
  font-size: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .login_container {
    padding: 15vw 0 0;
  }
}
.login_container p {
  padding: 0 0 16px;
  font-size: 15px;
}
.login_container form {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .login_container form {
    margin-bottom: 20vw;
  }
}

.login_password {
  width: 240px;
  height: 40px;
  padding: 0 12px;
  margin: 0 4px;
  background: #f9f9f9;
  border: 1px solid #ccc;
  transition: 0.2s;
}
.login_password:focus {
  border: 1px solid #FFB8CA;
  background: #f2f2f2;
}

.login_submit {
  width: 80px;
  height: 40px;
  margin: 0 4px;
  transition: 0.3s;
  cursor: pointer;
  font-size: 18px;
}
.login_submit:hover {
  background: #FFB8CA;
  color: #fff;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 20px;
}
@media (min-width: 768px) {
  .header {
    padding: 40px 64px;
  }
}
.header .logo {
  max-width: 321px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header .logo {
    max-width: 449.167px;
    margin: 0;
  }
}
.header .logo a {
  display: block;
}
@media (min-width: 768px) {
  .header .logo a {
    transition: opacity 0.3s;
  }
}
@media (min-width: 768px) {
  .header .logo a:hover, .header .logo a:focus {
    opacity: 0.7;
  }
}

.mainVisual {
  padding-block: 110px 40px;
  background: url("/wp/wp-content/themes/kojimachi/images/lp_newcourse/mv_bg_sp.webp") 50% 0% no-repeat;
  background-size: 715px auto;
}
@media (min-width: 768px) {
  .mainVisual {
    padding-block: 64px 69px;
    background-image: url("/wp/wp-content/themes/kojimachi/images/lp_newcourse/mv_bg.webp");
    background-size: 1680px auto;
  }
}
@media (min-width: 768px) {
  .mainVisual .global_inner {
    max-width: 1348px;
    padding: 0 40px;
  }
}
.mainVisual .global_inner .main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .mainVisual .global_inner .main {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 64px;
  }
}
.mainVisual .global_inner .main .textArea {
  display: contents;
}
@media (min-width: 768px) {
  .mainVisual .global_inner .main .textArea {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    padding-top: 46px;
    padding-left: 34px;
  }
}
.mainVisual .global_inner .main .textArea .title {
  order: 0;
  position: relative;
  color: #F07DA7;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
  letter-spacing: 2.4px;
  padding-bottom: 28px;
}
@media (min-width: 768px) {
  .mainVisual .global_inner .main .textArea .title {
    text-align: left;
    font-size: 40px;
    letter-spacing: 4px;
    padding-bottom: 59px;
  }
}
.mainVisual .global_inner .main .textArea .title:before, .mainVisual .global_inner .main .textArea .title:after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: #F07DA7;
  position: absolute;
  bottom: 7px;
  right: calc(50% + 9px);
  transform: translate(50%, -50%);
}
@media (min-width: 768px) {
  .mainVisual .global_inner .main .textArea .title:before, .mainVisual .global_inner .main .textArea .title:after {
    width: 72px;
    right: auto;
    left: 0;
    bottom: 9px;
    transform: none;
  }
}
.mainVisual .global_inner .main .textArea .title:after {
  background: #6DB1E5;
  bottom: 0;
  right: calc(50% - 9px);
}
@media (min-width: 768px) {
  .mainVisual .global_inner .main .textArea .title:after {
    left: 10px;
  }
}
.mainVisual .global_inner .main .textArea .text {
  order: 2;
  margin: 0 8px;
  line-height: 220%; /* 30.8px */
}
@media (min-width: 768px) {
  .mainVisual .global_inner .main .textArea .text {
    order: 1;
    margin: 0;
    font-size: 17px;
    line-height: 240%; /* 40.8px */
    letter-spacing: 0.85px;
  }
}
.mainVisual .global_inner .main .image {
  order: 1;
  overflow: hidden;
  border-radius: 120px 0 0 0;
}
@media (min-width: 768px) {
  .mainVisual .global_inner .main .image {
    order: 2;
    width: 53%;
    max-width: 670px;
    border-radius: 240px 0 0 0;
  }
}
.mainVisual .global_inner .main .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainVisual .global_inner .anchor {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .mainVisual .global_inner .anchor {
    margin: 56px auto 0;
    width: 1040px;
    gap: 32px;
  }
}
.mainVisual .global_inner .anchor li {
  width: calc((100% - 12px) / 2);
}
@media (min-width: 768px) {
  .mainVisual .global_inner .anchor li {
    width: calc((100% - 32px) / 2);
  }
}
.mainVisual .global_inner .anchor li a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  height: 100%;
  padding: 18px 33px 18px 23px;
  border-radius: 8px;
  border: 1px solid #6DB1E5;
  background: url("/wp/wp-content/themes/kojimachi/images/lp_newcourse/bg_anchor.webp") 50% 0% repeat #fff;
  background-size: 24px auto;
  color: #4A9EDE;
  text-decoration: none;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .mainVisual .global_inner .anchor li a {
    min-height: 96px;
    padding: 18px 46px;
    border-width: 2px;
    text-align: center;
  }
  .mainVisual .global_inner .anchor li a:hover {
    background-color: #EDF7FF;
  }
}
.mainVisual .global_inner .anchor li a:after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  line-height: 1;
  font-size: 13px;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translate(0, -50%);
}
@media (min-width: 768px) {
  .mainVisual .global_inner .anchor li a:after {
    font-size: 18px;
    right: 21px;
  }
}
.mainVisual .global_inner .anchor li a span {
  flex: 1;
  font-size: 16px;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .mainVisual .global_inner .anchor li a span {
    font-size: 22px;
    letter-spacing: 1.1px;
  }
}
.mainVisual .global_inner .anchor li a span strong {
  font-weight: 500;
  background: linear-gradient(#FBED9E 0 0) 0 100%/100% 8px no-repeat;
}
@media (min-width: 768px) {
  .mainVisual .global_inner .anchor li a span strong {
    padding: 0 10px 3px;
    background: linear-gradient(#FBED9E 0 0) 0 100%/100% 10px no-repeat;
  }
}
.mainVisual .global_inner .anchor._small {
  margin-top: 12px;
}
@media (min-width: 768px) {
  .mainVisual .global_inner .anchor._small {
    margin-top: 24px;
  }
}
@media (min-width: 768px) {
  .mainVisual .global_inner .anchor._small li {
    width: calc((100% - 64px) / 3);
  }
}
.mainVisual .global_inner .anchor._small li a {
  padding: 12px 15px 12px 20px;
}
@media (min-width: 768px) {
  .mainVisual .global_inner .anchor._small li a {
    min-height: 64px;
    padding: 18px 46px;
  }
}
.mainVisual .global_inner .anchor._small li a span {
  font-size: 14px;
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .mainVisual .global_inner .anchor._small li a span {
    font-size: 18px;
    letter-spacing: 0.9px;
  }
}
.mainVisual .global_inner .anchor._small li a span strong {
  background: none;
}

.footer_gallery .footer_gallery_swiper-container:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
  width: 92%;
}
@media (min-width: 768px) {
  .footer_gallery .footer_gallery_swiper-container:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
    width: 25%;
  }
}
.footer_gallery .footer_gallery_swiper-container .swiper-wrapper {
  transition-timing-function: linear;
}
.footer_gallery .footer_gallery_swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 345/212;
  object-fit: cover;
}

.footer_link {
  padding-block: 40px;
  background: url("/wp/wp-content/themes/kojimachi/images/lp_newcourse/footer_bg_sp.webp") 50% 0% no-repeat;
  background-size: 605px auto;
}
@media (min-width: 768px) {
  .footer_link {
    padding-block: 56px 65px;
    background-image: url("/wp/wp-content/themes/kojimachi/images/lp_newcourse/footer_bg.webp");
    background-size: 1638px auto;
  }
}
.footer_link .global_inner > .title {
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: 2px;
  padding-bottom: 19px;
  margin-bottom: 23px;
}
@media (min-width: 768px) {
  .footer_link .global_inner > .title {
    font-size: 28px;
    letter-spacing: 2.8px;
    margin-bottom: 32px;
  }
}
.footer_link .global_inner > .title:before, .footer_link .global_inner > .title:after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #FFB8CA;
  position: absolute;
  bottom: 0;
  right: calc(50% + 12px);
  transform: translate(50%, -50%);
}
.footer_link .global_inner > .title:after {
  background: #A3D2F6;
  right: calc(50% - 12px);
}
.footer_link .global_inner .link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .footer_link .global_inner .link {
    gap: 20px 40px;
  }
}
.footer_link .global_inner .link li {
  width: calc((100% - 10px) / 2);
}
@media (min-width: 768px) {
  .footer_link .global_inner .link li {
    width: calc((100% - 40px) / 2);
  }
}
.footer_link .global_inner .link li a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 80px;
  padding: 15px 15px 13px;
  border-radius: 8px;
  border: 2px solid #FFB8CA;
  background: #fff;
  color: #F07DA7;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  text-decoration: none;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .footer_link .global_inner .link li a {
    min-height: 64px;
    padding: 16px 40px;
    font-size: 18px;
    letter-spacing: 0.9px;
  }
  .footer_link .global_inner .link li a:hover {
    background: #FFB8CA;
    color: #fff !important;
  }
}
.footer_link .global_inner .link li a:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  line-height: 1;
  font-size: 14px;
}
@media (min-width: 768px) {
  .footer_link .global_inner .link li a:after {
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translate(0, -50%);
  }
}
.footer_link .global_inner .link li a[target=_blank]:after {
  content: "\f2d2";
}
.footer_link .global_inner .link li a._blue {
  border-color: #6DB1E5;
  color: #4A9EDE;
}
@media (min-width: 768px) {
  .footer_link .global_inner .link li a._blue:hover {
    background: #6DB1E5;
  }
}
.footer_link .global_inner .sns {
  position: relative;
  margin-top: 39px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer_link .global_inner .sns {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 36px;
    width: fit-content;
    max-width: calc(100% - 66px);
    min-height: 64px;
    margin: 32px auto 0;
    padding: 20px 40px;
    background: #fff;
  }
}
.footer_link .global_inner .sns .title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
@media (min-width: 768px) {
  .footer_link .global_inner .sns .title {
    height: 100%;
  }
}
.footer_link .global_inner .sns .title:before, .footer_link .global_inner .sns .title:after {
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2240%22%20viewBox%3D%220%200%2020%2040%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M0%200H20V40H0L18.1818%2020L0%200Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .footer_link .global_inner .sns .title:before, .footer_link .global_inner .sns .title:after {
    width: 33px;
    position: absolute;
    top: 0;
  }
}
@media (min-width: 768px) {
  .footer_link .global_inner .sns .title:before {
    left: -32px;
  }
}
.footer_link .global_inner .sns .title:after {
  transform: scaleX(-1);
}
@media (min-width: 768px) {
  .footer_link .global_inner .sns .title:after {
    right: -32px;
  }
}
.footer_link .global_inner .sns .title span {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 48px;
  background: #fff;
  color: #F07DA7;
  font-family: "Sen", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 1.6px;
}
@media (min-width: 768px) {
  .footer_link .global_inner .sns .title span {
    padding: 0;
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}
.footer_link .global_inner .sns .list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
@media (min-width: 768px) {
  .footer_link .global_inner .sns .list {
    gap: 39px;
    flex-shrink: 0;
  }
  .footer_link .global_inner .sns .list:before {
    content: "";
    display: block;
    width: 75px;
    height: 1px;
    background: #FFB8CA;
    margin-right: -5px;
  }
}
.footer_link .global_inner .sns .list li a {
  display: block;
  line-height: 1;
}
@media (min-width: 768px) {
  .footer_link .global_inner .sns .list li a {
    transition: opacity 0.3s;
  }
}
@media (min-width: 768px) {
  .footer_link .global_inner .sns .list li a:hover, .footer_link .global_inner .sns .list li a:focus {
    opacity: 0.7;
  }
}
.footer_link .global_inner .sns .list li a img {
  width: 24px;
}

.footer .footer_top {
  background: #fff;
  padding-block: 36px;
}
@media (min-width: 768px) {
  .footer .footer_top {
    padding-block: 56px 57px;
  }
}
.footer .footer_top .global_inner {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
@media (min-width: 768px) {
  .footer .footer_top .global_inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 56px;
  }
}
.footer .footer_top .global_inner .logo {
  max-width: 308px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer .footer_top .global_inner .logo {
    max-width: 441px;
    margin: 0;
    padding-right: 56px;
    border-right: 1px solid #E2E2E2;
  }
}
.footer .footer_top .global_inner .logo a {
  display: block;
}
@media (min-width: 768px) {
  .footer .footer_top .global_inner .logo a {
    transition: opacity 0.3s;
  }
}
@media (min-width: 768px) {
  .footer .footer_top .global_inner .logo a:hover, .footer .footer_top .global_inner .logo a:focus {
    opacity: 0.7;
  }
}
.footer .footer_top .global_inner .logo a img {
  width: 100%;
}
.footer .footer_top .global_inner address {
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 23.4px */
  letter-spacing: 0.65px;
}
@media (min-width: 768px) {
  .footer .footer_top .global_inner address {
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.8px;
    width: 460px;
  }
}
.footer .footer_bottom {
  padding-block: 16px;
  background: #6DB1E5;
}
@media (min-width: 768px) {
  .footer .footer_bottom {
    padding-block: 23px 21px;
  }
}
.footer .footer_bottom .global_inner .copyright {
  color: #fff;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 140%; /* 18.2px */
  letter-spacing: 0.65px;
}
@media (min-width: 768px) {
  .footer .footer_bottom .global_inner .copyright {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}
.footer .btn_pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 10;
  display: block;
  width: 50px;
  height: 50px;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .footer .btn_pagetop {
    right: 40px;
    bottom: 40px;
  }
}
.footer .btn_pagetop img {
  display: block;
}

.contents_article .flexible_section .section {
  padding-block: 40px 64px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section .section {
    padding-block: 72px 96px;
  }
}
.contents_article .flexible_section .section._white {
  background: url("/wp/wp-content/themes/kojimachi/images/lp_newcourse/bg_white.webp") 50% 0% repeat #fff;
  background-size: 13px auto;
}
.contents_article .flexible_section .section._pink {
  background: url("/wp/wp-content/themes/kojimachi/images/lp_newcourse/bg_pink.webp") 50% 0% repeat;
  background-size: 24px auto;
}
.contents_article .flexible_section p,
.contents_article .flexible_section ul,
.contents_article .flexible_section ol,
.contents_article .flexible_section blockquote {
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section p,
  .contents_article .flexible_section ul,
  .contents_article .flexible_section ol,
  .contents_article .flexible_section blockquote {
    padding-bottom: 29px;
  }
}
.contents_article .flexible_section p:last-child,
.contents_article .flexible_section ul:last-child,
.contents_article .flexible_section ol:last-child,
.contents_article .flexible_section blockquote:last-child {
  padding-bottom: 0;
}
.contents_article .flexible_section p + .btn,
.contents_article .flexible_section ul + .btn,
.contents_article .flexible_section ol + .btn,
.contents_article .flexible_section blockquote + .btn {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section p + .btn,
  .contents_article .flexible_section ul + .btn,
  .contents_article .flexible_section ol + .btn,
  .contents_article .flexible_section blockquote + .btn {
    margin-top: 3px;
  }
}
.contents_article .flexible_section p {
  font-size: inherit;
  line-height: inherit;
}
.contents_article .flexible_section a[rel~=lightbox]:before {
  background: rgba(109, 177, 229, 0.7);
}
.contents_article .flexible_section strong {
  background: unset;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: inherit;
  letter-spacing: 0.8px;
}
.contents_article .flexible_section ul,
.contents_article .flexible_section ol {
  display: flow-root;
  padding-left: 0;
}
.contents_article .flexible_section ul:last-child,
.contents_article .flexible_section ol:last-child {
  margin-bottom: 0;
}
.contents_article .flexible_section ul > li,
.contents_article .flexible_section ol > li {
  position: relative;
  list-style: none;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 180%; /* 23.4px */
  letter-spacing: 0.65px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section ul > li,
  .contents_article .flexible_section ol > li {
    margin: 0 0 16px;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
  }
}
.contents_article .flexible_section ul > li:last-child,
.contents_article .flexible_section ol > li:last-child {
  margin: 0;
}
.contents_article .flexible_section ul ul,
.contents_article .flexible_section ul ol,
.contents_article .flexible_section ol ul,
.contents_article .flexible_section ol ol {
  margin-top: 8px;
}
.contents_article .flexible_section ul > li {
  padding-left: 24px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section ul > li {
    padding-left: 30px;
  }
}
.contents_article .flexible_section ul > li:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M8%200C9.85493%203.3707%2012.6293%206.14507%2016%208C12.6293%209.85493%209.85493%2012.6293%208%2016C6.14507%2012.6293%203.3707%209.85493%200%208C3.3707%206.14507%206.14507%203.3707%208%200Z%22%20fill%3D%22%23EFDD79%22%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  top: 4px;
  left: 0;
}
@media (min-width: 768px) {
  .contents_article .flexible_section ul > li:before {
    top: 7px;
  }
}
.contents_article .flexible_section ol {
  counter-reset: number;
}
.contents_article .flexible_section ol > li {
  padding-left: 32px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section ol > li {
    padding-left: 48px;
  }
}
.contents_article .flexible_section ol > li::before {
  counter-increment: number;
  content: counter(number, decimal) ".";
  left: 0;
  color: #F07DA7;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.08em;
  position: absolute;
  top: 5px;
  left: 0;
}
@media (min-width: 768px) {
  .contents_article .flexible_section ol > li::before {
    font-size: 20px;
    top: 3px;
  }
}
.contents_article .flexible_section table th {
  background: #FFA1B9;
  color: #fff;
}
.contents_article .flexible_section blockquote p:before, .contents_article .flexible_section blockquote p:after {
  color: #FFB8CA;
}
.contents_article .flexible_section * + h1,
.contents_article .flexible_section * + h2,
.contents_article .flexible_section * + h3,
.contents_article .flexible_section * + h4,
.contents_article .flexible_section * + h5,
.contents_article .flexible_section * + h6 {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section * + h1,
  .contents_article .flexible_section * + h2,
  .contents_article .flexible_section * + h3,
  .contents_article .flexible_section * + h4,
  .contents_article .flexible_section * + h5,
  .contents_article .flexible_section * + h6 {
    margin-top: 48px;
  }
}
.contents_article .flexible_section * + h1 + h1,
.contents_article .flexible_section * + h1 + h2,
.contents_article .flexible_section * + h1 + h3,
.contents_article .flexible_section * + h1 + h4,
.contents_article .flexible_section * + h1 + h5,
.contents_article .flexible_section * + h1 + h6,
.contents_article .flexible_section * + h2 + h1,
.contents_article .flexible_section * + h2 + h2,
.contents_article .flexible_section * + h2 + h3,
.contents_article .flexible_section * + h2 + h4,
.contents_article .flexible_section * + h2 + h5,
.contents_article .flexible_section * + h2 + h6,
.contents_article .flexible_section * + h3 + h1,
.contents_article .flexible_section * + h3 + h2,
.contents_article .flexible_section * + h3 + h3,
.contents_article .flexible_section * + h3 + h4,
.contents_article .flexible_section * + h3 + h5,
.contents_article .flexible_section * + h3 + h6,
.contents_article .flexible_section * + h4 + h1,
.contents_article .flexible_section * + h4 + h2,
.contents_article .flexible_section * + h4 + h3,
.contents_article .flexible_section * + h4 + h4,
.contents_article .flexible_section * + h4 + h5,
.contents_article .flexible_section * + h4 + h6,
.contents_article .flexible_section * + h5 + h1,
.contents_article .flexible_section * + h5 + h2,
.contents_article .flexible_section * + h5 + h3,
.contents_article .flexible_section * + h5 + h4,
.contents_article .flexible_section * + h5 + h5,
.contents_article .flexible_section * + h5 + h6,
.contents_article .flexible_section * + h6 + h1,
.contents_article .flexible_section * + h6 + h2,
.contents_article .flexible_section * + h6 + h3,
.contents_article .flexible_section * + h6 + h4,
.contents_article .flexible_section * + h6 + h5,
.contents_article .flexible_section * + h6 + h6 {
  margin-top: 32px;
}
.contents_article .flexible_section h1,
.contents_article .flexible_section h2,
.contents_article .flexible_section h3,
.contents_article .flexible_section h4,
.contents_article .flexible_section h5,
.contents_article .flexible_section h6 {
  display: flow-root;
}
.contents_article .flexible_section h1 {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section h1 {
    margin-bottom: 51px;
  }
}
.contents_article .flexible_section h1:before {
  content: "";
  display: block;
  width: 45px;
  aspect-ratio: 45/50;
  background: url("/wp/wp-content/themes/kojimachi/images/lp_newcourse/icon_light.svg") 50% 50% no-repeat;
  background-size: cover;
  margin: 0 auto 6px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section h1:before {
    width: 60px;
    margin: 0 auto 3px;
  }
}
.contents_article .flexible_section h1 span {
  font-size: 20px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.6px;
  padding-bottom: 4px;
  background: linear-gradient(#FFB8CA 0 0) 0 100%/100% 2px no-repeat;
}
@media (min-width: 768px) {
  .contents_article .flexible_section h1 span {
    font-size: 28px;
    line-height: 230%;
    letter-spacing: 3.36px;
    padding-bottom: 14px;
    background: linear-gradient(#FFB8CA 0 0) 0 100%/100% 3px no-repeat;
  }
}
.contents_article .flexible_section h2 {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  background: url("/wp/wp-content/themes/kojimachi/images/lp_newcourse/bg_title.webp") 50% 0% repeat #FFA1B9;
  background-size: 16px auto;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 140%; /* 23.8px */
  letter-spacing: 1.7px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section h2 {
    gap: 21px;
    padding: 16px 16px 16px 40px;
    font-size: 24px;
    line-height: 160%; /* 38.4px */
    letter-spacing: 2.4px;
    margin-bottom: 32px;
  }
}
.contents_article .flexible_section h2 i {
  padding-top: 4px;
  font-size: 24px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section h2 i {
    font-size: 30px;
  }
}
.contents_article .flexible_section h3 {
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: 2px;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section h3 {
    font-size: 24px;
    letter-spacing: 2.4px;
    padding-bottom: 18px;
    margin-bottom: 32px;
  }
}
.contents_article .flexible_section h3:before, .contents_article .flexible_section h3:after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #FFB8CA;
  position: absolute;
  bottom: 0;
  right: calc(50% + 12px);
  transform: translate(50%, -50%);
}
.contents_article .flexible_section h3:after {
  background: #A3D2F6;
  right: calc(50% - 12px);
}
.contents_article .flexible_section h4 {
  color: #F07DA7;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 1.28px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section h4 {
    font-size: 20px;
    letter-spacing: 1.6px;
    margin-bottom: 20px;
  }
}
.contents_article .flexible_section h5 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section h5 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.contents_article .flexible_section h6 {
  font-weight: 600;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section h6 {
    margin-bottom: 20px;
  }
}
.contents_article .flexible_section .row {
  padding: 0;
}
.contents_article .flexible_section .row + .row {
  margin-top: 32px;
}
.contents_article .flexible_section .row:has(.col) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section .row:has(.col) {
    gap: 32px;
  }
}
.contents_article .flexible_section .row:has(.col).mb_one_column {
  flex-direction: column;
}
@media (min-width: 768px) {
  .contents_article .flexible_section .row:has(.col).mb_one_column {
    flex-direction: row;
  }
}
.contents_article .flexible_section .row:has(.col):before, .contents_article .flexible_section .row:has(.col):after {
  display: none;
}
.contents_article .flexible_section .col {
  float: none;
  margin: 0;
  width: 100%;
}
.contents_article .flexible_section .col.left, .contents_article .flexible_section .col.right {
  width: calc((100% - 16px) / 2);
}
@media (min-width: 768px) {
  .contents_article .flexible_section .col.left, .contents_article .flexible_section .col.right {
    width: calc((100% - 32px) / 2);
  }
}
.contents_article .flexible_section .col.left > a img, .contents_article .flexible_section .col.right > a img {
  width: 100%;
}
@media (min-width: 768px) {
  .contents_article .flexible_section .col.center {
    margin-inline: auto;
  }
}
.contents_article .flexible_section .col.center > a {
  display: block;
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .contents_article .flexible_section .mix_col.left, .contents_article .flexible_section .mix_col.right {
    max-width: unset;
    width: 49%;
  }
}
.contents_article .flexible_section .mix_col.left > a img, .contents_article .flexible_section .mix_col.right > a img {
  width: 100%;
}
.contents_article .flexible_section .mix_col.left {
  float: left;
}
@media (min-width: 768px) {
  .contents_article .flexible_section .mix_col.left {
    margin-right: 32px;
  }
}
.contents_article .flexible_section .mix_col.right {
  float: right;
}
@media (min-width: 768px) {
  .contents_article .flexible_section .mix_col.right {
    margin-left: 32px;
  }
}
@media (max-width: 767px) {
  .contents_article .flexible_section .mb_one_column .mix_col {
    margin-bottom: 24px;
  }
}
.contents_article .flexible_section ._bg {
  padding: 18px !important;
  border-radius: 16px;
  border: 2px solid #FFB8CA;
  background: #fff;
}
@media (min-width: 768px) {
  .contents_article .flexible_section ._bg {
    padding: 30px !important;
  }
}
.contents_article .flexible_section .btn {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .contents_article .flexible_section .btn {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
}
.contents_article .flexible_section .btn .btn_row_file {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 14px 40px;
  border-radius: 8px;
  border: 2px solid #FFB8CA;
  background: #fff;
  color: #F07DA7;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .contents_article .flexible_section .btn .btn_row_file {
    min-width: 300px;
    min-height: 64px;
    font-size: 18px;
    letter-spacing: 0.9px;
  }
  .contents_article .flexible_section .btn .btn_row_file:hover {
    background: #FFB8CA;
    color: #fff;
  }
}
.contents_article .flexible_section .btn .btn_row_file:before {
  display: none;
}
.contents_article .flexible_section .btn .btn_row_file:after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  line-height: 1;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
@media (min-width: 768px) {
  .contents_article .flexible_section .btn .btn_row_file:after {
    font-size: 20px;
    right: 17px;
  }
}
.contents_article .flexible_section .btn .btn_row_file._url:after {
  content: "\f054";
}
.contents_article .flexible_section .btn .btn_row_file._url[target=_blank]:after {
  content: "\f2d2";
}/*# sourceMappingURL=newcourse.css.map */