@charset "UTF-8";
/*
    Template: swell
    Theme Name: snisshin
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.roboto {
  font-family: "Roboto", sans-serif;
}
.mont {
  font-family: "Montserrat", sans-serif;
}
.zenmaru {
  font-family: "Zen Maru Gothic", sans-serif;
}
.fw100 {
  font-weight: 100 !important;
}
.fw200 {
  font-weight: 200 !important;
}
.fw300 {
  font-weight: 300 !important;
}
.fw400 {
  font-weight: 400 !important;
}
.fw500 {
  font-weight: 500 !important;
}
.fw600 {
  font-weight: 600 !important;
}
.fw700 {
  font-weight: 700 !important;
}
.fw800 {
  font-weight: 800 !important;
}
.fw900 {
  font-weight: 900 !important;
}

/*animation*/
/*fadein*/
.fadein.is-animated {
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*slidein*/
.slidein.is-animated {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(180px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%,
  100% {
    opacity: 1;
  }
}

/*zoomin*/
.zoomin.is-animated {
  animation: zoomIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*header*/
.l-header__inner,
.l-fixHeader__inner {
  padding-left: 24px;
  padding-right: 24px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1em;
  text-align: center;
}

.header-cta-left a {
  display: block;
  background: var(--color_deep01);
  color: #fff;
  padding: 0.25em 1em;
  border-radius: 100vmax;
  letter-spacing: 3px;
}

.header-cta-right a {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 1.5em;
  font-weight: 500;
  margin-bottom: -0.5em;
  color: var(--color_main);
}

.header-cta-right a svg {
  width: 1em;
  position: relative;
  top: 3px;
}

.header-cta-right span {
  display: block;
  font-size: 0.75em;
  text-align: right;
}

/*back-ground*/
.grid-bg {
  background-image: linear-gradient(
      0deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    ),
    linear-gradient(
      90deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    );
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}

/*all-notation*/
.center-contents {
  display: flex;
  justify-content: center;
}

.section-thema {
  font-weight: 600;
  font-size: 2em;
  letter-spacing: 3px;
  margin-bottom: -0.15em;
}

.section-title {
  margin: 0 !important;
  opacity: 0.8;
}

.sub-title {
  font-size: 0.9em;
  opacity: 0.8;
  font-weight: 500;
}

.line-img {
  display: flex;
  margin-top: 2em;
}

.line-img.line-center {
  justify-content: center;
}

.line-img img {
  max-width: 150px;
  margin-top: -0.5em;
}

.balloon {
  position: relative;
  display: inline-block;
  padding: 1.2em;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 2px;
  font-size: 0.95em;
  color: #fff;
  font-weight: 600;
  background: #ffa9a9;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 25px solid #ffa9a9;
  z-index: 0;
}

.lead-wrap {
  display: flex;
  justify-content: center;
}

.lead-wrap .wp-block-group__inner-container {
  max-width: 600px;
}

.sp-display {
  display: none !important;
}

/*slider*/
.slider {
  width: 94%;
  margin: 0 auto;
  padding: 0 !important;
}

.slider img {
  width: 100%;
  height: auto;
}

.slider .slick-slide {
  margin: 0 10px;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 15px;
  width: 15px;
}

.slick-prev {
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  right: -1.5%;
  transform: rotate(45deg);
}

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
  padding-left: 0 !important;
  display: flex;
  justify-content: center;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  all: unset;
  color: transparent;
  outline: none;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #ccc;
}

.slick-dots .slick-active button {
  background: #333;
}

/*section-mv*/
.section-mv {
  padding: 5em 0 7em !important;
}

.call {
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-size: 1.3em;
  margin-bottom: 0.25em;
}

.call .wp-block-group__inner-container::after {
  background-color: #fff;
  border-radius: 5px;
  content: "";
  display: block;
  height: 4px;
  margin-top: 2px;
}

.catch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin: 1.5em auto 0.5em;
}

.catch img {
  width: 2em;
}

.catch h2 {
  margin: 0;
  text-align: center;
  color: #fff;
  letter-spacing: 8px;
  font-size: 2em;
}

.catch h2 span {
  color: #fff756;
  font-size: 1.1em;
}

.catch img:last-child {
  transform: rotate(180deg);
}

.sub-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 0.9em;
  letter-spacing: 2px;
  font-weight: 500;
}

