@charset "UTF-8";
/*--prefix set--------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Meddon&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap&text=0123456789");
@font-face {
  font-family: "KiwiMaru";
  font-style: light;
  font-weight: 400;
  src: url("../font/KiwiMaru-Light.woff2") format("woff2"), url("../font/KiwiMaru-Light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "KiwiMaru";
  font-style: medium;
  font-weight: 500;
  src: url("../font/KiwiMaru-Medium.woff2") format("woff2"), url("../font/KiwiMaru-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NSJP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NSJP-Regular.woff2") format("woff2"), url("../font/NSJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NSJP";
  font-style: normal;
  font-weight: bold;
  src: url("../font/NSJP-Bold.woff2") format("woff2"), url("../font/NSJP-Bold.woff") format("woff");
  font-display: swap;
}
/*ベースフォント設定*/
/*Font Awesome5*/
@media screen and (min-width: 1200px ) { /*PC*/ }
@media screen and (max-width: 980px ) { /*SP*/ }
@media screen and (max-width: 1600px ) and (min-width: 980px ) { /*TB*/ }
/*幅設定------------------------------------------*/
/*コンテンツ幅*/
/*配色設定---------------------------------------*/
/*メインカラー*/
/*テキストカラー(メインコンテンツ内のテキスト)*/
/*ホバーカラー*/
/*サブカラー*/
/*テキストカラー(サブコンテンツ内のテキスト)*/
/*アクセントカラー*/
/*ボーダーカラー*/
/*マドンナブルー*/
/*応援サイトカラー*/
/*大学院サイトカラー*/
/*コンテンツボックスのmixin-----------------------------------------------*/
@-webkit-keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@-webkit-keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 70%;
  }
  70% {
    opacity: 50%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 70%;
  }
  70% {
    opacity: 50%;
  }
  100% {
    opacity: 100%;
  }
}
@-webkit-keyframes gradAnimeTime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradAnimeTime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.fade {
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.fade.effect {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.slidein {
  opacity: 0;
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.slidein.effect {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-filter: blur(30px);
            filter: blur(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes fadeUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-filter: blur(30px);
            filter: blur(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.fade-list > *, .fade-list2 > * {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  position: relative;
}

.fade-list.effect > *:nth-child(1) {
  -webkit-animation: fadeUp 0.5s 0.1s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(2) {
  -webkit-animation: fadeUp 0.5s 0.2s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.2s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(3) {
  -webkit-animation: fadeUp 0.5s 0.3s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.3s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(4) {
  -webkit-animation: fadeUp 0.5s 0.4s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.4s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(5) {
  -webkit-animation: fadeUp 0.5s 0.5s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(6) {
  -webkit-animation: fadeUp 0.5s 0.6s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.6s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(7) {
  -webkit-animation: fadeUp 0.5s 0.7s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.7s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(8) {
  -webkit-animation: fadeUp 0.5s 0.8s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.8s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(9) {
  -webkit-animation: fadeUp 0.5s 0.9s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.9s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(10) {
  -webkit-animation: fadeUp 0.5s 1s 1 ease normal forwards;
          animation: fadeUp 0.5s 1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(11) {
  -webkit-animation: fadeUp 0.5s 1.1s 1 ease normal forwards;
          animation: fadeUp 0.5s 1.1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(12) {
  -webkit-animation: fadeUp 0.5s 1.2s 1 ease normal forwards;
          animation: fadeUp 0.5s 1.2s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.fade-list2.effect > *:nth-child(1) {
  -webkit-animation: fadeUp2 1s 0.5s 1 ease normal forwards;
          animation: fadeUp2 1s 0.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list2.effect > *:nth-child(2) {
  -webkit-animation: fadeUp2 1s 1s 1 ease normal forwards;
          animation: fadeUp2 1s 1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list2.effect > *:nth-child(3) {
  -webkit-animation: fadeUp2 1s 1.5s 1 ease normal forwards;
          animation: fadeUp2 1s 1.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list2.effect > *:nth-child(4) {
  -webkit-animation: fadeUp2 1s 2s 1 ease normal forwards;
          animation: fadeUp2 1s 2s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list2.effect > *:nth-child(5) {
  -webkit-animation: fadeUp2 1s 2.5s 1 ease normal forwards;
          animation: fadeUp2 1s 2.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list2.effect > *:nth-child(6) {
  -webkit-animation: fadeUp2 1s 3s 1 ease normal forwards;
          animation: fadeUp2 1s 3s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list2.effect > *:nth-child(7) {
  -webkit-animation: fadeUp2 1s 3.5s 1 ease normal forwards;
          animation: fadeUp2 1s 3.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list2.effect > *:nth-child(8) {
  -webkit-animation: fadeUp2 1s 4s 1 ease normal forwards;
          animation: fadeUp2 1s 4s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list2.effect > *:nth-child(9) {
  -webkit-animation: fadeUp2 1s 4.5s 1 ease normal forwards;
          animation: fadeUp2 1s 4.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list2.effect > *:nth-child(10) {
  -webkit-animation: fadeUp2 1s 5s 1 ease normal forwards;
          animation: fadeUp2 1s 5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list2.effect > *:nth-child(11) {
  -webkit-animation: fadeUp2 1s 5.5s 1 ease normal forwards;
          animation: fadeUp2 1s 5.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list2.effect > *:nth-child(12) {
  -webkit-animation: fadeUp2 1s 6s 1 ease normal forwards;
          animation: fadeUp2 1s 6s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.move-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.move-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  z-index: 1;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}
.move-img img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  left: -100%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.move-img.effect img {
  opacity: 1;
  left: 0;
}
.move-img.effect:before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  width: 100%;
}

.blur {
  -ms-filter: blur(10px);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: all 2s;
  transition: all 2s;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.blur.effect {
  -webkit-transform: scale(1);
  transform: scale(1);
  -ms-filter: blur(0);
  -webkit-filter: blur(0);
          filter: blur(0);
}

.focus-img {
  position: relative;
}
.focus-img img {
  display: block;
  min-width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.5) rotateZ(0);
  transform: translate(-50%, -50%) scale(1.5) rotateZ(0);
  -webkit-transition: all 3s;
  transition: all 3s;
}
.focus-img.effect img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1) rotateZ(0);
  transform: translate(-50%, -50%) scale(1) rotateZ(0);
}

@-webkit-keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@-webkit-keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}

body {
  margin: 0;
}

/*2カラム*/
/*.free,free2 {
  margin-bottom: 20px;
}*/
.free > dt {
  float: left;
  margin-right: 15px;
}

.free2 > dt {
  float: right;
  margin-left: 15px;
}

.free > dd, .free2 > dd {
  overflow: hidden;
  _zoom: 1;
}

.w30-70 dt {
  width: 30% !important;
}
.w30-70 dd {
  width: 68% !important;
}

@media screen and (max-width: 980px ) { /*SP*/
  .w30-70 dt {
    width: 100% !important;
  }
  .w30-70 dd {
    width: 100% !important;
  }
}
@media screen and (max-width: 980px ) { /*SP*/
  .free, free2 {
    margin-bottom: 10px;
  }
  .free > dt, .free2 > dt {
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .free > dt {
    margin-right: 0;
  }
  .free2 > dt {
    margin-left: 0;
  }
  .free > dd, .free2 > dd {
    overflow: hidden;
    _zoom: 1;
  }
}
.sk-section {
  padding: 6vw;
}

header {
  text-align: center;
}
header h1 {
  font-size: 1rem;
  line-height: 2;
}
header p.sup {
  font-weight: bold;
  font-size: clamp(1.5rem, -13.2rem + 24vw, 3rem);
  letter-spacing: 5px;
  line-height: 1;
}
@media screen and (max-width: 980px ) {
  header p.sup {
    letter-spacing: 2px;
  }
}
header.sk-sec {
  margin-bottom: 6vw;
}
header.sk-sec2 {
  margin-bottom: 0;
}
header.sk-sec2 .sk-sec2-text {
  max-width: 580px;
  margin: 1.5em auto;
}
header #logo {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}
header #o-primary {
  min-width: 65% !important;
}

#sk-top, #sk-intro, #sk-new-section {
  font-family: "Noto Serif JP", serif;
}

#sk-top {
  background: url("../img/sk/sk-top-bg.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  #sk-top {
    aspect-ratio: 5/3;
  }
}
@media screen and (max-width: 980px ) {
  #sk-top {
    aspect-ratio: 1/1;
  }
}
#sk-top:before {
  display: block;
  content: "";
  width: 90%;
  max-width: 1280px;
  aspect-ratio: 16/8;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  background: url("../img/sk/sk-top-square.png") no-repeat center center;
  background-size: contain;
  opacity: 0;
  -webkit-animation: fadein 0.5s ease 1s 1 normal forwards;
          animation: fadein 0.5s ease 1s 1 normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  #sk-top:before {
    aspect-ratio: 5/3;
  }
}
@media screen and (max-width: 980px ) {
  #sk-top:before {
    aspect-ratio: 1/1;
  }
}
#sk-top:after {
  display: block;
  content: "";
  width: 100%;
  aspect-ratio: 16/8;
  z-index: 1;
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=quote($statCol), endColorstr=quote($endCol),GradientType=1 );
  background-size: 350% 350%;
  animation: gradAnimeTime 10s ease 0s infinite alternate-reverse forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  #sk-top:after {
    aspect-ratio: 5/3;
  }
}
@media screen and (max-width: 980px ) {
  #sk-top:after {
    aspect-ratio: 1/1;
  }
}
#sk-top header#sk-hero-title {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  font-family: "Noto Serif JP", serif;
  z-index: 5;
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  #sk-top header#sk-hero-title {
    aspect-ratio: 5/3;
  }
}
@media screen and (max-width: 980px ) {
  #sk-top header#sk-hero-title {
    aspect-ratio: 1/1;
  }
}
#sk-top header#sk-hero-title h1 {
  position: absolute;
  bottom: 2vw;
  left: 5%;
}
#sk-top header#sk-hero-title h1 span {
  display: inline-block;
  color: #fff;
  letter-spacing: 0.1em;
  margin-right: 0.5rem;
}
@media screen and (max-width: 980px ) {
  #sk-top header#sk-hero-title h1 span {
    line-height: 1.5;
  }
}
#sk-top header#sk-hero-title h1 span.sub-text {
  font-size: 37px;
  font-size: clamp(14px, 1em + 2vw, 60px);
  -webkit-filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.3));
  -moz-filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.3));
  -ms-filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.3));
}
@media all and (-ms-high-contrast: none) {
  #sk-top header#sk-hero-title h1 span.sub-text {
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  }
}
#sk-top header#sk-hero-title h1 span.main_text {
  font-size: 95px;
  font-size: clamp(40px, 1em + 5vw, 150px);
  -webkit-filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.3));
  -moz-filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.3));
  -ms-filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.3));
}
@media all and (-ms-high-contrast: none) {
  #sk-top header#sk-hero-title h1 span.main_text {
    -webkit-box-shadow: 0 5px 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 3px 0 rgba(0, 0, 0, 0.3);
  }
}
#sk-top header#sk-hero-title h1 span.main_text span {
  font-size: 80%;
}
@media screen and (max-width: 980px ) {
  #sk-top header#sk-hero-title h1 span.main_text {
    display: block;
  }
}
#sk-top header#sk-hero-title h1 span.add-text {
  font-size: 100%;
  color: #333;
  background: #fff;
}
@media screen and (max-width: 980px ) {
  #sk-top header#sk-hero-title h1 span.add-text {
    margin-top: 0.5em;
  }
}
#sk-top header#sk-hero-title #sk-top-data {
  display: inline-block;
  position: absolute;
  bottom: 8em;
  left: 0;
  letter-spacing: 0;
  font-size: 180%;
  font-weight: bold;
  padding: 0.5em 1em;
  padding-left: 3em;
  line-height: 1;
  background: #fff;
}
#sk-top header#sk-hero-title #sk-top-data span.num {
  font-size: 150%;
}
@media screen and (max-width: 980px ) {
  #sk-top header#sk-hero-title #sk-top-data {
    font-size: 90%;
    padding-left: 2em;
    bottom: 30%;
  }
}
#sk-top #sk-hero-copy {
  z-index: 10;
  font-size: 68px;
  font-size: clamp(16px, 1em + 2vw, 120px);
  font-weight: 600;
  color: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  flex-direction: row;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  position: absolute;
  top: 30%;
  right: 5vw;
}
#sk-top #sk-hero-copy span {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
      align-self: stretch;
  height: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
