@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

.img {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

/*=====ヘッダー=====*/
#kp-Header {
  position: relative;
  border-top: solid 8px #00a7a8;
  height: 85px;
  box-sizing: border-box;
}
#kp-Header::after {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: -50px;
  left: 0;
  background-color: #00a8a9;
  z-index: -1;
}
.kp-Headerinner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  max-width: 1300px;
  font-size: 1.4rem;
}
.kp-Headerlogo {
  margin-left: 35px;
}
.kp-Headerlogo img {
  margin: 0;
  width: 250px;
  height: auto;
  vertical-align: middle;
}
.kp-Headercontact {
  display:block;
  margin: 0 40px 0 0;
  font-size: 1.4rem;
}
.kp-Headercontact .kp-IconBlank {
  margin-right: 0;
  margin-left: 8px;
}

@media screen and (min-width: 766px) and (max-width: 940px) {
  #kp-Header::after {
    height: 30px;
    bottom: -30px;
  }
}

@media screen and (max-width: 767px) {
  #kp-Header {
    height: 100px;
    width: inherit;
    box-sizing: border-box;
    border-bottom: 25px solid #00a8a9;
  }
  .kp-Headerlogo img {
    width: 150px;
  }
  #kp-Header::after {
    display: none;
  }
  .kp-Headerlogo {
    margin-left: 14px;
  }
  .kp-Headerinner p {
    margin-right: 14px;
  }
  .kp-Headercontact {
    font-size: 1.2rem;
  }
}

#kp-Main {
  position: relative;
}

/*=====キービジュアル=====*/
#kp-Hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 2.6fr 1fr;
  grid-template-areas:
        "Kv__img Kv__info"
        "Kv__img Kv__edit";
  gap: 0;
  position: relative;
  min-height: 200px;
  max-width: 1300px;
  margin: 0 auto;
}
.kp-Hero__date {
  position: absolute;
  top: 14px;
  right: 50px;
  color: #fff;
  font-family: Helvetica,Arial,sans-serif,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"MS Pゴシック","MS PGothic";
}
.kp-Hero__category {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .kp-Hero__category {
    font-size: 1.4rem;
  }
}

.kp-Hero__img {
  grid-area: Kv__img;
}
.kp-Hero__img img {
  width: 100%;
  max-width: 750px;
  height: auto;
  vertical-align: top;
}
.kp-Hero__body {
  grid-area: Kv__info;
  width: 540px;
  order: 2;
  padding: 80px 20px 20px 30px;
}
.kp-Hero__body span {
  font-size:1.4rem;
}
.kp-Hero__body__inner {
  color: #00a8a9;
}
.kp-Hero__body__inner p {
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.kp-Hero__body__inner h1 {
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.4;
}
.kp-Hero__body__inner .kp-Hero__subTitle {
  font-weight: normal;
  display: block;
  font-size: 2.0rem;
  line-height: 1.7;
}
.kp-Hero__edit {
  grid-area: Kv__edit;
  padding: 40px 0 0 0;
  margin-bottom: 0;
  font-size: 1.4rem;
}
@media screen and (min-width: 940px) {
  #kp-Hero::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    z-index: -1;
    left: 0;
    width: 100%;
    height: 63px;
    background-color: #f2fbfa;
  }
  .kp-Hero__edit {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    padding: 80px 20px 0;
    background-color: #f2fbfa;
  }
}
@media screen and (min-width: 766px) and (max-width: 1180px) {
  #kp-Hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content .5fr;
    grid-template-areas:
        "Kv__img Kv__info"
        "Kv__edit Kv__edit";
    gap: 0;
  }
  .kp-Hero__img {
    margin: 0;
  }
  .kp-Hero__body {
    display: block;
    width: auto;
    box-sizing: border-box;
  }
  .kp-Hero__body__inner {
    padding-top: 0;
  }
  .kp-Hero__edit {
    padding: 40px 20px 0;
    background-color: #f2fbfa;
  }
}
@media screen and (min-width: 766px) and (max-width: 940px) {
  #kp-Hero::after {
    content: '';
    display: none;
  }
  .kp-Hero__date {
    top: 5px;
  }
  .kp-Hero__body {
    padding: 50px 10px 20px 30px;
  }
  .kp-Hero__body__inner h1 {
    font-size: 2.2rem;
  }
  .kp-Hero__body__inner .kp-Hero__subTitle {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .kp-Hero__edit {
    order: 3;
    padding: 25px 20px 15px;
  }
  #kp-Hero {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .kp-Hero__img {
    width: 100%;
    margin: 0;
  }
  .kp-Hero__img {
    margin: 0;
  }
  .kp-Hero__img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .kp-Hero__body {
    width: 100%;
    position: relative;
    padding-top: 0;
    padding-left: 0;
  }
  #kp-Hero .kp-Hero__date {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 30px;
    margin-bottom: 0;
    padding: 5px 0 8px;
    text-align: center;
    background-color: #00a8a9;
    font-size: 1.2rem;
  }
  .kp-Hero__body__inner {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: inherit;
    vertical-align: middle;
    padding: 55px 20px 25px;
    color: #00a8a9;
  }
  .kp-Hero__body__inner p {
    margin-bottom: 13px;
    font-size: 1rem;
  }
  .kp-Hero__body__inner h1 {
    font-size: 2rem;
  }
  .kp-Hero__body__inner .kp-Hero__subTitle {
    font-weight: normal;
    display: block;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.all {
  color: #a7a7a7;
}
.special {
  color: #ffa800;
}
.news {
  color: #e64327;
}
.people{
  color: #876e22;
}
.technology {
  color: #00a8a9;
}
.life {
  color: #97b239;
}




#kp-Article {
  position: relative;
  padding: 44px 0 80px;
  background-color: #f2fbfa;
  font-size: 1.6rem;
}
#kp-Article::before {
  content: '';
  display: block;
  position: absolute;
  top: -140px;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 140px;
  background-color: #f2fbfa;
}
.kp-Article__content {
  max-width: 940px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 20px 0 20px;
  line-height: 1.7;
}

