@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

:root {
  --base_color:#edeae0;
  --main_color:#fff;
  --kc_content_base_px: 1920px;
}

html {
  font-size: 1.1vw;
  background: var(--main_color);
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
}

body {
  padding: 7em 0 0em;
}

p {
  line-height: 2em;
}

.sp_on {
  display: none;
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 20px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 12px;
  }
}
@media screen and (max-width: 790px) {
  html {
    font-size: 2vw;
  }
  body {
    padding-top: 5.5em;
  }
  .sp_on {
    display: block;
  }
  .sp_off {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 3vw;
  }
}
.kc_firstview {
  position: relative;
  width: 100vw;
  height: 56.25vw;
}
.kc_firstview h1 img {
  position: absolute;
  top: 40%;
  left: 6%;
  z-index: 101;
  width: 30vw;
  filter: drop-shadow(4px 2px 2px #aaa);
}
.kc_firstview .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.kc_firstview .swiper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(80deg, #fff 42%, rgba(255, 255, 255, 0.2) 60%, transparent);
  z-index: 100;
}
.kc_firstview .swiper .swiper-slide {
  animation: slide_anime 8s 0.5s linear alternate infinite;
  z-index: 1;
}
.kc_firstview .swiper .swiper-slide.kc_slide_01 {
  background: url(../images/home/kc_slide_01.jpg);
  background-size: 105%;
  background-position: 100%;
}
.kc_firstview .swiper .swiper-slide.kc_slide_02 {
  background: url(../images/home/kc_slide_02.jpg);
  background-size: 105%;
  background-position: 100%;
}
.kc_firstview .swiper .swiper-slide.kc_slide_03 {
  background: url(../images/home/kc_slide_03.jpg);
  background-size: 105%;
  background-position: 100%;
}

@keyframes slide_anime {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: 70%;
  }
}
@media screen and (max-width: 1000px) {
  .kc_firstview {
    width: 100vw;
    height: 100vw;
  }
  .kc_firstview h1 img {
    top: 66%;
    left: 6%;
    z-index: 101;
    width: 45vw;
  }
  .kc_firstview .swiper::before {
    background: linear-gradient(45deg, #fff 42%, rgba(255, 255, 255, 0.2) 60%, transparent);
  }
  .kc_firstview .swiper .swiper-slide {
    animation: slide_anime 8s 0.5s linear alternate infinite;
    z-index: 1;
  }
  .kc_firstview .swiper .swiper-slide.kc_slide_01 {
    background-size: cover;
  }
  .kc_firstview .swiper .swiper-slide.kc_slide_02 {
    background-size: cover;
  }
  .kc_firstview .swiper .swiper-slide.kc_slide_03 {
    background-size: cover;
  }
  @keyframes slide_anime {
    0% {
      background-position: 100%;
    }
    100% {
      background-position: 95%;
    }
  }
}
.reverse_radius_box {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: var(--main_color);
  margin: 2em auto;
  padding: 1em;
  overflow: hidden;
}
.reverse_radius_box .corner {
  font-size: 3em;
  position: absolute;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background: var(--main_color);
}
.reverse_radius_box .corner.t_l {
  top: -0.5em;
  left: -0.5em;
}
.reverse_radius_box .corner.t_r {
  top: -0.5em;
  right: -0.5em;
}
.reverse_radius_box .corner.b_l {
  bottom: -0.5em;
  left: -0.5em;
}
.reverse_radius_box .corner.b_r {
  bottom: -0.5em;
  right: -0.5em;
}
.reverse_radius_box .text_box h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.7em;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em auto 2em;
  border-top: 1.5px solid;
  border-bottom: 1.5px solid;
  border-color: #c7000c;
  padding: 0.3em 0;
}
.reverse_radius_box .text_box h2 small {
  font-size: 0.7em;
}
.reverse_radius_box .text_box h2 strong {
  display: block;
  padding: 0.3em 1.3em;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #555;
  margin: 0.3em auto;
}
.reverse_radius_box .text_box h2 strong span {
  font-size: 2em;
  margin: 0 -0.2em;
}
.reverse_radius_box .text_box p {
  font-size: 1.1em;
  text-align: justify;
  font-weight: 200;
  color: #000;
}

@media screen and (max-width: 790px) {
  .reverse_radius_box .corner {
    font-size: 4em;
  }
}
.kc_h2 {
  text-align: center;
  font-weight: 400;
  font-size: 3.5em;
  letter-spacing: 0.02em;
  margin: 2em auto 1em;
  color: #333;
  border-bottom: 2px solid #c7000c;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Serif JP", serif;
}

