@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 430px) {
  html {
    font-size: 3.7vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.85vw;
  }
}
@media (min-width: 1664px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  background-color: #fff;
  margin: auto;
  color: #222222;
}

a,
button {
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

img {
  max-width: 100%;
  height: auto;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 1.375rem;
  padding-left: 1.375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1664px;
    padding-right: 12.375rem;
    padding-left: 12.375rem;
  }
}

.section-ttl__ttl {
  font-weight: 700;
  font-size: 3.375rem;
  line-height: 1;
  color: #E94C6B;
}
@media screen and (min-width: 768px) {
  .section-ttl__ttl {
    font-size: 5.625rem;
  }
}

.schedule__ttl {
  color: #00b0cb;
}

.section-ttl__text {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .section-ttl__text {
    font-size: 1.6875rem;
  }
}

.gradation-ry {
  background: transparent -webkit-gradient(linear, left top, right top, from(#D8586D), to(#FFB766));
  background: transparent linear-gradient(90deg, #D8586D 0%, #FFB766 100%);
}

.entry {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .entry {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

.entry .section-ttl__ttl {
  color: #e94c6b;
}

.entry__contents {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .entry__contents {
    margin-top: 59px;
  }
}

.entry__item {
  font-weight: 700;
  position: relative;
  padding-left: 55px;
}
.entry__item::before {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid #222;
  background: #222;
  color: #fff;
  top: 1px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 27px;
}
@media screen and (min-width: 768px) {
  .entry__item {
    padding-left: 68px;
  }
  .entry__item::before {
    width: 50px;
    height: 50px;
    top: -4px;
  }
}

.entry__item + .entry__item {
  margin-top: 60px;
}
.entry__item:nth-child(1)::before {
  content: "1";
}

.entry__item:nth-child(2)::before {
  content: "2";
}

.entry__item:nth-child(3)::before {
  content: "3";
}

.entry__item:nth-child(4)::before {
  content: "4";
}

.entry__item:nth-child(5)::before {
  content: "5";
}

.entry__item:nth-child(6)::before {
  content: "6";
}

.entry__item .ttl {
  color: #e94c6b;
  font-size: 1.5rem;
  font-size: min(5.1162790698vw, 26px);
}
@media screen and (min-width: 768px) {
  .entry__item .ttl {
    font-size: 27px;
  }
}

.entry__item .text {
  margin-top: 26px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .entry__item .text {
    font-weight: 700;
    margin-top: 21px;
    font-size: 21px;
  }
}

.entry__item .text a {
  text-decoration: underline;
}

.footer {
  padding-top: 66px;
  padding-bottom: 64px;
  background: #222222;
  color: #fff;
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 100px;
    padding-bottom: 120px;
    margin-bottom: 120px;
  }
}

.footer .section-ttl__ttl {
  color: #fff;
}

.footer__address {
  margin-top: 53px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .footer__address {
    margin-top: 74px;
    font-size: 27px;
    line-height: 2;
  }
}

.footer__address a {
  text-decoration: underline;
}

.footer__sponsor {
  margin-top: 53px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .footer__sponsor {
    margin-top: 74px;
    font-size: 18px;
  }
}

.header {
  height: 80px;
  background: #222222;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 20;
  }
}

.header__inner,
.header__contents {
  height: inherit;
}

.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .header__contents {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header__logo {
  width: 360px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 18.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .header__logo {
    width: 21.875rem;
  }
}

@media screen and (min-width: 768px) {
  .nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__menu li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    font-weight: 700;
    font-size: 0.875rem;
  }
  .nav__menu li a span {
    display: block;
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .nav__menu li a {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.kv {
  background: url(../images/kv_img_sp.jpg) no-repeat center center/cover;
  height: 167.4418604651vw;
}
@media screen and (min-width: 768px) {
  .kv {
    background: url(../images/kv_img_pc.jpg) no-repeat center center/cover;
    height: 65rem;
    margin-top: 80px;
  }
}

.kv__inner {
  height: 100%;
  position: relative;
}

.kv__contents {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.kv__text {
  text-shadow: 3px 3px 4px #000000;
  color: #fff;
  font-weight: 700;
}

.kv__text1 {
  font-size: 4vw;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .kv__text1 {
    font-size: 2.2rem;
    line-height: 1.4;
  }
}

.kv__text2 {
  font-size: 6vw;
  margin-top: 4vw;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .kv__text2 {
    font-size: 3.5rem;
    margin-top: 1.0rem;
  }
}

.kv__text3 {
  font-size: 4.1860465116vw;
  line-height: 1.7;
  border-bottom: 3px solid #fff;
}
@media screen and (min-width: 768px) {
  .kv__text3 {
    font-size: 2.25rem;
    line-height: 2;
  }
}

.kv__text4 {
  font-size: 4.1860465116vw;
  line-height: 1.7;
  border-bottom: 3px solid #fff;
}
@media screen and (min-width: 768px) {
  .kv__text4 {
    font-size: 2.25rem;
    line-height: 2;
  }
}

.kv__text5 {
  font-size: 3vw;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .kv__text5 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.kv__bgtext {
  font-weight: 700;
  font-size: 8vw;
  line-height: 1.2;
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .kv__bgtext {
    font-size: 4.5rem;
    margin-top: 20px;
  }
}

.kv__bgtext span {
  background: rgba(255, 255, 255, .9);
  padding: 0.625rem 0.5rem 0.75rem 1.875rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .kv__bgtext span {
    padding: 1.125rem 1.25rem 1.125rem 3.0625rem;
  }
}

.kv__bgtext + .kv__bgtext {
  margin-top: 2vw;
}
@media screen and (min-width: 768px) {
  .kv__bgtext + .kv__bgtext {
    margin-top: 12px;
  }
}

.kv__bottom {
  margin-top: 10vw;
}
@media screen and (min-width: 768px) {
  .kv__bottom {
    line-height: 2;
    margin-top: 3rem;
  }
}

.lead {
  background: #eeeeee;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .lead {
    padding-top: 79px;
    padding-bottom: 85px;
  }
}

.lead__ttl {
  color: #e94c6b;
  font-weight: 700;
  font-size: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .lead__ttl {
    font-size: 2.8125rem;
  }
}

.lead__text {
  margin-top: 21px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .lead__text {
    font-size: 1.6875rem;
    margin-top: 33px;
    line-height: 1.66666;
  }
}

.point {
  padding-top: 75px;
  padding-bottom: 75px;
}
@media screen and (min-width: 768px) {
  .point {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.point .section-ttl__ttl {
  color: #E94C6B;
}

.point__contents {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .point__contents {
    margin-top: 46px;
  }
}

.point__contents ul {
  display: grid;
  row-gap: 60px;
}
@media screen and (min-width: 768px) {
  .point__contents ul {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 5.3125rem;
       -moz-column-gap: 5.3125rem;
            column-gap: 5.3125rem;
    row-gap: 4.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .point__contents ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.point-card__ttl {
  padding-left: 18px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4814;
  position: relative;
}
.point-card__ttl::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 9px;
  height: 100%;
  background: #E94C6B;
}
.point-card__img {
  margin-top: 17px;
}
.point-card__text {
  margin-top: 31px;
  font-size: 14px;
  font-weight: 500;
}
.program {
  padding-top: 65px;
  padding-bottom: 65px;
}
@media screen and (min-width: 768px) {
  .program {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.program__contents01 {
  margin-top: 93px;
}
@media screen and (min-width: 768px) {
  .program__contents01 {
    margin-top: 67px;
  }
}

.program__item02 {
  margin-top: 144px;
}
@media screen and (min-width: 768px) {
  .program__item02 {
    margin-top: 86px;
  }
}

.program__item03 {
  margin-top: 111px;
}
@media screen and (min-width: 768px) {
  .program__item03 {
    margin-top: 97px;
  }
}

.program__item04 {
  margin-top: 142px;
}
@media screen and (min-width: 768px) {
  .program__item04 {
    margin-top: 56px;
  }
}

.program__item05 {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .program__item05 {
    margin-top: 117px;
  }
}

.program-item__ttl {
  font-size: min(8.3720930233vw, 42px);
  font-weight: 700;
  border-bottom: 12px solid #e94c6b;
  -o-border-image: linear-gradient(to right, #d8586d 0%, #ffb766 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#d8586d), to(#ffb766));
     border-image: linear-gradient(to right, #d8586d 0%, #ffb766 100%);
  border-image-slice: 1;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .program-item__ttl {
    font-size: 36px;
  }
}

.program__item04 .program-item__ttl,
.program__item05 .program-item__ttl {
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .program__item04 .program-item__ttl,
  .program__item05 .program-item__ttl {
    line-height: 1.666;
  }
}

.program__contents01 .program-item__ttl .num {
  font-size: 48px;
  font-weight: 700;
  color: #e94c6b;
  display: block;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .program__contents01 .program-item__ttl .num {
    font-size: 54px;
  }
}

.program-item__intro {
  margin-top: 57px;
}
@media screen and (min-width: 768px) {
  .program-item__intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.program-item__intro__text {
  font-size: 16px;
  font-weight: 500;
}

.program-item__intro__text a{
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .program-item__intro__text {
    font-weight: 700;
    font-size: 18px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    line-height: 1.7143;
  }
}

.program-item__intro__img {
  margin-top: 90px;
}
@media screen and (min-width: 768px) {
  .program-item__intro__img {
    width: 29.178%;
    margin-top: 0;
    margin-left: 2.8125rem;
  }
}
@media screen and (min-width: 1024px) {
  .program-item__intro__img {
    margin-left: 5.3125rem;
  }
}

.program__item05 .program-item__intro__img {
  margin-top: 115px;
}
@media screen and (min-width: 768px) {
  .program__item05 .program-item__intro__img {
    margin-top: 0;
  }
}

.program-item__flow {
  margin-top: 75px;
}
@media screen and (min-width: 768px) {
  .program-item__flow {
    margin-top: 70px;
  }
}

@media screen and (min-width: 768px) {
  .program-item__flow .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.program-item__flow .ttl {
  color: #fff;
  position: relative;
  padding: 0.5rem 1.5625rem 0.75rem 0.9375rem;
}
.program-item__flow .ttl::before, .program-item__flow .ttl::after {
  position: absolute;
  content: "";
  height: 100%;
  background: #222222;
  z-index: -1;
}
.program-item__flow .ttl::before {
  top: 0;
  left: 0;
  width: calc(100% - 23px);
}
.program-item__flow .ttl::after {
  width: 23px;
  top: 0;
  right: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (min-width: 768px) {
  .program-item__flow .ttl {
    padding: 1.625rem 2.0625rem 1.75rem 2.0625rem;
    width: 50%;
  }
  .program-item__flow .ttl::before {
    width: calc(100% - 44px);
  }
  .program-item__flow .ttl::after {
    width: 44px;
  }
}

.program-item__flow .row:last-child .ttl::before, .program-item__flow .row:last-child .ttl::after {
  background: #e94c6b;
}

.program-item__flow .row + .row {
  margin-top: 49px;
}
@media screen and (min-width: 768px) {
  .program-item__flow .row + .row {
    margin-top: 50px;
  }
}

.program-item__flow .ttl p:nth-child(1) {
  font-weight: 700;
  font-size: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .program-item__flow .ttl p:nth-child(1) {
    font-size: 2.8125rem;
  }
}

.program-item__flow .ttl p:nth-child(2) {
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .program-item__flow .ttl p:nth-child(2) {
    font-size: 1.6875rem;
  }
}

.program-item__flow .text {
  font-weight: 700;
  font-size: 14px;
  margin-top: 21px;
  line-height: 1.75;
  margin-left: 18px;
}
@media screen and (min-width: 768px) {
  .program-item__flow .text {
    font-size: max(1.3125rem, 12px);
    line-height: 2.14285;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 16px;
    margin-left: 50px;
    margin-top: 0;
  }
}

.program-item__flow .text li {
  list-style: disc;
  margin-left: 10px;
}

.program-item__contents {
  margin-top: 61px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .program-item__contents {
    width: 100%;
    margin-top: 67px;
  }
}

.program-item__contents ul {
  display: grid;
  row-gap: 48px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .program-item__contents ul {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 28px;
       -moz-column-gap: 28px;
            column-gap: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .program-item__contents ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.program-item__contents__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.program-item__contents__item .num {
  text-align: center;
  color: #e94c6b;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .program-item__contents__item .num {
    font-size: 1.5rem;
  }
}

.program-item__contents__item .ttl {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-top: 2px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .program-item__contents__item .ttl {
    font-size: 1.4rem;
    min-height: 3em;
  }
}

.program-item__contents__item .img {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .program-item__contents__item .img {
    margin-top: 29px;
  }
}

.program-item__contents__item .text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .program-item__contents__item .text {
    font-size: 14px;
    margin-top: 29px;
  }
}

.program__mentoring {
  margin-top: 68px;
}
@media screen and (min-width: 768px) {
  .program__mentoring {
    margin-top: 53px;
  }
}

.mentoring__ttl {
  font-weight: 700;
  font-size: 21px;
}
@media screen and (min-width: 768px) {
  .mentoring__ttl {
    font-size: 30px;
  }
}

.program__mentoring ul {
  margin-top: 14px;
  display: grid;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .program__mentoring ul {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.75rem;
    -webkit-column-gap: 2.75rem;
       -moz-column-gap: 2.75rem;
            column-gap: 2.75rem;
    margin-top: 19px;
  }
}

.mentoring__item {
  background: #eeeeee;
  border-radius: 18px;
  padding: 29px 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .mentoring__item {
    padding: 20px 25px 30px;
  }
}

.mentoring__item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .mentoring__item .info {
    margin-bottom: auto;
  }
}

.mentoring__item .img {
  width: min(30.2325581395vw, 144px);
  height: min(30.2325581395vw, 144px);
}
@media screen and (min-width: 768px) {
  .mentoring__item .img {
    width: 9.375rem;
    height: 9.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .mentoring__item .img {
    width: 150px;
    height: 150px;
  }
}

.mentoring__item .detail {
  margin-left: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .mentoring__item .detail {
    margin-left: 15px;
    margin-left: 18px;
  }
}

.mentoring__item .name {
  font-weight: 700;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .mentoring__item .name {
    font-size: 30px;
  }
}

.mentoring__item .title {
  font-size: 12px;
  font-weight: 500;
  margin-top: 24px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .mentoring__item .title {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .mentoring__item .title {
    margin-top: 0;
    font-size: 12px;
  }
}

.mentoring__item .title-tag-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .mentoring__item .title-tag-pc {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 5px;
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.5rem;
  border-radius: 0.7vh;
  background: #e94c6b;
  line-height: 1.2;
  }
}

.mentoring__item .title-tag-sp {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-top: 15px;
  margin-right: 5px;
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.5rem;
  border-radius: 0.7vh;
  background: #e94c6b;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .mentoring__item .title-tag-sp {
  display: none;
  }
}

.mentoring__item .bottom {
  margin-top: 18px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .mentoring__item .bottom {
    margin-top: 0px;
    margin-bottom: 30px;
  }
}

.mentoring__item .bottom__ttl {
  font-size: 16px;
  color: #e94c6b;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .mentoring__item .bottom__ttl {
    font-size: 21px;
  }
}

.mentoring__item .sentence {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6875;
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .mentoring__item .sentence {
    font-weight: 700;
    font-size: max(1.3125rem, 16px);
    line-height: 1.7142;
    margin-top: 5px;
  }
}

.modal-btn {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 36px;
  width: 90%;
  margin-inline: auto;
  font-weight: 700;
  font-size: 1.3125rem;
  color: #fff;
  height: 4.0625rem;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .modal-btn {
    font-size: min(2.3166023166vw, 27px);
    height: 71px;
  }
}

.modal-btn-sm {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 36px;
  width: 80%;
  margin-inline: auto;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  height: 2.5rem;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .modal-btn-sm {
    font-size: min(1.5vw, 21px);
    height: 45px;
  }
}

.modal-open-btn {
  background: transparent -webkit-gradient(linear, left top, right top, from(#d8586d), to(#ffb766));
  background: transparent linear-gradient(90deg, #d8586d 0%, #ffb766 100%);
  margin-top: auto;
}
.modal-open-btn-sm {
  background: transparent -webkit-gradient(linear, left top, right top, from(#d8586d), to(#ffb766));
  background: transparent linear-gradient(90deg, #d8586d 0%, #ffb766 100%);
  margin-top: 20px;
}
.modal-close-btn {
  background: transparent -webkit-gradient(linear, left top, right top, from(#d8586d), to(#4eadc8));
  background: transparent linear-gradient(90deg, #d8586d 0%, #4eadc8 100%);
}

/* モーダルを開いた時の外側のレイヤー */
.overlay {
  content: "";
  display: none;
  background-color: transparent;
  opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  z-index: 25;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 89%;
  height: auto;
  max-height: 82%;
  background-color: #fff;
  padding: 29px 20px 40px;
  border-radius: 10px;
  z-index: 30;
  padding-right: 15px;
  overflow-y: scroll;
}
@media screen and (min-width: 1024px) {
  .modal {
    width: 70%;
    height: auto;
    max-height: 85%;
  }
}

.scroll-area {
  overflow-y: scroll;
}

.modal::-webkit-scrollbar {
  width: 18px;
}

/*スクロールバーの背景色*/
.modal::-webkit-scrollbar-track {
  border-radius: 18px;
  background: transparent;
}

/*スクロールバーの色*/
.modal::-webkit-scrollbar-thumb {
  border-radius: 18px;
  background: #eeeeee;
}

.modal .bottom {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .modal .bottom {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.modal .bottom__ttl {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .modal .bottom__ttl {
    font-size: 21px;
  }
}

.modal .sentence {
  font-size: 12px;
  line-height: 2;
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .modal .sentence {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* モーダルを開いたとき */
.modal.active,
.overlay.active {
  display: block;
}

.program__mentoring__sub {
  margin-top: 57px;
}
@media screen and (min-width: 768px) {
  .program__mentoring__sub {
    margin-top: 75px;
  }
}

.program__activity {
  margin-top: 79px;
}
@media screen and (min-width: 768px) {
  .program__activity {
    margin-top: 50px;
  }
}

.program__activity ul {
  margin-top: 26px;
}

.activity__ttl {
  font-weight: 700;
  font-size: 21px;
}
@media screen and (min-width: 768px) {
  .activity__ttl {
    font-size: 30px;
  }
}

.activity__item {
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .activity__item {
    font-size: 21px;
  }
}

.activity__item + .activity__item {
  margin-top: 29px;
}
@media screen and (min-width: 768px) {
  .activity__item + .activity__item {
    margin-top: 36px;
  }
}

.activity__item .ttl {
  color: #e94c6b;
}

.activity__item .text {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .activity__item .text {
    font-weight: 700;
    font-size: 16px;
  }
}

.program__contents02 {
  margin-top: 146px;
}
@media screen and (min-width: 768px) {
  .program__contents02 {
    margin-top: 116px;
  }
}

.program__subitem .program-item__ttl {
  border-bottom: 6px solid #e94c6b;
  line-height: 1.25;
}

.program__subitem_lead {
  font-weight: 500;
  font-size: 16px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .program__subitem_lead {
    font-weight: 700;
    font-size: 21px;
  }
}

.program__subitem_tag {
  margin-top: 25px;
}

.program__subitem_tag_ch {
  font-weight: 700;
  font-size: 14px;
  color: #e94c6b;
  margin-top: 10px;
  margin-right: 5px;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 1vh;
  background: #fde5e9;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .program__subitem_tag_ch {
    font-weight: 700;
    font-size: 18px;
  }
}

.participant {
  margin-top: 62px;
}
@media screen and (min-width: 768px) {
  .participant {
    margin-top: 54px;
  }
}

.participant ul {
  display: grid;
  row-gap: 31px;
}
@media screen and (min-width: 768px) {
  .participant ul {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 0;
    -webkit-column-gap: 6.2316715543vw;
       -moz-column-gap: 6.2316715543vw;
            column-gap: 6.2316715543vw;
  }
}

.participant__item .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .participant__item .top {
    display: block;
  }
}

.participant__item .img {
  width: 29.3023255814vw;
  width: 7.875rem;
}
@media screen and (min-width: 768px) {
  .participant__item .img {
    width: 72.36%;
    margin-inline: auto;
  }
}

.participant__item .ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 19px;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .participant__item .ttl {
    margin-left: 0;
    margin-top: 35px;
    text-align: center;
  }
}

.participant__item .text {
  margin-top: 28px;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .participant__item .text {
    margin-top: 24px;
  }
}

.program__contents03 {
  margin-top: 145px;
}
@media screen and (min-width: 768px) {
  .program__contents03 {
    margin-top: 70px;
  }
}

.program__contents03 .program-item__ttl {
  border-bottom: 6px solid #f4ba73;
  -o-border-image: linear-gradient(to right, #f4ba73 0%, #4eadc8 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#f4ba73), to(#4eadc8));
     border-image: linear-gradient(to right, #f4ba73 0%, #4eadc8 100%);
  border-image-slice: 1;
}

.example {
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .example {
    margin-top: 49px;
  }
}

.example__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (min-width: 768px) {
  .example__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.example__item + .example__item {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .example__item + .example__item {
    margin-top: 40px;
  }
}

.example__item .img {
  width: min(29.3023255814vw, 126px);
}
@media screen and (min-width: 768px) {
  .example__item .img {
    width: 260px;
    width: min(19.305019305vw, 260px);
  }
}

.example__item .text {
  margin-left: 17px;
  background: #eeeeee;
  border-radius: 9px;
  padding: 20px 18px 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9286;
}
@media screen and (min-width: 768px) {
  .example__item .text {
    font-weight: 700;
    border-radius: 18px;
    margin-left: 26px;
    padding: 42px 55px 32px;
    font-size: 21px;
    line-height: 1.6666;
  }
}

.qa {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #eeeeee;
}
@media screen and (min-width: 768px) {
  .qa {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

.qa .section-ttl__ttl {
  color: #00b0cb;
}

.qa__contents {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .qa__contents {
    margin-top: 31px;
  }
}

.qa__item {
  padding-top: 23px;
  padding-bottom: 23px;
  font-weight: 700;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .qa__item {
    padding-top: 36px;
    padding-bottom: 36px;
    font-size: 21px;
  }
}

.qa__item + .qa__item {
  border-top: 1px solid #222222;
}

.qa__q,
.qa__a {
  position: relative;
  padding-left: 68px;
}
.qa__q::before,
.qa__a::before {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1px solid #222;
  top: -10px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 27px;
}

.qa__q::before {
  background: #222;
  color: #fff;
  content: "Q";
}

.qa__a {
  margin-top: 34px;
  font-weight: 500;
}
.qa__a::before {
  color: #222;
  background: #fff;
  content: "A";
}
@media screen and (min-width: 768px) {
  .qa__a {
    font-weight: 700;
    font-size: 16px;
    margin-top: 30px;
  }
}

.schedule {
  background: #EEEEEE;
  padding-top: 65px;
  padding-bottom: 65px;
}
@media screen and (min-width: 768px) {
  .schedule {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.schedule__contents {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .schedule__contents {
    margin-top: 49px;
  }
}

.infozone {
  background: #FFFFFF;
  padding-top: 50px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .infozone {
    padding-top: 50px;
    padding-bottom: 10px;
  }
}

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

.u-floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 108px;
  height: 108px;
}
@media screen and (min-width: 768px) {
  .u-floating {
    right: 2.875rem;
    bottom: 2.875rem;
    width: max(11.25vw, 140px);
    height: max(11.25vw, 140px);
    max-width: 216px;
    max-height: 216px;
  }
}

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

.u-pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
}

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

@media screen and (min-width: 1024px) {
  .u-spmd-only {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