.kp-Article__content strong {
  display: inline-block!important;
  font-size: 1.6rem;
  font-weight: bold;
}
.kp-Article__content sub {
  bottom: 0;
}
.kp-Article__content .kp-IconPdf {
  width: 18px;
  height: 20px;
  margin-bottom: 2px;
  background: url(/assets/images/icons/link_pdf_green.svg) 0 0 no-repeat;
  background-size: 18px 20px;
}
.kp-Article__content .kp-IconExcel {
  width: 18px;
  height: 20px;
  margin-left: 16px;
  background: url(/assets/images/icons/link_excel_green.svg) 0 0 no-repeat;
  background-size: 18px 20px;
}
.kp-Article__content .kp-IconZip {
  width: 18px;
  height: 20px;
  margin-left: 16px;
  background: url(/assets/images/icons/link_zip_green.svg) 0 0 no-repeat;
  background-size: 18px 20px;
}
@media screen and (min-width: 766px) and (max-width: 1180px) {
  #kp-Article {
    margin-top: 0;
    padding: 0 0 80px;
  }
  #kp-Article::before {
    display: none;
  }
  .kp-Article__content {
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  #kp-Article {
    background-color: #f2fbfa;
    margin-top: 0;
    padding-top: 25px;
    padding-bottom: 32px;
    font-size: 2.4rem;
  }

  #kp-Article::before {
    display: none;
  }
  .kp-Article__content {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .kp-Hero__edit {
    display: block;
    text-align: left;
    padding: 25px 0 15px 20px;
    background-color: #f2fbfa;
  }
}

.kp-Text {
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.kp-Text.-alignRight {
  text-align: right;
}
.kp-Text.-alignCenter {
  text-align: center;
}
.kp-Text.-sizeSmall {
  font-size: 1.2rem;
}
.kp-Text .kp-Link ,
.kp-Text a {
  font-size: 1.6rem;
}
.kp-Text .kp-Link ,
.kp-Text a ,
.kp-List a ,
.kp-Card__caption a {
  text-decoration: underline;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .kp-Text {
    font-size: 1.4rem;
  }
  .kp-Text .kp-Link {
    font-size: 1.4rem;
  }
}

/* ===== Icon ===== */
.kp-IconBlank,
.kp-IconPdf,
.kp-IconZip,
.kp-IconExcel,
.kp-IconModal,
.kp-IconCorporationLogo,
.kp-IconCorporationLogoCOJP,
.kp-IconGnetwork,
.kp-IconBackArrow,
.kp-IconFooterFacebook,
.kp-IconFooterYouTube,
.kp-IconFooterLinkedIn,
.kp-IconLogoFacebook,
.kp-IconLogoTwitter,
.kp-IconLogoInstagram,
.kp-IconLogoYoutube,
.kp-IconLogoLinkedIn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  line-height: 1;
  margin-right: 12px;
}
.kp-IconBlank {
  margin-left: 16px;
  margin-bottom: 3px;
  width: 20px;
  height: 15px;
  background: url(/assets/images/icons/link_blank_green.svg) 0 0 no-repeat;
  background-size: 20px 15px;
}
.kp-IconPdf {
  width: 22px;
  height: 24px;
  margin-left: 16px;
  background: url(/assets/images/icons/link_pdf_green.svg) 0 0 no-repeat;
}
.kp-IconZip {
  width: 22px;
  height: 24px;
  margin-left: 16px;
  background: url(/assets/images/icons/link_zip_green.svg) 0 0 no-repeat;
}
.kp-IconExcel {
  width: 22px;
  height: 24px;
  margin-left: 16px;
  background: url(/assets/images/icons/link_excel_green.svg) 0 0 no-repeat;
}