.kc_contents {
  max-width: var(--kc_content_base_px);
  margin: auto;
}
.kc_contents .cont_block {
  display: flex;
  font-size: 1.3vw;
}
.kc_contents .cont_block .award {
  background: url(../images/home/kc_home_2024award_01.jpg);
}
.kc_contents .cont_block .indicators {
  background: url(../images/home/kc_home_indicators.jpg);
}
.kc_contents .cont_block .history {
  background: url(../images/home/kc_home_history.jpg);
}
.kc_contents .cont_block .guidebook {
  background: url(../images/home/kc_home_guidebook.jpg);
}
.kc_contents .cont_block .bg {
  width: 50vw;
  height: 50vw;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.3);
  transition: 0.3s;
}
.kc_contents .cont_block .bg.bright {
  filter: brightness(1);
}
.kc_contents .cont_block .text {
  width: 40vw;
  height: 36vw;
  padding: 7vw 5vw;
  color: #000;
  display: flex;
  flex-direction: column;
}
.kc_contents .cont_block .c_01 {
  background: var(--base_color);
}
.kc_contents .cont_block .c_02 {
  background: #fff;
}
.kc_contents .cont_block h3 {
  font-weight: 400;
  font-size: 2em;
  margin: 0 0 1em;
}
.kc_contents .cont_block p {
  font-weight: 100;
}
.kc_contents .cont_block a {
  color: #333;
  text-decoration: none;
  font-weight: 100;
  width: 10em;
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  border: 0.75px solid #333;
  margin: auto 0 0;
  transition: 0.3s;
}
.kc_contents .cont_block a:hover {
  background: #333;
  color: #fff;
}

.iphone {
  /* iphoneのみ */
}
.iphone .kc_contents .cont_block .bg {
  background-attachment: unset;
  background-size: cover;
}

@media screen and (min-width: 1920px) {
  .kc_contents .cont_block {
    font-size: 24px;
  }
  .kc_contents .cont_block .bg {
    width: calc(var(--kc_content_base_px) / 2);
    height: calc(var(--kc_content_base_px) / 2);
  }
  .kc_contents .cont_block .text {
    width: calc(var(--kc_content_base_px) * 0.4);
    height: calc(var(--kc_content_base_px) * 0.36);
    padding: calc(var(--kc_content_base_px) * 0.07) calc(var(--kc_content_base_px) * 0.05);
    max-height: 960px;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 1100px) {
  .kc_contents .cont_block {
    font-size: 13px;
  }
}
@media screen and (max-width: 790px) {
  .kc_contents .cont_block {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 600px) {
  .kc_h2 {
    margin: 1em auto;
    font-size: 3em;
  }
  .kc_contents .cont_block {
    font-size: 3vw;
    flex-wrap: wrap;
  }
  .kc_contents .cont_block .bg {
    width: 100vw;
    height: 100vw;
    background-size: 150vh;
    background-position: 10%;
  }
  .kc_contents .cont_block .text {
    width: 90vw;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10vw 5vw;
  }
  .kc_contents .cont_block .text a {
    margin-top: 2em;
  }
}
.kc_news {
  padding: 2em 0;
}

#kc_new_cont {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
#kc_new_cont details {
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  padding: 1.5em 0;
  margin-top: -2px;
}
#kc_new_cont details summary {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  cursor: pointer;
}
#kc_new_cont details summary::marker {
  content: "";
}
#kc_new_cont details summary .category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8em;
  height: 1.8em;
  border-radius: 2em;
  background: #c4bdac;
  color: #fff;
  font-size: 0.8em;
}
#kc_new_cont details summary .category.news {
  background: #7754a1;
}
#kc_new_cont details summary .category.event {
  background: #c7000c;
}
#kc_new_cont details summary .text_box {
  width: 70%;
}
#kc_new_cont details summary .date {
  display: block;
  color: #888;
}
#kc_new_cont details summary .title {
  display: block;
  color: #333;
}
#kc_new_cont details .news_main {
  padding: 2em 7%;
  text-align: justify;
}

.kc_lastphrase {
  font-size: 1vw;
  padding: 5em;
  margin: 5em auto;
}
.kc_lastphrase h2 {
  font-size: 2em;
  text-align: center;
  line-height: 4em;
  font-weight: 200;
  color: #000;
}

@media screen and (min-width: 1920px) {
  .kc_lastphrase {
    font-size: 19.2px;
  }
}
@media screen and (max-width: 790px) {
  .kc_lastphrase {
    font-size: 2vw;
    padding: 5em 1em;
  }
  .kc_lastphrase h2 {
    line-height: 2.5em;
  }
  #kc_new_cont details .news_main {
    padding: 2em 3%;
  }
}
.kc_kblink {
  padding: 10em 0;
}
.kc_kblink h2 {
  text-align: center;
  font-weight: 300;
  font-size: 2em;
  line-height: 2.5em;
  color: #333;
  font-family: "Noto Serif JP", serif;
}
.kc_kblink img {
  display: block;
  width: 30em;
  margin: auto;
}
.kc_kblink a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  width: 14em;
  height: 3.2em;
  background: #49B675;
  color: #fff;
  margin: 3em auto 0;
  border-radius: 0.3em;
  font-weight: 400;
  transition: 0.3s;
}
.kc_kblink a:hover {
  filter: brightness(1.1);
}

@media screen and (min-width: 1920px) {
  .kc_lastphrase {
    font-size: 19.2px;
  }
}
@media screen and (max-width: 790px) {
  .kc_kblink h2 {
    font-size: 1.4em;
  }
  .kc_kblink img {
    width: 20em;
  }
  .kc_kblink a {
    margin-top: 2em;
  }
}
#loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100000;
}/*# sourceMappingURL=style.css.map */