.mv-note-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  max-width: 500px;
  background: #fff;
  padding: 1em;
  font-size: 0.8em;
  border-radius: 10px;
  letter-spacing: 0;
}

.mv-note {
  display: flex;
  justify-content: center;
}

.mv-note-inner span {
  line-height: 1.5;
  width: 100%;
}

.mv-note-inner a {
  width: 80%;
  display: inline-block;
  text-align: center;
  background: #fff;
  color: var(--color_main);
  font-weight: 500;
  padding: 1em;
  border-radius: 100vmax;
}

.mv-img {
  position: relative;
  z-index: 5;
  bottom: 1.5em;
}

.mv-img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 450px;
}

/*section-blog*/
.section-blog {
  padding-top: 6em !important;
}

.section-blog .swell-block-button {
  display: flex;
}

.section-blog .swell-block-button a {
  font-weight: 400;
  letter-spacing: 1px;
}

@media (min-width: 960px) {
  .-col4 .-type-card.-pc-col3 .p-postList__item,
  .-col4 .-type-thumb.-pc-col3 .p-postList__item {
    width: calc(100% / 4);
  }
}

.section-blog .p-postList__thumb {
  border-radius: 15px;
  background: #fff;
}

.section-blog .p-postList__body {
  display: flex;
  flex-direction: column-reverse;
  padding-top: 0.25em !important;
}

.section-blog .p-postList .p-postList__title {
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 600;
  font-size: smaller;
}

/*section-cta*/
.section-cta h2 {
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 1.8em;
  margin-bottom: 0.5em;
}

.section-cta .wp-block-group {
  display: flex;
  justify-content: center;
  font-size: 0.9em;
  position: relative;
  left: 0.35em;
}

.section-cta .wp-block-group__inner-container {
  max-width: 430px;
}

.section-cta .wp-block-group::before,
.section-cta .wp-block-group::after {
  content: "";
  border: 1px solid;
  transform: rotate(-15deg);
  margin-right: 1em;
}

.section-cta .wp-block-group::after {
  transform: rotate(15deg);
  margin-left: 1em;
}

.section-cta .cta-list-title {
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 0.95em;
}

.section-cta .roboto {
  font-size: 2em;
  font-weight: 500;
  margin-bottom: -0.45em;
}

.section-cta .roboto a {
  color: unset;
}

.section-cta .swell-block-button a {
  font-weight: 600;
  letter-spacing: 3px;
  padding: 1em 2em;
}

/*section-result*/
.section-result .center-contents,
.section-result .slider {
  position: relative;
  bottom: 2em;
}

.section-result .slick-slide {
  background: #fff;
  padding: 1em;
  border-radius: 20px;
  letter-spacing: 1px;
}

.result-flex {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5em;
}

.result-flex img:first-child {
  aspect-ratio: 1/1;
  width: 15%;
}

.result-flex-right span {
  font-size: 0.8em;
  letter-spacing: 0;
  opacity: 0.6;
  font-weight: 500;
}

.result-flex img:last-child {
  max-width: 120px;
}

.section-result .review1 {
  font-size: 0.75em;
  opacity: 0.8;
  margin: 0.5em auto;
}

.section-result .review2 {
  font-size: 0.85em;
  line-height: 1.4;
}

/*section-message*/
.section-message .swell-block-column:last-child figure {
  height: 100%;
}