#sk-top #sk-hero-copy span:nth-child(2) {
  margin-top: 1em;
}
#sk-top #sk-hero-copy span:nth-child(3) {
  margin-top: 2em;
}
@media screen and (max-width: 980px ) {
  #sk-top #sk-hero-copy {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
}
#sk-top #hero-visual {
  text-align: center;
  margin-bottom: 0;
  width: 100%;
  aspect-ratio: 16/8;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  bottom: 0;
  z-index: 2;
  padding-top: 5%;
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  #sk-top #hero-visual {
    aspect-ratio: 5/3;
  }
}
@media screen and (max-width: 980px ) {
  #sk-top #hero-visual {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 980px ) {
  #sk-top #hero-visual {
    padding-right: 6%;
    padding-top: 25%;
  }
}
#sk-top #hero-visual img {
  max-height: 100%;
  width: auto;
}

#sk-intro {
  text-align: center;
}
#sk-intro h2, #sk-intro p {
  margin: 0 auto;
}
#sk-intro h2 {
  max-width: 1280px;
  font-weight: 600;
  font-size: 34px;
  font-size: clamp(18px, 1em + 2vw, 50px);
  padding: 5vw 3vw;
}
#sk-intro h2 span {
  display: block;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 980px ) {
  #sk-intro h2 { /*SP*/
    padding: 5vw;
    text-align: left;
  }
  #sk-intro h2 span {
    display: inline;
    letter-spacing: 0;
  }
}
#sk-intro p {
  max-width: 980px;
}
#sk-intro p:not(.sub-info) {
  line-height: 2.5;
  font-size: clamp(0.875rem, -2.8rem + 6vw, 1.25rem);
  margin-bottom: 2em;
}
#sk-intro p:not(.sub-info) span {
  display: inline-block;
}
@media screen and (max-width: 980px ) {
  #sk-intro p:not(.sub-info) {
    line-height: 1.75;
  }
}
#sk-intro .sub-info {
  font-size: 0.75em;
  margin-top: 2em;
  line-height: 2;
}
#sk-intro .sub-info span {
  display: block;
}

