@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}
body.js-fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

#content {
  overflow: hidden;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a:not(.floating__content):hover {
  opacity: 0.7;
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 960px) {
  .u-desktop {
    display: block;
  }
}

.u-tablet {
  display: none;
}
@media screen and (min-width: 600px) {
  .u-tablet {
    display: block;
  }
}

.u-mobile {
  display: block;
}
@media screen and (min-width: 600px) {
  .u-mobile {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 58px;
  background-color: #fff;
  z-index: 100;
}
@media screen and (min-width: 1280px) {
  .header {
    height: 92px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}
.header__wrapper {
  display: flex;
  height: inherit;
  align-items: center;
}
.header__nav {
  display: none;
}
@media screen and (min-width: 1280px) {
  .header__nav {
    display: flex;
    align-items: center;
    color: #121212;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: 0.08em;
    height: inherit;
  }
}
.header__ul {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr 0.8fr 0.8fr;
  align-items: center;
  height: 65%;
  padding: 0;
  list-style: none;
}
.header__li > a {
  padding: 0 15px;
  display: grid;
  place-items: center;
  justify-content: flex-start;
  margin-block: auto;
  position: relative;
  transition: all 0.7s;
}
.header__li > a:hover {
  color: #0C7BCC;
  opacity: 0.7;
}
.header__tel {
  display: none;
}
@media screen and (min-width: 1280px) {
  .header__tel {
    display: flex;
    color: #0C7BCC;
    font-weight: 500;
    letter-spacing: 0.08em;
    flex-direction: column;
    text-align: center;
    margin-left: 15px;
    margin-right: 35px;
  }
}
.header__tel > a {
  font-size: 2.2rem;
  line-height: 1.45;
}
.header__tel > span {
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 3px;
}
.header__btn {
  display: none;
}
@media screen and (min-width: 1280px) {
  .header__btn {
    display: block;
    background: linear-gradient(to right top, #027FDB, #8DC6EF);
    max-width: 152px;
    cursor: pointer;
    height: inherit;
  }
}
.header__btn > a {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  margin-block: auto;
  padding: 0 29.5px 0 14px;
  margin-left: 29.5px;
  position: relative;
  transition: 0.7s;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  line-height: 1.16;
  font-weight: 500;
  height: inherit;
}
.header__btn > a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 3%;
  width: 12px;
  height: 8px;
  transform: translate(-50%, -50%);
  background-image: url(/wp-content/themes/kken/assets/images/header-mail-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mobile-menu__btn {
  background: linear-gradient(to top right, #0C7BCC, #7EDEFF);
  border: none;
  outline: none !important;
  cursor: pointer;
  width: 58px;
  height: 58px;
}
@media screen and (min-width: 1280px) {
  .mobile-menu__btn {
    display: none;
  }
}
.mobile-menu__btn > span {
  background-color: #fff;
  width: 20px;
  height: 1px;
  display: block;
  margin: 0 auto 6px;
  transition: transform 0.7s;
  position: relative;
}
.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
.mobile-menu__btn.is-open > span:first-child {
  transition-delay: 70ms;
  transform: translateY(7px) rotate(135deg);
}
.mobile-menu__btn.is-open > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-18px) scaleX(0);
}
.mobile-menu__btn.is-open > span:last-child {
  transition-delay: 140ms;
  transform: translateY(-7px) rotate(-135deg);
}

.mobile-header {
  transform: translateX(100%);
  background-color: #FFFFFF;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s 0s ease;
  overflow-y: scroll;
}
.mobile-header.is-open {
  transform: translateX(0);
}
.mobile-header__nav {
  padding-bottom: 48px;
}
.mobile-header__ul {
  padding: 68px 0;
}
.mobile-header__li {
  list-style: none;
}
.mobile-header__li > a {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  padding-top: 29px;
  padding-bottom: 14px;
  border-bottom: 1px solid #454545;
  width: 85%;
  margin-inline: auto;
  position: relative;
  transition: all 0.3s;
  display: block;
}
.mobile-header__li > a::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 6px;
  top: 50%;
  left: 90%;
  background-image: url(/wp-content/themes/kken/assets/images/mobile-header-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mobile-header__contact {
  text-align: center;
}
.mobile-header__contact .contact-head {
  color: #F46A04;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.14;
  position: relative;
  width: 280px;
  margin-inline: auto;
}
.mobile-header__contact .contact-head::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 32px;
  top: 0;
  left: 20px;
  background-image: url(/wp-content/themes/kken/assets/images/decoration-left.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mobile-header__contact .contact-head::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 32px;
  top: 0;
  right: 30px;
  background-image: url(/wp-content/themes/kken/assets/images/decoration-right.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mobile-header__tel {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 2px;
  position: relative;
  width: 280px;
  margin-inline: auto;
}
.mobile-header__tel::before {
  position: absolute;
  content: "";
  width: 17px;
  height: 22px;
  top: 9px;
  left: 35px;
  background-image: url(/wp-content/themes/kken/assets/images/mobile-tel-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mobile-header__btn {
  margin-top: 18px;
}
.mobile-header__btn > a {
  display: inline-block;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.23;
  background: linear-gradient(to right top, #0C7BCC, #7EDEFF);
  width: 280px;
  position: relative;
  padding: 14px 0 13px;
}
.mobile-header__btn > a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 9px;
  top: 55%;
  left: 29%;
  transform: translateY(-50%);
  background-image: url(/wp-content/themes/kken/assets/images/header-mail-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mobile-header__btn > a::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 6px;
  top: 55%;
  left: 90%;
  transform: translateY(-50%);
  background-image: url(/wp-content/themes/kken/assets/images/mobile-header-contact-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mobile-header__line {
  height: 12px;
  background: linear-gradient(to right, #0C7BCC, #7EDEFF);
  width: 100%;
}

.logo {
  width: 146px;
  height: 20px;
  margin-left: 15px;
}
@media screen and (min-width: 1280px) {
  .logo {
    width: 244px;
    height: 34px;
    margin-left: 30px;
  }
}

.hero {
  padding-top: 58px;
  padding-bottom: 68px;
}
@media screen and (min-width: 1280px) {
  .hero {
    margin-top: 92px;
    padding-top: 0;
    padding-bottom: 128px;
  }
}

.swiper-container {
  position: relative;
}

.swiper {
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.swiper-pagination-bullets {
  bottom: -33px !important;
}

.swiper-pagination-bullet {
  background-color: transparent;
  background-image: url(/wp-content/themes/kken/assets/images/pagination.png);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: unset;
  opacity: 1;
  height: 10px;
  width: 10px;
}
@media screen and (min-width: 600px) {
  .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
  }
}

.swiper-pagination-bullet-active {
  background-image: url(/wp-content/themes/kken/assets/images/pagination-active.png);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6.5px;
}
@media screen and (min-width: 600px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 7.5px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
}
@media screen and (min-width: 600px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: block;
    top: 52%;
    width: 20%;
    height: 69px;
    transition: 0.7s;
  }
}

@media screen and (min-width: 600px) {
  .swiper-button-prev::after {
    display: block;
    background-image: url(/wp-content/themes/kken/assets/images/hero-prev.png);
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    margin: auto;
    height: 69px;
    width: 69px;
  }
}

@media screen and (min-width: 600px) {
  .swiper-button-next::after {
    display: block;
    background-image: url(/wp-content/themes/kken/assets/images/hero-next.png);
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    margin: auto;
    height: 69px;
    width: 69px;
  }
}

.main-title {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

.sub-title {
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #0C7BCC;
  font-weight: bold;
  margin-top: 4px;
}
@media screen and (min-width: 600px) {
  .sub-title {
    font-size: 3rem;
    line-height: 1.433;
  }
}

.about {
  margin-top: 70px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .about:not(.scroll-infinity) {
    max-width: 1440px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 600px) {
  .about__sub {
    font-size: 2rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1280px) {
  .about__sub {
    font-size: 3rem;
    line-height: 1.433;
  }
}
@media screen and (min-width: 960px) {
  .about::after {
    content: "about";
    position: absolute;
    text-transform: uppercase;
    font-size: 12rem;
    font-weight: 500;
    letter-spacing: 0.17em;
    line-height: 1.48;
    transform: rotate(90deg);
    top: 13%;
    right: -150px;
    color: #F0F7FD;
    z-index: -1;
  }
}
.about__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 600px) {
  .about__inner {
    max-width: 90%;
    padding: 0;
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 5%;
  }
}
@media screen and (min-width: 600px) {
  .about__texts {
    text-align: left;
    width: 40%;
  }
}
.about__img {
  margin-top: 20px;
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .about__img {
    margin-top: 0;
    width: 73%;
    aspect-ratio: 680/504;
    max-width: 680px;
  }
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 600px) {
  .about__title {
    text-align: left;
  }
}
@media screen and (min-width: 600px) {
  .about__sub {
    line-height: 1.6;
    white-space: nowrap;
  }
}
.about__description {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 2;
  margin-top: 14px;
}
@media screen and (min-width: 600px) {
  .about__description {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}
.about__slider {
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  .about__slider {
    margin-top: 38px;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  animation: infinity-scroll-left 60s infinite linear 0.6s both;
}
.scroll-infinity__item {
  width: 120px;
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .scroll-infinity__item {
    width: 195px;
    margin-left: 33px;
  }
}
.scroll-infinity__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.problem {
  margin-top: 60px;
}
@media screen and (min-width: 600px) {
  .problem {
    margin-top: 100px;
    position: relative;
    margin-bottom: 110px;
    max-width: 1440px;
    margin-inline: auto;
  }
  .problem::after {
    content: "problem";
    text-transform: uppercase;
    font-size: 12rem;
    font-weight: 500;
    letter-spacing: 0.17em;
    line-height: 1.483;
    color: #F0F7FD;
    position: absolute;
    transform: rotate(90deg);
    top: 26%;
    right: -235px;
  }
}
.problem .sub-title {
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 600px) {
  .problem .sub-title {
    margin-top: 10px;
    margin-bottom: 30px;
  }
}
.problem__inner {
  padding: 60px 0 70px;
  background-color: #F0F7FD;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 600px) {
  .problem__inner {
    border-radius: 0 30px 30px 0;
    width: 85%;
    padding: 79px 0 101px;
  }
}
.problem__container {
  background-color: #FFFFFF;
  border-radius: 30px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .problem__container {
    max-width: 754px;
  }
}
.problem__ul {
  padding: 40px 0;
}
@media screen and (min-width: 600px) {
  .problem__ul {
    padding: 64px 0;
  }
}
.problem__li {
  position: relative;
  color: #746E6C;
  letter-spacing: 0.08em;
  line-height: 2.77;
  font-weight: bold;
  list-style: none;
  padding-left: 50px;
  border-bottom: 1px dashed #E8E8E8;
  width: 90%;
  margin: 0 auto;
  font-size: 1.4rem;
}
.problem__li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  background-image: url(/wp-content/themes/kken/assets/images/check-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 20px;
  height: 15px;
}
@media screen and (min-width: 600px) {
  .problem__li::before {
    width: 25px;
    height: 20px;
  }
}
.problem__li span {
  color: #FD88BB;
}
@media screen and (min-width: 600px) {
  .problem__li {
    font-size: 2.2rem;
    padding-left: 56px;
  }
}
.problem__img {
  position: absolute;
  bottom: 3%;
  right: 10px;
}
@media screen and (min-width: 600px) {
  .problem__img {
    bottom: 51px;
    right: 3%;
  }
}
.problem__img img {
  width: 110px;
}
@media screen and (min-width: 960px) {
  .problem__img img {
    width: 294px;
    height: 350px;
  }
}

.common {
  margin-top: 50px;
  background: linear-gradient(to right, #0C7BCC, #7EDEFF);
  padding: 30px 0;
  position: relative;
}
@media screen and (min-width: 600px) {
  .common {
    margin-top: 0;
    padding: 55px 0;
  }
}
.common__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .common__inner {
    max-width: 1002px;
    padding: 0 25px;
  }
}
.common__wrap {
  display: inline-block;
  background-color: #FFF2AA;
  -webkit-clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px), 0 15px);
          clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px), 0 15px);
  padding: 15px;
  width: 100%;
}
.common__block {
  display: inline-block;
  background-color: #FFFFFF;
  background: linear-gradient(to bottom, #FFFFFF 47%, #FBFAF6 47%, #FBFAF6 100%);
  -webkit-clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px), 0 15px);
          clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px), 0 15px);
  padding: 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .common__block {
    padding: 0;
  }
}
@media screen and (min-width: 600px) {
  .common__block {
    display: flex;
    background: linear-gradient(to right, #FFFFFF 50%, #FBFAF6 50%, #FBFAF6 100%);
    padding: 10px;
    align-items: center;
  }
}
.common__content {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .common__content {
    width: 50%;
  }
}
.common__header {
  color: #F46A04;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  max-width: 402px;
  position: relative;
  margin-inline: auto;
}
@media screen and (min-width: 960px) {
  .common__header {
    font-size: 2.1rem;
  }
}
.common__header::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 25px;
  top: 40%;
  left: 3%;
  transform: translate(-50%, -50%);
  background-image: url(/wp-content/themes/kken/assets/images/decoration-left.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 960px) {
  .common__header::before {
    width: 34px;
    height: 43px;
    top: 23%;
    left: 6.5%;
  }
}
.common__header::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 25px;
  top: 40%;
  left: 98%;
  transform: translate(-50%, -50%);
  background-image: url(/wp-content/themes/kken/assets/images/decoration-right.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 960px) {
  .common__header::after {
    width: 34px;
    height: 43px;
    top: 23%;
    left: 95%;
  }
}
.common__btn {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .common__btn {
    margin-top: 5px;
  }
}
.common__btn > a {
  display: inline-block;
  background-color: #F46A04;
  padding: 12px 0;
  color: #FFFFFF;
  font-weight: bold;
  letter-spacing: 0.061em;
  line-height: 1.444;
  max-width: 402px;
  width: 100%;
  -webkit-clip-path: polygon(5px 0, calc(100% - 5px) 0, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px), 0 5px);
          clip-path: polygon(5px 0, calc(100% - 5px) 0, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px), 0 5px);
  position: relative;
  transition: 0.7s;
}
@media screen and (min-width: 600px) {
  .common__btn > a {
    font-size: 1.8rem;
    padding: 18.5px 0;
  }
}
.common__btn > a::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  top: 50%;
  left: 90%;
  transform: translateY(-50%);
  background-image: url(/wp-content/themes/kken/assets/images/common-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 600px) {
  .common__btn > a::after {
    width: 6px;
    height: 12px;
  }
}
.common__tel {
  margin-top: 5px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  .common__tel {
    font-size: 2.1rem;
  }
}
.common__tel span {
  font-size: 2.5rem;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 600px) {
  .common__tel span {
    font-size: 3.1rem;
  }
}
.common__img {
  width: 100%;
  position: relative;
  margin-top: 5px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 89%, 96% 100%, 4% 100%, 0 89%);
          clip-path: polygon(0 0, 100% 0, 100% 89%, 96% 100%, 4% 100%, 0 89%);
}
@media screen and (min-width: 600px) {
  .common__img {
    width: 50%;
    margin-top: 0;
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 10%, 100% 90%, 95% 100%, 0 100%);
            clip-path: polygon(0 0, 95% 0, 100% 10%, 100% 90%, 95% 100%, 0 100%);
    display: flex;
  }
}
.common__img .common__img-block {
  aspect-ratio: 393/195;
  max-width: 393px;
  margin-inline: auto;
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .common__img .common__img-block {
    padding: 13px 14px 15px 13px;
  }
}
.common__img .common__img-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px), 0 15px);
          clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px), 0 15px);
}
.common__img::after {
  content: "";
  position: absolute;
  top: 58%;
  left: 55%;
  width: 126px;
  height: 52px;
  background-image: url(/wp-content/themes/kken/assets/images/contact-text.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
}
@media screen and (min-width: 960px) {
  .common__img::after {
    width: 157px;
    height: 68px;
    top: 60%;
    left: 65%;
  }
}

.case {
  margin-top: 70px;
}
@media screen and (min-width: 600px) {
  .case {
    margin-top: 110px;
  }
}
.case .sub-title {
  text-align: center;
}
.case__inner {
  position: relative;
  padding-bottom: 95px;
}
.case__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 80%;
  width: 100%;
  background-color: #F0F7FD;
}
.case__swiper {
  margin-top: 30px;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .case__swiper {
    margin-top: 40px;
  }
}
.case__swiper .swiper-slide {
  position: relative;
}
.case__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.case__swiper .swiper-slide > p {
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-size: 1.4rem;
  margin-top: 15px;
}
.case__swiper .swiper-button-prev,
.case__swiper .swiper-button-next {
  display: flex;
  width: 24%;
  top: 29%;
  transition: 0.7s;
}
.case__swiper .swiper-button-prev:hover,
.case__swiper .swiper-button-next:hover {
  opacity: 0.7;
}
.case__swiper .swiper-button-prev::after {
  background-image: url(/wp-content/themes/kken/assets/images/case-prev.png);
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin: auto;
}
@media screen and (min-width: 600px) {
  .case__swiper .swiper-button-prev::after {
    width: 70px;
    height: 69px;
  }
}
.case__swiper .swiper-button-next::after {
  background-image: url(/wp-content/themes/kken/assets/images/case-next.png);
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin: auto;
}
@media screen and (min-width: 600px) {
  .case__swiper .swiper-button-next::after {
    width: 70px;
    height: 69px;
  }
}
.case__btn {
  position: relative;
  text-align: center;
  margin-top: 40px;
}
.case__btn > a {
  display: inline-block;
  max-width: 245px;
  width: 100%;
  text-align: center;
  border-radius: 60px;
  padding: 14px 20px;
  background-color: #F46A04;
  color: #FFFFFF;
  font-size: 1.2rem;
  transition: 0.7s;
  letter-spacing: 0.13em;
  font-weight: 500;
}
.case__btn::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  left: 65%;
  background-image: url(/wp-content/themes/kken/assets/images/case-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 480px) {
  .case__btn::after {
    left: 62%;
  }
}
@media screen and (min-width: 600px) {
  .case__btn::after {
    left: 58%;
  }
}
@media screen and (min-width: 960px) {
  .case__btn::after {
    left: 56%;
  }
}
@media screen and (min-width: 1280px) {
  .case__btn::after {
    left: 54%;
  }
}

