@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap");
/*-------------
共通部分
---------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul, li {
  list-style: none;
  margin: 0px;
  padding-left: 0px;
}

img {
  width: 100%;
  vertical-align: bottom;
}

h1 {
  margin: 0px;
}

a {
  text-decoration: none;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
}

#contanier {
  max-width: 1400px;
  margin: 0 auto;
}

.wrapper {
  margin-bottom: 30px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.title1-cm {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.title2-cm {
  font-size: 36px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.title3-cm {
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.orange {
  color: #EF8C23;
}

.pink {
  color: #e75397;
}

.blue {
  color: #1DB3ED;
}

.green {
  color: #6CB92D;
}

.purple {
  color: #664498;
}

@media screen and (max-width: 768px) {
  #contanier {
    width: 100%;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .title1-cm {
    font-size: 18px;
  }
  .title2-cm {
    font-size: 24px;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 20px;
  }
  .title3-cm {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 20px;
  }
}

.loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 4s;
  transition: all 4s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  background: url("../img/top-comment-ver3.png") ;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

/*-------------
ヘッダー
---------------*/
#header-wrap {
  width: 100%;
}

header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: white;
  z-index: 13;
}

@media screen and (max-width: 768px) {
  header {
    width: 100%;
  }
}

#header-wrap.fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 20;
}

.kd-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kd-nav {
  display: block;
}

@media screen and (max-width: 768px) {
  .kd-nav {
    position: fixed;
    top: 65px;
    left: 0px;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
  }
}

.kd-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .kd-nav-list {
    width: 100%;
    display: block;
  }
}

.kd-nav-list > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  margin: 0px 14px;
  cursor: pointer;
  padding: 20px 0px;
  font-size: 14px;
}

.kd-nav-list > li a {
  color: black;
}

@media screen and (max-width: 768px) {
  .kd-nav-list > li {
    width: 100%;
    color: white;
    display: block;
    height: auto;
    padding: 0px;
    text-align: left;
  }
  .kd-nav-list > li a {
    display: block;
    padding: 10px;
    color: white;
  }
  .kd-nav-list > li > a {
    border-bottom: 1px solid white;
  }
}

li.menu__single ul.menu__second-level {
  position: absolute;
  top: 62px;
  width: 100%;
  background: white;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  li.menu__single ul.menu__second-level {
    position: relative;
    top: 0px;
    display: block;
    opacity: 1;
    visibility: visible;
    background: none;
  }
}

li.menu__single:hover ul.menu__second-level {
  top: 62px;
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  li.menu__single:hover ul.menu__second-level {
    top: 0px;
  }
}

.menu__second-level li {
  border-bottom: 1px #cfcfcf dotted;
  line-height: 50px;
}

@media screen and (max-width: 768px) {
  .menu__second-level li {
    line-height: normal;
    text-align: left;
  }
}

.menu__second-level li a {
  color: black;
  font-weight: 200;
  font-size: 13px;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .menu__second-level li a {
    color: white;
    padding: 10px 10px 10px 30px;
  }
}

.menu__second-level li:hover a {
  color: white;
}

.h_blue .menu__second-level li:hover {
  background: #1DB3ED;
}

.menu__second-level li:last-child {
  border-bottom: 0px;
}

@media screen and (max-width: 768px) {
  .menu__second-level li:last-child {
    border-bottom: 1px #cfcfcf dotted;
  }
}

@media screen and (max-width: 768px) {
  .comingsoon2 {
    font-size: 9px;
    padding-right: 10px;
    opacity: .7;
  }
}

/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  position: relative;
  top: 10px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 20;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  border-radius: 4px;
}

.btn-trigger, .btn-trigger span {
  display: none;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .btn-trigger, .btn-trigger span {
    display: inline-block;
  }
}

.btn-trigger span:nth-of-type(1) {
  top: 1px;
}

.btn-trigger span:nth-of-type(2) {
  top: 12px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

/*=============================
  #btn01
  =============================*/
#btn01.active span {
  background: black;
}

#btn01.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

#btn01.active span:nth-of-type(2) {
  opacity: 0;
}

#btn01.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