#sk-about {
  background: url(../simg/bg-aboutus.png) no-repeat center/cover;
  padding: 6vw 0;
}
#sk-about > p {
  text-align: center;
}
#sk-about ul.box-item li {
  background: #fff;
  width: 85%;
  max-width: 1385px;
  height: 100%;
  padding: 3rem 3rem 3rem 6rem;
  border-radius: 0 50px 50px 0;
  margin-bottom: 5em;
}
@media screen and (min-width: 1200px ), screen and (max-width: 1600px ) and (min-width: 980px ) {
  #sk-about ul.box-item li:nth-of-type(even) {
    margin-right: 0;
    margin-left: auto;
    border-radius: 50px 0 0 50px;
  }
}
@media screen and (max-width: 980px ) {
  #sk-about ul.box-item li {
    text-align: center;
    border-radius: 10px;
    padding: 2rem;
    margin: 5% auto;
  }
  #sk-about ul.box-item li:nth-of-type(even) {
    border-radius: 10px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  #sk-about ul.box-item li {
    padding: 2rem 2rem 2rem 4rem;
  }
}
#sk-about ul.box-item li .sk-about-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}
@media screen and (max-width: 980px ) {
  #sk-about ul.box-item li .sk-about-item {
    display: block;
  }
}
#sk-about ul.box-item li .sk-about-item dt .step {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 163, 202)), color-stop(51%, rgb(220, 160, 198)), to(rgb(236, 109, 94)));
  background: linear-gradient(90deg, rgb(0, 163, 202) 0%, rgb(220, 160, 198) 51%, rgb(236, 109, 94) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#sk-about ul.box-item li .sk-about-item dt .title {
  display: block;
  font-size: clamp(2rem, 0.5399rem + 3.6446vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 3px;
  line-height: 1.5;
}
@media screen and (max-width: 980px ) {
  #sk-about ul.box-item li .sk-about-item dt .title {
    letter-spacing: 0;
  }
}
#sk-about ul.box-item li .sk-about-item dd {
  padding-left: 2em;
  width: 50%;
}
@media screen and (max-width: 980px ) {
  #sk-about ul.box-item li .sk-about-item dd {
    padding: 0;
    width: 100%;
  }
}