.section-message .swell-block-column:last-child figure img {
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/*section-problem*/
.section-problem .swell-block-column {
  display: flex;
  justify-content: center;
  position: relative;
}

.section-problem .swell-block-column:first-child {
  left: 5em;
}

.section-problem .swell-block-column:nth-child(2) {
  right: 5em;
}

.section-problem .swell-block-column p {
  width: fit-content;
  background: #fff;
  padding: 1em;
  border-radius: 30px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-problem figure {
  position: relative;
  bottom: 7em;
  margin-bottom: -6em;
}

.section-problem figure img {
  width: 7em;
}

.problem-message {
  font-size: 1.8em;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 5px;
}

.triangle-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0;
  z-index: 5;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 65px solid transparent;
  border-left: 65px solid transparent;
  border-top: 30px solid #d8f8e7;
  border-bottom: 0;
  position: absolute;
}

/*section-comparison*/
.section-comparison .c-tabList {
  gap: 1em;
}

.section-comparison .c-tabList__item button {
  background: var(--color_main) !important;
  opacity: 1 !important;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.5;
  border-radius: 10px 10px 0 0;
}

.section-comparison .c-tabList__item:last-child button {
  background: var(--color_deep02) !important;
}

.section-comparison .c-tabList__button strong {
  font-weight: 500;
}

.section-comparison .is-style-default .c-tabBody {
  border: none;
  padding: 0;
}

.section-comparison .c-tabBody__item {
  background: var(--color_main);
  padding: 2em;
  border-radius: 0 0 20px 20px;
}

.section-comparison #tab-ce03307e-1 {
  background: var(--color_deep02);
}

.section-comparison .c-tabBody .swell-block-column {
  background: #fff;
  padding: 1em;
  border-radius: 20px;
}

.section-comparison .c-tabBody .swell-block-column h3 {
  font-size: 1em !important;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0 auto 0.5em;
}

.section-comparison .wp-block-group {
  padding-bottom: 0;
}

.section-comparison .wp-block-group__inner-container {
  background: #ed7878;
  padding: 1em;
  border-radius: 20px;
}

.section-comparison #tab-ce03307e-1 .wp-block-group__inner-container {
  background: #3faad2;
}

/*section-gallery*/
.auto-scroll-gallery {
  overflow: hidden;
  position: relative;
  width: 100vw;
}

.scroll-track {
  display: flex;
  width: fit-content;
  will-change: transform;
  min-width: 3000px;
}

.scroll-items {
  display: flex;
}

.scroll-items img {
  aspect-ratio: 16 / 9;
  width: 300px;
  height: auto;
  object-fit: cover;
}

.left-flow .scroll-track {
  animation: scroll-left 60s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-30%);
  }
}

.right-flow .scroll-track {
  transform: translateX(-30%);
  visibility: hidden;
  display: flex;
  width: fit-content;
  min-width: 3000px;
  will-change: transform;
}

.right-flow .scroll-track.start {
  visibility: visible;
  animation: scroll-right 60s linear infinite;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-30%);
  }

  100% {
    transform: translateX(0%);
  }
}

/*section-goal*/
.section-goal .section-title {
  opacity: 1;
  letter-spacing: 1px;
}

.section-goal h3 {
  color: var(--color_main);
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}

.section-goal .swell-block-column:nth-child(2) h3,
.section-goal .swell-block-column:nth-child(5) h3 {
  color: var(--color_deep02);
}

.section-goal .swell-block-column:nth-child(3) h3 {
  color: var(--color_deep03);
}

.section-goal .swell-block-column img {
  border-radius: 30px;
}

/*section-voice*/
.section-voice .review2 {
  font-size: 0.85em;
  opacity: 0.9;
  margin-top: 1em;
}

/*section-course*/
.section-course .swell-block-columns__inner {
  justify-content: center;
}

.section-course .swell-block-column {
  background: #fff5f5;
  padding: 1em 1.5em;
  border-radius: 30px;
}

.section-course .swell-block-column .grade {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  gap: 0.5em;
  font-size: 0.8em;
}

.section-course .swell-block-column .grade li {
  color: #fff;
  padding: 0.15em 1em;
  border-radius: 100vmax;
  letter-spacing: 2px;
}

.section-course .swell-block-column .grade .elementary {
  background: var(--color_deep03);
}

.section-course .swell-block-column .grade .middle {
  background: var(--color_deep02);
}

