/*---------------------------------
  Section Layout（375デザイン基準対応）
  ・PC：固定px（デザイン通り）
  ・SP：375カンプ基準でスケール
---------------------------------*/
.ksf-section {
  position: relative;
  padding: 80px 0;
}

.ksf-section__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .ksf-section {
    padding: calc(80 * var(--sp)) 0;
  }

  .ksf-section__inner {
    padding: 0;
  }
}

/*---------------------------------
  FV
---------------------------------*/
.ksf-fv{
  --fv-skew-deg: -20deg;

  --fv-thumb-left: 350;
  --fv-thumb-width: 350;

  --fv-main-left: 740;
  --fv-main-width: 1040;

  position: relative;
  width: 100%;
  min-height: calc(1080 * var(--pc));
  overflow: hidden;
  background: #fff;
}

.ksf-fv__inner{
  position: relative;
  width: 100%;
  max-width: calc(1920 * var(--pc));
  min-height: calc(1080 * var(--pc));
  margin: 0 auto;
}

.ksf-fv__copy-wrap{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: calc(860 * var(--pc));
  height: calc(1080 * var(--pc));
  overflow: hidden;
  background: #fff;
  transform: skewX(var(--fv-skew-deg));
  transform-origin: left top;
  pointer-events: none;
}

.ksf-fv__copy{
  position: absolute;
  top: calc(480 * var(--pc));
  left: calc(480 * var(--pc));
  margin: 0;
  font-size: calc(40 * var(--pc));
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
  transform: skewX(calc(var(--fv-skew-deg) * -1));
}

.ksf-fv__copy-sub{
  position: absolute;

  top: calc(620 * var(--pc));
  left: calc(520 * var(--pc));

  margin: 0;

  font-size: calc(18 * var(--pc));
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .08em;

  transform:
    skewX(calc(var(--fv-skew-deg) * -1));
}

.ksf-fv__sub-image{
  position: absolute;
  top: calc(78 * var(--pc));
  left: calc(var(--fv-thumb-left) * var(--pc));
  z-index: 7;
  width: calc(var(--fv-thumb-width) * var(--pc));
  height: calc(360 * var(--pc));
  overflow: hidden;
  transform: skewX(var(--fv-skew-deg));
}

.ksf-fv__sub-mask{
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ksf-fv__sub-mask img{
  display: block;
  width: 144%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform:
    skewX(calc(var(--fv-skew-deg) * -1))
    translateX(calc(-70 * var(--pc)));
}

.ksf-fv.is-fv-ready .ksf-fv__sub-image.is-changing .ksf-fv__sub-mask img{
  animation: ksfFvThumbIn .75s cubic-bezier(.45,0,.2,1) forwards;
}

@keyframes ksfFvThumbIn{
  0%{
    transform:
      skewX(calc(var(--fv-skew-deg) * -1))
      translateX(calc(90 * var(--pc)));
    opacity: 0;
  }

  100%{
    transform:
      skewX(calc(var(--fv-skew-deg) * -1))
      translateX(calc(-70 * var(--pc)));
    opacity: 1;
  }
}

.ksf-fv__slider{
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: calc(1080 * var(--pc));
}

.ksf-fv__wrapper{
  width: 100%;
  height: 100%;
}

.ksf-fv__slide-mask{
  position: absolute;
  top: 0;
  left: calc(var(--fv-main-left) * var(--pc));
  width: calc(var(--fv-main-width) * var(--pc));
  height: calc(1100 * var(--pc));
  overflow: hidden;
  transform: skewX(var(--fv-skew-deg));
}

.ksf-fv__slide-mask img{
  display: block;
  width: 144%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0;
  transform:
    skewX(calc(var(--fv-skew-deg) * -1))
    translateX(calc(40 * var(--pc)))
    scale(1.04);
  transition:
    opacity .95s ease,
    transform .95s cubic-bezier(.45,0,.2,1);
}

.ksf-fv__slide.swiper-slide-active .ksf-fv__slide-mask img{
  opacity: 1;
  transform:
    skewX(calc(var(--fv-skew-deg) * -1))
    translateX(calc(-200 * var(--pc)))
    scale(1.02);
}

.ksf-fv__slide:not(.swiper-slide-active){
  opacity: 0;
}

.ksf-fv__slide.swiper-slide-active{
  opacity: 1;
}

.ksf-fv__deco{
  position: absolute;
  display: flex;
  gap: calc(50 * var(--pc));
  pointer-events: none;
}

.ksf-fv__deco span{
  display: block;
  background: var(--grad-main);
  background-size: 200% 200%;
  transform: skewX(var(--fv-skew-deg));
  animation: ksfGradMove 7s ease infinite;
}

.ksf-fv__deco--left{
  left: calc(-68 * var(--pc));
  bottom: calc(56 * var(--pc));
  z-index: 6;
}

.ksf-fv__deco--left span:first-child{
  width: calc(300 * var(--pc));
  height: calc(280 * var(--pc));
}

.ksf-fv__deco--left span:last-child{
  width: calc(200 * var(--pc));
  height: calc(280 * var(--pc));
}

.ksf-fv__deco--right{
  right: calc(-170 * var(--pc));
  bottom: calc(40 * var(--pc));
  z-index: 2;
}

.ksf-fv__deco--right span{
  width: calc(250 * var(--pc));
  height: calc(460 * var(--pc));
}

@keyframes ksfGradMove{
  0%{
    background-position: 0% 50%;
  }

  50%{
    background-position: 100% 50%;
  }

  100%{
    background-position: 0% 50%;
  }
}

/*---------------------------------
  SP
---------------------------------*/
@media screen and (max-width: 768px){

  .ksf-fv{
    min-height: 0;
    padding-top: calc(74 * var(--sp));
  }

  .ksf-fv__inner{
    min-height: 0;
    padding-bottom: calc(80 * var(--sp));
  }

  .ksf-fv__copy-wrap{
    position: relative;
    width: 100%;
    height: auto;
    background: transparent;
    transform: none;
  }

  .ksf-fv__copy{
    position: relative;
    top: auto;
    left: auto;
    width: 92%;
    margin: 0 auto calc(10 * var(--sp));
    font-size: calc(27 * var(--sp));
    line-height: 1.55;
    transform: none;
  }

  .ksf-fv__copy-sub{
    position: relative;
    top: auto;
    left: auto;
    width: 92%;
    margin:
      0 auto
      calc(28 * var(--sp));
    font-size: calc(15 * var(--sp));
    line-height: 1.8;
    transform: none;
  }

  .ksf-fv__sub-image{
    display: none;
  }

  .ksf-fv__slider{
    position: relative;
    width: 100%;
    height: auto;
  }

  .ksf-fv__wrapper{
    height: auto;
  }

  .ksf-fv__slide-mask{
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }

  .ksf-fv__slide-mask img{
    width: 100%;
    height: auto;
    max-width: 100%;
    opacity: 1;
    transform: none !important;
    transition: none;
    animation: none !important;
  }

  .ksf-fv__deco{
    z-index: 1;
    gap: calc(10 * var(--sp));
  }

  .ksf-fv__deco--left{
    left: calc(-36 * var(--sp));
    bottom: calc(10 * var(--sp));
  }

  .ksf-fv__deco--left span:first-child,
  .ksf-fv__deco--left span:last-child{
    width: calc(60 * var(--sp));
    height: calc(150 * var(--sp));
  }

  .ksf-fv__deco--right{
    right: calc(-44 * var(--sp));
    bottom: calc(20 * var(--sp));
  }

  .ksf-fv__deco--right span{
    width: calc(80 * var(--sp));
    height: calc(210 * var(--sp));
  }

}

/*---------------------------------
  Lower Hero
---------------------------------*/
.ksf-lower-hero{
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding:
    calc(24 * var(--pc))
    calc(20 * var(--pc))
    calc(100 * var(--pc));
  background: #fff;
}

.ksf-lower-hero__inner{
  display: flex;
  flex-direction: column;
  justify-content: center;

  width: 100%;
  min-height: calc(350 * var(--pc));

  padding:
    calc(100 * var(--pc))
    calc(140 * var(--pc))
    calc(58 * var(--pc));

  border-radius:
    calc(50 * var(--pc));

  background: var(--grad-main);
  background-size: 200% 200%;

  animation: ksfGradMove 7s ease infinite;
}

.ksf-lower-hero__en{
  margin: 0 0 calc(18 * var(--pc));
  color: #337a98;
  font-family: "M PLUS 1p", sans-serif;
  font-size: calc(100 * var(--pc));
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
}

.ksf-lower-hero__title{
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 * var(--pc));
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px){

  .ksf-lower-hero{
    padding:
      calc(68 * var(--sp))
      calc(12 * var(--sp))
      calc(48 * var(--sp));
  }

  .ksf-lower-hero__inner{
    min-height: calc(170 * var(--sp));
    padding:
      calc(52 * var(--sp))
      calc(26 * var(--sp))
      calc(34 * var(--sp));
    border-radius: calc(24 * var(--sp));
  }

  .ksf-lower-hero__en{
    margin-bottom: calc(10 * var(--sp));
    font-size: calc(48 * var(--sp));
  }

  .ksf-lower-hero__title{
    font-size: calc(16 * var(--sp));
  }

}

/*---------------------------------
  About
---------------------------------*/
.ksf-about{
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: calc(110 * var(--pc)) 0 calc(130 * var(--pc));
}

.ksf-about__inner{
  position: relative;
  width: 100%;
  max-width: calc(1920 * var(--pc));
  min-height: calc(600 * var(--pc));
  margin: 0 auto;
}

.ksf-about__image-area{
  position: absolute;
  top: calc(40 * var(--pc));
  left: calc(100 * var(--pc));
  width: calc(480 * var(--pc));
  height: calc(430 * var(--pc));
}

.ksf-about__deco{
  position: absolute;
  left: calc(-190 * var(--pc));
  bottom: calc(-80 * var(--pc));
  z-index: 1;
  pointer-events: none;
}