/* ===== Link ===== */
.kp-ListLink {
  list-style-type: none;
  margin-bottom: 30px;
}
.kp-ListLink li:not(:first-child) {
  margin-top: 8px;
}
.kp-Link {
  display: inline-block;
  padding-left: 22px;
  position: relative;
  word-break: break-word;
  font-weight: normal;
  line-height: 1.7;
  font-size: 1.6rem;
}
.kp-Link::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: .5em;
  left: 0;
  border-style: solid;
  border-width: 3px 0 3px 7px;
  border-color: transparent transparent transparent #008486;
}
.kp-Text .kp-Link ,
.kp-Card__caption .kp-Link {
  padding-left: 0;
}
.kp-Text .kp-Link::before ,
.kp-Card__caption .kp-Link::before {
  display: none;
}
th .kp-Link .kp-IconBlank,
th .kp-Link .kp-IconPdf,
th .kp-Link .kp-IconZip,
th .kp-Link .kp-IconExcel,
th .kp-Link .kp-IconModal,
td .kp-Link .kp-IconBlank,
td .kp-Link .kp-IconPdf,
td .kp-Link .kp-IconZip,
td .kp-Link .kp-IconExcel,
td .kp-Link .kp-IconModal {
  margin-right: 12px;
}
th .kp-IconBlank,
th .kp-IconPdf,
th .kp-IconZip,
th .kp-IconExcel,
th .kp-IconModal,
td .kp-IconBlank,
td .kp-IconPdf,
td .kp-IconZip,
td .kp-IconExcel,
td .kp-IconModal {
  margin-right: 0;
}
.kp-Link__text {
  text-decoration: underline;
}
strong .kp-Link {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .kp-Link {
    font-size: 1.4rem;
  }
}

.kp-HeadingLevel2 {
  margin: 0.83em 0;
  font-weight: bold;
  font-size: 1.9rem;
}
.kp-HeadingLevel3 {
  margin: 0.83em 0 30px;
  font-weight: bold;
  font-size: 1.7rem;
}
.kp-HeadingLevel4 {
  margin: 0.83em 0;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .kp-HeadingLevel2 {
    font-size: 1.6rem;
  }
  .kp-HeadingLevel3 {
    font-weight: bold;
    font-size: 1.5rem;
  }
  .kp-HeadingLevel4 {
    font-weight: bold;
    font-size: 1.4rem;
  }
  .kp-HeadingLevel2 ,
  .kp-HeadingLevel3 ,
  .kp-HeadingLevel4 {
    margin-top: 12px;
    margin-bottom: 12px;
  }
}

.kp-List {
  margin-bottom: 30px;
  font-size: 1.6rem;
}
.kp-List li {
  list-style: none;
  position: relative;
  padding-left: 1.4em;
}
.kp-List li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #14191a;
  border-radius: 3px;
}
.kp-List.-number {
  counter-reset: number;
}
.kp-List.-number > li {
  position: relative;
  padding-left: 1.8em;
}
.kp-List.-number > li::before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.4em;
  text-align: left;
  background: none;
}
.kp-List.-note li {
  position: relative;
  padding-left: 2em;
  font-weight: normal;
  line-height: 1.7;
  font-size: 1.2rem;
}
.kp-List.-note li::before {
  content: "*";
  position: absolute;
  top: -1px;
  left: 0;
  font-size: 1.5rem;
  background: none;
}
.kp-List.-noteNumber {
  counter-reset: number;
}
.kp-List.-noteNumber li {
  position: relative;
  padding-left: 2.5em;
  font-weight: normal;
  line-height: 1.7;
  font-size: 1.2rem;
}
.kp-List.-noteNumber li:not(:first-child) {
  margin-top: 8px;
}
.kp-List.-noteNumber li::before {
  display: none;
}
.kp-List.-note .kp-Link ,
.kp-List.-noteNumber .kp-Link {
  font-size: 1.2rem;
}
.kp-List.-noteNumber .kp-List__noteNumberPrefix {
  display: inline-block;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  .kp-List {
    font-size: 1.4rem;
  }
}