.section-course .swell-block-column .grade .high {
  background: var(--color_deep04);
}

.section-course .swell-block-column img {
  border-radius: 15px;
}

.section-course .swell-block-column h3 {
  margin: 0 auto 0.25em;
  font-size: 1.8em;
  font-weight: 600;
}

.section-course table {
  display: flex;
  justify-content: center;
}

.section-course tbody,
.section-course tr,
.section-course td {
  border: none !important;
  padding: 0 !important;
}

.section-course td:first-child {
  padding-right: 0.5em !important;
}

.section-course td span {
  font-family: "Roboto", sans-serif;
  color: var(--color_main);
  font-weight: 500;
}

.section-course .c-tabList__button {
  font-size: 0.9em;
  line-height: 1.3;
  color: #777;
  letter-spacing: 1px;
}

.section-course h4 {
  text-align: center;
  margin-top: 0;
  color: var(--color_main);
  font-weight: 600;
  font-size: 0.95em;
  margin-bottom: 0.5em;
  letter-spacing: 3px;
}

.section-course .timetable {
  text-align: center;
  font-size: 0.9em;
  margin-bottom: -0.75em;
}

.price-wrap {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.15em;
  margin-bottom: 0em;
}

.price-wrap span:nth-child(2) {
  font-family: "Roboto", sans-serif;
  color: var(--color_main);
  font-weight: 500;
  font-size: 1.8em;
}

.section-course .cap_box_content {
  padding: 1.5em 1em 1em;
  border-radius: 10px;
  background: #fff;
  color: var(--color_main);
  font-size: 0.9em;
}

.section-course .cap_box_ttl {
  border-radius: 100vmax;
}

/*section-faq*/
.section-faq .swell-block-faq__item {
  border: none;
  background: #fff990;
  border-radius: 20px;
}

.section-faq .faq_q {
  color: var(--color_main);
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  border: none;
  padding-bottom: 0.5em;
}

.section-faq .faq_a p {
  font-size: 0.9em;
}

/*section-access*/
.section-access .wp-block-gallery img {
  border-radius: 20px;
}

.section-access iframe {
  border: 5px solid #fff !important;
  border-radius: 20px;
}

/*footer*/
#custom_html-2 {
  margin-top: 0;
}

.w-beforeFooter {
  margin-top: 0;
}

.top .l-content {
  margin-bottom: 0;
}

[data-scrolled="true"] .line-fix-btn {
  opacity: 1;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
  visibility: visible;
}

.line-fix-btn {
  opacity: 0;
  position: fixed;
  right: 0;
  top: 30vh;
  z-index: 2;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.line-fix-btn a {
  font-weight: 500;
  padding: 1em;
  letter-spacing: 2px;
  border-radius: 10px 0 0 10px;
}

.line-fix-btn svg {
  position: relative;
  right: -0.125em;
}

#custom_html-4 {
  display: flex;
  justify-content: center;
  text-align: center;
}

#custom_html-4 figure {
  float: unset;
  display: flex;
  justify-content: center;
}

/*page*/
.c-pageTitle {
  display: flex;
  justify-content: center;
}

.c-pageTitle span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.2em;
  letter-spacing: 2px;
  border-bottom: 5px solid var(--color_main);
  padding-bottom: 0.25em;
  font-weight: 600;
}

/*list*/
.c-postTitle__ttl {
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
}

.p-postList__thumb {
  border-radius: 15px;
  background: #fff;
}
.p-articleThumb__img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  box-shadow: unset;
}

.p-postList__title {
  font-weight: 600 !important;
  font-family: "Zen Maru Gothic", sans-serif;
}

.p-postList__excerpt {
  font-size: 0.85em !important;
  opacity: 0.75;
}

.p-authorBox__position {
  font-style: unset;
}

.p-authorBox__desc.u-thin {
  text-align: left;
}

li.cat-item.cat-item-2694,
li.cat-item.cat-item-2584 {
  display: none;
}

/*page-contact*/
.page-id-2290 .line-fix-btn {
  display: none;
}