.ksf-about__deco span{
  display: block;
  width: calc(320 * var(--pc));
  height: calc(260 * var(--pc));
  background: var(--grad-main);
  background-size: 200% 200%;
  transform: skewX(-16deg);
  animation: ksfGradMove 7s ease infinite;
}

.ksf-about__image-mask{
  position: relative;
  z-index: 2;
  width: calc(360 * var(--pc));
  height: calc(330 * var(--pc));
  overflow: hidden;
  transform: skewX(-16deg);
}

.ksf-about__image-mask img{
  display: block;
  width: 134%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform:
    skewX(16deg)
    translateX(calc(-55 * var(--pc)));
}

.ksf-about__content{
  position: relative;
  z-index: 3;
  width: calc(900 * var(--pc));
  margin-left: calc(600 * var(--pc));
  padding-top: calc(60 * var(--pc));
}

.ksf-about__title{
  margin: 0 0 calc(24 * var(--pc));
  font-size: calc(30 * var(--pc));
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.ksf-about__text{
  margin: 0 0 calc(42 * var(--pc));
  font-weight: 500;
  line-height: 2.15;
  letter-spacing: 0.06em;
}

.ksf-about__btn{
  display: inline-flex;
  align-items: center;
  gap: calc(18 * var(--pc));
  font-weight: 700;
  line-height: 1;
}

.ksf-about__btn-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(46 * var(--pc));
  height: calc(22 * var(--pc));
}

.ksf-about__btn-icon img{
  display: block;
  width: 100%;
  height: auto;
}

.ksf-about__side-image{
  position: absolute;
  top: calc(10 * var(--pc));
  right: calc(-130 * var(--pc));
  z-index: 2;
  width: calc(350 * var(--pc));
  height: calc(300 * var(--pc));
}

.ksf-about__side-mask{
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: skewX(-16deg);
}

.ksf-about__side-mask img{
  display: block;
  width: 140%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform:
    skewX(16deg)
    translateX(calc(-55 * var(--pc)));
}

@media screen and (max-width: 768px){

  .ksf-about{
    padding: calc(70 * var(--sp)) 0 calc(80 * var(--sp));
  }

  .ksf-about__inner{
    width: 92%;
    max-width: none;
    min-height: 0;
  }

  .ksf-about__image-area{
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    margin: 0 0 calc(36 * var(--sp));
  }

  .ksf-about__deco{
    left: calc(-34 * var(--sp));
    bottom: calc(-26 * var(--sp));
  }

  .ksf-about__deco span{
    width: calc(150 * var(--sp));
    height: calc(120 * var(--sp));
    transform: skewX(-16deg);
  }

  .ksf-about__image-mask{
    width: 84%;
    height: auto;
    aspect-ratio: 420 / 330;
    transform: skewX(-16deg);
  }

  .ksf-about__image-mask img{
    width: 128%;
    transform:
      skewX(16deg)
      translateX(calc(-36 * var(--sp)));
  }

  .ksf-about__content{
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }

  .ksf-about__title{
    margin-bottom: calc(20 * var(--sp));
    font-size: calc(24 * var(--sp));
  }

  .ksf-about__text{
    margin-bottom: calc(30 * var(--sp));
    line-height: 2;
  }

  .ksf-about__text br{
    display: none;
  }

  .ksf-about__btn{
    gap: calc(12 * var(--sp));
  }

  .ksf-about__btn-icon{
    width: calc(42 * var(--sp));
    height: calc(20 * var(--sp));
  }

  .ksf-about__side-image{
    display: none;
  }

}

/*---------------------------------
  Greeting
---------------------------------*/
.ksf-greeting{
  position: relative;
  overflow: hidden;
  background: #ececec;
  padding: calc(110 * var(--pc)) 0 calc(120 * var(--pc));
}

.ksf-greeting__inner{
  position: relative;
  width: 100%;
  max-width: calc(1920 * var(--pc));
  min-height: calc(520 * var(--pc));
  margin: 0 auto;
}

.ksf-greeting__content{
  position: relative;
  z-index: 3;
  width: calc(1040 * var(--pc));
  margin: 0 auto;
  padding-top: calc(18 * var(--pc));
}

.ksf-greeting__title{
  margin: 0 0 calc(28 * var(--pc));
  font-size: calc(30 * var(--pc));
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.ksf-greeting__text{
  font-weight: 500;
  line-height: 2.15;
  letter-spacing: 0.06em;
}

.ksf-greeting__text p + p{
  margin-top: calc(42 * var(--pc));
}

.ksf-greeting__bottom{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: calc(40 * var(--pc));
  margin-top: calc(42 * var(--pc));
}

.ksf-greeting__btn{
  display: inline-flex;
  align-items: center;
  gap: calc(18 * var(--pc));
  margin-top: 0;
  font-weight: 700;
  line-height: 1;
}

.ksf-greeting__btn-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(46 * var(--pc));
  height: calc(22 * var(--pc));
}

.ksf-greeting__btn-icon img{
  display: block;
  width: 100%;
  height: auto;
}

.ksf-greeting__president{
  position: relative;
  top: auto;
  right: auto;
  z-index: 3;
  width: auto;
  min-width: calc(250 * var(--pc));
  text-align: right;
}

.ksf-greeting__president-image{
  display: none;
}

.ksf-greeting__president-image img{
  display: block;
  width: 100%;
  height: auto;
}