.kp-LinkList {
  margin-bottom: 30px;
  font-size: 1.6rem;
}
.kp-LinkList dt {
  font-weight: bold;
}
.kp-LinkList .kp-Link {
  font-size: 1.6rem;
}

.kp-Card {
  margin-bottom: 40px;
  font-size: 1.6rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.kp-Card a {
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
}
.kp-Card a:hover {
  opacity: .8;
}
.kp-Card.-column2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 0 60px;
  grid-template-areas:
        "Column2__title Column2__title"
        "Column2__item01 Column2__item02"
        "Column2__caption Column2__caption";
  width: 100%;
  max-width: none;
}
.kp-Card.-column2 > .kp-Card__title {
  grid-area: Column2__title;
}
.kp-Card.-column2 .kp-Card__item {
  grid-area: Column2__item01;
}
.kp-Card.-column2 .kp-Card__item:nth-of-type(even) {
  grid-area: Column2__item02;
  justify-self: end;
}
.kp-Card.-reverse .kp-Card__item {
  display: flex;
  flex-direction: column;
}
.kp-Card.-reverse .kp-Card__title {
  order: 2;
}
.kp-Card.-reverse .kp-Card__img {
  order: 1;
}
.kp-Card.-reverse .kp-Card__caption {
  order: 3;
}
.kp-Card__title {
  margin-bottom: 14px;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
.kp-Card__img {
  text-align: center;
}
.kp-Card__img img {
  max-width: 100%;
  height: auto;
}
.kp-Card__caption {
  grid-area: Column2__caption;
  margin-top: 10px;
  text-align: left;
  font-size: 1.2rem;
}
.kp-Card.-column2 .kp-Card__item ~ .kp-Card__caption {
  text-align: center;
}
.kp-Card__caption .kp-Link {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .kp-Card__title {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  .kp-Card.-column2 {
    display: flex;
    flex-direction: column;
    gap: 7.7%
  }
  .kp-Card.-column2 .kp-Card__item {
    width: 100%;
  }
  .kp-Card.-column2 .kp-Card__item:not(:first-child) {
    margin-top: 20px;
  }
}

.kp-Video {
  max-width: 560px;
  height: auto;
  margin: 0 auto 30px;
}
.kp-Video__inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.kp-Video__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.kp-Video__caption {
  margin-top: 10px;
  text-align: left;
  font-size: 1.2rem;
}

.kp-Box {
  margin: 0 auto 30px;
  box-sizing: border-box;
  border: 2px solid #a5dada;
  padding: 55px 55px 25px;
  background-color: #fff;
}
.kp-Box.-sizeSmall {
  max-width: 70%;
}
.kp-Box .kp-HeadingLevel2 {
  margin-top: 0;
}
.kp-Box dt {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}
.kp-Box dd {
  margin-bottom: 40px;
}
.kp-Box__heading {
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .kp-Box {
    margin: 0 0 40px;
    padding:20px;
    border-left:none;
    border-right:none;
    box-sizing: border-box;
  }
  .kp-Box.-sizeSmall {
    max-width: none;
  }
  .kp-Box dt {
    font-size: 1.4rem;
  }
}

/*-- 表組
------------------------------------------------------------*/
table {
  border-collapse: collapse;
}
.kp-Table {
  width: 100%;
  line-height: 1.3;
  background-color:#fff;
  border: 1px solid #a5dada;
  margin-bottom: 30px;
}
.kp-Table caption {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.kp-Table__subCaption {
  margin-bottom: 30px;
  text-align: left;
  font-size: 1.2rem;
}
.kp-Table + .kp-Table__subCaption {
  margin-top: -20px;
}
.kp-Table th,
.kp-Table td {
  padding: 10px 15px;
  vertical-align: middle;
  font-size: 1.6rem;
  border-right: 1px solid #a5dada;
  border-bottom: 1px solid #a5dada;
}
.kp-Table th {
  text-align: left;
  font-weight:bold;
}
.kp-Table thead th {
  color: #333333;
  background: #f5f5f5;
}
.kp-Table thead tr:first-child th {
  border-top: 3px solid #00a8a9;
}
.kp-Table tbody th {
  font-weight: bold;
  color: #333333;
  background: #f5f5f5;
}
.kp-Table + .kp-Table {
  margin-top: 30px;
}
.kp-Table.-sizeSmall {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.kp-Table.-sizeSmall + .kp-Table__subCaption {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.kp-Table.-textAlignCenter th ,
.kp-Table.-textAlignCenter td {
  text-align: center;
}
.kp-Table.-textAlignRight th ,
.kp-Table.-textAlignRight td {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .kp-Table th,
  .kp-Table td,
  .kp-Table strong {
    font-size: 1.1rem;
  }
  .kp-Table caption {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
  .kp-Table.-sizeSmall {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .kp-Table.-sizeSmall + .kp-Table__subCaption {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
  }
}

.kp-RelatedInfo {
  border: 2px solid #a5dada;
  padding: 55px;
  background-color: #ffffff;
  margin: 0 auto 30px;
  box-sizing: border-box;
}
.kp-RelatedInfo .kp-HeadingLevel2 {
  margin-top: 0;
}
.kp-RelatedInfo dt {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}
.kp-RelatedInfo dd {
  margin-bottom: 40px;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .kp-RelatedInfo {
    padding: 28px;
    margin-left: -20px;
    margin-right: -20px;
    border-top: 5px solid #a5dada;
    border-bottom: 5px solid #a5dada;
    border-left: none;
    border-right: none;
  }
}

#kp-Share {
  margin-top: 40px;
}
#kp-Share .kp-HeadingLevel3 {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 30px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}
#kp-Share span {
  position: relative;
  display: inline-block;
  line-height: 1;
}
#kp-Share span::after {
  content: "";
  position: absolute;
  left: 43%;
  right: 0;
  bottom: -8px;
  border-bottom: 2px solid #00a8a9;
  width: 14%;
}
#kp-Share ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0 20px;
  margin-left: auto;
  margin-right: auto;
  width: 120px;
  height: 50px;
}
#kp-Share li img{
  width: 50px;
  height: 50px;
}
#kp-Share ul a {
  opacity: 1;
}
#kp-Share ul a:hover {
  opacity: .7;
}
@media screen and (max-width: 767px) {
  #kp-Share .kp-HeadingLevel3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  #kp-Share span {
    letter-spacing: 1px;
  }
  #kp-Share span::after {
    bottom: -5px;
    border-bottom: 2px solid #00a8a9;
  }
  #kp-Share ul {
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 40px;
  }
  #kp-Share li img {
    width: 40px;
    height: 40px;
  }
}