.contact-flex-wrap .swell-block-button a {
  font-weight: 500;
}

/*page-company*/
.page-company .wp-block-media-text__media img {
  border-radius: 30px;
}

.page-company th {
  font-weight: 600 !important;
  font-size: 0.9em;
  letter-spacing: 2px;
}

.page-company th,
.page-company td {
  padding-top: 1.5em !important;
  padding-bottom: 1.5em !important;
}

/*page-privacy*/
.page-privacy {
  font-size: 0.9em;
  padding-bottom: 4em !important;
}

.page-privacy h3 {
  font-weight: 600;
  margin-bottom: 1em;
}

@media not all and (min-width: 960px) {
  /*header*/
  .w-header.pc_ {
    display: block !important;
  }

  .l-header__customBtn.sp_ {
    display: none;
  }

  /*section-problem*/
  .section-problem .pc_ {
    display: block !important;
  }

  .section-problem .swell-block-column:first-child {
    left: 4em;
  }

  .section-problem .swell-block-column:nth-child(2) {
    right: 4em;
  }

  /*section-goal*/
  .section-goal .swell-block-columns {
    margin-left: -4vw;
    margin-right: -4vw;
  }

  .section-goal .swell-block-columns__inner {
    display: block;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
    overflow-x: scroll;
    padding-right: var(--swl-fw_inner_pad, 0);
    margin: 0;
  }

  .section-goal .swell-block-column {
    scroll-snap-align: center;
    display: inline-block;
    width: 180px;
    white-space: normal;
    overflow: hidden;
    vertical-align: top;
  }

  .section-goal .swell-block-column:first-child {
    margin-left: 4vw;
  }

  /*footer*/
  .line-fix-btn {
    right: 0;
    left: 0;
    top: unset;
    bottom: 0.5em;
    z-index: 2;
    -ms-writing-mode: unset;
    writing-mode: unset;
    text-orientation: unset;
  }

  .line-fix-btn a {
    border-radius: 100vmax;
    padding: 1em 2em;
    font-size: 1.2em;
  }

  .l-footer__foot {
    margin-bottom: 5em;
  }
}

@media not all and (min-width: 600px) {
  /*header*/
  .header-cta-left {
    display: none;
  }

  /*all-notation*/
  .section-thema,
  .section-title,
  .sub-title {
    text-align: center;
  }

  .line-img {
    justify-content: center;
  }

  .pc-display {
    display: none !important;
  }
  .sp-display {
    display: block !important;
  }

  .sp-tl {
    text-align: left;
  }

  /*section-mv*/
  .call {
    font-size: 1.1em;
    margin-bottom: 1em;
  }

  .catch h2 {
    font-size: 1.8em;
    letter-spacing: 1px;
  }

  .catch img {
    width: 1.3em;
  }

  /*section-blog*/
  .section-blog {
    padding-top: 3em !important;
  }

  .section-blog .-type-card.-sp-col1 .p-postList__item,
  .section-blog .-type-thumb.-sp-col1 .p-postList__item {
    width: 50%;
  }

  /*section-cta*/
  .section-cta h2 {
    font-size: 1.5em;
  }

  .section-cta .wp-block-group__inner-container {
    max-width: 250px;
  }

  /*section-result*/
  .section-result .center-contents,
  .section-result .slider {
    bottom: 1em;
  }

  /*section-problem*/
  .section-problem .swell-block-column:first-child {
    left: unset;
  }

  .section-problem .swell-block-column:nth-child(2) {
    right: unset;
  }

  .section-problem .pc_ {
    display: none !important;
  }

  .section-problem figure {
    bottom: 3em;
    margin-bottom: -2em;
  }

  .problem-message {
    font-size: 1.5em;
    letter-spacing: 3px;
  }

  /*section-comparison*/
  .section-comparison .c-tabBody .swell-block-column h3 {
    font-size: 1.2em !important;
  }

  .section-comparison .wp-block-group {
    padding-left: 0;
    padding-right: 0;
  }
}
