@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

@media screen and (max-width: 768px) {
  .br-pc { display: none; }
}
@media screen and (min-width: 768px) {
  .br-sp { display: none; }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7777;
  background-color: rgba(255, 255, 255, 0.7);
}

.header.change-color {
  background-color: rgb(255, 255, 255);
  transition: background-color 0.4s ease-out;
}

.header__inner {
  width: 100%;
  max-width: 1500px;
  height: inherit;
  padding: 0 30px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .header__inner {
    flex-wrap: nowrap;
    flex-direction: row;
  }
}

.header__logo {
  width: 12.5rem;
  padding: 0.625rem;
}
@media screen and (min-width: 1024px) {
  .header__logo {
    padding: 1.5rem 0.625rem;
  }
}

.header__logo img {
  width: 100%;
}

.nav__items {
  padding-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0;
       column-gap: 0;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .nav__items {
    -moz-column-gap: 0.4rem;
         column-gap: 0.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .nav__items {
    padding-bottom: 0;
  }
}

.nav__item a {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000;
  display: block;
  position: relative;
  opacity: 1;
  padding: 0.3125rem;
  transition: color 0.3s;
}
@media screen and (min-width: 1024px) {
  .nav__item a {
    padding: 1.5625rem 0.3125rem;
  }
}
.nav__item a:hover {
  color: #ff6701;
  transition: color 0.3s;
}

.hamburger {
  position: fixed;
  z-index: 8888;
  top: 20px;
  right: 15px;
  width: 35px;
  height: 35px;
  background-color: #333;
}

.hamburger.is-active {
  top: 20px;
  right: 15px;
}

.hamburger span {
  position: absolute;
  left: 5px;
  display: inline-block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: transform 0.3s;
}

.hamburger span:nth-child(1) {
  width: 25px;
  top: 7px;
  transition: transform 0.3s;
}

.hamburger span:nth-child(2) {
  width: 25px;
  top: 15px;
  transition: transform 0.3s;
}

.hamburger span:nth-child(3) {
  width: 25px;
  top: 23px;
  opacity: 1;
  transition: opacity 0.3s;
}

.hamburger.is-active span:nth-child(1) {
  top: 20px;
  transform: rotate(-45deg);
  background-color: #fff;
  transition: transform 0.3s;
}

.hamburger.is-active span:nth-child(2) {
  top: 20px;
  transform: rotate(45deg);
  background-color: #fff;
  transition: transform 0.3s;
}

.hamburger.is-active span:nth-child(3) {
  opacity: 0;
  transition: opacity 0.3s;
}

.drawer-menu {
  position: fixed;
  z-index: 7777;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #333;
  display: none;
}

.drawer-menu {
  -webkit-animation-name: drawerAnime;
          animation-name: drawerAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes drawerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes drawerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.drawer-menu__inner {
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  width: 100%;
  height: inherit;
  padding: 50px 50px;
  overflow: hidden;
  overflow-y: scroll;
}

.drawer-menu__item {
  text-align: center;
  border-bottom: 1px solid #000;
  width: 100%;
}

.drawer-menu__item:first-child {
  border-top: 1px solid #000;
}

.drawer-menu__link {
  font-size: 14px;
  line-height: 1.172;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  padding: 12px;
  display: block;
}

.drawer-menu__item.sns {
  display: flex;
  -moz-column-gap: 4%;
       column-gap: 4%;
}

.drawer-menu__link.sns__x-link,
.drawer-menu__link.sns__insta-link,
.drawer-menu__link.sns__youtube-link {
  display: inline;
}

.circle-bg {
  position: fixed;
  z-index: 3;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #333;
  transform: scale(0);
  top: -50px;
  right: -50px;
  transition: all 1s;
}

.circle-bg.is-active {
  transform: scale(50);
}

.main-fv {
  width: 100%;
  position: relative;
  background: #4e1c21;
  padding: 100px 15px 20px 15px;
}
.main-fv__inner {
  position: relative;
  padding: 20px;
}
.main-fv__inner::before,
.main-fv__inner::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 1px solid transparent;
  pointer-events: none;
}

.main-fv__inner::before {
    border-image: linear-gradient(
    90deg,
    #d4af37,
    #ffd700,
    #fff8dc,
    #ffd700,
    #d4af37
  ) 1;
}

.main-fv__inner::after {
  top: 4px; left: 4px; right: 4px; bottom: 4px; /* 内側にずらす */
  border-image: linear-gradient(
    90deg,
    #d4af37,
    #ffd700,
    #fff8dc,
    #ffd700,
    #d4af37
  ) 1;
}
.main-fv h1 {
}
.main-fv__container {
  background: rgba(255,255,255,.7);
  padding: 15px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .main-fv {
    padding: 140px 40px 40px 40px;
  }
  .main-fv__inner {
    padding: 40px;
  }
  .main-fv h1 {
    max-width: 560px;
    margin: 0 auto;
  }
  .main-fv__container {
    max-width: 800px;
    padding: 20px;
    font-size: 20px;
    text-align: center;
    margin: 60px auto 0 auto;
  }
}

.index-main-bn-wrap {
  background: #fff;
  padding: 20px 0 0 0;
}
.index-main-bn-wrap__inner {
  padding: 15px;
}
.index-main-bn-wrap__inner div {
  margin-bottom: 15px;
}
.index-main-bn-wrap__inner div:last-child {
  margin-bottom: 0;
}
.index-main-bn-wrap__inner img {
}

@media screen and (min-width: 768px) {
  .index-main-bn-wrap {
    padding: 30px 0 0 0;
  }
  .index-main-bn-wrap__inner {
    max-width: 1000px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-top: 30px;
  }
  .index-main-bn-wrap__inner div:nth-child(even) {
    margin-left: 15px;
  }
  .index-main-bn-wrap__inner div:nth-child(odd) {
    margin-right: 15px;
  }
  .index-main-bn-wrap__inner div:last-child {
    margin-bottom: 15px;
  }
  .index-main-bn-wrap__inner img {}
}

.main-works {
  padding-bottom: 1.875rem;
  background-image: url(../new_index/new-index/images/index-works_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
@media screen and (min-width: 768px) {
  .main-works {
    padding-bottom: 3.125rem;
    background-size: cover;
  }
}

.main-works__title {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .main-works__title {
    margin-top: 6.25rem;
  }
}

.subtitle.main-works__subtitle {
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .subtitle.main-works__subtitle {
    margin-top: 1.875rem;
  }
}

.main-works__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .main-works__text {
    max-width: 62.5rem;
    margin-top: 2.5rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.main-works__button {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .main-works__button {
    margin-top: 3.125rem;
  }
}

.main-works__comics {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .main-works__comics {
    margin: 4.375rem auto 0 auto;
    max-width: 1000px;
  }
}

.main-message {
  padding-top: clamp(5.625rem, 4.018rem + 8.036vw, 11.25rem);
  padding-bottom: clamp(5.625rem, 4.018rem + 8.036vw, 11.25rem);
  display: flex;
  align-items: center;
  background-image: url(../new_index/new-index/images/index-message_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.subtitle.main-message__subtitle {
  text-align: center;
}

.text.main-message__text {
  color: #fff;
  max-width: 62.5rem;
  margin-top: 1.875rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .text.main-message__text {
    margin-top: 3.125rem;
  }
}

.main-style__wrapper {
    padding: 0 0 2rem 0;
}
@media screen and (min-width: 768px) {
  .main-style__wrapper {
    padding: 1rem 0 0 0;
    display: flex;
  }
}

.main-style__container {
  padding: 3rem 0 0 0;
}
@media screen and (min-width: 768px) {
  .main-style__container {
    min-height: clamp(20.813rem, 16.08rem + 23.661vw, 37.375rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url(../new_index/new-index/images/index-style_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    padding: 0 0 0 5vw;
  }
}
@media screen and (min-width: 1024px) {
  .main-style__container {
    width: 40%;
  }
  .main-style__wrapper:nth-child(2) .main-style__container {
    background-image: url("../new_index/new-index/images/index-style_3_new.jpg");
  }
}


@media screen and (min-width: 768px) {
  .title.main-style__title {
    text-align: left;
    margin-left: 0;
  }
}

.subtitle.main-style__subtitle {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .subtitle.main-style__subtitle span {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .subtitle.main-style__subtitle {
    margin-top: 1.875rem;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.main-style__body {
}
@media screen and (min-width: 768px) {
  .main-style__body {
    flex: 1;
    min-height: clamp(20.813rem, 16.08rem + 23.661vw, 37.375rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("../new_index/new-index/images/index-style_2_new.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .main-style__wrapper:nth-child(2) .main-style__body {
    background-image: url("../new_index/new-index/images/index-style_4_new.jpg");
  }
}


.text.main-style__text {
  margin: 10px 15px 0 15px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .text.main-style__text {
    background-color: rgba(255, 255, 255, 0.9);
    max-width: 62.5rem;
    margin: 0 auto;
    width: 80%;
    padding: 1.875rem;
    line-height: 2;
  }
}

.main-style__img {
  margin: 20px 15px 0 15px;
}
.main-style__img img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .main-style__img {
    display: none;
  }
}

.main-feature {
  margin-top: 1rem;
  padding-top: 3.125rem;
  padding-bottom: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .main-feature {
    padding-top: 4.375rem;
    padding-bottom: 6.25rem;
  }
}

.main-feature::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(#fff2c7 30%, transparent 31%), radial-gradient(#fff2c7 30%, transparent 31%);
  background-size: 30px 30px;
  background-position: 0px 15px, 15px 30px;
  z-index: -10;
}

.subtitle.main-feature__subtitle {
  text-align: center;
  margin-top: 1.875rem;
}

.main-feature__lists {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .main-feature__lists {
    margin-top: 3.125rem;
  }
}

.feature-item {
  border: 6px solid #000;
}
@media screen and (min-width: 768px) {
  .feature-item {
    display: flex;
    background: url("../images/index_tokushoku_pc1.jpg") no-repeat 50% 50%;
    background-size: cover;
  }
}

.feature-item:not(:first-child) {
  margin-top: 2.8125rem;
}

.feature-item__container {
}
@media screen and (min-width: 768px) {
  .feature-item__container {
    min-height: clamp(20.063rem, 17.938rem + 10.625vw, 27.5rem);
    padding: 0.9375rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .feature-item:nth-child(2) {
    background: url("../images/index_tokushoku_pc2.jpg") no-repeat 50% 50%;
    background-size: cover;
  }

  .feature-item:nth-child(3) {
    background: url("../images/index_tokushoku_pc3.jpg") no-repeat 50% 50%;
    background-size: cover;
  }

  .feature-item:nth-child(4) {
    background: url("../images/index_tokushoku_pc4.jpg") no-repeat 50% 50%;
    background-size: cover;
  }
}


.feature-item__title {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  color: #000;
  width: 100%;
  padding: 10px;
  background-color: #c4ff1e;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature-item__title {
    font-size: clamp(1.5rem, 1.393rem + 0.536vw, 1.875rem);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.1875rem 0.375rem;
  }
}

.feature-item__title::before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}

.feature-item__body {
}
@media screen and (min-width: 768px) {
  .feature-item__body {
    min-height: 27.5rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    flex: 1;
  }
}


.text.feature-item__text {
  padding: 20px 15px;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 768px) {
  .text.feature-item__text {
    padding: 30px;
  }
}

.feature-item__img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .feature-item__img { display: none; }
}

.main-course {
  padding-top: 1.875rem;
  padding-bottom: 5rem;
  background-image: url(../new_index/new-index/images/index-course_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .main-course {
    padding-top: 5rem;
    padding-bottom: 9.375rem;
  }
}

.main-course__lists {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .main-course__lists {
    margin-top: 3.125rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .main-course__lists::after {
    content: "";
    display: block;
    background-image: url(../new_index/new-index/images/index-course_2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 25%;
    aspect-ratio: 324/664;
    max-width: 20.25rem;
    position: absolute;
    top: -6.25rem;
    right: -3.125rem;
  }
}

.course-item {
  border: 6px solid #000;
  background-color: #fff;
  padding: 2.5rem 0.9375rem 3.75rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .course-item {
    padding: 2.5rem 1.875rem 3.75rem 1.875rem;
  }
}

.course-item:not(:first-child) {
  margin-top: 3.125rem;
}

.title.course-item__title {
  padding: 0.25rem 0.625rem;
  background-color: #1E93FF;
}
@media screen and (min-width: 768px) {
  .title.course-item__title {
    -moz-text-align-last: left;
         text-align-last: left;
    padding: 0.375rem 0.9375rem;
    margin-left: 0;
  }
}

.course-item:nth-child(2) .title.course-item__title {
  background-color: #5ADC1D;
}

.course-item__container {
  margin-top: 2.875rem;
  display: flex;
  flex-direction: column;
  row-gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .course-item__container {
    margin-top: 2.5rem;
    flex-direction: row;
    -moz-column-gap: 4%;
         column-gap: 4%;
  }
}

@media screen and (min-width: 768px) {
  .course-item__left {
    width: 60%;
  }
}

.course-item:nth-child(1) .course-item__button {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .course-item:nth-child(1) .course-item__button {
    margin-top: 3.125rem;
  }
}

.course-item__right {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .course-item__right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .main-event__wrapper {
    display: flex;
  }
}

.main-event__container {
  min-height: clamp(19.375rem, 10.232rem + 45.714vw, 51.375rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url(../new_index/new-index/images/index-event_1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .main-event__container {
    width: 50%;
    padding-left: 5vw;
  }
}
@media screen and (min-width: 1024px) {
  .main-event__container {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .title.main-event__title {
    margin-left: 0;
  }
}

.subtitle.main-event__subtitle {
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .subtitle.main-event__subtitle {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.main-event__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .main-event__body {
    flex: 1;
    padding-right: 3.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .main-event__body {
    padding-right: 0;
  }
}

.text.main-event__text {
  width: 90%;
  max-width: 62.5rem;
  margin-top: 3.125rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .text.main-event__text {
    width: 80%;
    margin-top: 0;
  }
}

.main-event__banner {
  width: 90%;
  margin-top: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .main-event__banner {
    width: 80%;
    max-width: 37.5rem;
  }
}

.main-event__button {
  width: 90%;
  margin-top: 1.875rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .main-event__button {
    margin-top: 3.125rem;
  }
}

.main-trial {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  background-image: url(../new_index/new-index/images/index-trial_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (min-width: 768px) {
  .main-trial {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.main-trial__marginTop {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .main-trial__marginTop {
    margin-top: 0;
  }
}

.subtitle.main-trial__subtitle {
  text-align: center;
  margin-top: 1.875rem;
}

.text.main-trial__text {
  color: #fff;
  max-width: 62.5rem;
  margin-top: 1.875rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .text.main-trial__text {
    margin-top: 3.125rem;
  }
}

.main-trial__lists {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .main-trial__lists {
    margin-top: 3.125rem;
  }
}

.text.trial-item__text {
  font-weight: 500;
  width: 100%;
  min-height: 6.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 6px solid #000;
  position: relative;
}

.trial-lists {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.875rem;
  -moz-column-gap: 4%;
       column-gap: 4%;
  justify-content: center;
}

.trial-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .trial-item {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  .trial-item {
    width: 30%;
  }
}

.trial-item__text::after {
  content: "";
  display: block;
  width: 1.875rem;
  height: 1.75rem;
  background-image: url(../new_index/new-index/images/index-trial_coment-bg_2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
}

.trial-item__img {
  flex: 1;
}

.trial-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-trial__button {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .main-trial__button {
    margin-top: 3.75rem;
  }
}

.main-trial-sche_wrap {
}
.main-trial-sche_li {
  margin-top: 40px;
  
}
.main-trial-sche_li div {
  text-align: center;
}
.main-trial-sche_li div span {
  display: inline-block;
  color: #fff;
  border-radius: 20px;
  padding: 8px 30px;
  font-weight: bold;
  font-size: 22px;
}
.main-trial-sche_li div.trial-taimen span {
    background: #059a05;
}
.main-trial-sche_li div.trial-online span {
    background: #0066ff;
}
.main-trial-sche_a {
  display: block;
}
.main-trial-sche_a figure {
  margin-top: 10px;
}
.main-trial-sche_a img {}

@media screen and (min-width: 768px) {
  .main-trial-sche_wrap {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1.875rem;
    -moz-column-gap: 4%;
         column-gap: 4%;
    justify-content: center;
  }
  .main-trial-sche_li {
      width: 30%;
  }
  .main-trial-sche_a {}
  .main-trial-sche_a div {}
  .main-trial-sche_a figure {}
  .main-trial-sche_a img {}
}


.main-news {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  background-color: #eee;
}
@media screen and (min-width: 768px) {
  .main-news {
    padding-top: 5rem;
    padding-bottom: 6.25rem;
  }
}

.subtitle.main-news__subtitle {
  text-align: center;
}

.text.main-news__text {
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .text.main-news__text {
    margin-top: 1.875rem;
  }
}

.main-news__lists {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .main-news__lists {
    max-width: 62.5rem;
    margin-top: 3.125rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.news-item {
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #000;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .news-item {
    flex-wrap: nowrap;
  }
}

.news-item:not(:first-child) {
  margin-top: 1.875rem;
}

.news-item__time {
  font-size: clamp(1.125rem, 1.089rem + 0.179vw, 1.25rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #eee;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .news-item__time {
    padding: 0.3125rem;
  }
}

.news-item__title {
  width: 100%;
  margin-top: 0.625rem;
  padding-right: 2.5rem;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .news-item__title {
    margin-top: 0;
    /*width: 85%;*/
    padding-left: 3%;
  }
}

.news-item__link {
  display: block;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.news-item__title::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 4px solid #000;
  border-right: 4px solid #000;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: rotate(45deg) translateY(-50%);
  transition: right 0.3s ease-in-out;
}
div>.news-item__title::after {
  content: "";
  display: none;
}
@media screen and (min-width: 768px) {
  .news-item__title::after {
    right: 1.5625rem;
  }
}

.news-item__link:hover .news-item__title::after {
  right: 0.625rem;
  transition: right 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .news-item__link:hover .news-item__title::after {
    right: 0.9375rem;
  }
}

.main-banner {
  background-color: #666;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .main-banner {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.banner-lists {
  max-width: 62.5rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px 10px;
}
@media screen and (min-width: 768px) {
  .banner-lists {
    justify-content: space-between;
    gap: 40px 40px;
  }
}

.banner-item {
  width: 45%;
  flex: 0 0 48%;
}
@media screen and (min-width: 768px) {
  .banner-item {
    max-width: clamp(12.5rem, 11.964rem + 2.679vw, 14.375rem);
    flex: 0 0 32%;
  }
}

.banner-item__banner {
  width: 100%;
  height: 100%;
}

.banner-item__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.main-sns {
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .main-sns {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.main-sns__subtitle {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .main-sns__subtitle {
    margin-top: 5rem;
  }
}

.main-sns__lists {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .main-sns__lists {
    margin-top: 1.875rem;
  }
}

.sns-lists {
  width: 100%;
  max-width: 31.25rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10%;
       column-gap: 10%;
}

.sns-item__icon {
  width: 100%;
  max-width: 3rem;
  aspect-ratio: 1/1;
}

.main-sns__x {
  border-radius: 12px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-top: 1.875rem;
  margin-right: -0.9375rem;
  margin-left: -0.9375rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .main-sns__x {
    margin-top: 3.125rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.twitter-timeline iframe {
  width: 100% !important;
  height: 31.25rem !important;
}
@media screen and (min-width: 768px) {
  .twitter-timeline iframe {
    max-width: 500px !important;
    max-height: 700px !important;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer {
  background-color: #fff;
}

.footer-info {
  position: relative;
}

.footer-info__background {
  border-top: 6px solid #000;
  border-bottom: 120px solid #000;
}

.footer-info__container {
  padding-top: 2.5rem;
  padding-bottom: 3.125rem;
  background-color: #333;
}
@media screen and (min-width: 1024px) {
  .footer-info__container {
    width: 100%;
    max-width: 63.25rem;
    padding-top: 0;
    padding-bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border: 6px solid #000;
    margin-right: auto;
    margin-left: auto;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
}

.inner.footer-info__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .inner.footer-info__inner {
    flex-direction: row;
    -moz-column-gap: 1%;
         column-gap: 1%;
    padding: 0 0.9375rem;
  }
}

.footer-info__logo {
  max-width: 10rem;
  aspect-ratio: 160/53.33;
  padding-left: 0.9375rem;
  background-color: #fff;
}

.info-left {
  width: 100%;
  max-width: 37.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .info-left {
    width: 55%;
  }
}

.info-left__text {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .info-left__text {
    color: #333;
    margin-top: 1.25rem;
  }
}

.info-left__body {
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .info-left__body {
    flex-direction: row;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
}

.info-left__logo {
  max-width: 13.75rem;
  aspect-ratio: 220/70;
  order: 2;
}
@media screen and (min-width: 1024px) {
  .info-left__logo {
    order: 1;
  }
}

.footer-info__logo img,
.info-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.info-left__address {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #fff;
  margin-top: 1.25rem;
  order: 1;
}
@media screen and (min-width: 1024px) {
  .info-left__address {
    font-size: 0.75rem;
    color: #333;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .info-left__address {
    order: 2;
  }
}

.info-left__access {
  background-color: #fff;
  margin-top: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .info-left__access {
    margin-top: 0.625rem;
    background-color: transparent;
  }
}

.info-left__access-link {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #ff6701;
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 15px 0;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .info-left__access-link {
    font-size: 0.8125rem;
    text-align: left;
    padding: 0;
  }
}

.info-right {
  width: 100%;
  max-width: 37.5rem;
  min-height: 12.5rem;
  padding-top: 1.875rem;
  padding-left: 25vw;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  border-radius: 10px;
  background-image: url(../new_index/new-index/images/fotter_toi.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 375px) {
  .info-right {
    padding-left: 28vw;
  }
}
@media screen and (min-width: 768px) {
  .info-right {
    padding-top: 3.125rem;
    padding-left: 11.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .info-right {
    padding-left: 7.5rem;
    flex: 1;
    border-left: 1px dotted #333;
    border-radius: 0;
    background-color: transparent;
  }
}

.text.info-right__title {
  font-weight: 700;
}

.text.info-right__text {
  font-weight: 700;
  margin-top: 0.625rem;
}

.info-right__text span {
  font-size: 0.75rem;
}

.info-right__tel {
  margin-top: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .info-right__tel {
    margin-top: 0;
  }
}

.info-right__tel-link {
  font-size: clamp(1.875rem, 1.193rem + 3.409vw, 3.375rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #333;
}
@media screen and (min-width: 1024px) {
  .info-right__tel-link {
    font-size: 2.875rem;
  }
}

.footer__footer {
  background-color: #000;
  padding-top: 3.125rem;
  padding-bottom: 1.875rem;
  margin-top: -0.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .footer__footer {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .inner.footer__inner {
    max-width: 65.625rem;
  }
}

.footer__title-link {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #fff;
}

.footer-lists {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer-lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 5%;
         column-gap: 5%;
    row-gap: 1.25rem;
  }
}

.footer-item {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-left: 0.3125rem;
  border-left: 1px solid #fff;
}

.lists-item {
  margin-left: 1.25rem;
}

.footer-item:not(:first-child),
.lists-item:not(:first-child) .item-lists {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer-item:not(:first-child),
.lists-item:not(:first-child) .item-lists {
    margin-top: 0.3125rem;
  }
}

.footer-item__link,
.lists-item__link {
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #fff;
}

.lists-item__link {
  padding-left: 1.25rem;
  background: url(../new_index/new-index/images/icon_arrow08.png) no-repeat 0 50%;
  background-size: 8px;
  padding-left: 12px;
  border-left: none;
}

.footer__copyright {
  font-size: 0.8125rem;
  text-align: center;
  color: #999;
  text-align: center;
  margin-top: 1.875rem;
  display: block;
}

.main-action {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: visibility 0s linear 0.3s, opacity 0.3s linear, transform 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .main-action {
    top: 9.375rem;
    bottom: auto;
    right: 0;
    left: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 1024px) {
  .main-action {
    top: 7.5rem;
  }
}
@media screen and (max-height: 650px) {
  .main-action {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transform: translateY(100%);
    transition: visibility 0s linear 0.3s, opacity 0.3s linear, transform 0.3s ease-out;
  }
}

.main-action.visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0s;
}

.action-lists {
  display: flex;
}
@media screen and (min-width: 768px) {
  .action-lists {
    flex-direction: column;
    row-gap: 1.25rem;
  }
}
@media screen and (max-height: 650px) {
  .action-lists {
    flex-direction: row;
  }
}

.action-item:nth-child(1),
.action-item:nth-child(2) {
  background-image: linear-gradient(to right, #ffa800 0%, #c82cff 100%);
}
@media screen and (min-width: 768px) {
  .action-item:nth-child(1),
.action-item:nth-child(2) {
    background-image: linear-gradient(to bottom, #ffa800 0%, #c82cff 100%);
  }
}

.action-item:nth-child(3) {
  background-image: linear-gradient(to right, #19D220 0%, #06B517 100%);
}
@media screen and (min-width: 768px) {
  .action-item:nth-child(3) {
    background-image: linear-gradient(to bottom, #19D220 0%, #06B517 100%);
  }
}

.action-item {
  width: 33.3333333333vw;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .action-item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-height: 650px) {
  .action-item {
    width: 33.3333333333vw;
  }
}

.action-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #333;
  border: 1px solid #333;
  width: 100%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  z-index: -1;
}

.action-item:has(.action-item__link:hover)::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.text.action-item__link {
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .text.action-item__link {
    writing-mode: vertical-rl;
    text-orientation: upright;
    width: clamp(3.125rem, 2.946rem + 0.893vw, 3.75rem);
    height: clamp(9.375rem, 9.196rem + 0.893vw, 10rem);
  }
}
@media screen and (max-height: 650px) {
  .text.action-item__link {
    writing-mode: unset;
    text-orientation: unset;
    width: 100%;
    height: 100%;
  }
}
.text.action-item__link:hover {
  opacity: 1;
}

.inner {
  max-width: 630px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1250px;
    padding-right: 70px;
    padding-left: 25px;
  }
}
@media screen and (min-width: 1440px) {
  .inner {
    padding-right: 0;
  }
}

.title {
  font-size: clamp(1.25rem, 1.179rem + 0.357vw, 1.5rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3125rem 0.9375rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  background-color: #ff6701;
}
@media screen and (min-width: 768px) {
  .title {
    padding: 0.3125rem 1.875rem;
  }
}

.subtitle__style {
  font-size: clamp(1.625rem, 1.375rem + 1.25vw, 2.5rem);
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  color: #000;
  display: inline;
  max-width: 18.75rem;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .subtitle__style {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.subtitle__style--color {
  color: #ff6701;
}

.subtitle__style--background {
  background-color: unset;
}

@-webkit-keyframes background-slide {
  0% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}

@keyframes background-slide {
  0% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}
.text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
}

.text20Pc28 {
  font-size: clamp(1.25rem, 1.107rem + 0.714vw, 1.75rem);
  line-height: 2;
}

.text18Pc24 {
  font-size: clamp(1.125rem, 1.018rem + 0.536vw, 1.5rem);
  line-height: 2;
}

.text16Pc20 {
  font-size: clamp(1rem, 0.929rem + 0.357vw, 1.25rem);
  line-height: 2;
}

.text14Pc18 {
  font-size: clamp(0.875rem, 0.804rem + 0.357vw, 1.125rem);
  line-height: 1.7777777778;
}

.text14Pc16 {
  font-size: clamp(0.875rem, 0.839rem + 0.179vw, 1rem);
  line-height: 1.4;
}

.text12Pc14 {
  font-size: clamp(0.75rem, 0.714rem + 0.179vw, 0.875rem);
  line-height: 1.4;
}

.button {
  max-width: 20.625rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right, #ffa800 0%, #c82cff 100%);
  transition: box-shadow 0.3s, border-color 0.3s, opacity 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .button {
    min-width: 17.0625rem;
  }
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #333;
  border: 1px solid #333;
  width: 100%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  z-index: -1;
}

.button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.button::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  transform: rotate(45deg) translateY(-50%);
  transition: right 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .button::after {
    right: 1.875rem;
  }
}

.button:hover::after {
  right: 0.3125rem;
  transition: right 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .button:hover::after {
    right: 1.25rem;
  }
}

.button__link {
  font-size: clamp(1.125rem, 1.018rem + 0.536vw, 1.5rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #fff;
  width: 100%;
  padding: 0.625rem 1.5625rem 0.625rem 0.625rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .button__link {
    padding: 0.9375rem 2.5rem 0.9375rem 1.25rem;
  }
}

.button__link:hover {
  opacity: 1;
}

.background-anime {
  opacity: 0;
  background-color: transparent;
}

.background-anime--visible {
  opacity: 1;
  background-image: linear-gradient(to right, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  background-size: 200% 100%;
  background-repeat: no-repeat;
  -webkit-animation: background-slide 1s linear;
          animation: background-slide 1s linear;
}

.reveal-anime {
  visibility: hidden;
}

@-webkit-keyframes reveal {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@keyframes reveal {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.reveal-anime.animated {
  visibility: visible;
  -webkit-animation: reveal 1s forwards;
          animation: reveal 1s forwards;
}

@media screen and (min-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (min-width: 768px) {
  .md-show {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .lg-none {
    display: none;
  }
}

.lg-show {
  display: none;
}
@media screen and (min-width: 1024px) {
  .lg-show {
    display: block;
  }
}



@media (min-width: 768px) {
	.index-top-news-wrap {
    margin: 40px auto 0 auto;
    max-width: 1000px;
    text-align: center;
  }
	.index-top-news-wrap div div {
		border: 8px solid #ddd;
		padding: 30px 40px;
	}
	.index-top-news-wrap h2 {
		font-size: 20px;
		font-weight: bold;
		color: #ff6701;
		margin-bottom: 20px;
		text-align: center;
	}
	.index-top-news-wrap h2 span {
		padding: 5px 10px;
		background: #ff6701;
		color: #fff;
	}
	.index-top-news-wrap h3 {
		font-size: 18px;
		font-weight: bold;
		margin-top: 20px;
		margin-bottom: 10px;
		/*color: #ff6701;*/
	}
	.index-top-news-wrap p {
		font-size: 20px;/*通常16px*/
		line-height: 1.6;
	}
	.index-top-news-wrap p strong {
		font-size: 20px;/*通常16px*/
		font-weight: bold;
	}
	.index-top-news-wrap p span {
		font-size: 13px;
	}
	.index-top-news-wrap p.font-big {
		font-size: 20px;
	}
	.index-top-news-wrap ul {
		display: flex;
		margin-top: 20px;
	}
	.index-top-news-wrap ul li {
		margin-right: 40px;
	}

	.news-wrap-div p {
		margin-bottom: 10px;
	}
}
/*スマホ*/
@media screen and (max-width: 767px)
{
	.index-top-news-wrap {
    margin-top: 20px;
    margin: 40px 15px 0 15px;
    text-align: center;
  }
	.index-top-news-wrap div div {
		border: 4px solid #ddd;
		padding: 10px;
	}
	.index-top-news-wrap h2 {
		font-size: 20px;
		font-weight: bold;
		padding: 2px;
		color: #ff6701;
		line-height: 1.2;
		margin-bottom: 10px;
	}
	.index-top-news-wrap h2 span {
		padding: 5px 10px;
		background: #ff6701;
		color: #fff;
	}
	.index-top-news-wrap h3 {
		font-size: 18px;
		font-weight: bold;
		margin-top: 20px;
		margin-bottom: 10px;
		/*color: #ff6701;*/
	}
	.index-top-news-wrap p {
		line-height: 1.6;
	}
	.index-top-news-wrap p strong {
		font-size: 16px;
		font-weight: bold;
	}
	.index-top-news-wrap p span {
		font-size: 13px;
		line-height: 1.2;
	}
	.index-top-news-wrap p.font-big {
		font-size: 20px;
	}
	.index-top-news-wrap p.font-big strong {
		font-size: 20px;
	}
	.index-top-news-wrap ul {
		margin-top: 20px;
	}
	.index-top-news-wrap ul li {
		margin-bottom: 20px;
	}
}


.re202501-fv {
  background-image: url("../new_index/new-index/images/re2025_illust.png") , url("../new_index/new-index/images/re2025_bg.png");
  background-repeat: no-repeat, repeat;
  background-position: right 0 top 50%, 0 0;
  padding-bottom: 80px;
}
.re202501-logo {
  padding-top: 150px;
  text-align: center;
}
.re202501-logo img {
  width: auto;
  height: auto;
  margin: 0 auto;
}
.re202501-fv h1 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}
.re202501-wrap {
  max-width: 1000px;
  margin: 40px auto 0 auto;
  padding-right: 20%;
}
.re202501-wrap p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  text-shadow:
    -1px -1px 0 #fff, /* 左上 */
     1px -1px 0 #fff, /* 右上 */
    -1px  1px 0 #fff, /* 左下 */
     1px  1px 0 #fff; /* 右下 */
}
.re202501-wrap h2 {
  margin-top: 40px;
}
.re202501-wrap h2 span {
  background: #222;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: 700;
}
.re202501-wrap h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  text-shadow:
    -1px -1px 0 #fff, /* 左上 */
     1px -1px 0 #fff, /* 右上 */
    -1px  1px 0 #fff, /* 左下 */
     1px  1px 0 #fff; /* 右下 */
}
.re202501-wrap ul {}
.re202501-wrap li {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  text-shadow:
    -1px -1px 0 #fff, /* 左上 */
     1px -1px 0 #fff, /* 右上 */
    -1px  1px 0 #fff, /* 左下 */
     1px  1px 0 #fff; /* 右下 */
  text-indent: -1em;
  padding-left: 1em;
}
.re202501-wrap .shomei {
  text-align: right;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  text-shadow:
    -1px -1px 0 #fff, /* 左上 */
     1px -1px 0 #fff, /* 右上 */
    -1px  1px 0 #fff, /* 左下 */
     1px  1px 0 #fff; /* 右下 */
}
.re202501-wrap .button {
  margin-left: 0;
}
.toiawase { margin-top: 40px; }
.toiawase h3 {
  display: inline-block;
  background: #222;
  padding: 5px 10px;
  color: #fff;
  text-shadow: none;
}
.toiawase ul { margin-top: 10px; }
.toiawase li {}
.toiawase span {}
.toiawase a {
  text-decoration: underline;
  color: #000;
  font-weight: 600;
}


.index-trial-schedule-no {
  margin-top: 40px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,.9), -1px -1px 3px rgba(0,0,0,.9);
}
@media screen and (max-width: 767px) {
  .index-trial-schedule-no {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    text-shadow: 1px 1px 3px rgba(0,0,0,.9), -1px -1px 3px rgba(0,0,0,.9);
  }
}

/*スマホ*/
@media screen and (max-width: 767px)
{
    .re202501-fv {
    background-image: url("../new_index/new-index/images/re2025_illust.png") , url("../new_index/new-index/images/re2025_bg.png");
    background-repeat: no-repeat, repeat;
    background-position: right 50% top 50%, 0 0;
    padding-bottom: 80px;
  }
  .re202501-logo {
    padding-top: 120px;
    margin: 0 auto;
    text-align: center;
    width: 60%;
  }
  .re202501-logo img {
    width: 100%;
    height: auto;
  }
  .re202501-fv h1 {
    font-size: 36px;
  }
  .re202501-wrap {
    max-width: 100%;
    margin: 40px 15px 0 15px;
    padding-right: 0;
  }
  .re202501-wrap p {
    font-size: 18px;
    line-height: 1.4;
  }
  .re202501-wrap h2 {
    margin-top: 40px;
  }
  .re202501-wrap h2 span {
    display: block;
    padding: 10px 20px;
    font-size: 20px;
  }
  .re202501-wrap h3 {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.4;
  }
  .re202501-wrap ul {}
  .re202501-wrap li {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    text-indent: -1em;
    padding-left: 1em;
  }
  .re202501-wrap .shomei {
    text-align: right;
    margin-top: 5px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    text-shadow:
      -1px -1px 0 #fff, /* 左上 */
       1px -1px 0 #fff, /* 右上 */
      -1px  1px 0 #fff, /* 左下 */
       1px  1px 0 #fff; /* 右下 */
  }
  .re202501-wrap .button {
    margin-left: 0;
  }
}


.tei2025-wrap {
  background: #fffd5a;
}
.tei2025-wrap-in {
  max-width: 1000px;
  background: #fff;
  border: 8px solid #000;
  position: relative;
  margin: 0 auto;
}
.tei2025-wrap-h2 {
  padding-top: 20px;
  text-align: center;
}
.tei2025-wrap-h2 img {
  width: auto;
  height: auto;
  display: inline;
}
.tei2025-wrap-box {
  display: flex;
  justify-content: center;
}
.tei2025-wrap-box1 { margin-right: 10px; }
.tei2025-wrap-box2 { margin-right: 10px; }
.tei2025-wrap-box3 {}
.tei2025-wrap-p {
  margin: 20px 200px 20px 200px;
  font-size: 13px;
}
.tei2025-wrap-illust1 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.tei2025-wrap-illust2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

/*スマホ*/
@media screen and (max-width: 767px)
{
  .tei2025-wrap {
    background: #fffd5a;
  }
  .tei2025-wrap-in {
    max-width: 1000px;
    background: #fff;
    border: 4px solid #000;
    position: relative;
    margin: 0 15px;
  }
  .tei2025-wrap-h2 {
    padding-top: 20px;
    text-align: center;
  }
  .tei2025-wrap-h2 img {
    width: auto;
    height: auto;
    display: inline;
  }
  .tei2025-wrap-box {
    display: block;
  }
  .tei2025-wrap-box1 {
    margin-right: 0;
    text-align: center;
  }
  .tei2025-wrap-box2 {
    margin-right: 0;
    text-align: center;
    margin-top: 10px;
  }
  .tei2025-wrap-box3 {
    text-align: center;
    margin-top: 10px;
  }
  .tei2025-wrap-box1 img {
    width: auto;
    height: auto;
    display: inline;
  }
  .tei2025-wrap-box2 img {
    width: auto;
    height: auto;
    display: inline;
  }
  .tei2025-wrap-box3 img {
    width: auto;
    height: auto;
    display: inline;
  }
  .tei2025-wrap-p {
    margin: 20px 10px 20px 10px;
    font-size: 13px;
  }
  .tei2025-wrap-illust1 {
    display: none;
  }
  .tei2025-wrap-illust2 {
    display: none;
  }
}

.index-course-wrap {
  background: url("../new_index/new-index/images/re2025_bg.png") no-repeat 50% 50%;
}
.index-course-wrap-in {
  padding: 5px 15px 30px 15px;
}
  
.index-course-wrap-in h2 {
  margin-top: 40px;
}

.swiper {
  width: 100%;
  padding: 30px 0;
}

.swiper-slide {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slide-content {
  padding: 0;
}

.slide-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  padding: 3px 0;
}

.slide-content p {
  padding: 10px;
  font-size: 12px;
  color: #555;
}

.swiper-course1 h3 {
  background: #f4d910;
  color: #000;
}
.swiper-course2 h3 {
  background: #0080ff;
  color: #fff;
}
.swiper-course3 h3 {
  background: #07b61c;
  color: #fff;
}
.swiper-course4 h3 {
  background: #522ae6;
  color: #fff;
}
.swiper-course5 h3 {
  background: #e62a7e;
  color: #fff;
}
.swiper-course6 h3 {
  background: #ccc;
  color: #000;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6); /* 半透明の黒丸 */
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;  /* ← currentColor で三角形の色を制御 */
  z-index: 10;
}

/* 三角形アイコンのサイズ */
.swiper .nav-icon {
  width: 30px;
  height: 30px;
}

/* デフォルトの ::after アイコンは消す */
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  content: none !important;
}

/* PCはホバー時だけ表示 */
@media (hover:hover) {
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    opacity: 0;
    transition: opacity .3s ease;
  }
  .swiper:hover .swiper-button-next,
  .swiper:hover .swiper-button-prev {
    opacity: 1;
  }
}

/* 位置 */
.swiper .swiper-button-prev { left: 15px; }
.swiper .swiper-button-next { right: 15px; }

@media (max-width: 767px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    display: none !important;
  }
}


@media screen and (min-width: 768px) {
  .index-course-wrap-in {
    padding: 5px 30px 60px 30px;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .index-course-wrap-in h2 {
    margin-top: 60px;
  }

  .slide-content h3 {
    font-size: 20px;
    padding: 10px 0;
  }

  .slide-content p {
    padding: 20px;
    font-size: 16px;
  }
}



.index-triumph-wrap {
  background: url("../images/index_trianph_bg.jpg?20250917") no-repeat 50% 50%;
  background-size: cover;
}
.index-triumph-wrap-in {
  padding: 30px 15px 0 15px;
}
.index-triumph-p {
  background: #333;
  color: #fff;
  padding: 5px 0;
  text-align: center;
}
.index-triumph-h2 {
  margin: 20px;
}

.swiper--triumph .slide-content h3 {
  padding: 5px 5px 0 5px;
  font-size: 14px;
  color: #000;
}

.swiper--triumph .slide-content p {
  padding: 10px;
  font-size: 12px;
  color: #555;
}

@media screen and (min-width: 768px) {
  .index-triumph-wrap-in {
    padding: 80px 15px 0 15px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .index-triumph-p {
    background: none;
    padding: 0;
  }
  .index-triumph-p span {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 18px;
  }
  .index-triumph-h2 {
    margin: 40px auto;
    max-width: 400px;
  }

  .swiper--triumph .slide-content h3 {
    padding: 5px 5px 0 5px;
    font-size: 14px;
    color: #000;
  }

  .swiper--triumph .slide-content p {
    padding: 10px;
    font-size: 12px;
    color: #555;
  }
}



.main-creator {
  background: #e62a7e;
}
.main-creator__wrapper {
}
.main-creator__body {
  padding: 20px 15px;
}
.main-creator__title {
  background: #fff;
  color: #e62a7e;
}
.main-creator__text {
  color: #fff;
  margin: 20px 0;
}
.main-creator__button {}
.main-creator__container {
  width: 100%;
  min-height: clamp(10rem, 10rem + 45vw, 40rem);
  background-image: url("../images/index_creator.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (min-width: 768px) {
  .main-creator {
  }
  .main-creator__wrapper {
    display: flex;
  }
  .main-creator__body {
    width: 50%;
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-creator__title {
    font-size: 32px;
  }
  .main-creator__text {
    margin: 40px 20px;
  }
  .main-creator__button {
    max-width: 24rem;
  }
  .main-creator__container {
    order: 2;
    width: 50%;
    min-height: clamp(10rem, 10rem + 45vw, 40rem);
    background-image: url("../images/index_creator.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}


/*  margin Top */
.mt-0 { margin-top: 0 !important;}
.mt-10 { margin-top: 10px !important;}
.mt-20 { margin-top: 10px !important;}
.mt-30 { margin-top: 15px !important;}
.mt-40 { margin-top: 20px !important;}
.mt-50 { margin-top: 25px !important;}
.mt-60 { margin-top: 30px !important;}
.mt-70 { margin-top: 35px !important;}
.mt-80 { margin-top: 40px !important;}
.mt-90 { margin-top: 45px !important;}
.mt-100 { margin-top: 50px !important;}
.mt-120 { margin-top: 60px !important;}

/* Margin Bottom */
.mb-0 { margin-bottom: 0 !important;}
.mb-10 { margin-bottom: 10px !important;}
.mb-20 { margin-bottom: 10px !important;}
.mb-30 { margin-bottom: 15px !important;}
.mb-40 { margin-bottom: 20px !important;}
.mb-50 { margin-bottom: 25px !important;}
.mb-60 { margin-bottom: 30px !important;}
.mb-70 { margin-bottom: 35px !important;}
.mb-80 { margin-bottom: 40px !important;}
.mb-90 { margin-bottom: 45px !important;}
.mb-100 { margin-bottom: 50px !important;}

/* Margin Right */
.mr-0 { margin-right: 0 !important;}
.mr-10 { margin-right: 10px !important;}
.mr-20 { margin-right: 10px !important;}
.mr-30 { margin-right: 15px !important;}
.mr-40 { margin-right: 20px !important;}
.mr-50 { margin-right: 25px !important;}

/* Margin Left */
.ml-0 { margin-left: 0 !important;}
.ml-10 { margin-left: 10px !important;}
.ml-20 { margin-left: 10px !important;}
.ml-30 { margin-left: 15px !important;}
.ml-40 { margin-left: 20px !important;}
.ml-50 { margin-left: 25px !important;}

/* padding Top */
.pb-10 { padding-top: 10px !important;}
.pt-20 { padding-top: 10px !important;}
.pt-30 { padding-top: 15px !important;}
.pt-40 { padding-top: 20px !important;}
.pt-50 { padding-top: 25px !important;}
.pt-60 { padding-top: 30px !important;}
.pt-70 { padding-top: 35px !important;}
.pt-80 { padding-top: 40px !important;}
.pt-90 { padding-top: 45px !important;}
.pt-100 { padding-top: 50px !important;}
.pt-110 { padding-top: 55px !important;}
.pt-120 { padding-top: 60px !important;}

/*  Padding Bottom */
.pb-10 { padding-bottom: 10px !important;}
.pb-20 { padding-bottom: 10px !important;}
.pb-30 { padding-bottom: 15px !important;}
.pb-40 { padding-bottom: 20px !important;}
.pb-50 { padding-bottom: 25px !important;}
.pb-60 { padding-bottom: 30px !important;}
.pb-70 { padding-bottom: 35px !important;}
.pb-80 { padding-bottom: 40px !important;}
.pb-90 { padding-bottom: 45px !important;}
.pb-100 { padding-bottom: 50px !important;}
.pb-110 { padding-bottom: 55px !important;}
.pb-120 { padding-bottom: 60px !important;}

/* padding Right */
.pr-0 { padding-right: 0 !important;}
.pr-10 { padding-right: 10px !important;}
.pr-15 { padding-right: 15px !important;}
.pr-20 { padding-right: 20px !important;}
.pr-30 { padding-right: 30px !important;}
.pr-50 { padding-right: 50px !important;}
.pr-60 { padding-right: 60px !important;}
.pr-70 { padding-right: 70px !important;}
.pr-100 { padding-right: 100px !important;}

/* padding Left */
.pl-0 { padding-left: 0 !important;}
.pl-10 { padding-left: 10px !important;}
.pl-15 { padding-left: 15px !important;}
.pl-20 { padding-left: 20px !important;}
.pl-30 { padding-left: 30px !important;}
.pl-50 { padding-left: 50px !important;}
.pl-60 { padding-left: 60px !important;}
.pl-70 { padding-left: 70px !important;}
.pl-100 { padding-left: 100px !important;}
	

@media screen and (min-width: 768px) {
	/*  margin Top */
	.mt-0 { margin-top: 0 !important;}
	.mt-10 { margin-top: 10px !important;}
	.mt-20 { margin-top: 20px !important;}
	.mt-30 { margin-top: 30px !important;}
	.mt-40 { margin-top: 40px !important;}
	.mt-50 { margin-top: 50px !important;}
	.mt-60 { margin-top: 60px !important;}
	.mt-70 { margin-top: 70px !important;}
	.mt-80 { margin-top: 80px !important;}
	.mt-90 { margin-top: 90px !important;}
	.mt-100 { margin-top: 100px !important;}
	.mt-120 { margin-top: 120px !important;}

	/* Margin Bottom */
	.mb-0 { margin-bottom: 0 !important;}
	.mb-10 { margin-bottom: 10px !important;}
	.mb-20 { margin-bottom: 20px !important;}
	.mb-30 { margin-bottom: 30px !important;}
	.mb-40 { margin-bottom: 40px !important;}
	.mb-50 { margin-bottom: 50px !important;}
	.mb-60 { margin-bottom: 60px !important;}
	.mb-70 { margin-bottom: 70px !important;}
	.mb-80 { margin-bottom: 80px !important;}
	.mb-90 { margin-bottom: 90px !important;}
	.mb-100 { margin-bottom: 100px !important;}

	/* Margin Right */
	.mr-0 { margin-right: 0 !important;}
	.mr-10 { margin-right: 10px !important;}
	.mr-20 { margin-right: 20px !important;}
	.mr-30 { margin-right: 30px !important;}
	.mr-40 { margin-right: 40px !important;}
	.mr-50 { margin-right: 50px !important;}

	/* Margin Left */
	.ml-0 { margin-left: 0 !important;}
	.ml-10 { margin-left: 10px !important;}
	.ml-20 { margin-left: 20px !important;}
	.ml-30 { margin-left: 30px !important;}
	.ml-40 { margin-left: 40px !important;}
	.ml-50 { margin-left: 50px !important;}

	/* padding Top */
	.pt-0 { padding-top: 0 !important;}
	.pt-10 { padding-top: 10px !important;}
	.pt-20 { padding-top: 20px !important;}
	.pt-30 { padding-top: 30px !important;}
	.pt-40 { padding-top: 40px !important;}
	.pt-50 { padding-top: 50px !important;}
	.pt-60 { padding-top: 60px !important;}
	.pt-70 { padding-top: 70px !important;}
	.pt-80 { padding-top: 80px !important;}
	.pt-90 { padding-top: 90px !important;}
	.pt-100 { padding-top: 100px !important;}
	.pt-110 { padding-top: 110px !important;}
	.pt-120 { padding-top: 120px !important;}

	/*  Padding Bottom */
	.pb-10 { padding-bottom: 10px !important;}
	.pb-20 { padding-bottom: 20px !important;}
	.pb-30 { padding-bottom: 30px !important;}
	.pb-40 { padding-bottom: 40px !important;}
	.pb-50 { padding-bottom: 50px !important;}
	.pb-60 { padding-bottom: 60px !important;}
	.pb-70 { padding-bottom: 70px !important;}
	.pb-80 { padding-bottom: 80px !important;}
	.pb-90 { padding-bottom: 90px !important;}
	.pb-100 { padding-bottom: 100px !important;}
	.pb-110 { padding-bottom: 110px !important;}
	.pb-120 { padding-bottom: 120px !important;}

	/* padding Right */
	.pr-0 { padding-right: 0 !important;}
	.pr-10 { padding-right: 10px !important;}
	.pr-15 { padding-right: 15px !important;}
	.pr-20 { padding-right: 20px !important;}
	.pr-30 { padding-right: 30px !important;}
	.pr-50 { padding-right: 50px !important;}
	.pr-60 { padding-right: 60px !important;}
	.pr-70 { padding-right: 70px !important;}
	.pr-100 { padding-right: 100px !important;}

	/* padding Left */
	.pl-0 { padding-left: 0 !important;}
	.pl-10 { padding-left: 10px !important;}
	.pl-15 { padding-left: 15px !important;}
	.pl-20 { padding-left: 20px !important;}
	.pl-30 { padding-left: 30px !important;}
	.pl-50 { padding-left: 50px !important;}
	.pl-60 { padding-left: 60px !important;}
	.pl-70 { padding-left: 70px !important;}
	.pl-100 { padding-left: 100px !important;}
}