.price {
  margin-top: 50px;
}
@media screen and (min-width: 600px) {
  .price {
    margin-top: 100px;
    margin-bottom: 114px;
  }
}
.price .sub-title {
  text-align: center;
}
.price__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .price__inner {
    max-width: 1040px;
  }
}
.price__frame {
  margin-top: 30px;
  border: 2px solid #0C7BCC;
}
@media screen and (min-width: 600px) {
  .price__frame:first-child {
    margin-top: 40px;
  }
}
.price__header {
  background: #0C7BCC;
  color: #FFFFFF;
  text-align: center;
  font-size: 2rem;
  padding: 3px 0;
  letter-spacing: 0.08em;
  position: relative;
}
@media screen and (min-width: 600px) {
  .price__header {
    font-size: 3.2rem;
    padding: 13.5px 0;
  }
}
.price__header::before, .price__header::after {
  content: "";
  position: absolute;
  flex-grow: 1;
  top: 48%;
  width: 40px;
  height: 1px;
  background-color: #FFFFFF;
}
@media screen and (min-width: 600px) {
  .price__header::before, .price__header::after {
    width: 80px;
  }
}
@media screen and (min-width: 960px) {
  .price__header::before, .price__header::after {
    width: 153px;
  }
}
.price__header::before {
  right: 70%;
}
@media screen and (min-width: 600px) {
  .price__header::before {
    right: 65%;
    left: auto;
  }
}
.price__header::after {
  left: 70%;
}
@media screen and (min-width: 600px) {
  .price__header::after {
    left: 65%;
  }
}
.price__header.price-header2::before {
  right: 73%;
}
.price__header.price-header2::after {
  left: 73%;
}
@media screen and (min-width: 600px) {
  .price__header.price-header2::before {
    right: 69%;
    left: auto;
  }
  .price__header.price-header2::after {
    left: 69%;
  }
}
.price__header.price-header3::before {
  right: 85%;
}
@media screen and (min-width: 600px) {
  .price__header.price-header3::before {
    right: 82%;
  }
}
@media screen and (min-width: 960px) {
  .price__header.price-header3::before {
    right: 71%;
  }
}
.price__header.price-header3::after {
  left: 85%;
}
@media screen and (min-width: 600px) {
  .price__header.price-header3::after {
    left: 82%;
  }
}
@media screen and (min-width: 960px) {
  .price__header.price-header3::after {
    left: 71%;
  }
}
.price__body {
  padding: 20px;
}
@media screen and (min-width: 600px) {
  .price__body {
    padding: 44px 50px 35px 47px;
  }
}
.price__container {
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .price__container {
    display: flex;
    gap: 30px;
  }
}
.price__img {
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .price__img {
    aspect-ratio: 321/251;
    max-width: 321px;
    height: 100%;
    width: 45%;
  }
}
.price__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.price__texts {
  padding: 10px 0 0;
}
@media screen and (min-width: 600px) {
  .price__texts {
    padding: 0;
    width: 60%;
  }
}
.price__title {
  font-size: 1.8rem;
  color: #F46A04;
  letter-spacing: 0.022em;
  line-height: 1;
  padding-bottom: 7px;
  font-weight: bold;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 600px) {
  .price__title {
    font-size: 2.4rem;
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
@media screen and (min-width: 960px) {
  .price__title {
    font-size: 3.5rem;
    text-wrap: nowrap;
  }
}
@media screen and (min-width: 1280px) {
  .price__title {
    font-size: 4rem;
  }
}
.price__description {
  font-size: 1.2rem;
  margin-top: 5px;
  letter-spacing: 0.02em;
  line-height: 2.2;
}
@media screen and (min-width: 600px) {
  .price__description {
    font-size: 1.4rem;
    margin-top: 12px;
  }
}
.price__price {
  display: flex;
  color: #E33729;
}
@media screen and (min-width: 960px) {
  .price__price {
    margin-top: 20px;
  }
}
.price__price .price-num {
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (min-width: 960px) {
  .price__price .price-num {
    font-size: 8.7rem;
  }
}
.price__price .price-unit {
  display: flex;
  flex-direction: column;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.2;
  justify-content: center;
  margin-left: 5px;
}
@media screen and (min-width: 960px) {
  .price__price .price-unit {
    font-size: 5.4rem;
    margin-left: 8px;
  }
}
.price__price .price-unit span {
  font-size: 1rem;
  white-space: nowrap;
}
@media screen and (min-width: 960px) {
  .price__price .price-unit span {
    font-size: 1.5rem;
  }
}

.service {
  margin-top: 50px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .service {
    max-width: 1400px;
    margin-inline: auto;
  }
  .service::before {
    content: "Service 01";
    text-transform: uppercase;
    font-size: 6.4rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
    color: #F0F7FD;
    transform: rotate(90deg);
    position: absolute;
    top: 19%;
    left: -120px;
  }
  .service::after {
    content: "Service 02";
    text-transform: uppercase;
    font-size: 6.4rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
    color: #F0F7FD;
    transform: rotate(90deg);
    position: absolute;
    top: 47%;
    right: -120px;
  }
}
@media screen and (min-width: 1280px) {
  .service__bgtext {
    position: relative;
    padding-bottom: 125px;
  }
  .service__bgtext::before {
    content: "Service 03";
    text-transform: uppercase;
    font-size: 6.4rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
    color: #F0F7FD;
    transform: rotate(90deg);
    position: absolute;
    bottom: 17%;
    left: -120px;
  }
}
@media screen and (min-width: 600px) {
  .service {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
.service .sub-title {
  text-align: center;
}
.service__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .service__inner {
    max-width: 1040px;
  }
}
.service__items {
  margin-top: 50px;
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .service__items {
    margin-top: 60px;
  }
}
.service__item:not(:first-child) {
  margin-top: 75px;
}
@media screen and (min-width: 600px) {
  .service__item:not(:first-child) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 600px) {
  .service__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
  }
}
.service__img {
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .service__img {
    aspect-ratio: 410/300;
    max-width: 410px;
    width: 41%;
  }
}
.service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__texts {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .service__texts {
    margin-top: 0;
    width: 51%;
  }
}
.service__num {
  color: #0C7BCC;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (min-width: 600px) {
  .service__num {
    font-size: 1.4rem;
  }
}
.service__title {
  border-bottom: 1px solid #707070;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding-bottom: 14px;
  margin-top: 15px;
  font-size: 1.8rem;
  color: #222222;
}
@media screen and (min-width: 600px) {
  .service__title {
    font-size: 2.5rem;
  }
}
.service__description {
  font-size: 1.4rem;
  color: #222222;
  letter-spacing: 0.06em;
  line-height: 2.28;
  margin-top: 20px;
}

.news {
  padding: 50px 0;
  margin-top: 50px;
  background-color: #F8F8F8;
}
@media screen and (min-width: 600px) {
  .news {
    margin-top: 0;
    padding: 85px 0 90px;
  }
}
@media screen and (min-width: 600px) {
  .news__title {
    text-align: left;
  }
}
.news__sub {
  text-align: center;
}
@media screen and (min-width: 600px) {
  .news__sub {
    text-align: left;
  }
}
.news__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .news__inner {
    max-width: 1040px;
  }
}
.news__items {
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  .news__items {
    margin-top: 25px;
  }
}
.news__item {
  padding: 15px 0;
  border-top: 1px solid #4C5B70;
  transition: 0.7s;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 600px) {
  .news__item {
    padding: 20px 0;
    gap: 27px;
  }
}
.news__item:last-child {
  border-bottom: 1px solid #4C5B70;
}
.news__img {
  aspect-ratio: 102/72;
  max-width: 102px;
}
.news__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__texts {
  width: 63%;
}
@media screen and (min-width: 600px) {
  .news__texts {
    width: 54%;
  }
}
.news__time {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.5;
  color: #1F1F1F;
  padding-right: 10px;
  border-right: 1px solid #1F1F1F;
}
@media screen and (min-width: 600px) {
  .news__time {
    font-size: 1.1rem;
    padding-right: 21px;
  }
}
.news__category {
  display: inline-block;
  font-size: 1.2rem;
  color: #0C7BCC;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 1.2;
  background-color: #FFFFFF;
  border-radius: 50px;
  padding: 5px 8px;
  max-width: 100px;
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .news__category {
    font-size: 1rem;
    padding: 2px 8px;
    margin-left: 21px;
  }
}
.news__content {
  font-size: 1.4rem;
  margin-top: 5px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #1F1F1F;
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  .news__content {
    font-size: 1.2rem;
    margin-top: 15px;
  }
}
.news__btn {
  position: relative;
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .news__btn {
    text-align: right;
  }
}
.news__btn > a {
  display: inline-block;
  max-width: 245px;
  width: 100%;
  text-align: center;
  border-radius: 60px;
  padding: 14px 20px;
  background-color: #F46A04;
  color: #FFFFFF;
  font-size: 1.2rem;
  transition: 0.7s;
  letter-spacing: 0.13em;
  font-weight: 500;
}
.news__btn::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 10px;
  top: 20px;
  left: 65%;
  background-image: url(/wp-content/themes/kken/assets/images/case-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 600px) {
  .news__btn::after {
    left: 92%;
  }
}
@media screen and (min-width: 1280px) {
  .news__btn::after {
    left: 94%;
  }
}

.voice {
  margin-top: 50px;
  background-color: #F0F7FD;
  padding: 50px 0;
}
@media screen and (min-width: 600px) {
  .voice {
    margin-top: 0;
    padding: 95px 0 130px;
  }
}
.voice .sub-title {
  text-align: center;
}
.voice__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .voice__inner {
    max-width: 1040px;
  }
}
.voice__ul {
  margin-top: 30px;
  padding: 0;
}
@media screen and (min-width: 600px) {
  .voice__ul {
    margin-top: 0px;
  }
}
.voice__li {
  margin-top: 30px;
  list-style: none;
}
@media screen and (min-width: 600px) {
  .voice__li {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
  }
}
.voice__icon .icon-bg {
  background-color: #FFFFFF;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 600px) {
  .voice__icon .icon-bg {
    width: 130px;
    height: 130px;
  }
}
.voice__icon .icon-bg::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 70px;
  height: 90px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 600px) {
  .voice__icon .icon-bg::after {
    width: 67px;
    height: 86px;
  }
}
.voice__icon .icon-bg.icon1::after {
  background-image: url(/wp-content/themes/kken/assets/images/voice-icon1.png);
}
.voice__icon .icon-bg.icon2::after {
  background-image: url(/wp-content/themes/kken/assets/images/voice-icon2.png);
}
.voice__icon .icon-bg.icon3::after {
  background-image: url(/wp-content/themes/kken/assets/images/voice-icon3.png);
}
.voice__name {
  color: #0C7BCC;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.333;
  font-size: 2rem;
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .voice__name {
    font-size: 1.8rem;
    margin-top: 7px;
  }
}
.voice__text {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  padding: 7%;
  min-width: 120px;
  max-width: 100%;
  font-size: 1.6rem;
  background-color: #FFFFFF;
  letter-spacing: 0.08em;
  line-height: 1.875;
  border-radius: 8px;
}
@media screen and (min-width: 600px) {
  .voice__text {
    margin-top: 0;
    padding: 3%;
  }
}
.voice__text::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #FFFFFF;
}
@media screen and (min-width: 600px) {
  .voice__text::before {
    top: 50%;
    left: -15px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #FFFFFF;
  }
}
.voice__text > p {
  font-size: 1.3rem;
  margin: 0;
  padding: 0;
  text-align: justify;
}
@media screen and (min-width: 600px) {
  .voice__text > p {
    font-size: 1.6rem;
  }
}