/*=====フッター=====*/
#kp-Footer {
  position: relative;
  border-top: solid 5px #00a8a9;
  background-color: #fff;
}
.kp-Footer__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  min-width: inherit;
  max-width: inherit;
  padding: 20px;
  font-size: 1.2rem;
  line-height: 1.3em;
  text-align: center;
}
.kp-Footer__logo {
  width:200px;
}
.kp-Footer__copyright {
  width:100%;
  font-weight: normal;
  font-size: 0.9rem;
}
.kp-Footer__logo {
  text-align: center;
  width: auto;
  float: none;
  margin-bottom:10px;
  margin-left:10px;
}
@media screen and (max-width: 939px) {
  .kp-Footer__inner {
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  .kp-Footer__inner {
    flex-direction: column;
    padding: 20px 20px 16px;
  }
}

/* ===== js-kp-ScrollToTop ===== */
.js-kp-ScrollToTop {
  opacity: 0;
  transition: opacity .2s ease-in-out;
  display: block;
  position: fixed;
  right: 10px;
  bottom: 0;
  width: 70px;
  height: 70px;
  margin-bottom: 30px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  background-color: #339d9e;
}

@media only screen and (max-width: 559px) {
  .js-kp-ScrollToTop {
    width: 40px;
    height: 40px;
    right: 15px;
    line-height: 40px;
  }
}

.js-kp-ScrollToTop.-disabled {
  opacity: 0;
}

.js-kp-ScrollToTop.-stop, .js-kp-ScrollToTop.-fadeIn {
  opacity: 1;
  z-index: 99;
  transition: opacity .2s ease-in-out;
}

.js-kp-ScrollToTop.-stop:hover, .js-kp-ScrollToTop.-stop:focus, .js-kp-ScrollToTop.-fadeIn:hover, .js-kp-ScrollToTop.-fadeIn:focus {
  cursor: pointer;
  opacity: .8;
}

.js-kp-ScrollToTop.-stop {
  position: absolute;
  top: -100px;
}

@media only screen and (max-width: 559px) {
  .js-kp-ScrollToTop.-stop {
    top: -70px;
  }
}

.kp-ScrollToTop__Icon {
  display: inline-block;
  width: 17px;
  height: 12px;
  background: url(/kubotapress/img/arrow_pagetop.svg) 0 0 no-repeat;
}

@media only screen and (max-width: 559px) {
  .kp-ScrollToTop__Icon {
    width: 9px;
    height: 7px;
  }
}
