@charset "UTF-8";
/*!
Theme Name:kc-original-template
Version: 1.0.0
*/
@import url("https://fonts.googleapis.com/css2?family=Rancho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&display=swap");
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
サイト固有の追加項目
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* IE表示用のCSS　*/
html, body {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  html, body {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  html, body {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1200px) {
  html, body {
    font-size: 16px;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Roboto", arial, sans-serif;
  background: #fff;
  color: #525050;
}
body a {
  color: #333;
  text-decoration: none;
}
body a:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
body strong {
  font-weight: bold;
}
body .small {
  font-size: 0.8rem;
}

::-moz-selection {
  background: #FFF3CE;
}

::selection {
  background: #FFF3CE;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%; /*for responsive*/
  height: auto; /*for responsive*/
  width: auto; /* IE8のみ */
}

.opacity:hover {
  opacity: 80%;
  -moz-opacity: 0.8;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
colors
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
動きのclass
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.js-animation {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/*!
Theme Name:kc-original-template
Version: 1.0.0
*/
/*************************************/
/*==================================

common style

==================================*/
.bt_normal {
  background-color: #D94D23;
  color: white;
  display: block;
  border-radius: 50px;
  text-align: center;
  margin: 0 auto;
  padding: 1rem 0.6rem;
  position: relative;
  overflow: hidden;
  width: 90%;
  max-width: 200px;
  font-family: "Lato", serif;
  letter-spacing: 3px;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .bt_normal {
    padding: 0.5rem 0.6rem;
    max-width: 180px;
  }
}
.bt_normal:hover {
  background-color: #8EB241;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.bt_normal:after {
  content: "";
  background-image: url(/img/zh-cn/common/icon_right_arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 40%;
  right: 5%;
  width: 1em;
  height: 1em;
}

.lead {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  width: 90%;
  margin: 0 auto;
  max-width: 1170px;
}

.lead_left {
  text-align: left;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/*==================================

layout

==================================*/
.page_nav {
  margin-bottom: 4rem;
}
.page_nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 96%;
  max-width: 1170px;
  margin: 0 auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_nav ul li {
  position: relative;
  background-color: #D94D23;
  border-radius: 10px;
  text-align: center;
  margin: 0 0.3rem;
  font-size: 1rem;
  width: 100%;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8rem 0.2rem;
}
@media screen and (min-width: 768px) {
  .page_nav ul li {
    margin: 0 0.5rem;
    border-radius: 30px;
    padding: 0.8rem 0rem 0.8rem 1.2rem;
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .page_nav ul li {
    margin: 0 0.5rem;
    border-radius: 50px;
    padding: 0.8rem 0.7rem;
    width: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .page_nav ul li {
    margin: 0 1rem;
  }
}
.page_nav ul li:hover {
  background-color: #8EB241;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.page_nav ul li:before {
  display: block;
  text-align: center;
  font-family: "Rancho", serif;
  color: white;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 8px;
  font-weight: 400;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  left: 0.5rem;
  top: 5%;
}
@media screen and (min-width: 768px) {
  .page_nav ul li:before {
    font-size: 1.3rem;
    left: 8%;
    right: auto;
    top: 18%;
    line-height: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .page_nav ul li:before {
    font-size: 1.5rem;
    left: 8%;
    right: auto;
    top: 18%;
    line-height: 2.2rem;
  }
}
.page_nav ul li:first-child:before {
  content: "01";
}
.page_nav ul li:nth-child(2):before {
  content: "02";
}
.page_nav ul li:nth-child(3):before {
  content: "03";
}
.page_nav ul li:nth-child(4):before {
  content: "04";
}
.page_nav ul li:nth-child(5):before {
  content: "05";
}
.page_nav ul li:nth-child(6):before {
  content: "06";
}
.page_nav ul li a {
  display: block;
  width: 100%;
  color: white;
  padding: 0.5rem 0.5rem 0.3rem 0.5rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page_nav ul li a {
    padding: 0 2rem 0.3rem 2rem;
  }
}
.page_nav ul li a:after {
  content: "";
  display: block;
  background-image: url(/img/zh-cn/common/icon_down_arrow.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 3px;
}
@media screen and (min-width: 768px) {
  .page_nav ul li a:after {
    left: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .page_nav ul li a:after {
    left: 0rem;
  }
}
.page_nav ul .current {
  background-color: #8EB241;
}

.page_nav_noNum {
  margin-bottom: 4rem;
}
.page_nav_noNum ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 96%;
  max-width: 1170px;
  margin: 0 auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_nav_noNum ul li {
  position: relative;
  background-color: #D94D23;
  border-radius: 10px;
  text-align: center;
  margin: 0 0.3rem;
  font-size: 1rem;
  width: 100%;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .page_nav_noNum ul li {
    margin: 0 0.5rem;
    border-radius: 30px;
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .page_nav_noNum ul li {
    margin: 0 0.5rem;
    border-radius: 50px;
    width: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .page_nav_noNum ul li {
    margin: 0 1rem;
  }
}
.page_nav_noNum ul li:hover {
  background-color: #8EB241;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.page_nav_noNum ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: white;
  padding: 0.3rem 0.2rem 0.8rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page_nav_noNum ul li a {
    padding: 0.8rem 0.7rem 0.9rem;
  }
}
.page_nav_noNum ul li a:after {
  content: "";
  display: block;
  background-image: url(/img/zh-cn/common/icon_down_arrow.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 3px;
}
@media screen and (min-width: 992px) {
  .page_nav_noNum ul li a:after {
    left: 0rem;
  }
}
.page_nav_noNum ul .current {
  background-color: #8EB241;
}

.sub_page {
  background-image: url(/img/zh-cn/common/section_ttl_border.png);
  background-repeat: no-repeat;
  background-position: 1rem 3rem;
  background-size: 30%;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .sub_page {
    background-position: 2rem 2rem;
    background-size: auto;
  }
}
.sub_page h2 {
  background-image: url(/img/zh-cn/common/section_ttl_kc.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 160px auto;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 5px;
  font-weight: bold;
  padding: 3.5rem 0 1rem 0;
  width: 90%;
  margin: 0 auto;
  max-width: 1170px;
}
.sub_page h3 {
  border-left: 4px solid #464343;
  color: #464343;
  font-size: 1.4rem;
  letter-spacing: 3px;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .sub_page h3 {
    margin-bottom: 3rem;
  }
}
.sub_page .lead {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  width: 90%;
  margin: 0 auto;
  max-width: 1170px;
}

/*==================================

動きのeffect

==================================*/
/*点滅*/
.blinking {
  -webkit-animation: blink 0.5s ease-in-out infinite alternate;
  animation: blink 0.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*円がうねうね動く*/
@-webkit-keyframes uneune {
  0% {
    border-radius: 100% 90% 70% 100%/90% 100% 70% 90%;
  }
  25% {
    border-radius: 90% 100% 80% 90%/100% 90% 90% 100%;
  }
  50% {
    border-radius: 90% 100% 80% 90%/100% 90% 90% 100%;
  }
  75% {
    border-radius: 90% 90% 90% 70%/90% 80% 80% 80%;
  }
  100% {
    border-radius: 90% 90% 90% 100%/90% 100% 100% 90%;
  }
}
@keyframes uneune {
  0% {
    border-radius: 100% 90% 70% 100%/90% 100% 70% 90%;
  }
  25% {
    border-radius: 90% 100% 80% 90%/100% 90% 90% 100%;
  }
  50% {
    border-radius: 90% 100% 80% 90%/100% 90% 90% 100%;
  }
  75% {
    border-radius: 90% 90% 90% 70%/90% 80% 80% 80%;
  }
  100% {
    border-radius: 90% 90% 90% 100%/90% 100% 100% 90%;
  }
}
/*ふわふわ動く*/
.fuwafuwa {
  -webkit-animation: fuwafuwa 3s linear infinite;
          animation: fuwafuwa 3s linear infinite;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  margin: 1rem 0 !important;
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33.33333% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  66.66667% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33.33333% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  66.66667% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*クルクル回る*/
.spin {
  -webkit-animation: spin 20s linear infinite;
  animation: spin 20s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*==================================

aboutus_wayセクション共通

==================================*/
.aboutus_way {
  /*==================================

  way_point01

  ==================================*/
  /*==================================

  way_point02

  ==================================*/
  /*==================================

  way_point03

  ==================================*/
  /*==================================

  way_point04

  ==================================*/
  /*==================================

  way_point05

  ==================================*/
  /*==================================

  way_pointAdd

  ==================================*/
}
.aboutus_way .sub_page {
  margin-bottom: 6rem;
}
.aboutus_way .sub_page .g_bc_h2_lines {
  margin: 0 auto 2rem;
  width: 100%;
  max-width: 100%;
}
.aboutus_way .sub_page figure > img {
  margin-bottom: 2rem;
}
.aboutus_way #way_point01:before {
  display: inline-block;
  content: "0 1";
  font-family: "Rancho", serif;
  font-size: 3rem;
  padding-left: 5rem;
}
@media screen and (min-width: 768px) {
  .aboutus_way #way_point01:before {
    font-size: 4rem;
    padding-left: 12rem;
  }
}
.aboutus_way #way_point02:before {
  display: inline-block;
  content: "0 2";
  font-family: "Rancho", serif;
  font-size: 3rem;
  padding-left: 5rem;
}
@media screen and (min-width: 768px) {
  .aboutus_way #way_point02:before {
    font-size: 4rem;
    padding-left: 12rem;
  }
}
.aboutus_way #way_point03:before {
  display: inline-block;
  content: "0 3";
  font-family: "Rancho", serif;
  font-size: 3rem;
  padding-left: 5rem;
}
@media screen and (min-width: 768px) {
  .aboutus_way #way_point03:before {
    font-size: 4rem;
    padding-left: 12rem;
  }
}
.aboutus_way #way_point04:before {
  display: inline-block;
  content: "0 4";
  font-family: "Rancho", serif;
  font-size: 3rem;
  padding-left: 5rem;
}
@media screen and (min-width: 768px) {
  .aboutus_way #way_point04:before {
    font-size: 4rem;
    padding-left: 12rem;
  }
}
.aboutus_way #way_point05:before {
  display: inline-block;
  content: "0 5";
  font-family: "Rancho", serif;
  font-size: 3rem;
  padding-left: 5rem;
}
@media screen and (min-width: 768px) {
  .aboutus_way #way_point05:before {
    font-size: 4rem;
    padding-left: 12rem;
  }
}
.aboutus_way #way_pointAdd figure {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .aboutus_way #way_pointAdd figure {
    width: 80%;
    max-width: 560px;
  }
}
.aboutus_way #way_pointAdd figure img {
  border-radius: 1rem;
}