@charset "UTF-8";
html, body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  overflow-x: hidden;
  color: #222;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

a:not(.btn):hover {
  text-decoration: underline;
}

footer {
  margin-bottom: 0;
}

.for-svg {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  image-rendering: -webkit-optimize-contrast;
  shape-rendering: crispEdges;
  text-rendering: geometricPrecision;
}

.spb {
  display: none;
}
@media screen and (max-width: 767px) {
  .spb {
    display: block;
  }
}

.pcb {
  display: block;
}
@media screen and (max-width: 767px) {
  .pcb {
    display: none;
  }
}

.pcbi {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pcbi {
    display: none !important;
  }
}

.spbi {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .spbi {
    display: block !important;
  }
}

.btn {
  display: block;
}
.btn .btn-round {
  background: linear-gradient(90deg, #F89808 30.33%, #FFD220 101.45%);
  color: #fff;
  padding: 3px 20px 4px;
  border-radius: 60px;
  clip-path: none;
}
.btn .btn-round::after {
  display: inline-block;
  content: "→";
  padding-left: 5px;
  font-size: 14px;
}
.btn.btn-sq {
  border: 2px solid #fff;
  background: #fff;
  box-shadow: 4px 2px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  font-size: 36px;
  text-align: center;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn.btn-sq {
    font-size: 24px;
  }
}
.btn.btn-sq span {
  font-size: 16px;
  display: block;
}
@media screen and (max-width: 767px) {
  .btn.btn-sq span {
    font-size: 12px;
  }
}
.btn.btn-sq::after {
  display: inline-block;
  content: "→";
  padding-left: 5px;
  font-size: 14px;
  position: absolute;
  bottom: 2%;
  right: 1.5%;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .btn.btn-sq::after {
    font-size: 12px;
    right: 0;
  }
}
.btn.btn-sq.btn-arrow-blue::after {
  color: #104094;
}
.btn.btn-sq.btn-arrow-red::after {
  color: #D31124;
}
.btn.btn-sq.btn-arrow-orange span {
  display: inline-block;
  margin-right: 10px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .btn.btn-sq.btn-arrow-orange span {
    display: block;
    font-size: 12px;
  }
}
.btn.btn-sq.btn-arrow-orange::after {
  color: #F89808;
  right: 0.75%;
}
.btn a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 30%, 90% 100%, 0 100%);
  padding: 19px 0 20px;
  transition: all 0.3s;
}
.btn a:hover {
  text-decoration: none;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .btn a {
    padding: 6px 0 7px;
  }
}
.btn .btn-blue {
  display: block;
  background: linear-gradient(90deg, #104094 0%, #09BBED 100%);
}
.btn .btn-red {
  background: linear-gradient(90deg, #D31124 30.33%, #FF142C 101.45%);
}
.btn .btn-orange {
  background: linear-gradient(90deg, #F89808 30.33%, #FFD220 101.45%);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 95% 100%, 0 100%);
  padding: 33px 0;
}
@media screen and (max-width: 767px) {
  .btn .btn-orange {
    padding: 6px 0 7px;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 90% 100%, 0 100%);
  }
}

.headdings {
  text-align: center;
}

.number-title {
  font-size: 82px;
  font-family: Montserrat;
  font-weight: 600;
  color: #C8E9FF;
}
@media screen and (max-width: 767px) {
  .number-title {
    font-size: 60px;
  }
}

.headding-read {
  font-size: 18px;
  color: #104094;
  font-weight: 700;
  letter-spacing: 1.04px;
  padding: 4px 8px 6px;
  background: #E9F6FF;
  display: inline-block;
  margin: 12px 0 16px;
}
@media screen and (max-width: 767px) {
  .headding-read {
    font-size: 14px;
    margin: 6px 0 8px;
  }
}
.headding-read span {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .headding-read span {
    font-size: 20px;
  }
}

.headding-title {
  font-size: 50px;
  color: #104094;
}
@media screen and (max-width: 767px) {
  .headding-title {
    font-size: 30px;
  }
}

header {
  background: rgba(255, 255, 255, 0.9);
  padding: 13px 0 14px;
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
}
@media screen and (max-width: 980px) {
  header {
    padding: 8px 0 12px;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .header-content {
    padding: 0 20px;
  }
}
.header-content h1 {
  line-height: 1;
}
@media screen and (max-width: 980px) {
  .header-content h1 {
    max-width: 65px;
  }
}
.header-content h1 img {
  vertical-align: middle;
}
.header-content .navi {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 26px;
}
.header-content .navi .navi-head {
  display: none;
}
.header-content .navi .spmenu-btn {
  display: none;
}
@media screen and (max-width: 980px) {
  .header-content .navi {
    display: block;
    text-align: center;
    position: absolute;
    top: 0;
    left: 100%;
    width: 95vw;
    background: linear-gradient(90deg, #104094 0%, #09BBED 100%);
    overflow-y: scroll;
    height: 90vh;
    transition: all 0.3s;
  }
  .header-content .navi.active {
    left: 5%;
  }
  .header-content .navi a {
    color: #fff;
    font-size: 20px;
  }
  .header-content .navi > .btn {
    display: none;
  }
  .header-content .navi li:not(.navi-head, .spmenu-btn, .btn) {
    margin-top: 24px;
  }
  .header-content .navi .navi-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 12px;
  }
  .header-content .navi .navi-head p:first-child {
    max-width: 85px;
  }
  .header-content .navi .navi-head p {
    font-size: 30px;
    color: #fff;
    line-height: 1;
  }
  .header-content .navi .spmenu-btn {
    display: block;
    background: #fff;
    padding: 20px 65px;
    margin-top: 40px;
  }
  .header-content .navi .spmenu-btn li {
    margin-bottom: 10px;
  }
}
.header-content a {
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

.sp-menu-btn {
  display: none;
}
@media screen and (max-width: 980px) {
  .sp-menu-btn {
    border-top: 1px solid #104094;
    border-bottom: 1px solid #104094;
    display: block;
    width: 23px;
    height: 7px;
  }
}

.fv {
  background: url(../images/fv-bg.png) no-repeat 50% 0;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .fv {
    position: relative;
    overflow-y: hidden;
  }
}

.fv-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .fv-content::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
  }
}
.fv-content video {
  width: 38.6363636364%;
  max-width: 425px;
  position: relative;
  right: -80px;
}
@media screen and (max-width: 1100px) {
  .fv-content video {
    right: 0;
    margin-left: 80px;
  }
}
@media screen and (max-width: 767px) {
  .fv-content video {
    height: 100vh;
    width: auto;
    max-width: none;
    aspect-ratio: 9/16;
    position: absolute;
    top: 0;
  }
}
.fv-content h1 {
  width: 100%;
  max-width: 660px;
}
@media screen and (max-width: 767px) {
  .fv-content h1 {
    position: relative;
    z-index: 3;
    height: 95vh;
    padding: 50vh 20px 0;
    transform: translateY(-50px);
  }
}

.cta-fv {
  width: 100%;
  max-width: 1100px;
  margin: -55px auto 0;
  padding-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .cta-fv {
    padding: 0 20px 20px;
    margin-top: -35px;
    position: relative;
    z-index: 3;
  }
}
.cta-fv .cta-top_area {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .cta-fv .cta-top_area {
    margin-bottom: 4px;
  }
}
.cta-fv .cta-top_area p {
  width: calc((100% - 5px) / 2);
}

.intro {
  background: linear-gradient(165deg, #F2F5FA 0%, #F2F5FA 50%, #EAF0FA 50%, #EAF0FA 100%);
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .intro {
    padding: 40px 20px;
  }
}

.intro-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: url(../images/intro-innerbg.png) no-repeat 50% 100%;
}
@media screen and (max-width: 767px) {
  .intro-content {
    background: none;
  }
}
.intro-content ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .intro-content ul {
    display: block;
  }
}
.intro-content li {
  text-align: center;
  background: #fff;
  width: 100%;
  max-width: 346px;
  padding: 16px 0;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .intro-content li {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    font-size: 14px;
    max-width: 100%;
  }
}
.intro-content li figure {
  max-height: 38px;
  margin-bottom: 8px;
}
.intro-content li figure img {
  width: auto;
}
.intro-content li h3 {
  font-size: 26px;
  color: #104094;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .intro-content li h3 {
    font-size: 20px;
  }
}
.intro-content li span {
  background: #F9FF50;
  padding: 2px;
}
.intro-content .intro-read {
  font-size: 26px;
  text-align: center;
  font-weight: 700;
  margin-top: 52px;
  letter-spacing: 1.04px;
}
@media screen and (max-width: 767px) {
  .intro-content .intro-read {
    font-size: 16px;
    margin-top: 32px;
  }
}
.intro-content .intro-read span {
  font-size: 34px;
  color: #104094;
  letter-spacing: 1.36px;
}
@media screen and (max-width: 767px) {
  .intro-content .intro-read span {
    font-size: 20px;
  }
}
.intro-content .intro-title {
  position: relative;
  margin-top: 52px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .intro-content .intro-title {
    margin-top: 30px;
  }
  .intro-content .intro-title figure {
    margin-top: -10%;
    position: relative;
    z-index: 2;
  }
}
.intro-content .intro-title .circle-text {
  background: #F9FF50;
  border: 2px solid #104094;
  display: inline-block;
  padding: 15px 4px 16px;
  border-radius: 100%;
  color: #104094;
  font-weight: 700;
  position: absolute;
  top: -40%;
  left: calc(50% - 170px);
  z-index: 2;
  transform: rotate(-20deg);
  width: 62px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .intro-content .intro-title .circle-text {
    font-size: 12px;
    top: -20px;
    left: calc(50% - 150px);
    width: 53px;
    aspect-ratio: 1/1;
  }
}
.intro-content .intro-title h2 {
  font-size: 34px;
  color: #fff;
  background: linear-gradient(90deg, #104094 0%, #09BBED 100%);
  display: inline-block;
  padding: 9px 55px 10px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .intro-content .intro-title h2 {
    font-size: 26px;
  }
}

.partnering {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .partnering {
    margin-top: 40px;
  }
}

.partnering-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.partnering-content picture {
  width: 35px;
  display: block;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  .partnering-content picture {
    margin: 10px auto;
  }
}

.partnering-top {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .partnering-top {
    display: block;
    padding: 0 20px;
  }
}
.partnering-top .tiles {
  width: calc((100% - 50px) / 2);
  text-align: center;
  padding-bottom: 28px;
  position: relative;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 5px 5px;
}
.partnering-top .tiles:first-child {
  margin-bottom: 20px;
}
.partnering-top .tiles:first-child figure.icon-plus {
  bottom: 50px;
}
@media screen and (max-width: 767px) {
  .partnering-top .tiles:first-child figure.icon-plus {
    bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .partnering-top .tiles {
    width: 100%;
  }
}
.partnering-top .tiles figure {
  padding: 20px 0 8px;
  height: 240px;
}
@media screen and (max-width: 767px) {
  .partnering-top .tiles figure {
    height: auto;
    padding: 10px 20px 8px;
  }
}
.partnering-top .tiles figure img {
  width: auto;
  height: 100%;
}
.partnering-top .tiles figure.icon-plus {
  padding: 0;
  width: 25px;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
}
@media screen and (max-width: 767px) {
  .partnering-top .tiles figure.icon-plus {
    bottom: 50px;
  }
}
.partnering-top .tiles figure.icon-plus img {
  width: 100%;
  height: auto;
}
.partnering-top h3 {
  background: linear-gradient(90deg, #104094 0%, #09BBED 100%);
  color: #fff;
  font-size: 30px;
  padding: 6px 0 10px;
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 767px) {
  .partnering-top h3 {
    font-size: 26px;
  }
}
.partnering-top h3 span {
  font-size: 12px;
  display: block;
}
.partnering-top h3.l1 {
  padding: 16px 0 17px;
}
@media screen and (max-width: 767px) {
  .partnering-top h3.l1 {
    padding: 6px 0 10px;
  }
}
.partnering-top .tiles-read {
  font-size: 18px;
  color: #fff;
  background: #104094;
  padding: 4px 12px;
  border-radius: 5px;
  width: fit-content;
  margin: 12px auto 0;
  font-weight: 700;
}
.partnering-top .tiles-read span {
  color: #F9FF50;
}

.partnering-bottom {
  display: flex;
  justify-content: center;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.12);
  position: relative;
}
@media screen and (max-width: 767px) {
  .partnering-bottom {
    padding: 0 20px;
  }
}
.partnering-bottom picture {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
}
@media screen and (max-width: 767px) {
  .partnering-bottom picture {
    top: 25px;
  }
}
.partnering-bottom .tiles {
  width: 50%;
  border-left: 1px solid #F2F5FA;
}
.partnering-bottom .tiles:first-child {
  border-left: none;
}
.partnering-bottom h3 {
  background: linear-gradient(90deg, #104094 0%, #09BBED 100%);
  color: #fff;
  font-size: 30px;
  padding: 17px 0 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .partnering-bottom h3 {
    font-size: 26px;
  }
}
.partnering-bottom h3.side {
  background: linear-gradient(90deg, #D31124 30.33%, #FF142C 101.45%);
}
.partnering-bottom h3 em {
  font-style: normal;
  font-size: 16px;
  background: #222222;
  vertical-align: middle;
  padding: 4px 10px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .partnering-bottom h3 em {
    font-size: 14px;
    margin: 0 auto;
    display: block;
    width: fit-content;
  }
}
.partnering-bottom .tiles-read {
  font-size: 18px;
  color: #fff;
  background: #104094;
  padding: 8px 0 12px;
  border-radius: 5px;
  margin: 12px auto 0;
  width: 246px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .partnering-bottom .tiles-read {
    font-size: 14px;
    width: 100%;
    padding: 4px 0 5px;
  }
}
.partnering-bottom .tiles-read span {
  color: #F9FF50;
}
@media screen and (max-width: 767px) {
  .partnering-bottom .tiles-read span {
    display: block;
  }
}
.partnering-bottom .tiles-content {
  display: flex;
  align-items: center;
  padding: 40px 50px 30px 28px;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .partnering-bottom .tiles-content {
    display: block;
    padding: 10px 10px 30px;
  }
}
.partnering-bottom .tiles-content ul {
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .partnering-bottom .tiles-content ul {
    justify-content: center;
  }
}
.partnering-bottom .tiles-content li {
  width: 90px;
  height: 90px;
  background: #F9FF50;
  border-radius: 200px;
  border: 1px solid #104094;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  font-weight: 700;
  color: #104094;
}
@media screen and (max-width: 767px) {
  .partnering-bottom .tiles-content li {
    width: 58px;
    height: 58px;
    font-size: 14px;
  }
}
.partnering-bottom .tiles-content li:first-child {
  margin-left: 0;
}
.partnering-bottom .tiles-content figure {
  height: 210px;
}
@media screen and (max-width: 767px) {
  .partnering-bottom .tiles-content figure {
    height: 190px;
  }
}
.partnering-bottom .titles-figure {
  padding-top: 26px;
}
@media screen and (max-width: 767px) {
  .partnering-bottom .titles-figure {
    padding-top: 25px;
    padding-bottom: 10px;
  }
}

.curriculum {
  margin-top: 80px;
  background: linear-gradient(#fff 0%, #fff 52%, #EAF0FA 52%);
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .curriculum {
    margin-top: 40px;
    padding-bottom: 60px;
  }
}

.curriculum-content {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .curriculum-content {
    padding: 0 20px;
    margin-top: 32px;
  }
}
.curriculum-content ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .curriculum-content ul {
    display: block;
    margin-bottom: 30px;
  }
}
.curriculum-content ul li {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 767px) {
  .curriculum-content ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.curriculum-content h3 {
  font-size: 34px;
  text-align: center;
  color: #104094;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .curriculum-content h3 {
    font-size: 30px;
    margin-bottom: 24px;
  }
}
.curriculum-content h3::before {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background: #104094;
  margin: 0 auto 28px;
}
@media screen and (max-width: 767px) {
  .curriculum-content h3::before {
    height: 40px;
    margin-bottom: 24px;
  }
}

.program {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .program {
    margin-top: 40px;
  }
}

.program-content {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .program-content {
    display: block;
    padding: 0 20px;
  }
}
.program-content .tiles {
  width: calc((100% - 50px) / 2);
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .program-content .tiles {
    width: 100%;
    margin-bottom: 30px;
  }
}
.program-content .tiles h3 {
  background: linear-gradient(90deg, #104094 0%, #09BBED 100%);
  color: #fff;
  font-size: 30px;
  padding: 17px 0 18px;
  text-align: center;
  letter-spacing: 1.2px;
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 767px) {
  .program-content .tiles h3 {
    font-size: 26px;
  }
}
.program-content .tiles h3.side {
  background: linear-gradient(90deg, #D31124 30.33%, #FF142C 101.45%);
}
.program-content .tiles h3 i {
  display: block;
  font-style: normal;
  font-size: 16px;
  color: #104094;
  background: #F9FF50;
  width: fit-content;
  margin: 0 auto 5px;
  min-width: 150px;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .program-content .tiles h3 i {
    font-size: 14px;
    min-width: auto;
  }
}
.program-content .headding-title span {
  text-align: center;
}
.program-content.top-tile {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .program-content.top-tile {
    margin-bottom: 40px;
  }
}
.program-content.top-tile figure {
  padding: 30px 40px;
}
@media screen and (max-width: 767px) {
  .program-content.top-tile figure {
    padding: 15px;
  }
}
.program-content.bottom-tile .tiles {
  background: #F2F5FA;
  padding-bottom: 30px;
}
.program-content.bottom-tile .tile-ttl,
.program-content.bottom-tile .tile-img {
  margin: 0 40px;
}
@media screen and (max-width: 767px) {
  .program-content.bottom-tile .tile-ttl,
  .program-content.bottom-tile .tile-img {
    margin: 0 20px;
  }
}
.program-content.bottom-tile .tile-ttl {
  background: #fff;
  margin-top: 40px;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  .program-content.bottom-tile .tile-ttl {
    margin-top: 20px;
    padding: 15px 20px;
  }
}
.program-content.bottom-tile h4 {
  font-size: 26px;
  color: #104094;
  border-bottom: 1px solid #C9D4E7;
  width: fit-content;
  margin-left: -30px;
  padding-left: 30px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .program-content.bottom-tile h4 {
    margin-left: -20px;
    padding-left: 20px;
    font-size: 20px;
  }
}
.program-content.bottom-tile h4.side {
  color: #D31124;
}
.program-content.bottom-tile li {
  font-weight: 600;
  margin-top: 10px;
  text-indent: -23px;
  padding-left: 26px;
}
@media screen and (max-width: 767px) {
  .program-content.bottom-tile li {
    font-size: 14px;
  }
}
.program-content.bottom-tile li::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url(/images/icon-check.png) no-repeat 0 0;
  display: inline-block;
  background-size: cover;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .program-content.bottom-tile li::before {
    width: 12px;
    height: 12px;
  }
}
.program-content.bottom-tile li span {
  background: #F9FF50;
}
.program-content.bottom-tile .tile-img {
  margin-top: 20px;
  margin-bottom: 30px;
  border: 5px solid #008BD6;
  background: #fff;
  border-radius: 7.5px;
  padding: 20px 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .program-content.bottom-tile .tile-img {
    padding: 20px;
  }
}
.program-content.bottom-tile .tile-img.side {
  border-color: #D31124;
}
.program-content.bottom-tile .tile-img picture {
  position: absolute;
  top: -20px;
  right: -20px;
}
@media screen and (max-width: 767px) {
  .program-content.bottom-tile .tile-img picture {
    width: 88px;
  }
}
.program-content.bottom-tile .tile-img h4 {
  color: #008BD6;
}
.program-content.bottom-tile .tile-img h4.side {
  color: #D31124;
}
.program-content.bottom-tile .tile-img .tile-img-figure {
  width: calc(100% + 30px);
  margin-left: -30px;
}
@media screen and (max-width: 767px) {
  .program-content.bottom-tile .tile-img .tile-img-figure {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}
.program-content.bottom-tile .btn {
  margin: 0 70px;
}
@media screen and (max-width: 767px) {
  .program-content.bottom-tile .btn {
    position: relative;
    margin: 0 15px;
  }
  .program-content.bottom-tile .btn::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 2.5%;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    transform: translateY(-50%);
  }
}
.program-content.bottom-tile .btn-round {
  background: linear-gradient(90deg, #104094 0%, #09BBED 100%);
  text-align: center;
  font-size: 26px;
  padding: 10px 0 12px;
}
@media screen and (max-width: 767px) {
  .program-content.bottom-tile .btn-round {
    font-size: 22px;
    line-height: 1;
  }
}
.program-content.bottom-tile .btn-round span {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .program-content.bottom-tile .btn-round span {
    font-size: 18px;
  }
}
.program-content.bottom-tile .btn-round::after {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .program-content.bottom-tile .btn-round::after {
    display: none;
  }
}
.program-content.bottom-tile .btn-round.btn-side {
  background: linear-gradient(90deg, #D31124 30.33%, #FF142C 101.45%);
}

.w-risnavi {
  margin-top: 100px;
  background: #484A4E;
  padding: 90px 0 100px;
}
@media screen and (max-width: 767px) {
  .w-risnavi {
    padding: 60px 0 90px;
    margin-top: 60px;
  }
}
.w-risnavi h2 {
  text-align: center;
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .w-risnavi h2 {
    font-size: 26px;
  }
}
.w-risnavi h2 + p {
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .w-risnavi h2 + p {
    font-size: 14px;
    text-align: left;
    padding: 0 20px;
  }
}
.w-risnavi h2 + p span {
  color: #F9FF50;
}

.award-content {
  width: 100%;
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 30px 60px 0 100px;
  background: url(/images/award-bg.png) no-repeat;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .award-content {
    background: url(/images/award-bg@2x.png) no-repeat;
    background-size: cover;
    display: block;
    padding: 20px 50px 0;
    margin-top: 28px;
  }
}
.award-content .award-left {
  width: 485px;
}
@media screen and (max-width: 767px) {
  .award-content .award-left {
    width: 100%;
    margin-top: 50px;
  }
}
.award-content .award-left figure {
  margin-top: 60px;
  margin-left: -150px;
  width: calc(100% + 200px);
}
@media screen and (max-width: 767px) {
  .award-content .award-left figure {
    width: calc(100% + 110px);
    margin-left: -50px;
    margin-top: 100px;
  }
}
.award-content .award-right {
  width: 390px;
}
@media screen and (max-width: 767px) {
  .award-content .award-right {
    width: 100%;
  }
}
.award-content .award-right figure {
  width: 360px;
  margin-left: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .award-content .award-right figure {
    width: 90%;
    margin-bottom: 15px;
  }
}
.award-content h4 {
  font-size: 21px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .award-content h4 {
    font-size: 16px;
  }
}
.award-content h4 span {
  color: #F9FF50;
}
.award-content h3 {
  color: #fff;
  font-size: 40px;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 767px) {
  .award-content h3 {
    font-size: 23px;
  }
}
.award-content h3 span {
  color: #F9FF50;
}
.award-content p {
  margin-top: 30px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .award-content p {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.6;
  }
}

.youtube {
  margin-top: 80px;
  padding: 100px 0;
  background: url(/images/youtube-bg.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .youtube {
    padding: 60px 0;
    margin-top: 60px;
  }
}

.youtube-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .youtube-content {
    display: block;
  }
}
.youtube-content .btn {
  font-size: 26px;
  text-align: center;
  margin: 44px auto 0;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .youtube-content .btn {
    font-size: 20px;
    margin-top: 28px;
  }
}
.youtube-content .btn a {
  padding: 13px 52px 14px;
  background: linear-gradient(90deg, #D31124 30.33%, #FF142C 101.45%);
}
@media screen and (max-width: 767px) {
  .youtube-content .btn a {
    padding: 4px 50px 6px;
  }
}
.youtube-content .btn a::after {
  font-size: 26px;
  transform: scaleX(0.7);
}
@media screen and (max-width: 767px) {
  .youtube-content .btn a::after {
    font-size: 22px;
  }
}

.youtube-left,
.youtube-right {
  width: calc((100% - 70px) / 2);
}
@media screen and (max-width: 767px) {
  .youtube-left,
  .youtube-right {
    width: calc(100% - 64px);
    margin: 0 auto;
  }
}

.youtube-right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .youtube-right {
    margin-top: 20px;
  }
  .youtube-right .d-shadow {
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
  }
}
.youtube-right figure {
  position: relative;
  z-index: 2;
}
.youtube-right .icon-dorama {
  z-index: 1;
  margin-left: -45px;
}

.cta-bottom {
  background: #2387DE;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .cta-bottom {
    padding: 60px 0;
  }
}

.cta-bottom-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.cta-bottom-content h2 {
  color: #fff;
  font-size: 60px;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 767px) {
  .cta-bottom-content h2 {
    font-size: 36px;
  }
}
.cta-bottom-content h2 span {
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .cta-bottom-content h2 span {
    font-size: 22px;
  }
}
.cta-bottom-content p {
  color: #104094;
  font-weight: 700;
  font-size: 26px;
  background: #fff;
  width: fit-content;
  margin: 16px auto 0;
  padding: 7px 56px 8px;
  clip-path: polygon(5% 0%, 100% 0, 95% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .cta-bottom-content p {
    font-size: 20px;
    padding: 7px 20px 8px;
  }
}
.cta-bottom-content figure {
  width: 100%;
  max-width: 195px;
  margin: 24px auto 0;
}
@media screen and (max-width: 767px) {
  .cta-bottom-content figure {
    max-width: 154px;
    margin: 12px auto 0;
  }
}
.cta-bottom-content .btn-orange {
  clip-path: polygon(0 0, 100% 0, 100% 30%, 90% 100%, 0 100%);
  padding: 19px 0 20px;
}
@media screen and (max-width: 767px) {
  .cta-bottom-content .btn-orange {
    padding: 5px 0 6px;
  }
}
.cta-bottom-content .btn-sq::after {
  right: 0.75%;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .cta-bottom-content .btn-sq::after {
    font-size: 12px;
    right: 0;
  }
}
.cta-bottom-content .btn-sq.btn-arrow-orange::after {
  right: 0.75%;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .cta-bottom-content .btn-sq.btn-arrow-orange::after {
    font-size: 12px;
  }
}
.cta-bottom-content .btn a {
  font-size: 26px;
}
.cta-bottom-content .btn a span {
  font-size: 12px;
}
.cta-bottom-content .btn a.btn-orange span {
  font-size: 12px;
  display: block;
}
.cta-bottom-content .btns {
  margin-top: 48px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .cta-bottom-content .btns {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.cta-bottom-content .btns li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .cta-bottom-content .btns li {
    width: calc((100% - 48px) / 2);
  }
  .cta-bottom-content .btns li.btn-arrow-orange {
    width: calc(100% - 40px);
  }
}

.voice {
  margin-top: 80px;
}
.voice h2 {
  text-align: center;
}

.voice-member,
.member-member {
  width: 98%;
  max-width: 1100px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .voice-member,
  .member-member {
    display: block;
    margin-top: 40px;
  }
}

.member-comment {
  width: 100%;
  max-width: 444px;
  padding: 20px;
  background: #F2F5FA;
  border: 5px solid #104094;
  border-radius: 5px;
  color: #222;
  font-weight: 700;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .member-comment {
    width: calc(100% - 20px);
    margin-bottom: 30px;
    max-width: 100%;
  }
}
.member-comment .member-name {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .member-comment .member-name {
    font-size: 18px;
  }
  .member-comment .member-name span {
    font-size: 14px;
  }
}
.member-comment .member-career {
  text-indent: -3em;
  padding-left: 3em;
}
@media screen and (max-width: 767px) {
  .member-comment .member-career {
    font-size: 14px;
  }
}
.member-comment .member-text {
  font-size: 22px;
  margin-bottom: 15px;
}
.member-comment .member-text span {
  background: #F9FF50;
}
.member-comment .member-text.l2 {
  padding: 0.65em 0;
}
@media screen and (max-width: 767px) {
  .member-comment .member-text {
    font-size: 18px;
  }
}
.member-comment .member-faq-box {
  background: #fff;
  padding: 15px 20px;
  margin-top: 20px;
}
.member-comment .member-q {
  color: #222;
  font-size: 20px;
  display: flex;
}
.member-comment .member-q em {
  font-style: normal;
}
.member-comment .member-q span {
  background: #F9FF50;
}
@media screen and (max-width: 767px) {
  .member-comment .member-q {
    font-size: 18px;
  }
}
.member-comment .member-q::before {
  content: "Q";
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  margin-top: -3px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .member-comment .member-q::before {
    font-size: 26px;
  }
}
.member-comment .member-a {
  color: #181717;
  margin-top: 10px;
}
.member-comment .member-a span {
  color: #D31124;
}
@media screen and (max-width: 767px) {
  .member-comment .member-a {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .sp-close {
    display: none;
  }
  .member-acc-btn {
    background: #104094;
    width: 43px;
    height: 43px;
    position: relative;
    border-radius: 50%;
    margin-top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .member-acc-btn::before, .member-acc-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    width: 14px;
    height: 2px;
    background-color: #fff;
  }
  .member-acc-btn::after {
    transition: all 0.5s;
    transform: translate(-50%) rotate(90deg);
  }
  .member-acc-btn.voice-active::after {
    transform: translate(-50%) rotate(0deg);
  }
}
.casestudy {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .casestudy {
    margin-top: 30px;
  }
}
.casestudy h2 {
  text-align: center;
}
.casestudy .member-text {
  color: #104094;
}
.casestudy .member-comment {
  background: #fff;
}
.casestudy .member-faq-box {
  background: #F2F5FA;
}

.slick-prev,
.slick-next,
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  width: 30px;
  height: 30px;
  background: url(/images/icon-arrow.png) no-repeat;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}

.slick-prev {
  left: 0;
  z-index: 2;
  transform: rotate(180deg) translateY(50%);
}
.slick-prev::before {
  content: "";
}

.slick-next {
  right: 0;
}
.slick-next::before {
  content: "";
}

.forms {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .forms {
    padding-top: 20px;
  }
}
.forms iframe {
  width: 100%;
}