/*-------------
トピックス
---------------*/
.kd-topic {
  width: 1000px;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .kd-topic {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.kd-topic-slide {
  width: 83%;
}

@media screen and (max-width: 768px) {
  .kd-topic-slide {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

.kd-topic-slide > img {
  width: 100px;
}

.kd-topic-sns {
  width: 17%;
}

@media screen and (max-width: 768px) {
  .kd-topic-sns {
    width: 100%;
  }
}

.kd-topic-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .kd-topic-sns-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.kd-topic-sns-list li {
  margin: 0px 10px;
}

.kd-topic-sns-list a {
  color: #333;
  font-size: 28px;
}

@media screen and (max-width: 768px) {
  .kd-topic-sns-list a {
    font-size: 24px;
  }
}

.slider {
  display: none;
}

.slider.slick-initialized {
  display: block;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 20px;
}

.prev-arrow {
  left: -24px;
}

.next-arrow {
  right: -24px;
}

/*-------------
movie-link
---------------*/
.movie-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .movie-link {
    margin-bottom: 0px;
  }
}

.movie-link-sumne {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .movie-link-sumne {
    width: 100%;
  }
}

.movie-link-sumne .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.movie-link-sumne .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.movie-link-sch {
  width: 40%;
  background-image: url("../img/index-top-news-bg-1.png");
  background-size: cover;
  padding: 20px 0px 20px;
}

@media screen and (max-width: 768px) {
  .movie-link-sch {
    width: 100%;
  }
}

.movie-link-sch-title {
  width: 65%;
  margin: 10px auto 20px;
}

.movie-link-sch-news {
  width: 70%;
  margin: 0px auto 10px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .movie-link-sch-news {
    width: 85%;
  }
}

.movie-link-sch-news > ul {
  text-align: left;
  display: inline-block;
  width: 100%;
}

.movie-link-sch-news > ul > li {
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-link-sch-news > ul > li > a {
  text-decoration: none;
  color: #333;
}

.movie-link-sch-news > ul > li span {
  margin-left: 10px;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .movie-link-sch-news > ul > li span {
    margin-left: 5px;
  }
}

.movie-link-sch-news > ul > li:first-child {
  font-size: 16px;
  font-weight: bold;
  color: #6CB92D;
}

.movie-link-sch-news > ul > li:nth-child(n+1) {
  font-size: 14px;
}

.movie-link-sch-news > ul > li:last-child {
  text-align: right;
}

/*-------------
kd-intro
---------------*/
.kd-intro {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0px;
}

@media screen and (max-width: 768px) {
  .kd-intro {
    background-image: url(../img/index-zukei-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

.kd-intro-left {
  width: 200px;
  background-image: url(../img/index-zukei-l.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  .kd-intro-left {
    display: none;
  }
}

.kd-intro-center {
  width: 1000px;
}

@media screen and (max-width: 768px) {
  .kd-intro-center {
    width: 100%;
  }
}

.kd-intro-center-title {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .kd-intro-center-title {
    width: 70%;
    margin: 0 auto 40px;
  }
}

.kd-intro-center-all {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .kd-intro-center-all {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.kd-intro-center-text {
  width: 85%;
  margin: 0 auto;
  text-align: left;
}

.kd-intro-center-text p {
  font-size: 14px;
}

.kd-intro-right {
  width: 200px;
  background-image: url(../img/index-zukei-r.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  .kd-intro-right {
    display: none;
  }
}

/*-------------
wide-slider
---------------*/
.loopSlide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .loopSlide {
    height: 120px;
  }
}

.loopSlide img {
  width: auto;
  height: 100%;
}

.loopSlide img:first-child {
  -webkit-animation: slide1 120s -60s linear infinite;
          animation: slide1 120s -60s linear infinite;
}

.loopSlide img:last-child {
  -webkit-animation: slide2 120s linear infinite;
          animation: slide2 120s linear infinite;
}

@-webkit-keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

/*-------------
what-kd
---------------*/
.what-kd {
  position: relative;
  background-image: url(../img/index-about-bg-1.png);
  background-size: cover;
  background-position: center center;
  background-repeat: repeat-y;
  padding: 100px 0px;
}

.what-kd .what-kd-list-wrap {
  width: 1000px;
  margin: 20px auto;
}

@media screen and (max-width: 768px) {
  .what-kd .what-kd-list-wrap {
    width: 85%;
    margin: 60px auto 0px;
  }
}

.what-kd .what-kd-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.what-kd .what-kd-list > li {
  width: 33%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .what-kd .what-kd-list > li {
    width: 100%;
  }
}

.what-kd .what-kd-list > li:nth-child(1) {
  right: -40px;
}

@media screen and (max-width: 768px) {
  .what-kd .what-kd-list > li:nth-child(1) {
    right: 0px;
    z-index: 5;
  }
}

@media screen and (max-width: 768px) {
  .what-kd .what-kd-list > li:nth-child(2) {
    left: 0px;
    top: -30px;
    z-index: 4;
  }
}

.what-kd .what-kd-list > li:nth-child(3) {
  left: -40px;
}

@media screen and (max-width: 768px) {
  .what-kd .what-kd-list > li:nth-child(3) {
    left: 20px;
    top: -50px;
    z-index: 3;
  }
}

.what-kd .what-kd-list > li:nth-child(4) {
  top: -30px;
  right: -10px;
}

@media screen and (max-width: 768px) {
  .what-kd .what-kd-list > li:nth-child(4) {
    left: -20px;
    top: -90px;
    z-index: 2;
  }
}

.what-kd .what-kd-list > li:nth-child(5) {
  top: -35px;
  left: -30px;
}

@media screen and (max-width: 768px) {
  .what-kd .what-kd-list > li:nth-child(5) {
    top: -120px;
    left: 10px;
    z-index: 1;
  }
}

.what-kd .obj1 {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 120px;
  height: 171px;
  background-image: url(../img/index-about-pencil-2.png);
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .what-kd .obj1 {
    width: 100px;
    top: -40px;
    right: 5px;
    background-size: contain;
  }
}

.what-kd .obj2 {
  position: absolute;
  bottom: 20px;
  left: 30px;
  width: 195px;
  height: 180px;
  background-image: url(../img/index-about-shoes-2.png);
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .what-kd .obj2 {
    width: 170px;
    bottom: -60px;
    left: 5px;
    background-size: contain;
  }
}

/*-------------
about-ans
---------------*/
.about-ans {
  padding: 100px 0px;
}

@media screen and (max-width: 768px) {
  .about-ans {
    padding: 60px 20px;
  }
}

.about-ans-flex-wrap {
  width: 1000px;
  margin: 80px auto;
}

@media screen and (max-width: 768px) {
  .about-ans-flex-wrap {
    width: 90%;
    margin: 0 auto;
  }
}

.about-ans-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .about-ans-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 40px;
  }
}

.about-ans-flex .about-ans-text {
  width: 60%;
  padding-left: 60px;
}

@media screen and (max-width: 768px) {
  .about-ans-flex .about-ans-text {
    width: 100%;
    padding-left: 0px;
  }
}

.about-ans-flex .about-ans-text-num {
  font-size: 50px !important;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .about-ans-flex .about-ans-text-num {
    font-size: 40px !important;
  }
}

.about-ans-flex .about-ans-text .pink-line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #e4bbce));
  background: linear-gradient(transparent 70%, #e4bbce 0%);
}

.about-ans-flex .about-ans-text .blue-line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #bbd7e4));
  background: linear-gradient(transparent 70%, #bbd7e4 0%);
}

.about-ans-flex .about-ans-text .green-line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #bee4bb));
  background: linear-gradient(transparent 70%, #bee4bb 0%);
}

.about-ans-flex .about-ans-text .yellow-line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #e4d4bb));
  background: linear-gradient(transparent 70%, #e4d4bb 0%);
}

.about-ans-flex .about-ans-text .text-square {
  display: inline-block;
  border: 2px solid black;
  padding: 8px;
  margin: 0px 2px;
}

@media screen and (max-width: 768px) {
  .about-ans-flex .about-ans-text .text-square {
    border: 1px solid black;
    line-height: 1.2em;
  }
}

.about-ans-flex .about-ans-text p {
  font-size: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .about-ans-flex .about-ans-text p {
    font-size: 16px;
  }
}

.about-ans-flex .about-ans-img {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .about-ans-flex .about-ans-img {
    width: 100%;
  }
}

.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.rainbow1 {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .rainbow1 {
    margin-bottom: 60px;
  }
}

/*-------------
movie
---------------*/
.movie-list-wrap {
  width: 1000px;
  margin: 0px auto 0px;
}

@media screen and (max-width: 768px) {
  .movie-list-wrap {
    width: 100%;
    margin: 0px auto 0px;
  }
}

.movie-list-wrap .movie-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .movie-list-wrap .movie-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.movie-list-wrap .movie-list > li {
  width: 48%;
  text-align: center;
  margin-bottom: 30px;
}

.movie-list-wrap .movie-list > li a {
  font-size: 16px;
  color: black;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .movie-list-wrap .movie-list > li {
    width: 80%;
    margin: 0 auto 40px;
  }
  .movie-list-wrap .movie-list > li a {
    font-size: 14px;
    color: black;
    text-decoration: underline;
  }
}

/*-------------
cast
---------------*/
.cast {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 50px 0px;
}

@media screen and (max-width: 768px) {
  .cast {
    background-image: url(../img/index-zukei-bg.png);
    background-size: contain;
    background-repeat: repeat-y;
    background-position: center center;
  }
}

.cast-left {
  width: 120px;
  background-image: url(../img/index-zukei-l.png);
  background-size: contain;
  background-repeat: repeat-y;
  background-position: top center;
}

@media screen and (max-width: 768px) {
  .cast-left {
    display: none;
  }
}

.cast-center {
  width: 1000px;
}

@media screen and (max-width: 768px) {
  .cast-center {
    width: 100%;
  }
}

.cast-right {
  width: 120px;
  background-image: url(../img/index-zukei-l.png);
  background-size: contain;
  background-repeat: repeat-y;
  background-position: top center;
}

@media screen and (max-width: 768px) {
  .cast-right {
    display: none;
  }
}

.staff {
  margin-bottom: 100px;
}

.staff-img {
  width: 200px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 768px) {
  .staff-img {
    width: 160px;
  }
}

.staff-role {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .staff-role {
    font-size: 14px;
  }
}

.staff-name {
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .staff-name {
    font-size: 22px;
  }
}

.staff-career {
  font-size: 14px;
  width: 80%;
  margin: 0 auto 30px;
}

@media screen and (max-width: 768px) {
  .staff-career {
    font-size: 14px;
  }
}

.staff-comment {
  width: 80%;
  margin: 0 auto 80px;
  padding: 40px;
  background: #FBF6EF;
}

@media screen and (max-width: 768px) {
  .staff-comment {
    padding: 30px;
  }
}

.staff-comment p:first-child {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .staff-comment p:first-child {
    font-size: 14px;
  }
}

.staff-comment p {
  font-size: 14px;
}

.staff .prof-link {
  color: black;
  text-decoration: underline;
}

.kid {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .kid {
    width: 90%;
    margin: 0 auto;
  }
}

.kid-position {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  margin: 100px 0px 60px;
}

.kid-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.kid-list > li {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .kid-list > li {
    -ms-flex-preferred-size: 46%;
        flex-basis: 46%;
  }
}

.kid-img {
  width: 200px;
  margin: 0 auto 20px;
}

@media screen and (max-width: 768px) {
  .kid-img {
    width: 120px;
  }
}

.kid-intro .name {
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.4em;
}

@media screen and (max-width: 768px) {
  .kid-intro .name {
    font-size: 14px;
  }
}

.kid-intro .text {
  font-size: 14px;
  width: 200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .kid-intro .text {
    width: 100%;
  }
}

.staff-other {
  margin-bottom: 100px;
  text-align: center;
}

.staff-other p {
  font-size: 14px;
  margin-bottom: 20px;
}

.staff-other p:nth-child(4) {
  margin-bottom: 50px;
}

/*-------------
cast
---------------*/
.comment {
  width: 100%;
  padding: 50px 0px;
  background-image: url(../img/index-comment.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.comment-list-wrap {
  width: 1000px;
  margin: 60px auto;
}

@media screen and (max-width: 768px) {
  .comment-list-wrap {
    width: 100%;
  }
}

.comment-list-wrap .comment-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.comment-list-wrap .comment-list li {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  background: white;
  padding: 40px 30px;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .comment-list-wrap .comment-list li {
    margin: 0px 5px;
    padding: 20px 16px;
  }
	

}

.comment-list-wrap .comment-list li .comment-list-img {
  width: 140px;
  margin: 0 auto 5px;
}

.comment-list-wrap .comment-list li p:nth-child(2) {
  font-size: 14px;
}

.comment-list-wrap .comment-list li p:nth-child(3) {
  font-size: 16px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.comment-list-wrap .comment-list li p:nth-child(4) {
  font-size: 14px;
}

.comment-list-wrap .comment-list li .border-pink {
  border-bottom: 1px solid #e75397;
}

.comment-list-wrap .comment-list li .border-orange {
  border-bottom: 1px solid #EF8C23;
}

.comment-list-wrap .comment-list li .border-blue {
  border-bottom: 1px solid #1DB3ED;
}

.comment-list-wrap .comment-list li .border-green {
  border-bottom: 1px solid #6CB92D;
}

.comment-list-wrap .comment-list li .border-purple {
  border-bottom: 1px solid #664498;
}

.comment-list-wrap .supporter li {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}

.slide-arrow3 {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 30px;
  z-index: 2;
}

.prev-arrow3 {
  left: 30px;
}

.next-arrow3 {
  right: 30px;
}

.footer {
  padding: 20px 0px;
  background: white;
  text-align: center;
  font-size: 14px;
}

/*修正コード*/

@media screen and (min-width: 769px) {
	li.menu__single ul.menu__second-level {
width:200px;/*好みの幅に変更してください*/
}
	
	.menu__second-level li {
    text-align: left;
    padding-left: 5px;
}
	
}



@media screen and (max-width: 768px) {
	.kd-nav-list{
overflow-y: scroll;
    height: 100%;
    padding-bottom: 100px;
}
	
}



/* plus */

			.footer_logo{
				width: 20%;
				margin: 3em auto 3em;
	}
				
@media screen and (max-width: 768px) {
				
.footer_logo {
    width: 60%;
    margin: 0 auto 3em;
}
				}


/*# sourceMappingURL=kodomokaigi.css.map */