#sk-new-section {
  text-align: center;
}
#sk-new-section .sk-sec1 {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(190, 152, 255)), color-stop(61%, rgb(255, 134, 113)), to(rgb(255, 127, 36)));
  background: linear-gradient(90deg, rgb(190, 152, 255) 0%, rgb(255, 134, 113) 61%, rgb(255, 127, 36) 100%);
}
#sk-new-section .sk-sec1 h1 {
  color: #fff;
  font-size: 3em;
  padding: 0.5em 0;
  letter-spacing: 0.3rem;
  background: url(../simg/sk-sec1.png) no-repeat center center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
#sk-new-section p {
  padding: 4em 0;
}

#sk-growth {
  text-align: center;
}
#sk-growth .sk-sec2 .sk-grad-text {
  display: inline-block;
  font-size: clamp(2.5rem, -12.2rem + 24vw, 4rem);
  font-weight: bold;
  letter-spacing: 0.15rem;
  margin-bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(190, 152, 255)), color-stop(61%, rgb(255, 134, 113)), to(rgb(255, 127, 36)));
  background: linear-gradient(90deg, rgb(190, 152, 255) 0%, rgb(255, 134, 113) 61%, rgb(255, 127, 36) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 980px ) {
  #sk-growth .sk-sec2 .sk-grad-text {
    letter-spacing: 0;
  }
}
#sk-growth .sk-growth-img {
  width: 100%;
  margin-top: 6em;
}