.ksf-greeting__president-position{
  margin: 0 0 calc(8 * var(--pc));
  font-family: "Noto Serif JP", serif;
  font-size: calc(15 * var(--pc));
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.ksf-greeting__president-name{
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: calc(22 * var(--pc));
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.ksf-greeting__president-role{
  display: inline-block;
  margin-right: calc(10 * var(--pc));
  font-family: "Noto Serif JP", serif;
  font-size: calc(15 * var(--pc));
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  vertical-align: baseline;
}

.ksf-greeting__president-person{
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: calc(22 * var(--pc));
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  vertical-align: baseline;
}

.ksf-greeting__deco{
  position: absolute;
  display: flex;
  pointer-events: none;
}

.ksf-greeting__deco span{
  display: block;
  background: var(--grad-main);
  background-size: 200% 200%;
  transform: skewX(-16deg);
  animation: ksfGradMove 7s ease infinite;
}

.ksf-greeting__deco--left{
  top: calc(30 * var(--pc));
  left: calc(210 * var(--pc));
  z-index: 1;
}

.ksf-greeting__deco--left span{
  width: calc(300 * var(--pc));
  height: calc(280 * var(--pc));
}

.ksf-greeting__deco--right{
  right: calc(-70 * var(--pc));
  bottom: calc(70 * var(--pc));
  z-index: 1;
  gap: calc(60 * var(--pc));
}

.ksf-greeting__deco--right span:first-child{
  width: calc(250 * var(--pc));
  height: calc(260 * var(--pc));
}

.ksf-greeting__deco--right span:last-child{
  width: calc(150 * var(--pc));
  height: calc(260 * var(--pc));
}

@media screen and (max-width: 768px){

  .ksf-greeting{
    padding: calc(70 * var(--sp)) 0 calc(80 * var(--sp));
  }

  .ksf-greeting__inner{
    width: 92%;
    max-width: none;
    min-height: 0;
  }

  .ksf-greeting__content{
    width: 100%;
    margin: 0;
    padding-top: 0;
  }

  .ksf-greeting__title{
    margin-bottom: calc(24 * var(--sp));
    font-size: calc(24 * var(--sp));
  }

  .ksf-greeting__text{
    line-height: 2;
  }

  .ksf-greeting__text p + p{
    margin-top: calc(26 * var(--sp));
  }

  .ksf-greeting__bottom{
    display: block;
    margin-top: calc(30 * var(--sp));
  }

  .ksf-greeting__btn{
    gap: calc(12 * var(--sp));
  }

  .ksf-greeting__btn-icon{
    width: calc(42 * var(--sp));
    height: calc(20 * var(--sp));
  }

  .ksf-greeting__president{
    width: 100%;
    min-width: 0;
    margin: calc(32 * var(--sp)) 0 0;
    text-align: right;
  }

  .ksf-greeting__president-position{
    margin-bottom: calc(8 * var(--sp));
    font-size: calc(13 * var(--sp));
  }

  .ksf-greeting__president-name{
    font-size: calc(20 * var(--sp));
  }

  .ksf-greeting__president-role{
    margin-right: calc(8 * var(--sp));
    font-size: calc(13 * var(--sp));
  }

  .ksf-greeting__president-person{
    font-size: calc(20 * var(--sp));
  }

  .ksf-greeting__deco--left{
    top: calc(30 * var(--sp));
    left: calc(-56 * var(--sp));
  }

  .ksf-greeting__deco--left span{
    width: calc(150 * var(--sp));
    height: calc(140 * var(--sp));
  }

  .ksf-greeting__deco--right{
    right: calc(-70 * var(--sp));
    bottom: calc(30 * var(--sp));
    gap: calc(20 * var(--sp));
  }

  .ksf-greeting__deco--right span:first-child{
    width: calc(120 * var(--sp));
    height: calc(130 * var(--sp));
  }

  .ksf-greeting__deco--right span:last-child{
    width: calc(80 * var(--sp));
    height: calc(130 * var(--sp));
  }

}

/*---------------------------------
  Greeting Lower
---------------------------------*/
.ksf-greeting--lower{
  background: #fff;
  padding: 0 0 calc(190 * var(--pc));
}

.ksf-greeting--lower .ksf-greeting__inner{
  min-height: calc(520 * var(--pc));
}

.ksf-greeting--lower .ksf-greeting__content{
  width: calc(1040 * var(--pc));
  margin: 0 auto;
  padding-top: calc(18 * var(--pc));
}

.ksf-greeting--lower .ksf-greeting__btn{
  display: none;
}

.ksf-greeting--lower .ksf-greeting__president{
  position: relative;
  top: auto;
  right: auto;
  z-index: 3;
  width: 100%;
  margin-top: calc(42 * var(--pc));
  text-align: right;
}

.ksf-greeting--lower .ksf-greeting__president-image{
  display: none;
}

.ksf-greeting--lower .ksf-greeting__president-position{
  margin: 0 0 calc(8 * var(--pc));
}

.ksf-greeting--lower .ksf-greeting__president-name{
  margin: 0;
}

.ksf-greeting--lower .ksf-greeting__deco--left{
  top: calc(30 * var(--pc));
  left: calc(210 * var(--pc));
}

.ksf-greeting--lower .ksf-greeting__deco--right{
  right: calc(-70 * var(--pc));
  bottom: calc(70 * var(--pc));
}

@media screen and (max-width: 768px){

  .ksf-greeting--lower{
    padding: 0 0 calc(90 * var(--sp));
  }

  .ksf-greeting--lower .ksf-greeting__inner{
    width: 92%;
    min-height: 0;
  }

  .ksf-greeting--lower .ksf-greeting__content{
    width: 100%;
    margin: 0;
    padding-top: 0;
  }

  .ksf-greeting--lower .ksf-greeting__president{
    width: 100%;
    margin: calc(32 * var(--sp)) 0 0;
    text-align: right;
  }

  .ksf-greeting--lower .ksf-greeting__president-position{
    margin-bottom: calc(8 * var(--sp));
  }

  .ksf-greeting--lower .ksf-greeting__deco--left{
    top: calc(30 * var(--sp));
    left: calc(-56 * var(--sp));
  }

  .ksf-greeting--lower .ksf-greeting__deco--right{
    right: calc(-70 * var(--sp));
    bottom: calc(30 * var(--sp));
  }

}

/*---------------------------------
  Results
---------------------------------*/
.ksf-results{
  position: relative;
  overflow: hidden;
  background: #d7d7d7;
  padding: calc(80 * var(--pc)) 0;
}

.ksf-results__inner{
  position: relative;
  width: calc(900 * var(--pc));
  margin: 0 auto;
}

.ksf-results__head{
  margin: 0 0 calc(35 * var(--pc));
}

.ksf-results__title{
  margin: 0;
  font-size: calc(30 * var(--pc));
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.ksf-results__year{
  margin: 0 0 calc(5 * var(--pc));
  font-weight: 700;
  line-height: 1.5;
}

.ksf-results__body{
  display: flex;
  align-items: center;
  gap: calc(52 * var(--pc));
}

.ksf-results__list{
  display: grid;
  grid-template-columns: repeat(4, calc(150 * var(--pc)));
  gap: calc(28 * var(--pc));
}

.ksf-results__item{
  display: flex;
  flex-direction: column;
  min-height: calc(152 * var(--pc));
  background: #fff;
}

.ksf-results__label{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(42 * var(--pc));
  background: #36baad;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}

.ksf-results__number{
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}

.ksf-results__number .js-countup{
  margin-right: calc(8 * var(--pc));
  font-size: calc(50 * var(--pc));
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ksf-results__unit{
  display: inline-block;
  margin-left: calc(5 * var(--pc));
  font-size: calc(18 * var(--pc));
  transform: translateY(calc(14 * var(--pc)));
}

.ksf-results__illust img{
  display: block;
  width: 100%;
  height: auto;
}

.ksf-results__illust--pc{
  width: calc(95 * var(--pc));
}

.ksf-results__illust--sp{
  display: none;
}

.ksf-results__btn{
  display: inline-flex;
  align-items: center;
  gap: calc(18 * var(--pc));
  margin-top: calc(32 * var(--pc));
  font-weight: 700;
  line-height: 1;
}

.ksf-results__btn-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(46 * var(--pc));
  height: calc(22 * var(--pc));
}

.ksf-results__btn-icon img{
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px){

  .ksf-results{
    padding: calc(60 * var(--sp)) 0 calc(70 * var(--sp));
  }

  .ksf-results__inner{
    width: 92%;
  }

  .ksf-results__head{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: calc(20 * var(--sp));
    margin-bottom: calc(30 * var(--sp));
  }

  .ksf-results__heading{
    flex: 1;
    min-width: 0;
  }

  .ksf-results__title{
    font-size: calc(24 * var(--sp));
  }

  .ksf-results__year{
    margin-bottom: calc(24 * var(--sp));
    font-size: calc(15 * var(--sp));
  }

  .ksf-results__body{
    display: block;
  }

  .ksf-results__list{
    grid-template-columns: repeat(2, 1fr);
    gap: calc(14 * var(--sp));
  }

  .ksf-results__item{
    min-height: calc(128 * var(--sp));
  }

  .ksf-results__label{
    min-height: calc(40 * var(--sp));
    padding: 0 calc(6 * var(--sp));
    font-size: calc(13 * var(--sp));
  }

  .ksf-results__number{
    min-height: 0;
    font-size: calc(15 * var(--sp));
  }

  .ksf-results__number .js-countup{
    margin-right: calc(6 * var(--sp));
    font-size: calc(40 * var(--sp));
  }

  .ksf-results__unit{
    display: inline-block;
    margin-left: calc(5 * var(--sp));
    font-size: calc(14 * var(--sp));
    transform: translateY(calc(10 * var(--sp)));
  }

  .ksf-results__illust--pc{
    display: none;
  }

  .ksf-results__illust--sp{
    display: block;
    flex: 0 0 calc(48 * var(--sp));
    width: calc(48 * var(--sp));
    margin-top: calc(4 * var(--sp));
  }

  .ksf-results__btn{
    gap: calc(12 * var(--sp));
    margin-top: calc(34 * var(--sp));
    font-size: calc(14 * var(--sp));
  }

  .ksf-results__btn-icon{
    width: calc(42 * var(--sp));
    height: calc(20 * var(--sp));
  }

}

/*---------------------------------
  FAQ Intro
---------------------------------*/
.ksf-faq-intro{
  position: relative;
  overflow: hidden;
  background: #fff;
}

.ksf-faq-intro::before{
  content: "";
  position: absolute;
  top: 0;
  left: calc(-120 * var(--pc));
  z-index: 1;
  width: calc(1050 * var(--pc));
  height: 100%;
  background: var(--grad-main);
  background-size: 200% 200%;
  transform: skewX(-16deg);
  transform-origin: left top;
  animation: ksfGradMove 7s ease infinite;
}

.ksf-faq-intro__inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: calc(1000 * var(--pc)) calc(600 * var(--pc));
  column-gap: calc(100 * var(--pc));
  align-items: center;
  width: 100%;
  max-width: calc(1920 * var(--pc));
  min-height: calc(392 * var(--pc));
  margin: 0 auto;
}

.ksf-faq-intro__head{
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.ksf-faq-intro__title{
  margin: 0 0 calc(34 * var(--pc));
  font-size: calc(30 * var(--pc));
  font-weight: 700;
  line-height: 1.4;
}

.ksf-faq-intro__illust{
  width: calc(106 * var(--pc));
}

.ksf-faq-intro__illust img{
  display: block;
  width: 100%;
  height: auto;
}

.ksf-faq-intro__text{
  margin: 0 0 calc(34 * var(--pc));
  font-weight: 500;
  line-height: 2.15;
  letter-spacing: 0.06em;
}

.ksf-faq-intro__btn{
  display: inline-flex;
  align-items: center;
  gap: calc(18 * var(--pc));
  font-weight: 700;
  line-height: 1;
}

.ksf-faq-intro__btn-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(46 * var(--pc));
  height: calc(22 * var(--pc));
}

.ksf-faq-intro__btn-icon img{
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px){

  .ksf-faq-intro{
    background: #fff;
  }

  .ksf-faq-intro::before{
    width: 100%;
    height: calc(120 * var(--sp));
    top: 0;
    left: 0;
    transform: none;
  }

  .ksf-faq-intro__inner{
    display: block;
    width: 92%;
    max-width: none;
    min-height: 0;
    padding:
      calc(26 * var(--sp))
      0
      calc(36 * var(--sp));
  }

  .ksf-faq-intro__head{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(20 * var(--sp));
    color: #fff;
  }

  .ksf-faq-intro__title{
    margin: 0;
    font-size: calc(24 * var(--sp));
  }

  .ksf-faq-intro__illust{
    width: calc(53 * var(--sp));
  }

  .ksf-faq-intro__content{
    position: relative;
    z-index: 2;
  }

  .ksf-faq-intro__text{
    margin-bottom: calc(18 * var(--sp));
    line-height: 1.9;
  }

  .ksf-faq-intro__btn{
    gap: calc(12 * var(--sp));
  }

  .ksf-faq-intro__btn-icon{
    width: calc(42 * var(--sp));
    height: calc(20 * var(--sp));
  }

}

/*---------------------------------
  News
---------------------------------*/
.ksf-news{
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: calc(110 * var(--pc)) 0 calc(130 * var(--pc));
}

.ksf-news__inner{
  width: calc(1040 * var(--pc));
  margin: 0 auto;
}

.ksf-news__head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 calc(42 * var(--pc));
}

.ksf-news__title{
  margin: 0;
  font-size: calc(30 * var(--pc));
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.ksf-news__archive{
  display: block;
  width: calc(240 * var(--pc));
}

.ksf-news__archive img{
  display: block;
  width: 100%;
  height: auto;
}

.ksf-news__list{
  width: 100%;
}

.ksf-news__item{
  border-bottom: 1px solid #36baad;
}

.ksf-news__link{
  display: grid;
  grid-template-columns: calc(130 * var(--pc)) 1fr;
  column-gap: calc(46 * var(--pc));
  align-items: center;
  min-height: calc(76 * var(--pc));
}

.ksf-news__date{
  font-weight: 700;
  line-height: 1.5;
}

.ksf-news__text{
  min-width: 0;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px){

  .ksf-news{
    padding: calc(62 * var(--sp)) 0 calc(70 * var(--sp));
  }

  .ksf-news__inner{
    width: 92%;
  }

  .ksf-news__head{
    align-items: center;
    margin-bottom: calc(28 * var(--sp));
  }

  .ksf-news__title{
    font-size: calc(24 * var(--sp));
  }

  .ksf-news__archive{
    width: calc(150 * var(--sp));
  }

  .ksf-news__link{
    display: block;
    min-height: 0;
    padding: calc(18 * var(--sp)) 0;
  }

  .ksf-news__date{
    display: block;
    margin-bottom: calc(8 * var(--sp));
  }

  .ksf-news__text{
    display: block;
    line-height: 1.8;
  }

}

/*---------------------------------
  Lower Content
---------------------------------*/
.ksf-lower-content{
  padding:
    calc(92 * var(--pc))
    calc(20 * var(--pc))
    calc(80 * var(--pc));
  background: #fff;
}

.ksf-lower-content--odd{
  margin:
    0
    calc(20 * var(--pc))
    calc(80 * var(--pc));

  padding:
    calc(96 * var(--pc))
    0
    calc(96 * var(--pc));

  border-radius: calc(56 * var(--pc));
  background: rgba(204, 232, 190, 0.4);
}

/*---------------------------------
  Lower Text Link Hover
---------------------------------*/
.ksf-privacy__lead a,
.ksf-privacy__text a,
.ksf-faq-page__answer a,
.ksf-contents-page__body a:not(.ksf-public-page__link),
.ksf-news-detail__body a,
.ksf-contact__policy a{
  transition:
    color .3s ease,
    filter .3s ease;
}

@media (hover:hover){

  .ksf-privacy__lead a:hover,
  .ksf-privacy__text a:hover,
  .ksf-faq-page__answer a:hover,
  .ksf-contents-page__body a:not(.ksf-public-page__link):hover,
  .ksf-news-detail__body a:hover,
  .ksf-contact__policy a:hover{
    color: #36baad;

    filter:
      drop-shadow(
        0
        calc(2 * var(--pc))
        calc(6 * var(--pc))
        rgba(54,186,173,.18)
      );
  }

}

/*---------------------------------
  News List
---------------------------------*/
.ksf-news-list{
  width: calc(780 * var(--pc));
  margin: 0 auto;
}

.ksf-news-list__items{
  display: grid;
  gap: calc(42 * var(--pc));
}

.ksf-news-list__link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(30 * var(--pc));

  min-height: calc(82 * var(--pc));

  padding:
    calc(22 * var(--pc))
    calc(24 * var(--pc))
    calc(22 * var(--pc))
    calc(36 * var(--pc));

  border-radius: calc(12 * var(--pc));
  background: #fff;

  transition:
    box-shadow 1.0s ease,
    filter 1.0s ease;
}

@media (hover: hover){

  .ksf-news-list__link:hover{
    box-shadow:
      0
      calc(6 * var(--pc))
      calc(18 * var(--pc))
      rgba(0,0,0,.08);
  }

}

.ksf-news-list__body{
  display: block;
  min-width: 0;
}

.ksf-news-list__date{
  display: block;
  margin: 0 0 calc(8 * var(--pc));
  color: #337a98;
  font-size: calc(13 * var(--pc));
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
}

.ksf-news-list__title{
  display: block;
  font-size: calc(17 * var(--pc));
  font-weight: 700;
  line-height: 1.6;
}

.ksf-news-list__arrow,
.ksf-news-detail__back-arrow{
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;

  width: calc(36 * var(--pc));
  height: calc(36 * var(--pc));

  border-radius: 50%;
  background: #337a98;
  color: #fff;

  font-weight: 700;
  line-height: 1;
}

.ksf-pager{
  display: flex;
  justify-content: flex-end;
  gap: calc(16 * var(--pc));
  margin: calc(66 * var(--pc)) 0 0;
}

.ksf-pager__item{
  display: flex;
  align-items: center;
  justify-content: center;

  width: calc(38 * var(--pc));
  height: calc(38 * var(--pc));

  border: 1px solid #337a98;
  border-radius: 50%;

  color: #337a98;
  background: #fff;

  font-size: calc(14 * var(--pc));
  font-weight: 500;
  line-height: 1;

  transition:
    background-color .45s cubic-bezier(.22,1,.36,1),
    color .45s cubic-bezier(.22,1,.36,1),
    border-color .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s cubic-bezier(.22,1,.36,1);
}

.ksf-pager__item.is-current{
  background: #337a98;
  color: #fff;
}

@media (hover:hover){

  .ksf-pager__item:not(.is-current):hover{
    background: #337a98;
    color: #fff;

    box-shadow:
      0
      calc(4 * var(--pc))
      calc(12 * var(--pc))
      rgba(51,122,152,.18);
  }

}

.ksf-pager__item.is-current{
  pointer-events: none;
  cursor: default;
}

/*---------------------------------
  News Detail
---------------------------------*/
.ksf-news-detail{
  width: calc(780 * var(--pc));
  margin: 0 auto;
}

.ksf-news-detail__box{
  min-height: calc(620 * var(--pc));

  padding:
    calc(34 * var(--pc))
    calc(48 * var(--pc))
    calc(56 * var(--pc));

  border-radius: calc(12 * var(--pc));
  background: #fff;
}

.ksf-news-detail__date{
  display: block;
  margin: 0 0 calc(8 * var(--pc));
  color: #337a98;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
}

.ksf-news-detail__title{
  margin: 0 0 calc(42 * var(--pc));
  font-size: calc(20 * var(--pc));
  font-weight: 700;
  line-height: 1.7;
}

.ksf-news-detail__body p{
  font-weight: 700;
  line-height: 2;
  letter-spacing: .04em;
}

.ksf-news-detail__body p + p{
  margin-top: calc(38 * var(--pc));
}

.ksf-news-detail__back{
  display: inline-flex;
  align-items: center;
  gap: calc(16 * var(--pc));
  margin: calc(42 * var(--pc)) 0 0 calc(20 * var(--pc));
  font-weight: 700;
}

.ksf-news-detail__back-text{
  line-height: 1.5;
}

/*---------------------------------
  SP
---------------------------------*/
@media screen and (max-width: 768px){

  .ksf-lower-content{
    padding:
      calc(48 * var(--sp))
      calc(12 * var(--sp))
      calc(52 * var(--sp));
  }

  .ksf-lower-content--odd{
    margin:
      0
      calc(12 * var(--sp))
      calc(48 * var(--sp));

    padding:
      calc(48 * var(--sp))
      0
      calc(52 * var(--sp));

    border-radius: calc(28 * var(--sp));
  }

  .ksf-news-list,
  .ksf-news-detail{
    width: 84%;
  }

  .ksf-news-list__items{
    gap: calc(20 * var(--sp));
  }

  .ksf-news-list__link{
    min-height: calc(78 * var(--sp));
    padding:
      calc(18 * var(--sp))
      calc(16 * var(--sp))
      calc(18 * var(--sp))
      calc(20 * var(--sp));
    border-radius: calc(10 * var(--sp));
  }

  .ksf-news-list__date,
  .ksf-news-detail__date{
    font-size: calc(12 * var(--sp));
  }

  .ksf-news-list__title{
    font-size: calc(14 * var(--sp));
  }

  .ksf-news-list__arrow,
  .ksf-news-detail__back-arrow{
    width: calc(24 * var(--sp));
    height: calc(24 * var(--sp));
    font-size: calc(14 * var(--sp));
  }

  .ksf-pager{
    justify-content: center;
    gap: calc(10 * var(--sp));
    margin-top: calc(42 * var(--sp));
  }

  .ksf-pager__item{
    width: calc(32 * var(--sp));
    height: calc(32 * var(--sp));
    font-size: calc(12 * var(--sp));
  }

  .ksf-news-detail__box{
    min-height: calc(420 * var(--sp));
    padding:
      calc(26 * var(--sp))
      calc(22 * var(--sp))
      calc(36 * var(--sp));
    border-radius: calc(10 * var(--sp));
  }

  .ksf-news-detail__title{
    margin-bottom: calc(28 * var(--sp));
    font-size: calc(15 * var(--sp));
  }

  .ksf-news-detail__body p{
    font-size: calc(13 * var(--sp));
    line-height: 1.9;
  }

  .ksf-news-detail__body p + p{
    margin-top: calc(28 * var(--sp));
  }

  .ksf-news-detail__back{
    gap: calc(12 * var(--sp));
    margin-top: calc(32 * var(--sp));
  }

  .ksf-news-detail__back-text{
    font-size: calc(13 * var(--sp));
  }

}

/*---------------------------------
  Contact
---------------------------------*/
.ksf-contact{
  width: calc(1000 * var(--pc));
  margin: 0 auto;
}

.ksf-contact__form{
  width: 100%;
}

.ksf-contact__field + .ksf-contact__field{
  margin-top: calc(32 * var(--pc));
}

.ksf-contact__label{
  display: block;
  margin: 0 0 calc(10 * var(--pc));
  font-weight: 700;
  line-height: 1.6;
}

.ksf-contact__input,
.ksf-contact__textarea{
  display: block;
  width: 100%;
  border: 0;
  border-radius: calc(10 * var(--pc));
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(14 * var(--pc));
  font-weight: 500;
  line-height: 1.7;
  outline: none;
}

.ksf-contact__input{
  height: calc(48 * var(--pc));
  padding: 0 calc(18 * var(--pc));
}

.ksf-contact__textarea{
  min-height: calc(250 * var(--pc));
  padding: calc(18 * var(--pc));
  resize: vertical;
}

.ksf-contact__input::placeholder,
.ksf-contact__textarea::placeholder{
  color: #8d8d8d;
}

.ksf-contact__input:focus,
.ksf-contact__textarea:focus{
  box-shadow:
    0 0 0 2px rgba(51,122,152,.22);
}

.ksf-contact__policy{
  margin: calc(38 * var(--pc)) 0 0;
  font-size: calc(14 * var(--pc));
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.ksf-contact__policy a{
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.ksf-contact__agree{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(8 * var(--pc));
  margin: calc(34 * var(--pc)) 0 0;
  font-size: calc(14 * var(--pc));
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
}

.ksf-contact__agree-input{
  width: calc(13 * var(--pc));
  height: calc(13 * var(--pc));
  margin: 0;
  accent-color: #80bcc4;
}

.ksf-contact__button-wrap{
  display: flex;
  justify-content: center;
  margin: calc(42 * var(--pc)) 0 0;
}

.ksf-contact-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: calc(326 * var(--pc));
  height: calc(54 * var(--pc));

  border: 1px solid #7db6c3;

  background: #7db6c3;
  color: #fff;
  text-decoration: none;

  font-weight: 700;
  line-height: 1;

  cursor: pointer;

  transition:
    background-color .5s cubic-bezier(.22,1,.36,1),
    color .5s cubic-bezier(.22,1,.36,1),
    border-color .5s cubic-bezier(.22,1,.36,1),
    box-shadow .5s cubic-bezier(.22,1,.36,1);
}

.ksf-contact .ksf-contact-btn,
.ksf-contact .ksf-contact-btn:visited{
  color: #fff;
}

.ksf-contact-btn:hover{
  text-decoration: none;
}

@media (hover:hover){

  .ksf-contact .ksf-contact-btn:hover{
    background: #fff;
    color: #80bcc4;

    box-shadow:
      0
      calc(6 * var(--pc))
      calc(18 * var(--pc))
      rgba(125,182,195,.18);
  }

}

/*---------------------------------
  SP Contact
---------------------------------*/
@media screen and (max-width: 768px){

  .ksf-contact{
    width: 84%;
  }

  .ksf-contact__field + .ksf-contact__field{
    margin-top: calc(24 * var(--sp));
  }

  .ksf-contact__label{
    margin-bottom: calc(8 * var(--sp));
    font-size: calc(13 * var(--sp));
  }

  .ksf-contact__input,
  .ksf-contact__textarea{
    border-radius: calc(8 * var(--sp));
    font-size: calc(13 * var(--sp));
  }

  .ksf-contact__input{
    height: calc(44 * var(--sp));
    padding: 0 calc(14 * var(--sp));
  }

  .ksf-contact__textarea{
    min-height: calc(210 * var(--sp));
    padding: calc(14 * var(--sp));
  }

  .ksf-contact__policy{
    margin-top: calc(30 * var(--sp));
    font-size: calc(12 * var(--sp));
    text-align: left;
  }

  .ksf-contact__agree{
    align-items: flex-start;
    justify-content: flex-start;
    gap: calc(8 * var(--sp));
    margin-top: calc(24 * var(--sp));
    font-size: calc(12 * var(--sp));
  }

  .ksf-contact__agree-input{
    flex: 0 0 auto;
    width: calc(13 * var(--sp));
    height: calc(13 * var(--sp));
    margin-top: calc(3 * var(--sp));
  }

  .ksf-contact__button-wrap{
    margin-top: calc(34 * var(--sp));
  }

  .ksf-contact-btn{
    min-width: calc(190 * var(--sp));
    height: calc(48 * var(--sp));
    font-size: calc(13 * var(--sp));
  }

}

/*---------------------------------
  Contact Confirm
---------------------------------*/
.ksf-contact-confirm{
  width: 100%;
}

.ksf-contact-confirm__list{
  margin: 0;
}

.ksf-contact-confirm__row{
  display: grid;
  grid-template-columns: calc(220 * var(--pc)) 1fr;
  column-gap: calc(34 * var(--pc));
  align-items: start;
  padding: calc(20 * var(--pc)) 0;
  border-bottom: 1px solid rgba(51,122,152,.24);
}

.ksf-contact-confirm__row:first-child{
  border-top: 1px solid rgba(51,122,152,.24);
}

.ksf-contact-confirm__term{
  font-weight: 700;
  line-height: 1.7;
}

.ksf-contact-confirm__desc{
  font-weight: 500;
  line-height: 1.8;
  word-break: break-word;
}

.ksf-contact__button-wrap--confirm{
  gap: calc(24 * var(--pc));
}

.ksf-contact-btn--back{
  border-color: #a9a4a8;
  background: #a9a4a8;
}

@media (hover:hover){

  .ksf-contact .ksf-contact-btn--back:hover{
    background: #fff;
    color: #a9a4a8;

    box-shadow:
      0
      calc(6 * var(--pc))
      calc(18 * var(--pc))
      rgba(169,164,168,.18);
  }

}

@media screen and (max-width: 768px){

  .ksf-contact-confirm__row{
    display: block;
    padding: calc(18 * var(--sp)) 0;
  }

  .ksf-contact-confirm__term{
    margin-bottom: calc(6 * var(--sp));
    font-size: calc(13 * var(--sp));
  }

  .ksf-contact-confirm__desc{
    font-size: calc(13 * var(--sp));
  }

  .ksf-contact__button-wrap--confirm{
    flex-direction: column-reverse;
    gap: calc(14 * var(--sp));
  }

}

/*---------------------------------
  Contact Thanks
---------------------------------*/
.ksf-contact-thanks{
  text-align: center;
}

.ksf-contact-thanks__title{
  margin: 0 0 calc(34 * var(--pc));
  font-size: calc(22 * var(--pc));
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.ksf-contact-thanks__text{
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}

.ksf-contact-thanks__text p{
  text-align: left;
}

.ksf-contact-thanks__text p + p{
  margin-top: calc(22 * var(--pc));
}

@media screen and (max-width: 768px){

  .ksf-contact-thanks__title{
    margin-bottom: calc(24 * var(--sp));
    font-size: calc(18 * var(--sp));
  }

  .ksf-contact-thanks__text{
    font-size: calc(13 * var(--sp));
    line-height: 1.9;
    text-align: left;
  }

}

/*---------------------------------
  Application / Upload Form
---------------------------------*/
.ksf-contact__lead{
  margin: 0 0 calc(34 * var(--pc));
  font-weight: 500;
  line-height: 1.9;
}

.ksf-contact__file-wrap{
  display: flex;
  align-items: center;
  gap: calc(16 * var(--pc));
}

.ksf-contact__file-name{
  display: block;
  width: calc(560 * var(--pc));
  height: calc(48 * var(--pc));
  border: 0;
  border-radius: calc(10 * var(--pc));
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(14 * var(--pc));
  font-weight: 500;
  line-height: 1.7;
  outline: none;
  padding: 0 calc(18 * var(--pc));
}

.ksf-contact__file-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(96 * var(--pc));
  height: calc(48 * var(--pc));
  border-radius: calc(14 * var(--pc));
  background: #c4c4c4;
  font-size: calc(14 * var(--pc));
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color .5s cubic-bezier(.22,1,.36,1),
    color .5s cubic-bezier(.22,1,.36,1),
    box-shadow .5s cubic-bezier(.22,1,.36,1);
}

.ksf-contact__file-input{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (hover:hover){

  .ksf-contact__file-button:hover{
    background: #fff;
    color: #80bcc4;
    box-shadow:
      0
      calc(6 * var(--pc))
      calc(18 * var(--pc))
      rgba(125,182,195,.18);
  }

}

@media screen and (max-width: 768px){

  .ksf-contact__lead{
    margin-bottom: calc(28 * var(--sp));
    font-size: calc(13 * var(--sp));
    line-height: 1.9;
  }

  .ksf-contact__lead br{
    display: none;
  }

  .ksf-contact__file-wrap{
    gap: calc(10 * var(--sp));
  }

  .ksf-contact__file-name{
    flex: 1;
    width: auto;
    height: calc(44 * var(--sp));
    border-radius: calc(8 * var(--sp));
    font-size: calc(13 * var(--sp));
    padding: 0 calc(14 * var(--sp));
  }

  .ksf-contact__file-button{
    flex: 0 0 calc(76 * var(--sp));
    width: calc(76 * var(--sp));
    height: calc(44 * var(--sp));
    border-radius: calc(10 * var(--sp));
    font-size: calc(13 * var(--sp));
  }

}

/*---------------------------------
  Contact Select
---------------------------------*/
.ksf-contact__select{
  display: block;
  width: 100%;
  height: calc(48 * var(--pc));

  border: 0;
  border-radius: calc(10 * var(--pc));

  background: #fff;

  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(14 * var(--pc));
  font-weight: 500;
  line-height: 1.7;

  padding:
    0
    calc(18 * var(--pc));

  outline: none;

  cursor: pointer;
}

.ksf-contact__select:focus{
  box-shadow:
    0 0 0 2px rgba(51,122,152,.22);
}

@media screen and (max-width: 768px){

  .ksf-contact__select{
    height: calc(44 * var(--sp));
    border-radius: calc(8 * var(--sp));
    font-size: calc(13 * var(--sp));

    padding:
      0
      calc(14 * var(--sp));
  }

}

/*---------------------------------
  Privacy
---------------------------------*/
.ksf-privacy{
  width: calc(980 * var(--pc));
  margin: 0 auto;
}

.ksf-privacy__lead{
  margin: 0 0 calc(70 * var(--pc));

  font-weight: 500;
  line-height: 2;
}

.ksf-privacy__section + .ksf-privacy__section{
  margin-top: calc(60 * var(--pc));
}

.ksf-privacy__title{
  margin: 0 0 calc(24 * var(--pc));

  font-size: calc(28 * var(--pc));
  font-weight: 700;
  line-height: 1.5;
}

.ksf-privacy__text{
  font-weight: 500;
  line-height: 2;
}

.ksf-privacy__text p + p{
  margin-top: calc(20 * var(--pc));
}

@media screen and (max-width:768px){

  .ksf-privacy{
    width: 84%;
  }

  .ksf-privacy__lead{
    margin-bottom: calc(40 * var(--sp));

    font-size: calc(13 * var(--sp));
    line-height: 1.9;
  }

  .ksf-privacy__section + .ksf-privacy__section{
    margin-top: calc(36 * var(--sp));
  }

  .ksf-privacy__title{
    margin-bottom: calc(14 * var(--sp));

    font-size: calc(22 * var(--sp));
  }

  .ksf-privacy__text{
    font-size: calc(13 * var(--sp));
    line-height: 1.9;
  }

  .ksf-privacy__text p + p{
    margin-top: calc(14 * var(--sp));
  }

}

/*---------------------------------
  FAQ Page
---------------------------------*/
.ksf-faq-page{
  width: calc(1100 * var(--pc));
  margin: 0 auto;
}

.ksf-faq-page__item + .ksf-faq-page__item{
  margin-top: calc(44 * var(--pc));
}

.ksf-faq-page__question{
  margin: 0;

  padding:
    calc(16 * var(--pc))
    calc(24 * var(--pc));

  background: #fff;

  border-radius: calc(18 * var(--pc));

  font-size: calc(28 * var(--pc));
  font-weight: 700;
  line-height: 1.5;
}

.ksf-faq-page__answer{
  padding:
    calc(18 * var(--pc))
    calc(24 * var(--pc))
    0;
}

.ksf-faq-page__answer p{
  font-weight: 500;
  line-height: 2;
}

.ksf-faq-page__answer p + p{
  margin-top: calc(16 * var(--pc));
}

@media screen and (max-width:768px){

  .ksf-faq-page{
    width: 84%;
  }

  .ksf-faq-page__item + .ksf-faq-page__item{
    margin-top: calc(28 * var(--sp));
  }

  .ksf-faq-page__question{
    padding:
      calc(12 * var(--sp))
      calc(16 * var(--sp));

    border-radius: calc(12 * var(--sp));

    font-size: calc(18 * var(--sp));
    line-height: 1.6;
  }

  .ksf-faq-page__answer{
    padding:
      calc(14 * var(--sp))
      calc(8 * var(--sp))
      0;
  }

  .ksf-faq-page__answer p{
    font-size: calc(13 * var(--sp));
    line-height: 1.9;
  }

}

/*---------------------------------
  Contents Page
---------------------------------*/
.ksf-contents-page{
  width: calc(1100 * var(--pc));
  margin: 0 auto;
}

.ksf-contents-page__section{
  display: grid;
  grid-template-columns: calc(260 * var(--pc)) 1fr;
  column-gap: calc(90 * var(--pc));
  align-items: start;
}

.ksf-contents-page__section + .ksf-contents-page__section{
  margin-top: calc(105 * var(--pc));
}

.ksf-contents-page__title{
  margin: 0;
  font-size: calc(28 * var(--pc));
  font-weight: 700;
  line-height: 1.5;
}

.ksf-contents-page__body{
  min-width: 0;
}

.ksf-contents-page__body p{
  margin: 0;
  font-weight: 500;
  line-height: 2;
}

.ksf-contents-page__body p + p{
  margin-top: calc(18 * var(--pc));
}

.ksf-contents-page__sub-title{
  margin: calc(8 * var(--pc)) 0 calc(20 * var(--pc));
  font-size: calc(20 * var(--pc));
  font-weight: 700;
  line-height: 1.6;
}

.ksf-contents-page__list{
  display: grid;
  gap: calc(18 * var(--pc));
  margin: calc(30 * var(--pc)) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: contents-list;
}

.ksf-contents-page__list li{
  position: relative;
  padding-left: calc(42 * var(--pc));
  font-size: calc(20 * var(--pc));
  font-weight: 700;
  line-height: 1.6;
  counter-increment: contents-list;
}

.ksf-contents-page__list li::before{
  content: counter(contents-list) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
}

@media screen and (max-width:768px){

  .ksf-contents-page{
    width: 84%;
  }

  .ksf-contents-page__section{
    display: block;
  }

  .ksf-contents-page__section + .ksf-contents-page__section{
    margin-top: calc(46 * var(--sp));
  }

  .ksf-contents-page__title{
    margin-bottom: calc(18 * var(--sp));
    font-size: calc(22 * var(--sp));
  }

  .ksf-contents-page__body p{
    font-size: calc(13 * var(--sp));
    line-height: 1.9;
  }

  .ksf-contents-page__sub-title{
    margin-bottom: calc(14 * var(--sp));
    font-size: calc(15 * var(--sp));
  }

  .ksf-contents-page__list{
    gap: calc(12 * var(--sp));
    margin-top: calc(22 * var(--sp));
  }

  .ksf-contents-page__list li{
    padding-left: calc(28 * var(--sp));
    font-size: calc(14 * var(--sp));
  }

}

/*---------------------------------
  Public Page
---------------------------------*/
.ksf-public-page__category + .ksf-public-page__category{
  margin-top: calc(58 * var(--pc));
}

.ksf-public-page .ksf-contents-page__body{
  padding-bottom: calc(24 * var(--pc));
  border-bottom: 1px solid #c1c1c1;
}

.ksf-public-page__list{
  display: grid;
  gap: calc(10 * var(--pc));
  margin: 0;
  padding: 0;
  list-style: none;
}

.ksf-public-page__link{
  display: inline-flex;
  align-items: center;
  gap: calc(18 * var(--pc));

  color: #000;
  text-decoration: none;

  font-weight: 500;
  line-height: 1.7;

  transition:
    color .3s ease,
    filter .3s ease;
}

@media (hover:hover){

  .ksf-public-page__link:hover{
    color: #36baad;

    filter:
      drop-shadow(
        0
        calc(2 * var(--pc))
        calc(6 * var(--pc))
        rgba(54,186,173,.18)
      );
  }

}

.ksf-public-page__icon{
  display: block;
  flex: 0 0 auto;
  width: calc(19 * var(--pc));
  height: auto;
}

@media screen and (max-width:768px){

  .ksf-public-page__category + .ksf-public-page__category{
    margin-top: calc(38 * var(--sp));
  }

  .ksf-public-page .ksf-contents-page__body{
    padding-bottom: calc(18 * var(--sp));
  }

  .ksf-public-page__list{
    gap: calc(10 * var(--sp));
  }

  .ksf-public-page__link{
    gap: calc(10 * var(--sp));
    font-size: calc(13 * var(--sp));
    line-height: 1.7;
  }

  .ksf-public-page__icon{
    width: calc(19 * var(--sp));
  }

}

/*---------------------------------
  Recruitment Page
---------------------------------*/
.ksf-recruitment-page{
  width: calc(1000 * var(--pc));
  margin: 0 auto;
}

.ksf-recruitment-page .ksf-contents-page__section{
  grid-template-columns: calc(260 * var(--pc)) 1fr;
  column-gap: calc(86 * var(--pc));
}

.ksf-recruitment-page__section + .ksf-recruitment-page__section{
  margin-top: calc(62 * var(--pc));
}

.ksf-recruitment-page .ksf-contents-page__title,
.ksf-recruitment-page__heading,
.ksf-recruitment-page__download-title{
  font-size: calc(28 * var(--pc));
}

.ksf-recruitment-page__body-title{
  margin: 0 0 calc(16 * var(--pc));

  font-weight: 700;
  line-height: 1.7;
}

.ksf-recruitment-page__ordered-list{
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: recruitment-order;
}

.ksf-recruitment-page__ordered-list li{
  position: relative;
  padding-left: calc(48 * var(--pc));

  font-weight: 500;
  line-height: 2;

  counter-increment: recruitment-order;
}

.ksf-recruitment-page__ordered-list li::before{
  content: "(" counter(recruitment-order) ")";
  position: absolute;
  top: 0;
  left: 0;
}

.ksf-recruitment-page__definition-list{
  display: grid;
  gap: calc(7 * var(--pc));
  margin: 0;
}

.ksf-recruitment-page__definition-list div{
  display: flex;
  align-items: baseline;
  gap: calc(34 * var(--pc));
}

.ksf-recruitment-page__definition-list dt,
.ksf-recruitment-page__definition-list dd{
  margin: 0;

  line-height: 1.75;
  letter-spacing: .04em;
}

.ksf-recruitment-page__definition-list dt{
  flex: 0 0 auto;
  min-width: calc(150 * var(--pc));

  font-weight: 500;
}

.ksf-recruitment-page__definition-list dd{
  flex: 1;

  font-weight: 500;
}

.ksf-recruitment-page__definition-list div:nth-child(n + 3) dt{
  font-weight: 700;
}

.ksf-recruitment-page__anchor-list{
  display: grid;
  gap: calc(8 * var(--pc));
  margin: calc(6 * var(--pc)) 0 0;
  padding: 0;
  list-style: none;
}

.ksf-recruitment-page__anchor-list a{
  display: inline-flex;
  align-items: center;

  color: #000;

  font-weight: 500;
  line-height: 1.7;

  text-decoration: underline;
  text-underline-offset: .25em;

  transition:
    color .3s ease,
    filter .3s ease;
}

@media (hover:hover){

  .ksf-recruitment-page__anchor-list a:hover{
    color: #36baad;

    filter:
      drop-shadow(
        0
        calc(2 * var(--pc))
        calc(6 * var(--pc))
        rgba(54,186,173,.18)
      );
  }

}

.ksf-recruitment-page__block{
  margin-top: calc(76 * var(--pc));
}

.ksf-recruitment-page__heading{
  margin: 0 0 calc(28 * var(--pc));
  font-weight: 700;
  line-height: 1.6;
}

.ksf-recruitment-page__image{
  display: block;
  width: 100%;
}

.ksf-recruitment-page__image img{
  display: block;
  width: 100%;
  height: auto;
}

.ksf-recruitment-page__download{
  margin-top: calc(86 * var(--pc));
  scroll-margin-top: calc(150 * var(--pc));
}

.ksf-recruitment-page__download-title{
  margin: 0 0 calc(42 * var(--pc));

  padding:
    calc(12 * var(--pc))
    calc(22 * var(--pc));

  background: #fff;

  border-radius: calc(18 * var(--pc));

  font-weight: 700;
  line-height: 1.5;
}

.ksf-recruitment-page__download-sub-title{
  margin: 0 0 calc(18 * var(--pc));

  font-size: calc(20 * var(--pc));
  font-weight: 700;
  line-height: 1.6;
}

.ksf-recruitment-page__download-text{
  margin: 0 0 calc(26 * var(--pc));

  font-weight: 500;
  line-height: 2;
}

.ksf-recruitment-page__button-list{
  display: grid;
  grid-template-columns: repeat(2, calc(326 * var(--pc)));
  justify-content: center;
  gap:
    calc(50 * var(--pc))
    calc(90 * var(--pc));

  margin-top: calc(42 * var(--pc));
}

.ksf-recruitment-page__button:first-child{
  grid-column: 1 / -1;
  justify-self: center;
}

.ksf-recruitment-page__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 * var(--pc));

  width: calc(326 * var(--pc));
  min-height: calc(60 * var(--pc));

  border: 1px solid currentColor;
  border-radius: calc(6 * var(--pc));

  color: #fff !important;
  text-decoration: none;

  font-weight: 700;
  line-height: 1.4;

  transition:
    background-color .5s cubic-bezier(.22,1,.36,1),
    color .5s cubic-bezier(.22,1,.36,1),
    border-color .5s cubic-bezier(.22,1,.36,1),
    box-shadow .5s cubic-bezier(.22,1,.36,1);
}

.ksf-recruitment-page__button img{
  display: block;
  flex: 0 0 auto;
  height: auto;
}

.ksf-recruitment-page__button--green{
  background: #80bcc4;
  border-color: #80bcc4;
}

.ksf-recruitment-page__button--orange{
  background: #ffb65f;
  border-color: #ffb65f;
}

.ksf-recruitment-page__button--blue{
  background: #7fc0f0;
  border-color: #7fc0f0;
}

.ksf-recruitment-page__button-icon--pdf{
  width: calc(19 * var(--pc));
}

.ksf-recruitment-page__button-icon--word{
  width: calc(25 * var(--pc));
}

.ksf-recruitment-page__button-icon--excel{
  width: calc(25 * var(--pc));
}

@media (hover:hover){

  .ksf-recruitment-page__button--green:hover{
    background: #fff;
    color: #80bcc4 !important;

    box-shadow:
      0
      calc(6 * var(--pc))
      calc(18 * var(--pc))
      rgba(125,182,195,.18);
  }

  .ksf-recruitment-page__button--orange:hover{
    background: #fff;
    color: #ffb65f !important;

    box-shadow:
      0
      calc(6 * var(--pc))
      calc(18 * var(--pc))
      rgba(255,182,95,.18);
  }

  .ksf-recruitment-page__button--blue:hover{
    background: #fff;
    color: #7fc0f0 !important;

    box-shadow:
      0
      calc(6 * var(--pc))
      calc(18 * var(--pc))
      rgba(127,192,240,.18);
  }

}

.ksf-recruitment-page__upload{
  margin-top: calc(88 * var(--pc));
}

.ksf-recruitment-page__upload-link{
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: calc(127 * var(--pc));

  border: 1px solid #337a98;
  border-radius: calc(10 * var(--pc));

  background: #337a98;
  color: #fff !important;
  text-decoration: none;

  font-size: calc(22 * var(--pc));
  font-weight: 700;
  line-height: 1.4;

  transition:
    background-color .5s cubic-bezier(.22,1,.36,1),
    color .5s cubic-bezier(.22,1,.36,1),
    border-color .5s cubic-bezier(.22,1,.36,1),
    box-shadow .5s cubic-bezier(.22,1,.36,1);
}

.ksf-recruitment-page__upload-arrow{
  position: absolute;
  top: 50%;
  right: calc(22 * var(--pc));

  display: flex;
  align-items: center;
  justify-content: center;

  width: calc(36 * var(--pc));
  height: calc(36 * var(--pc));

  border-radius: 50%;
  background: #fff;
  color: #337a98;

  font-weight: 700;
  line-height: 1;

  transform: translateY(-50%);

  transition:
    background-color .5s cubic-bezier(.22,1,.36,1),
    color .5s cubic-bezier(.22,1,.36,1);
}

@media (hover:hover){

  .ksf-recruitment-page__upload-link:hover{
    background: #fff;
    color: #337a98 !important;

    box-shadow:
      0
      calc(6 * var(--pc))
      calc(18 * var(--pc))
      rgba(51,122,152,.18);
  }

  .ksf-recruitment-page__upload-link:hover .ksf-recruitment-page__upload-arrow{
    background: #337a98;
    color: #fff;
  }

}

@media screen and (max-width:768px){

  .ksf-recruitment-page{
    width: 84%;
  }

  .ksf-recruitment-page .ksf-contents-page__section{
    display: block;
  }

  .ksf-recruitment-page__section + .ksf-recruitment-page__section{
    margin-top: calc(42 * var(--sp));
  }

  .ksf-recruitment-page .ksf-contents-page__title,
  .ksf-recruitment-page__heading,
  .ksf-recruitment-page__download-title{
    font-size: calc(18 * var(--sp));
  }

  .ksf-recruitment-page__body-title{
    margin-bottom: calc(10 * var(--sp));
    font-size: calc(15 * var(--sp));
  }

  .ksf-recruitment-page__ordered-list li{
    padding-left: calc(36 * var(--sp));
    font-size: calc(13 * var(--sp));
    line-height: 1.9;
  }

  .ksf-recruitment-page__definition-list{
    gap: calc(5 * var(--sp));
  }

  .ksf-recruitment-page__definition-list div{
    gap: calc(14 * var(--sp));
  }

  .ksf-recruitment-page__definition-list dt,
  .ksf-recruitment-page__definition-list dd{
    font-size: calc(13 * var(--sp));
    line-height: 1.8;
  }

  .ksf-recruitment-page__definition-list dt{
    min-width: calc(108 * var(--sp));
  }

  .ksf-recruitment-page__anchor-list{
    gap: calc(6 * var(--sp));
    margin-top: calc(6 * var(--sp));
  }

  .ksf-recruitment-page__anchor-list a{
    font-size: calc(13 * var(--sp));
  }

  .ksf-recruitment-page__block{
    margin-top: calc(54 * var(--sp));
  }

  .ksf-recruitment-page__heading{
    margin-bottom: calc(20 * var(--sp));
  }

  .ksf-recruitment-page__download{
    margin-top: calc(58 * var(--sp));
    scroll-margin-top: calc(90 * var(--sp));
  }

  .ksf-recruitment-page__download-title{
    margin-bottom: calc(28 * var(--sp));

    padding:
      calc(10 * var(--sp))
      calc(16 * var(--sp));

    border-radius: calc(12 * var(--sp));
  }

  .ksf-recruitment-page__download-sub-title{
    margin-bottom: calc(14 * var(--sp));
    font-size: calc(15 * var(--sp));
  }

  .ksf-recruitment-page__download-text{
    margin-bottom: calc(20 * var(--sp));
    font-size: calc(13 * var(--sp));
    line-height: 1.9;
  }

  .ksf-recruitment-page__button-list{
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(14 * var(--sp));
    margin-top: calc(30 * var(--sp));
  }

  .ksf-recruitment-page__button:first-child{
    grid-column: auto;
    justify-self: stretch;
  }

  .ksf-recruitment-page__button{
    width: 100%;
    min-height: calc(48 * var(--sp));
    border-radius: calc(6 * var(--sp));
    font-size: calc(13 * var(--sp));
  }



  .ksf-recruitment-page__button-icon--pdf{
    width: calc(19 * var(--sp));
  }

  .ksf-recruitment-page__button-icon--word{
    width: calc(25 * var(--sp));
  }

  .ksf-recruitment-page__button-icon--excel{
    width: calc(25 * var(--sp));
  }

  .ksf-recruitment-page__upload{
    margin-top: calc(54 * var(--sp));
  }

  .ksf-recruitment-page__upload-link{
    min-height: calc(56 * var(--sp));
    border-radius: calc(8 * var(--sp));
    font-size: calc(14 * var(--sp));
  }

  .ksf-recruitment-page__upload-arrow{
    right: calc(14 * var(--sp));
    width: calc(26 * var(--sp));
    height: calc(26 * var(--sp));
    font-size: calc(13 * var(--sp));
  }

}

/*---------------------------------
  Organization Page
---------------------------------*/
.ksf-organization-page{
  width: calc(1000 * var(--pc));
  margin: 0 auto;
}

.ksf-organization-page__title{
  margin:
    0
    0
    calc(54 * var(--pc));

  font-size: calc(28 * var(--pc));
  font-weight: 700;
  line-height: 1.5;
}

.ksf-organization-page__chart{
  display: block;
  width: 100%;
}

.ksf-organization-page__chart img{
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width:768px){

  .ksf-organization-page{
    width: 84%;
  }

  .ksf-organization-page__title{
    margin-bottom: calc(28 * var(--sp));

    font-size: calc(22 * var(--sp));
  }

}

/*---------------------------------
  Results Page
---------------------------------*/
.ksf-results-page{
  width: calc(1000 * var(--pc));
  margin: 0 auto;
}

.ksf-results-page__title{
  margin:
    0
    0
    calc(42 * var(--pc));

  font-size: calc(28 * var(--pc));
  font-weight: 700;
  line-height: 1.5;
}

.ksf-results-page__year{
  margin:
    0
    0
    calc(22 * var(--pc));

  font-weight: 700;
  line-height: 1.5;
}

.ksf-results-page__summary{
  width: calc(830 * var(--pc));
}

.ksf-results-page__summary-body{
  display: flex;
  align-items: flex-start;
  gap: calc(62 * var(--pc));
}

.ksf-results-page__summary-list{
  display: grid;
  grid-template-columns:
    calc(190 * var(--pc))
    calc(190 * var(--pc))
    calc(240 * var(--pc));
  gap: calc(30 * var(--pc));
}

.ksf-results-page__summary-item,
.ksf-results-page__item{
  display: flex;
  flex-direction: column;

  min-height: calc(124 * var(--pc));

  background: #fff;
}

.ksf-results-page__summary-item{
  min-height: calc(130 * var(--pc));
}

.ksf-results-page__label{
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: calc(38 * var(--pc));

  padding:
    0
    calc(10 * var(--pc));

  background: #36baad;
  color: #fff;

  font-size: calc(16 * var(--pc));
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.ksf-results-page__summary-item .ksf-results-page__label{
  background: #337a98;
  color: #fff;
}

.ksf-results-page__number{
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;

  color: #000;

  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.ksf-results-page__number .js-countup{
  margin-right: calc(8 * var(--pc));

  font-size: calc(42 * var(--pc));
  font-weight: 700;
  letter-spacing: .04em;
}

.ksf-results-page__summary-item .ksf-results-page__number .js-countup{
  font-size: calc(46 * var(--pc));
}

.ksf-results-page__unit{
  display: inline-block;

  font-size: calc(17 * var(--pc));
  font-weight: 700;
  line-height: 1.25;

  transform: translateY(calc(9 * var(--pc)));
}

.ksf-results-page__illust{
  flex: 0 0 auto;

  width: calc(84 * var(--pc));

  margin-top: calc(-22 * var(--pc));
}

.ksf-results-page__illust img{
  display: block;
  width: 100%;
  height: auto;
}

.ksf-results-page__years{
  display: grid;
  grid-template-columns:
    calc(350 * var(--pc))
    calc(350 * var(--pc));
  gap:
    calc(54 * var(--pc))
    calc(80 * var(--pc));

  width: calc(780 * var(--pc));

  margin-top: calc(62 * var(--pc));
}

.ksf-results-page__year-title{
  margin:
    0
    0
    calc(24 * var(--pc));

  font-weight: 700;
  line-height: 1.5;
}

.ksf-results-page__list{
  display: grid;
  grid-template-columns:
    calc(160 * var(--pc))
    calc(160 * var(--pc));
  gap: calc(30 * var(--pc));
}

.ksf-results-page__year-block--odd .ksf-results-page__label{
  background: #36baad;
  color: #fff;
}

.ksf-results-page__year-block--even .ksf-results-page__label{
  background: #cce8be;
  color: #1d1d1d;
}

@media screen and (max-width:768px){

  .ksf-results-page{
    width: 84%;
  }

  .ksf-results-page__title{
    margin-bottom: calc(30 * var(--sp));
    font-size: calc(22 * var(--sp));
  }

  .ksf-results-page__year{
    margin-bottom: calc(16 * var(--sp));
    font-size: calc(13 * var(--sp));
  }

  .ksf-results-page__summary{
    width: 100%;
  }

  .ksf-results-page__summary-body{
    display: block;
  }

  .ksf-results-page__summary-list{
    grid-template-columns: 1fr;
    gap: calc(14 * var(--sp));
  }

  .ksf-results-page__summary-item,
  .ksf-results-page__item{
    min-height: calc(110 * var(--sp));
  }

  .ksf-results-page__label{
    min-height: calc(36 * var(--sp));
    padding: 0 calc(6 * var(--sp));
    font-size: calc(12 * var(--sp));
    white-space: normal;
  }

  .ksf-results-page__number .js-countup,
  .ksf-results-page__summary-item .ksf-results-page__number .js-countup{
    margin-right: calc(6 * var(--sp));
    font-size: calc(36 * var(--sp));
  }

  .ksf-results-page__unit{
    font-size: calc(13 * var(--sp));
    transform: translateY(calc(8 * var(--sp)));
  }

  .ksf-results-page__illust{
    width: calc(58 * var(--sp));
    margin:
      calc(24 * var(--sp))
      auto
      0;
  }

  .ksf-results-page__years{
    grid-template-columns: 1fr;
    gap: calc(34 * var(--sp));
    width: 100%;
    margin-top: calc(42 * var(--sp));
  }

  .ksf-results-page__year-title{
    margin-bottom: calc(16 * var(--sp));
    font-size: calc(13 * var(--sp));
  }

  .ksf-results-page__list{
    grid-template-columns: repeat(2, 1fr);
    gap: calc(12 * var(--sp));
  }

}

/*---------------------------------
  About Lower
---------------------------------*/
.ksf-about--lower{
  padding:
    calc(64 * var(--pc))
    0
    calc(78 * var(--pc));
}

.ksf-about--lower .ksf-about__btn{
  display: none;
}

/*---------------------------------
  About Page
---------------------------------*/
.ksf-about-page{
  width: calc(1000 * var(--pc));
  margin: 0 auto;
}

.ksf-about-page__profile{
  display: grid;
  grid-template-columns: calc(260 * var(--pc)) 1fr;
  column-gap: calc(90 * var(--pc));
  align-items: start;
}

.ksf-about-page__title{
  margin: 0;

  font-size: calc(28 * var(--pc));
  font-weight: 700;
  line-height: 1.5;
}

.ksf-about-page__profile-list{
  min-width: 0;
}

.ksf-about-page__profile-row{
  display: grid;
  grid-template-columns: calc(140 * var(--pc)) 1fr;
  column-gap: calc(44 * var(--pc));

  padding:
    calc(20 * var(--pc))
    0;

  border-bottom: 1px solid #c1c1c1;
}

.ksf-about-page__profile-row:first-child{
  border-top: 1px solid #c1c1c1;
}

.ksf-about-page__profile-row dt,
.ksf-about-page__profile-row dd{
  margin: 0;

  line-height: 1.8;
}

.ksf-about-page__profile-row dt{
  font-weight: 700;
}

.ksf-about-page__profile-row dd{
  font-weight: 500;
}

/*---------------------------------
  About History
---------------------------------*/
.ksf-about-history{
  padding:
    calc(86 * var(--pc))
    calc(20 * var(--pc))
    calc(190 * var(--pc));

  background: #fff;
}

.ksf-about-history__inner{
  display: grid;
  grid-template-columns:
    calc(200 * var(--pc))
    calc(490 * var(--pc))
    calc(250 * var(--pc));
  column-gap:
    calc(30 * var(--pc));

  align-items: start;

  width: calc(1000 * var(--pc));
  margin: 0 auto;
}

.ksf-about-history__title{
  margin: 0;

  font-size: calc(28 * var(--pc));
  font-weight: 700;
  line-height: 1.5;
}

.ksf-about-history__body{
  min-width: 0;
}

.ksf-about-history__body p{
  font-weight: 500;
  line-height: 2;
}

.ksf-about-history__body p + p{
  margin-top: calc(28 * var(--pc));
}

.ksf-about-history__person{
  text-align: center;
}

.ksf-about-history__image{
  width: calc(250 * var(--pc));
  margin:
    0
    auto
    calc(20 * var(--pc));
}

.ksf-about-history__image img{
  display: block;
  width: 100%;
  height: auto;
}

.ksf-about-history__caption{
  margin:
    0
    0
    calc(8 * var(--pc));

  font-family: "Noto Serif JP", serif;
  font-size: calc(15 * var(--pc));
  font-weight: 500;
  line-height: 1.7;
}

.ksf-about-history__name{
  margin: 0;

  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  letter-spacing: .08em;
}

.ksf-about-history__name-label{
  display: inline-block;
  margin-right: calc(8 * var(--pc));

  font-size: calc(15 * var(--pc));
  font-weight: 500;
}

.ksf-about-history__name-main{
  display: inline-block;

  font-size: calc(22 * var(--pc));
  font-weight: 700;
}

@media screen and (max-width:768px){

  .ksf-about--lower{
    padding:
      calc(48 * var(--sp))
      0
      calc(56 * var(--sp));
  }

  .ksf-about-page{
    width: 84%;
  }

  .ksf-about-page__profile{
    display: block;
  }

  .ksf-about-page__title{
    margin-bottom: calc(22 * var(--sp));
    font-size: calc(22 * var(--sp));
  }

  .ksf-about-page__profile-row{
    display: block;

    padding:
      calc(16 * var(--sp))
      0;
  }

  .ksf-about-page__profile-row dt{
    margin-bottom: calc(6 * var(--sp));
  }

  .ksf-about-page__profile-row dt,
  .ksf-about-page__profile-row dd{
    font-size: calc(13 * var(--sp));
    line-height: 1.8;
  }

  .ksf-about-history{
    padding:
      calc(56 * var(--sp))
      calc(12 * var(--sp))
      calc(90 * var(--sp));
  }

  .ksf-about-history__inner{
    display: block;

    width: 84%;
  }

  .ksf-about-history__title{
    margin-bottom: calc(22 * var(--sp));
    font-size: calc(22 * var(--sp));
  }

  .ksf-about-history__body p{
    font-size: calc(13 * var(--sp));
    line-height: 1.9;
  }

  .ksf-about-history__body p + p{
    margin-top: calc(22 * var(--sp));
  }

  .ksf-about-history__person{
    width: 76%;
    margin:
      calc(36 * var(--sp))
      auto
      0;
  }

  .ksf-about-history__image{
    width: 100%;
    margin-bottom: calc(14 * var(--sp));
  }

  .ksf-about-history__caption{
    margin-bottom: calc(8 * var(--sp));
    font-size: calc(13 * var(--sp));
  }

  .ksf-about-history__name-label{
    margin-right: calc(8 * var(--sp));
    font-size: calc(13 * var(--sp));
  }

  .ksf-about-history__name-main{
    font-size: calc(20 * var(--sp));
  }

}