.faq {
  margin-top: 100px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .faq__title-wrap {
    width: 30%;
  }
  .faq__title-wrap .main-title,
  .faq__title-wrap .sub-title {
    text-align: left;
  }
}
.faq .sub-title {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .faq .sub-title {
    text-align: left;
  }
}
.faq__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .faq__inner {
    max-width: 1040px;
    display: flex;
    justify-content: space-between;
  }
}
.faq__items {
  margin-top: 30px;
  color: #FFFFFF;
}
@media screen and (min-width: 960px) {
  .faq__items {
    margin-top: 0;
    width: 75%;
  }
}
.faq__item:not(:first-child) {
  margin-top: 21px;
}
.faq__header {
  background-color: #6DB2E5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 10px 25px;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  line-height: 1.428;
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  .faq__header {
    padding: 25px 24px 25px 46px;
  }
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq__q {
  position: relative;
  padding-left: 30px;
}
.faq__q::before {
  content: "Q.";
  position: absolute;
  width: 23px;
  height: 34px;
  font-size: 2.3rem;
  left: -10px;
  top: 55%;
  transform: translateY(-50%);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.26;
}
.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  background-color: #FFFFFF;
  display: block;
  height: 2px;
  position: absolute;
  width: 22px;
  top: 12px;
}
.faq__icon::before {
  left: 0;
  transform: translateY(-50%);
}
.faq__icon::after {
  transform: translateY(-50%) rotate(-90deg);
  transition: transform 0.5s;
}
.faq__item[open]:not([data-accordion-before-close]) .faq__icon::after {
  transform: translateY(-50%);
}
.faq__container {
  overflow: hidden;
  padding: 21px 38px;
  border: 1px solid #6DB2E5;
  color: #000000;
}
.faq__a {
  position: relative;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 2.14;
  font-size: 1.4rem;
  padding-left: 16px;
}
@media screen and (min-width: 960px) {
  .faq__a {
    padding-left: 35px;
  }
}
.faq__a::before {
  content: "A.";
  position: absolute;
  width: 19px;
  height: 34px;
  left: -23px;
  top: 17px;
  transform: translateY(-50%);
  font-size: 2.3rem;
  color: #0C7BCC;
  letter-spacing: 0.08em;
  line-height: 1.26;
}
@media screen and (min-width: 960px) {
  .faq__a::before {
    left: -3px;
    top: 17px;
  }
}