#sk-model {
  padding: 6vw 0;
}
#sk-model header {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(190, 152, 255, 0.4)), color-stop(61%, rgba(255, 134, 113, 0.4)), to(rgba(255, 127, 36, 0.4))), url(../simg/bg-model.jpg);
  background: linear-gradient(90deg, rgba(190, 152, 255, 0.4) 0%, rgba(255, 134, 113, 0.4) 61%, rgba(255, 127, 36, 0.4) 100%), url(../simg/bg-model.jpg);
  background-size: cover;
  padding: 5em 0;
  padding-left: 10%;
}
@media screen and (max-width: 980px ) {
  #sk-model header {
    padding: 3em;
    text-align: left;
  }
}
#sk-model header h1 {
  font-size: 2em;
  margin-bottom: 2em;
  position: relative;
  text-align: left;
  padding-left: 1em;
}
#sk-model header h1:before {
  content: "\f007";
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  left: 0;
}
#sk-model header ul li {
  line-height: 2.75;
  border-bottom: 1px solid #888;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#sk-model ul.box-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}
@media screen and (max-width: 980px ) {
  #sk-model ul.box-item {
    display: block;
  }
}
#sk-model ul.box-item li {
  width: 50%;
}
@media screen and (max-width: 980px ) {
  #sk-model ul.box-item li {
    width: 100%;
  }
}
#sk-model ul.box-item li dl.image-box {
  position: relative;
}
#sk-model ul.box-item li dl.image-box dt {
  position: relative;
}
#sk-model ul.box-item li dl.image-box dt:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
#sk-model ul.box-item li dl.image-box dd {
  color: #fff;
  font-size: clamp(1rem, 0.2699rem + 1.8223vw, 1.5rem);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  width: 51%;
}
@media screen and (max-width: 980px ), screen and (max-width: 1600px ) and (min-width: 980px ) {
  #sk-model ul.box-item li dl.image-box dd {
    width: 100%;
    padding: 1.25rem;
  }
}
#sk-model ul.box-item li:hover dl dt:after {
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(8px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#sk-features {
  position: relative;
}
#sk-features:after {
  display: block;
  content: "";
  background: url(../simg/sk-features-bg.jpg) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#sk-features .sk-sec2 {
  position: relative;
}
#sk-features .sk-sec2:before {
  display: block;
  content: "";
  background: url(../simg/features-b.png) no-repeat;
  background-size: contain;
  width: 17%;
  height: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
}
#sk-features .sk-sec2:after {
  display: block;
  content: "";
  background: url(../simg/features-a.png) no-repeat;
  background-size: contain;
  width: 13%;
  height: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -100;
}
#sk-features #sk-features-list {
  max-width: 1080px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}
@media screen and (max-width: 980px ) {
  #sk-features #sk-features-list {
    display: block;
    max-width: 480px;
    width: 100%;
  }
}
#sk-features #sk-features-list li.sk-feature-item {
  width: 50%;
  max-width: 480px;
  padding: 1em;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sk-features #sk-features-list li.sk-feature-item:nth-of-type(even) {
  margin-top: 8em;
}
@media screen and (max-width: 980px ) {
  #sk-features #sk-features-list li.sk-feature-item:nth-of-type(even) {
    margin: 0;
  }
}
@media screen and (max-width: 980px ) {
  #sk-features #sk-features-list li.sk-feature-item {
    width: 100%;
  }
}
#sk-features #sk-features-list li.sk-feature-item h3 {
  color: #fff;
  font-size: clamp(1rem, -3.9rem + 8vw, 1.5rem);
  font-weight: bold;
  letter-spacing: 5px;
  width: 100%;
  padding: 0.7em 1em;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 980px ) {
  #sk-features #sk-features-list li.sk-feature-item h3 {
    letter-spacing: 2px;
  }
}
#sk-features #sk-features-list li.sk-feature-item dl dt {
  text-align: center;
}
#sk-features #sk-features-list li.sk-feature-item dl dd {
  text-align: left;
  padding: 1em 3em;
  position: relative;
}
#sk-features #sk-features-list li.sk-feature-item dl dd:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 127px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#sk-features #sk-features-list .f-item1 h3 {
  background: url(../simg/lb-features.png) no-repeat center/cover, -webkit-gradient(linear, left top, right top, from(#00A3C9), to(#038CAD));
  background: url(../simg/lb-features.png) no-repeat center/cover, linear-gradient(90deg, #00A3C9 0%, #038CAD 100%);
}
#sk-features #sk-features-list .f-item1 dd, #sk-features #sk-features-list .f-item1 dd:before {
  border-color: #038CAD !important;
}
#sk-features #sk-features-list .f-item2 h3 {
  background: url(../simg/lb-features.png) no-repeat center/cover, -webkit-gradient(linear, left top, right top, from(#FB7EB8), to(#CD6495));
  background: url(../simg/lb-features.png) no-repeat center/cover, linear-gradient(90deg, #FB7EB8 0%, #CD6495 100%);
}
#sk-features #sk-features-list .f-item2 dd, #sk-features #sk-features-list .f-item2 dd:before {
  border-color: #CD6495 !important;
}
#sk-features #sk-features-list .f-item3 h3 {
  background: url(../simg/lb-features.png) no-repeat center/cover, -webkit-gradient(linear, left top, right top, from(#F4D059), to(#EDC02C));
  background: url(../simg/lb-features.png) no-repeat center/cover, linear-gradient(90deg, #F4D059 0%, #EDC02C 100%);
}
#sk-features #sk-features-list .f-item3 dd, #sk-features #sk-features-list .f-item3 dd:before {
  border-color: #F4CC46 !important;
}
#sk-features #sk-features-list .f-item4 h3 {
  background: url(../simg/lb-features.png) no-repeat center/cover, -webkit-gradient(linear, left top, right top, from(#EC6D5E), to(#DE4C3B));
  background: url(../simg/lb-features.png) no-repeat center/cover, linear-gradient(90deg, #EC6D5E 0%, #DE4C3B 100%);
}
#sk-features #sk-features-list .f-item4 dd, #sk-features #sk-features-list .f-item4 dd:before {
  border-color: #DE4C3B !important;
}

#sk-career {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 163, 202, 0.5)), color-stop(61%, rgba(220, 160, 198, 0.5)), to(rgba(236, 109, 94, 0.5))), url(../simg/bg-career.jpg) no-repeat center/cover;
  background: linear-gradient(90deg, rgba(0, 163, 202, 0.5) 0%, rgba(220, 160, 198, 0.5) 61%, rgba(236, 109, 94, 0.5) 100%), url(../simg/bg-career.jpg) no-repeat center/cover;
  backdrop-filter: blur(4px);
}
#sk-career .sk-sec2 {
  color: #fff;
}
#sk-career .sk-sec2 p:last-child {
  color: #2E302E;
}
#sk-career #sk-career-paths {
  max-width: 1280px;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: 2%;
  margin: 5em auto;
}
@media screen and (max-width: 980px ) {
  #sk-career #sk-career-paths {
    gap: 0;
  }
}
#sk-career #sk-career-paths li {
  background: #fff;
  border-radius: 50%;
  border: 1px solid #2E302E;
  width: 23%;
  aspect-ratio: 1/1;
  text-align: center;
  position: relative;
  padding: 0 3em;
  /*&:first-child {
  	dl dt {
  		top: 30%;
  	}
  	@media screen and (max-width: 980px ) {top: 35%;}
  }*/
}
@media screen and (max-width: 980px ) {
  #sk-career #sk-career-paths li {
    width: 48%;
    padding: 0;
    margin: 1% auto;
    max-width: 270px;
  }
}
#sk-career #sk-career-paths li dl {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
#sk-career #sk-career-paths li dl dt {
  font-size: clamp(1.1rem, -2.82rem + 6.4vw, 1.5rem);
  position: absolute;
  top: 15%;
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  #sk-career #sk-career-paths li dl dt {
    top: 17%;
  }
}
#sk-career #sk-career-paths li dl dd.example {
  position: absolute;
  top: 35%;
  width: 62%;
  font-size: clamp(0.8rem, -1.16rem + 3.2vw, 1rem);
}
@media screen and (max-width: 980px ) {
  #sk-career #sk-career-paths li dl dd.example {
    width: 100%;
    top: 40%;
    line-height: 1.25;
  }
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  #sk-career #sk-career-paths li dl dd.example {
    width: 100%;
    top: 37%;
    line-height: 1.25;
  }
}
#sk-career #sk-career-paths li dl dd.example span {
  display: block;
}
#sk-career #sk-career-paths li dl dd.career-add {
  position: absolute;
  bottom: 10%;
}
@media screen and (max-width: 980px ) {
  #sk-career #sk-career-paths li dl dd.career-add {
    bottom: 15%;
  }
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  #sk-career #sk-career-paths li dl dd.career-add {
    bottom: 9%;
  }
}
#sk-career #qualification-box {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
#sk-career #qualification-box h3 {
  background: #EC6D5E;
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  padding: 0.5em 0;
  text-align: center;
}
#sk-career #qualification-box .qualification-list {
  background: #fff;
  padding: 1em 3em;
}
#sk-career #qualification-box .qualification-list ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: 10%;
}
@media screen and (max-width: 980px ) {
  #sk-career #qualification-box .qualification-list ul {
    gap: 3%;
  }
}
#sk-career #qualification-box .qualification-list ul li {
  position: relative;
  padding-left: 1.5em;
  line-height: 3;
  width: 25%;
}
@media screen and (max-width: 980px ) {
  #sk-career #qualification-box .qualification-list ul li {
    width: 48%;
  }
}
#sk-career #qualification-box .qualification-list ul li:before {
  content: "●";
  font-size: 1em;
  color: #EC6D5E;
  position: absolute;
  top: 0;
  left: 0;
}