.recruit {
  margin-top: 100px;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 960px) {
  .recruit {
    margin-top: 125px;
    max-width: 1440px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 960px) {
  .recruit .main-title {
    text-align: left;
  }
  .recruit .main-title.u-tablet {
    display: none;
  }
}
.recruit .sub-title {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .recruit .sub-title {
    text-align: left;
  }
  .recruit .sub-title.u-tablet {
    display: none;
  }
}
.recruit__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
  padding-bottom: 50px;
}
@media screen and (min-width: 960px) {
  .recruit__inner {
    padding: 0;
    margin-top: 0;
    padding-bottom: 100.8px;
    display: flex;
    gap: 70px;
    max-width: 90%;
    margin-left: 0;
  }
}
.recruit__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 30%;
  width: 90%;
  background-color: #F0F7FD;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .recruit__inner::before {
    display: none;
  }
}
.recruit__inner::after {
  content: "recruit";
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1.233;
  color: #FFFFFF;
  font-size: 5rem;
  bottom: -5px;
  right: 10px;
  position: absolute;
  opacity: 0.8;
}
@media screen and (min-width: 960px) {
  .recruit__inner::after {
    display: none;
  }
}
.recruit__img {
  max-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 960px) {
  .recruit__img {
    aspect-ratio: 625/453;
    max-width: 625px;
    width: 50%;
    margin: 0;
  }
}
.recruit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit__texts {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .recruit__texts {
    text-align: left;
    width: 50%;
  }
}
.recruit__content {
  margin-top: 15px;
  font-size: 1.8rem;
  text-align: left;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.46;
  color: #222222;
}
@media screen and (min-width: 960px) {
  .recruit__content {
    font-size: 2.6rem;
    margin-top: 20px;
    padding-top: 0;
  }
}
.recruit__description {
  margin-top: 14px;
  text-align: justify;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 2.25;
  color: #222222;
}
@media screen and (min-width: 960px) {
  .recruit__description {
    font-size: 1.6rem;
  }
}
.recruit__btn {
  position: relative;
  text-align: left;
  margin-top: 40px;
}
.recruit__btn > a {
  display: inline-block;
  max-width: 245px;
  width: 100%;
  text-align: center;
  border-radius: 60px;
  padding: 14px 20px;
  background-color: #F46A04;
  color: #FFFFFF;
  font-size: 1.2rem;
  transition: 0.7s;
  letter-spacing: 0.13em;
  font-weight: 500;
}
.recruit__btn::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 10px;
  top: 20px;
  left: 49%;
  background-image: url(/wp-content/themes/kken/assets/images/case-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 480px) {
  .recruit__btn::after {
    left: 37%;
  }
}
@media screen and (min-width: 600px) {
  .recruit__btn::after {
    left: 28%;
  }
}
@media screen and (min-width: 768px) {
  .recruit__btn::after {
    left: 22%;
  }
}
@media screen and (min-width: 960px) {
  .recruit__btn::after {
    left: 39%;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__btn::after {
    left: 30%;
  }
}
@media screen and (min-width: 960px) {
  .recruit__bg {
    height: 291px;
    background-color: #F0F7FD;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    z-index: -1;
  }
  .recruit__bg::after {
    content: "recruit";
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.13em;
    line-height: 1.233;
    color: #FFFFFF;
    font-size: 12rem;
    bottom: -15px;
    right: 10px;
    position: absolute;
    opacity: 0.8;
  }
}

.company {
  background-color: #F0F7FD;
  margin-top: 100px;
  padding: 60px 0;
}
@media screen and (min-width: 600px) {
  .company {
    padding: 110px 0;
  }
}
@media screen and (min-width: 600px) {
  .company .main-title {
    text-align: left;
  }
}
.company .sub-title {
  text-align: center;
}
@media screen and (min-width: 600px) {
  .company .sub-title {
    text-align: left;
  }
}
.company__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .company__inner {
    max-width: 1040px;
  }
}
.company__container {
  margin-top: 47px;
}
@media screen and (min-width: 600px) {
  .company__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 39px;
  }
}
@media screen and (min-width: 600px) {
  .company__img {
    aspect-ratio: 423/248;
    max-width: 423px;
    width: 42%;
  }
}
.company__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company__info {
  margin-top: 60px;
}
@media screen and (min-width: 600px) {
  .company__info {
    margin-top: 0;
    width: 50%;
  }
}
.company__info .company__info-list {
  display: flex;
  padding: 15px 0;
  color: #3E3E3E;
  border-bottom: 1px solid #0C7BCC;
}
.company__info .company__info-list:first-child {
  padding-top: 0;
}
.company__info dt {
  width: 20%;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0;
}
.company__info dd {
  width: 80%;
  padding-left: 20px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.company__map {
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  .company__map {
    margin-top: 50px;
  }
}
.company__map iframe {
  width: 100%;
  height: 234px;
}

.contact {
  background-image: url(/wp-content/themes/kken/assets/images/contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 0;
}
@media screen and (min-width: 960px) {
  .contact {
    padding: 110px 0 91px;
  }
}
.contact .sub-title {
  text-align: center;
  color: #FFFFFF;
}
.contact__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .contact__inner {
    max-width: 1040px;
  }
}
.contact__text {
  margin-top: 37px;
  font-size: 1.5rem;
  letter-spacing: 0.13em;
  line-height: 1.733;
}
@media screen and (min-width: 960px) {
  .contact__text {
    margin-top: 28px;
  }
}
.contact__content {
  margin-top: 50px;
}
@media screen and (min-width: 960px) {
  .contact__content {
    display: flex;
    margin-top: 80px;
    align-items: center;
  }
}
@media screen and (min-width: 960px) {
  .contact__mail {
    width: 50%;
    border-right: 1px solid #FFFFFF;
  }
}
.contact__mail .contact__img {
  margin-inline: auto;
  aspect-ratio: 46/37;
  max-width: 46px;
}
.contact__mail .contact__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact__mail .mail-title {
  margin-top: 15px;
  font-size: 1.4rem;
  letter-spacing: 0.13em;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .contact__mail .mail-title {
    font-size: 1.8rem;
    margin-top: 30px;
  }
}
.contact__mail .mail-btn > a {
  display: inline-block;
  max-width: 327px;
  width: 100%;
  padding: 10px 5px;
  border: 1px solid #FFFFFF;
  margin-top: 15px;
  transition: 0.7s;
  letter-spacing: 0.13em;
  line-height: 1.733;
}
@media screen and (min-width: 960px) {
  .contact__mail .mail-btn > a {
    margin-top: 25px;
    font-size: 1.5rem;
    padding: 25px 0px 25px 0px;
    width: 327px;
    max-width: 100%;
  }
}
.contact__tel {
  margin-top: 50px;
}
@media screen and (min-width: 960px) {
  .contact__tel {
    margin-top: 0;
    width: 50%;
  }
}
.contact__tel .tel-img {
  margin-inline: auto;
  aspect-ratio: 34/45;
  max-width: 34px;
}
.contact__tel .tel-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact__tel .tel-title {
  margin-top: 15px;
  font-size: 1.4rem;
  letter-spacing: 0.13em;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .contact__tel .tel-title {
    font-size: 1.8rem;
    margin-top: 27px;
  }
}
.contact__tel .tel-num {
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  line-height: 1.55;
}
@media screen and (min-width: 960px) {
  .contact__tel .tel-num {
    font-size: 3.4rem;
    margin-top: 10px;
  }
}

.pagetop {
  width: 35px;
  height: 35px;
  margin-top: -20px;
  margin-inline: auto 20px;
  z-index: 99;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .pagetop {
    width: 58px;
    height: 58px;
    margin-top: -30px;
    margin-inline: auto 30px;
  }
}

.footer {
  padding-top: 51px;
  margin-top: auto;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .footer {
    padding-top: 60px;
  }
}
.footer__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  padding-bottom: 70px;
}
@media screen and (min-width: 960px) {
  .footer__inner {
    max-width: 1100px;
  }
}
@media screen and (min-width: 960px) {
  .footer__container {
    display: flex;
    justify-content: space-between;
    gap: 10%;
  }
}
.footer .logo {
  max-width: 200px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 960px) {
  .footer .logo {
    max-width: 244px;
    margin: 0;
  }
}
.footer .logo > a {
  max-width: 100%;
  display: block;
  width: 100%;
}
.footer__nav {
  margin-top: 30px;
}
@media screen and (min-width: 960px) {
  .footer__nav {
    margin-top: 0;
  }
}
.footer__ul {
  padding: 0;
}
@media screen and (min-width: 960px) {
  .footer__ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 14px;
    place-items: inherit;
    width: 100%;
    margin-top: 0;
  }
}
.footer__li {
  list-style: none;
  font-size: 1.4rem;
  margin-top: 10px;
  width: 100%;
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1.21;
}
@media screen and (min-width: 960px) {
  .footer__li {
    margin-top: 0;
    margin-left: 60px;
  }
}
.footer__li > a {
  display: inline-block;
  height: inherit;
  width: 100%;
  text-align: center;
  margin-bottom: auto;
  position: relative;
  color: #121212;
  transition: all 0.7s;
}
.footer__li > a:hover {
  color: #0C7BCC;
  opacity: 0.7;
}
@media screen and (min-width: 960px) {
  .footer__li > a {
    text-align: left;
  }
  .footer__li > a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -9%;
    width: 13px;
    height: 13px;
    transform: translate(-50%, -50%);
    background-image: url(/wp-content/themes/kken/assets/images/footer-arrow-circle.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
}
.footer__underwrap {
  margin-top: 32px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .footer__underwrap {
    display: flex;
    justify-content: space-between;
    margin-top: 77px;
  }
}
.footer__copyright {
  display: block;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.16;
}
@media screen and (min-width: 960px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
}
.footer__policy {
  display: inline-block;
  color: #020202;
  letter-spacing: 0.04em;
  line-height: 1.21;
  font-weight: 500;
  margin-top: 20px;
  font-size: 1.4rem;
  transition: 0.7s;
  border-bottom: 1px solid #2F5189;
}
.footer__line {
  height: 20px;
  background: linear-gradient(to right, #0C7BCC, #7EDEFF);
}

.floating {
  position: fixed;
  z-index: 99;
  width: 100%;
  bottom: 0;
  padding: 7px;
  background: linear-gradient(to right, #F87601, #FFDE74);
  transition: 0.5s;
}
.floating:hover {
  opacity: 0.7;
}
@media screen and (min-width: 600px) {
  .floating {
    right: 15px;
    bottom: 30%;
    border-radius: 10px;
    padding: 10px 3px 11px;
    width: 107px;
    background: linear-gradient(to right top, #F87601, #FFDE74);
  }
}
.floating__content {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  padding: 3%;
}
@media screen and (min-width: 600px) {
  .floating__content {
    flex-direction: column;
    gap: 5%;
    border-radius: 10px;
    padding: 16px 9px 18px 10px;
  }
}
.floating__mail {
  display: flex;
  gap: 4px;
  align-items: center;
  border-right: 1px dashed #F87601;
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .floating__mail {
    flex-direction: column;
    border-right: none;
    padding-right: 0;
    border-bottom: 1px dashed #F87601;
    gap: 1px;
  }
}
.floating__mail .mail-img {
  aspect-ratio: 17/12;
  max-width: 17px;
  margin-top: 4px;
}
@media screen and (min-width: 600px) {
  .floating__mail .mail-img {
    aspect-ratio: 26.8/19.6;
    max-width: 26.8px;
    margin-inline: auto;
    margin-top: 0;
  }
}
.floating__mail .mail-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.floating__mail p {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #F87601;
}
@media screen and (min-width: 600px) {
  .floating__mail p {
    font-size: 1.6rem;
    margin-top: 8px;
    padding-bottom: 13px;
    line-height: 1.125;
    writing-mode: vertical-rl;
  }
}
.floating__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .floating__tel {
    margin-top: 10px;
    margin-left: 0;
    gap: 5px;
  }
}
.floating__tel .tel-img {
  aspect-ratio: 17/22;
  max-width: 17px;
}
@media screen and (min-width: 600px) {
  .floating__tel .tel-img {
    aspect-ratio: 13/16.7;
    max-width: 13px;
  }
}
.floating__tel .tel-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.floating__tel p {
  font-size: 1.3rem;
  color: #F87601;
  letter-spacing: 0.08em;
  line-height: 1.15;
}
@media screen and (min-width: 600px) {
  .floating__tel p {
    font-size: 1.2rem;
    line-height: 1.16;
    letter-spacing: 0.09em;
  }
}

.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.recruit-hero {
  width: 100%;
  max-width: 100%;
  margin-top: 58px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .recruit-hero {
    margin-top: 92px;
  }
}
.recruit-hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit-hero__title {
  font-size: 1.6rem;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.12em;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 960px) {
  .recruit-hero__title {
    font-size: 4.8rem;
  }
}
.recruit-hero__sub {
  color: #FFFFFF;
  opacity: 0.15;
  letter-spacing: 0.12em;
  line-height: 1.233;
  font-weight: 400;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  font-size: 5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
}
@media screen and (min-width: 960px) {
  .recruit-hero__sub {
    font-size: 13.6rem;
  }
}

.breadcrumbs {
  margin-top: 20px;
  font-size: 1.4rem;
}
@media screen and (min-width: 600px) {
  .breadcrumbs {
    font-size: 1.6rem;
  }
}
.breadcrumbs__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .breadcrumbs__inner {
    max-width: 1040px;
  }
}
.breadcrumbs .home {
  transition: 0.7s;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.breadcrumbs a {
  display: inline-block;
  padding: 0 5px 0 0;
}
@media screen and (min-width: 600px) {
  .breadcrumbs a {
    padding: 0 10px 0 0;
  }
}
.breadcrumbs .current-item, .breadcrumbs span:nth-child(2), .breadcrumbs span:nth-child(3) {
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 3;
  padding-left: 5px;
  color: #0C7BCC;
}
@media screen and (min-width: 600px) {
  .breadcrumbs .current-item, .breadcrumbs span:nth-child(2), .breadcrumbs span:nth-child(3) {
    font-size: 1.2rem;
    padding-left: 10px;
  }
}

.work {
  margin-top: 60px;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 960px) {
  .work {
    margin-top: 90px;
    max-width: 1440px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 960px) {
  .work .main-title {
    text-align: left;
  }
  .work .main-title.u-tablet {
    display: none;
  }
}
.work .sub-title {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .work .sub-title {
    text-align: left;
  }
  .work .sub-title.u-tablet {
    display: none;
  }
}
.work__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
  padding-bottom: 50px;
}
@media screen and (min-width: 960px) {
  .work__inner {
    padding: 0;
    margin-top: 0;
    padding-bottom: 100.8px;
    display: flex;
    gap: 70px;
    max-width: 90%;
    margin-left: 0;
  }
}
.work__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 30%;
  width: 90%;
  z-index: -1;
  background-image: url(/wp-content/themes/kken/assets/images/work-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 960px) {
  .work__inner::before {
    display: none;
  }
}
.work__inner::after {
  content: "work";
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1.233;
  color: #FFFFFF;
  font-size: 5rem;
  bottom: -5px;
  right: 10px;
  position: absolute;
  opacity: 0.8;
}
@media screen and (min-width: 960px) {
  .work__inner::after {
    display: none;
  }
}
.work__img {
  max-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 960px) {
  .work__img {
    aspect-ratio: 625/453;
    max-width: 625px;
    width: 50%;
    margin: 0;
  }
}
.work__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work__texts {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .work__texts {
    text-align: left;
    width: 50%;
  }
}
.work__content {
  margin-top: 15px;
  font-size: 1.8rem;
  text-align: left;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.46;
  color: #0C7BCC;
}
@media screen and (min-width: 960px) {
  .work__content {
    font-size: 2.6rem;
    margin-top: 16px;
  }
}
.work__description {
  margin-top: 14px;
  text-align: justify;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 2.25;
  color: #222222;
}
@media screen and (min-width: 960px) {
  .work__description {
    font-size: 1.6rem;
    margin-top: 30px;
  }
}
@media screen and (min-width: 960px) {
  .work__bg {
    height: 291px;
    background-image: url(/wp-content/themes/kken/assets/images/work-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    z-index: -1;
  }
  .work__bg::after {
    content: "work";
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.13em;
    line-height: 1.233;
    color: #FFFFFF;
    font-size: 12rem;
    bottom: -15px;
    right: 10px;
    position: absolute;
    opacity: 0.8;
  }
}

.benefit {
  margin-top: 50px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .benefit {
    margin-top: 100px;
    margin-bottom: 90px;
    max-width: 1440px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1280px) {
  .benefit::before {
    content: "benefit 01";
    text-transform: uppercase;
    font-size: 6.4rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
    color: #F0F7FD;
    transform: rotate(90deg);
    position: absolute;
    top: 19%;
    left: -120px;
  }
  .benefit::after {
    content: "benefit 02";
    text-transform: uppercase;
    font-size: 6.4rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
    color: #F0F7FD;
    transform: rotate(90deg);
    position: absolute;
    top: 47%;
    right: -120px;
  }
}
@media screen and (min-width: 1280px) {
  .benefit__bgtext {
    position: relative;
    padding-bottom: 125px;
  }
  .benefit__bgtext::before {
    content: "benefit 03";
    text-transform: uppercase;
    font-size: 6.4rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
    color: #F0F7FD;
    transform: rotate(90deg);
    position: absolute;
    bottom: 17%;
    left: -120px;
  }
}
.benefit .sub-title {
  text-align: center;
}
.benefit__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .benefit__inner {
    max-width: 1040px;
  }
}
.benefit__items {
  margin-top: 50px;
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .benefit__items {
    margin-top: 60px;
  }
}
.benefit__item:not(:first-child) {
  margin-top: 75px;
}
@media screen and (min-width: 600px) {
  .benefit__item:not(:first-child) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 600px) {
  .benefit__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
  }
}
.benefit__img {
  aspect-ratio: 335/222;
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .benefit__img {
    aspect-ratio: 410/300;
    max-width: 410px;
  }
}
.benefit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.benefit__texts {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .benefit__texts {
    margin-top: 0;
    width: 100%;
  }
}
.benefit__num {
  color: #0C7BCC;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (min-width: 600px) {
  .benefit__num {
    font-size: 1.4rem;
  }
}
.benefit__title {
  border-bottom: 1px solid #707070;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding-bottom: 14px;
  margin-top: 15px;
  font-size: 1.8rem;
  color: #222222;
}
@media screen and (min-width: 600px) {
  .benefit__title {
    font-size: 2.5rem;
  }
}
.benefit__description {
  font-size: 1.4rem;
  color: #222222;
  letter-spacing: 0.06em;
  line-height: 2.28;
  margin-top: 20px;
}

.recruit-recruit {
  margin: 80px 0;
}
@media screen and (min-width: 600px) {
  .recruit-recruit {
    margin: 110px 0;
  }
}
.recruit-recruit .sub-title {
  text-align: center;
}
.recruit-recruit__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .recruit-recruit__inner {
    max-width: 1040px;
  }
}
.recruit-recruit__frame {
  margin-top: 30px;
  border: 1px solid #0C7BCC;
}
@media screen and (min-width: 600px) {
  .recruit-recruit__frame:first-child {
    margin-top: 40px;
  }
}
.recruit-recruit__header {
  background: linear-gradient(to right, #0C7BCC, #7EDEFF);
  color: #FFFFFF;
  text-align: center;
  font-size: 2rem;
  padding: 5px 0;
  letter-spacing: 0.08em;
  position: relative;
}
@media screen and (min-width: 600px) {
  .recruit-recruit__header {
    font-size: 2.3rem;
    padding: 22px 0 18px;
  }
}
.recruit-recruit__body {
  width: 80%;
  margin: 0 auto;
}
.recruit-recruit__ul {
  padding: 35px 0 85px;
}
.recruit-recruit__li {
  border-bottom: 1px solid #CCD0D5;
  padding-bottom: 25px;
  list-style: none;
  position: relative;
}
.recruit-recruit__li:not(:first-child) {
  margin-top: 27px;
}
.recruit-recruit__li::before {
  content: "";
  border-radius: 50%;
  width: 7px;
  height: 7px;
  display: block;
  position: absolute;
  left: 1px;
  top: 0.5em;
  background: #0C7BCC;
}
.recruit-recruit__li .list-title {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.17;
  color: #0C7BCC;
  padding-left: 12px;
}
.recruit-recruit__li .list-description {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 2.4;
  color: #2C2C2C;
  margin-top: 10px;
}

.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.contact-form {
  margin-top: 50px;
  margin-bottom: 60px;
}
.contact-form__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-form__inner {
    max-width: 1040px;
  }
}
.contact-form .sub-title {
  text-align: center;
}
.contact-form__wrapper {
  background-color: #F8F8F8;
  margin-top: 50px;
  padding: 10% 5%;
  width: 100%;
}
.contact-form__table {
  width: 100%;
  border-collapse: collapse;
}
.contact-form__table tr {
  padding: 15px 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .contact-form__table tr {
    display: flex;
    align-items: center;
    padding: 20px 0;
    font-size: 1.6vw;
  }
}
@media screen and (min-width: 960px) {
  .contact-form__table tr {
    font-size: 1.6rem;
  }
}
.contact-form__table td,
.contact-form__table th {
  display: block;
  width: auto;
  line-height: 1.5;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .contact-form__table th {
    width: 25%;
  }
  .contact-form__table th p {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.contact-form__table th .required {
  background-color: #0C7BCC;
  color: #FFFFFF;
  margin-left: 15px;
  padding: 5px 8px;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .contact-form__table th .required {
    font-size: 1rem;
    padding: 4px 6px;
  }
}
.contact-form__table td {
  margin-top: 10px;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .contact-form__table td {
    margin-left: 30px;
    margin-top: 0;
  }
}
.contact-form__table input,
.contact-form__table textarea {
  width: 100%;
  box-sizing: border-box;
  background-color: #FFFFFF;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-left: 15px;
}
.contact-form__table input {
  height: 45px;
}
@media screen and (min-width: 768px) {
  .contact-form__table input {
    height: 40px;
  }
}
.contact-form__table select {
  width: 100%;
  height: 45px;
  background-color: #FFFFFF;
  padding-left: 15px;
  padding-right: 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}
@media screen and (min-width: 768px) {
  .contact-form__table select {
    width: 30%;
    height: 40px;
  }
}
.contact-form__table .select {
  position: relative;
}
.contact-form__table .select::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 91%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid #555555;
  border-bottom: 0;
}
@media screen and (min-width: 768px) {
  .contact-form__table .select::after {
    left: 26%;
  }
}
.contact-form__table textarea {
  padding: 10px 15px;
}
.contact-form .privacy-policy {
  margin-top: 40px;
}
.contact-form .privacy-policy a {
  margin-left: 0.5em;
}
.contact-form .privacy-policy > p {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form input[type=submit] {
  margin-top: 42px;
  height: 50px;
  width: 90%;
  font-size: 2rem;
  letter-spacing: 2px;
  background: linear-gradient(to right, #0C7BCC, #7EDEFF);
  color: #FFFFFF;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: 0.5s;
  border: none;
}
.contact-form input[type=submit]:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .contact-form input[type=submit] {
    margin-top: 56px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 360px;
    height: 61px;
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
  }
}

.not-found {
  margin-top: 60px;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 600px) {
  .not-found {
    margin-top: 90px;
    max-width: 1440px;
    margin-inline: auto;
  }
}
.not-found__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .not-found__inner {
    max-width: 1040px;
  }
}
.not-found__text > p {
  font-size: 1.8rem;
  text-align: left;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.46;
  color: #222222;
}
@media screen and (min-width: 600px) {
  .not-found__text > p {
    font-size: 2.6rem;
    margin-top: 20px;
  }
}
.not-found__btn {
  margin-top: 55px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .not-found__btn {
    margin-top: 100px;
    margin-bottom: 150px;
  }
}
.not-found__btn > a {
  display: inline-block;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.23;
  background: linear-gradient(to right top, #0C7BCC, #7EDEFF);
  max-width: 280px;
  width: 100%;
  position: relative;
  padding: 15px 0 14px;
}
.not-found__btn > a::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 6px;
  top: 55%;
  left: 90%;
  transform: translateY(-50%);
  background-image: url(/wp-content/themes/kken/assets/images/mobile-header-contact-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.blog {
  margin-top: 50px;
}
@media screen and (min-width: 600px) {
  .blog {
    margin-top: 79px;
  }
}
.blog__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .blog__inner {
    width: 100%;
    padding-bottom: 140px;
  }
}
.blog__inner::before {
  content: "";
  background-color: #F4F4F4;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 98%;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 600px) {
  .blog__inner::before {
    height: 92%;
  }
}
.blog__ul {
  padding: 0;
}
@media screen and (min-width: 600px) {
  .blog__ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1040px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 600px) {
  .blog__ul::after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
  }
}
.blog__li {
  list-style: none;
  position: relative;
}
@media screen and (min-width: 600px) {
  .blog__li {
    width: 32%;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .blog__li:nth-of-type(n+4) {
    margin-top: 62px;
  }
}
.blog__li:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  .blog__li:not(:last-child) {
    margin-bottom: 0;
  }
}
.blog__li .thumb {
  height: 206px;
}
.blog__li .thumb img {
  width: 100%;
  height: 206px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog__li .category {
  position: absolute;
  top: 8px;
  left: 8px;
}
.blog__li .category ul {
  padding: 0;
}
.blog__li .category li {
  list-style: none;
  background-color: #0C7BCC;
  border-radius: 55px;
  color: #FFFFFF;
  width: 79px;
  height: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 20px;
  text-align: center;
}
.blog__li .outline {
  background-color: #FFFFFF;
}
.blog__li .outline .title {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 1px solid #000000;
  letter-spacing: 0.12em;
  line-height: 1.8;
  padding: 20px 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 100px;
}
.blog__li .outline .description {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 2;
  padding: 13px 25px 9px;
  font-weight: 500;
  height: 160px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.blog .navigation {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 50px;
}
@media screen and (min-width: 600px) {
  .blog .navigation {
    margin-top: 68px;
  }
}
.blog .navigation span:not(.extend), .blog .navigation a {
  width: 27px;
  height: 27px;
  border: 1px solid #000000;
  display: inline-block;
}
.blog .navigation .extend {
  margin-right: 9px;
  position: relative;
  top: -4px;
}
.blog .navigation .previouspostslink {
  margin-right: 21px;
}
.blog .navigation .current {
  color: #000000;
  background-color: transparent;
  margin-right: 13px;
}
.blog .navigation .page {
  color: #FFFFFF;
  background-color: #000000;
  margin-right: 13px;
}
.blog .navigation .nextpostslink {
  margin-left: 8px;
}

.article {
  margin-top: 30px;
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .article {
    padding-bottom: 186px;
  }
}
.article__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .article__inner {
    max-width: 850px;
  }
}
.article__header {
  border-bottom: solid 1px #3B3B3B;
}
.article__header .article__title {
  font-size: 2rem;
}
@media screen and (min-width: 600px) {
  .article__header .article__title {
    font-size: 3rem;
    letter-spacing: 0.2em;
    line-height: 2.133;
    font-weight: 400;
  }
}
.article__meta {
  display: flex;
  margin: 14px 0 20px;
  align-items: center;
}
.article__meta .meta-tag {
  width: 90px;
  height: 25px;
  border-radius: 80px;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 1.1rem;
  letter-spacing: 0.13em;
  line-height: 25px;
  text-align: center;
  margin-right: 15px;
}
@media screen and (min-width: 600px) {
  .article__meta .meta-tag {
    width: 104px;
    height: 29px;
    font-size: 1.2rem;
    line-height: 29px;
  }
}
.article__meta .meta-tag ul {
  padding: 0;
}
.article__meta .meta-tag li {
  list-style: none;
}
.article__meta .meta-time {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #8F8F8F;
  position: relative;
  margin-right: 43px;
  margin-left: 15px;
}
@media screen and (min-width: 600px) {
  .article__meta .meta-time {
    font-size: 1.5rem;
  }
}
.article__meta .meta-time::before {
  content: "";
  background-image: url(/wp-content/themes/kken/assets/images/calendar-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
}
.article__meta .meta-author {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  position: relative;
}
.article__meta .meta-author::before {
  content: "";
  background-image: url(/wp-content/themes/kken/assets/images/author-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 10px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -16px;
}
.article__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article__body p {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2;
  margin: 30px 0;
}
.article__body p > span {
  background: linear-gradient(transparent 70%, #FCD1E1 70%);
}
.article__body h2 {
  font-size: 1.9rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 2.05;
  background-color: #F4F4F4;
  border-left: solid 4px #0C7BCC;
  padding: 13px 0 9px 20px;
}
@media screen and (min-width: 600px) {
  .article__body h2 {
    font-size: 1.9rem;
    padding: 13px 0 9px 20px;
  }
}
.article__body h3 {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 2.23;
  border-left: solid 4px #222222;
  padding: 0 0 0 10px;
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  .article__body h3 {
    font-size: 1.7rem;
  }
}
.article #toc_container {
  border: 1px solid #D6D6D6;
  width: 100%;
  border-top: 5px solid #0C7BCC;
  padding: 42px 0 10px;
  margin-bottom: 35px;
}
.article #toc_container .toc_title {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 2.1666;
  font-weight: bold;
  width: 90%;
  margin-inline: auto;
}
.article #toc_container .toc_list {
  padding: 0;
  width: 90%;
  margin-inline: auto;
}
.article #toc_container .toc_list > li:not(:last-child) {
  border-bottom: 1px solid #D6D6D6;
}
.article #toc_container .toc_list li {
  list-style: none;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2.142;
  padding: 18px 0;
}
.article #toc_container .toc_list li span {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.18;
  font-weight: bold;
  margin-right: 15px;
}
.article__text {
  margin: 30px 0;
}
.article__text p {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2;
}
.article__text p > span {
  background: linear-gradient(transparent 70%, #FCD1E1 70%);
}
.article__sub-title h2 {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 2.05;
  background-color: #F4F4F4;
  border-left: solid 4px #0C7BCC;
  padding: 10px 0 6px 15px;
}
@media screen and (min-width: 600px) {
  .article__sub-title h2 {
    font-size: 1.9rem;
    padding: 13px 0 9px 20px;
  }
}
.article__sub-title-below h3 {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 2.23;
  border-left: solid 4px #222222;
  padding: 0 0 0 10px;
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  .article__sub-title-below h3 {
    font-size: 1.7rem;
  }
}
.article__quote {
  background-color: #F4F4F4;
  padding: 70px 0;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  position: relative;
}
@media screen and (min-width: 600px) {
  .article__quote {
    font-size: 1.7rem;
  }
}
.article__quote .quote-icon {
  font-size: 3.5em;
  color: #FFFFFF;
  position: absolute;
  top: 5px;
  left: 15px;
}
@media screen and (min-width: 600px) {
  .article__quote .quote-icon {
    font-size: 3.2em;
  }
}
.article__quote .quote-inner {
  padding: 0 18px;
}
.article__quote .quote-text {
  color: #5D5D5D;
}
.article__quote .quote-text p {
  margin-bottom: 25px;
}
.article__quote .quote-text cite {
  font-style: normal;
}
.article__quote .quote-text cite > a {
  color: #5654EE;
  -webkit-text-decoration: underline #919191;
          text-decoration: underline #919191;
}
.article__container {
  margin-top: 29px;
  margin-bottom: 23px;
  border: 1px solid #D6D6D6;
}
@media screen and (min-width: 600px) {
  .article__container {
    display: flex;
    align-items: center;
  }
}
.article__container .container-img {
  width: 93px;
  height: 89px;
  margin: 30px auto;
}
@media screen and (min-width: 600px) {
  .article__container .container-img {
    padding: 0;
    margin: 0 49px 0 46px;
  }
}
.article__container .container-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article__container .container-text {
  border-top: 1px solid #EDECED;
  width: 80%;
  margin: 0 auto;
  padding: 30px 0;
}
@media screen and (min-width: 600px) {
  .article__container .container-text {
    border-top: none;
    border-left: 1px solid #EDECED;
    width: 70%;
    padding: 0 57px 0 44px;
    margin: 39px 0 45px;
  }
}
.article__container .container-text .container-header {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 2.1666;
}
.article__container .container-text .container-body {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 2.142;
  font-weight: 500;
}
.article__ul {
  padding: 0;
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .article__ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}
.article__li {
  list-style: none;
  background-color: #F5F5F5;
  position: relative;
}
@media screen and (min-width: 600px) {
  .article__li {
    margin-bottom: 30px;
  }
}
.article__li:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .article__li:not(:first-child) {
    margin-top: 0;
  }
}
.article__li a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.article__li .thumb {
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .article__li .thumb {
    max-width: 270px;
  }
}
.article__li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article__li .outline {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 30px;
}
.article__li .outline .title {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.21;
  padding: 20px 0 8px;
}
.article__li .outline .description {
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.666;
  padding: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.article__btn {
  text-align: center;
  margin-top: 69px;
}
.article__btn > a {
  width: 90%;
  background-color: #222222;
  height: 55px;
  display: inline-block;
  color: #FFFFFF;
  position: relative;
  line-height: 55px;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .article__btn > a {
    width: 340px;
  }
}
.article__btn > a::after {
  content: "";
  position: absolute;
  width: 8.79px;
  height: 13.9px;
  background-image: url(/wp-content/themes/kken/assets/images/btn-arrow-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateY(-50%);
  left: 90%;
  top: 50%;
}

.privacy {
  padding: 70px 0;
}
@media screen and (min-width: 600px) {
  .privacy {
    padding: 115px 0;
  }
}
.privacy__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .privacy__inner {
    max-width: 1040px;
  }
}
.privacy__title {
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (min-width: 600px) {
  .privacy__title {
    font-size: 3rem;
    line-height: 1.433;
  }
}
.privacy__content p:not(:last-child) {
  margin-bottom: 2em;
}/*# sourceMappingURL=style.css.map */