#sk-access {
  padding: 8vw 0 6vw;
}
@media screen and (max-width: 980px ) {
  #sk-access .cont iframe {
    height: 400px;
  }
}
#sk-access > div {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
#sk-access > div .pd_box h4 {
  font-size: 1.5em;
}
#sk-access > div .pd_box h4:before {
  content: "■";
  font-size: 1em;
  color: #282E89;
}
#sk-access > div .pd_box table {
  width: 100%;
}
#sk-access > div .pd_box table tr {
  border: 1px solid #000;
}
#sk-access > div .pd_box table tr th, #sk-access > div .pd_box table tr td {
  padding: 1em;
}
#sk-access > div .pd_box table tr th {
  background: #EC6D5E;
  color: #fff;
  text-align: center;
}
#sk-access > div .pd_box > p {
  font-weight: lighter;
  font-size: 1.25em;
  margin-top: 1em;
}

.grad-box-pink {
  position: relative;
  padding: 5em 0;
  overflow: hidden;
  background-size: 350% 350%;
  animation: gradAnimeTime 20s ease 0s infinite alternate-reverse forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.grad-box-pink:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(137, 196, 210, 0.5) 30%, rgba(220, 160, 198, 0.5) 55%, rgba(255, 163, 152, 0.5) 100%);
  opacity: 0.5;
  z-index: 0;
}
.grad-box-pink > * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 980px ) {
  .grad-box-pink {
    padding: 1em;
  }
}
.grad-box-pink #sk-faq {
  max-width: 1280px;
  padding: 5em 10%;
  background: #fff;
  margin: 0 auto;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.grad-box-pink #sk-faq .faq-box .faq-item dt {
  border-bottom: 1px solid #000;
  width: 100%;
  font-size: 1.5em;
  font-weight: bold;
}
.grad-box-pink #sk-faq .faq-box .faq-item dt:before {
  content: "Q";
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, -0.6902rem + 5.467vw, 3rem);
  color: #282e89;
  padding-right: 0.3em;
  display: inline-block;
}
.grad-box-pink #sk-faq .faq-box .faq-item dd {
  padding: 1em 5em;
}
@media screen and (max-width: 980px ) {
  .grad-box-pink #sk-faq .faq-box .faq-item dd {
    padding: 1em 1em 3em;
  }
}

#sk-request-contact {
  background: url(../simg/sk-footer-bg.jpg) no-repeat center/cover;
  width: 100%;
  padding: 6em 0;
}
#sk-request-contact .sk-contact-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: 5%;
}
@media screen and (max-width: 980px ), screen and (max-width: 1600px ) and (min-width: 980px ) {
  #sk-request-contact .sk-contact-box li {
    margin-bottom: 1em;
  }
}
#sk-request-contact .sk-contact-box li a {
  display: block;
  max-width: 520px;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  padding: 6em 8em;
  text-align: center;
}
@media screen and (max-width: 980px ) {
  #sk-request-contact .sk-contact-box li a {
    padding: 3em 5em;
  }
}
#sk-request-contact .sk-contact-box li a span {
  display: block;
}
#sk-request-contact .sk-contact-box li a span.sup {
  font-family: "Noto Serif JP", serif;
  font-weight: lighter;
  font-size: 3em;
}
#sk-request-contact .sk-contact-box li a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#sk-request-contact .sk-contact-box .request a {
  border: 2px solid #EC6D5E;
}
#sk-request-contact .sk-contact-box .contact a {
  border: 2px solid #00A3CA;
}